:root {
    color-scheme: light;
    --bg: #f7f4f2;
    --surface: #ffffff;
    --surface-soft: #fbf7f6;
    --ink: #272322;
    --muted: #746966;
    --line: #e4d9d6;
    --logo-rose: #b68083;
    --logo-rose-dark: #8f5a5f;
    --logo-rose-soft: #f1dfdc;
    --logo-sand: #d7b9a8;
    --shadow: 0 22px 60px rgba(64, 47, 45, 0.11);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(182, 128, 131, 0.12), transparent 34%),
        linear-gradient(315deg, rgba(215, 185, 168, 0.18), transparent 38%),
        var(--bg);
}

a {
    color: var(--logo-rose-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.language-toggle {
    position: fixed;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

[data-lang="en"] {
    display: none;
}

#lang-en:checked ~ .page-shell [data-lang="el"] {
    display: none;
}

#lang-en:checked ~ .page-shell [data-lang="en"] {
    display: revert;
}

#lang-en:checked ~ .page-shell img[data-lang="en"],
#lang-el:checked ~ .page-shell img[data-lang="el"] {
    display: block;
}

.page-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 56px;
}

.site-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.mini-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    min-width: 0;
    font-weight: 700;
}

.mini-brand:hover {
    text-decoration: none;
}

.mini-brand img {
    width: 44px;
    flex: 0 0 auto;
    height: auto;
}

.mini-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.language-switch {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}

.language-switch label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

#lang-el:checked ~ .page-shell .language-switch label[for="lang-el"],
#lang-en:checked ~ .page-shell .language-switch label[for="lang-en"] {
    background: var(--logo-rose);
    color: #ffffff;
}

.hero,
.details-card,
.services,
.map-section,
.contact-summary,
.gallery {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    min-height: 520px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 247, 245, 0.98) 62%, rgba(241, 223, 220, 0.94) 100%);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(32px, 6vw, 72px);
}

.brand-mark {
    width: 100px;
    height: auto;
    margin-bottom: 28px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--logo-rose-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 16px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
    overflow-wrap: normal;
}

.subtitle {
    margin-bottom: 20px;
    color: var(--logo-rose-dark);
    font-size: clamp(21px, 2.5vw, 30px);
    line-height: 1.18;
    font-weight: 700;
}

.lead {
    max-width: 720px;
    margin-bottom: 0;
    color: #4d4542;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.55;
}

.contact-panel {
    display: grid;
    align-content: center;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 28px;
    border-left: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.contact-link {
    display: block;
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
}

.contact-link:hover {
    text-decoration: none;
    border-color: rgba(182, 128, 131, 0.58);
}

.contact-link span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-link strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.2;
}

.contact-link.email-link {
    grid-column: 1 / -1;
}

.contact-link.email-link strong {
    font-size: clamp(15px, 1.35vw, 18px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-link.primary {
    background: var(--logo-rose);
    color: #ffffff;
    border-color: var(--logo-rose);
}

.contact-link.primary span {
    color: rgba(255, 255, 255, 0.82);
}

.details-card,
.services,
.map-section,
.contact-summary,
.gallery {
    margin-top: 18px;
    padding: 28px;
}

.details-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.details-card h2,
.section-heading h2,
.contact-summary h2 {
    margin-bottom: 18px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.1;
}

dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
}

dl div {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

dt {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

dd {
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.35;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.section-heading h2,
.section-heading .eyebrow {
    margin-bottom: 0;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.service-list article {
    display: flex;
    align-items: center;
    min-height: 112px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

.service-list h3 {
    margin: 0;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.25;
}

.map-frame {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--logo-rose);
    border-radius: 8px;
    background: var(--logo-rose);
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
}

.button:hover {
    background: var(--logo-rose-dark);
    text-decoration: none;
}

.contact-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-summary h2 {
    margin-bottom: 0;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.contact-row a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    max-width: 100%;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--ink);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-row a:hover {
    border-color: rgba(182, 128, 131, 0.58);
    text-decoration: none;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact-panel {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-top,
    .contact-summary {
        display: block;
    }

    .language-switch {
        width: 100%;
        margin-top: 14px;
    }

    .language-switch label {
        min-width: 0;
    }

    dl,
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        justify-content: flex-start;
        margin-top: 18px;
    }
}

@media (max-width: 560px) {
    .page-shell {
        width: min(100% - 20px, 1120px);
        padding-top: 10px;
    }

    .hero-copy,
    .contact-panel,
    .details-card,
    .services,
    .contact-summary,
    .map-section,
    .gallery {
        padding: 20px;
    }

    h1 {
        font-size: 36px;
    }

    .map-frame {
        aspect-ratio: 1 / 1;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .contact-row a {
        width: 100%;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-link.email-link strong {
        white-space: normal;
    }
}
