:root {
    --paper: #f7faf6;
    --surface: #ffffff;
    --mist: #eaf2f0;
    --aqua: #dbecef;
    --pine: #153b36;
    --ink: #18211f;
    --muted: #64716d;
    --leaf: #6f9a83;
    --clay: #c76b61;
    --line: rgba(21, 59, 54, 0.14);
    --shadow: 0 18px 40px rgba(18, 33, 31, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.shell {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 250, 246, 0.91);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
    direction: ltr;
}

.brand-mark {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 8px;
    background: var(--pine);
    color: #fff;
    font-weight: 800;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    font-size: 1.02rem;
    line-height: 1.2;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.76rem;
}

.primary-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.primary-nav a {
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    background: var(--mist);
    color: var(--pine);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.language-link,
.phone-link,
.button,
.text-link,
.menu-toggle {
    min-height: 42px;
}

.language-link,
.phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.86rem;
    white-space: nowrap;
}

.language-link {
    color: var(--pine);
    background: var(--mist);
}

.phone-link {
    color: #fff;
    background: var(--pine);
}

.phone-number {
    direction: ltr;
    unicode-bidi: isolate;
}

.menu-toggle {
    display: none;
    width: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    padding: 0;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--pine);
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: calc(100svh - 82px);
    isolation: isolate;
    display: grid;
    align-items: end;
    padding: 116px 0 56px;
    color: #fff;
    background: var(--pine);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero::before {
    background-image: url("images/optimized/euro-touch-hero.jpg");
    background-size: cover;
    background-position: center;
}

.hero::after {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(15, 32, 29, 0.86) 0%, rgba(15, 32, 29, 0.62) 38%, rgba(15, 32, 29, 0.16) 100%),
        linear-gradient(0deg, rgba(15, 32, 29, 0.68), rgba(15, 32, 29, 0.05) 48%);
}

[dir="rtl"] .hero::after {
    background:
        linear-gradient(270deg, rgba(15, 32, 29, 0.86) 0%, rgba(15, 32, 29, 0.62) 38%, rgba(15, 32, 29, 0.16) 100%),
        linear-gradient(0deg, rgba(15, 32, 29, 0.68), rgba(15, 32, 29, 0.05) 48%);
}

.hero-copy {
    max-width: 660px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #dcebe6;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
}

[dir="rtl"] .eyebrow {
    text-transform: none;
}

.hero h1 {
    margin: 0;
    font-size: 5rem;
    line-height: 0.98;
    max-width: 700px;
    unicode-bidi: isolate;
}

[dir="rtl"] .hero h1 {
    direction: ltr;
    text-align: right;
}

.hero-lede {
    margin: 22px 0 0;
    max-width: 570px;
    color: #edf5f2;
    font-size: 1.18rem;
}

.hero-actions,
.section-actions,
.card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 30px;
}

.button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    text-decoration: none;
}

.button.primary {
    background: var(--clay);
    color: #fff;
}

.button.secondary {
    background: #fff;
    color: var(--pine);
}

.button.dark {
    background: var(--pine);
    color: #fff;
}

.button.outline {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--pine);
}

.button-icon {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
    line-height: 1;
}

.whatsapp-icon {
    display: block;
    width: 1.45em;
    height: 1.45em;
}

.button-icon .whatsapp-icon {
    width: 18px;
    height: 18px;
}

.text-link {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-metrics {
    display: grid;
    grid-template-columns: minmax(220px, 360px);
    gap: 18px;
    margin-top: 56px;
    max-width: 360px;
}

.metric {
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    padding-top: 14px;
}

.metric strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1.1;
}

.metric span {
    display: block;
    color: #dcebe6;
    font-size: 0.92rem;
}

.section {
    padding: 92px 0;
}

.section.tight {
    padding: 64px 0;
}

.section.alt {
    background: var(--surface);
}

.section.tint {
    background: var(--mist);
}

.section.dark {
    background: var(--pine);
    color: #fff;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.5fr);
    align-items: end;
    gap: 36px;
    margin-bottom: 34px;
}

.section-head.centered {
    display: block;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--clay);
    font-weight: 900;
    font-size: 0.88rem;
    text-transform: uppercase;
}

[dir="rtl"] .section-kicker {
    text-transform: none;
}

.section h1,
.section h2,
.page-hero h1,
.compact-hero h1 {
    margin: 0;
    line-height: 1.05;
}

.section h2,
.page-hero h1,
.compact-hero h1 {
    font-size: 3rem;
}

.section-head p,
.page-hero p,
.compact-hero p {
    color: var(--muted);
    margin: 0;
    font-size: 1.04rem;
}

.dark .section-head p,
.dark .section-kicker {
    color: #c7ded7;
}

.booking-strip {
    position: relative;
    margin-top: 0;
    z-index: 3;
}

.booking-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.booking-panel h2 {
    margin: 0 0 4px;
    font-size: 1.35rem;
}

.booking-panel p {
    margin: 0;
    color: var(--muted);
}

.overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 48px;
    align-items: center;
}

.media-panel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 520px;
    background: var(--pine);
    box-shadow: var(--shadow);
}

.media-panel img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.media-caption {
    position: absolute;
    inset-inline: 18px;
    bottom: 18px;
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.91);
    color: var(--ink);
}

.media-caption strong {
    display: block;
}

.media-caption span {
    color: var(--muted);
    font-size: 0.9rem;
}

.content-stack {
    display: grid;
    gap: 22px;
}

.content-stack h2 {
    font-size: 3rem;
}

.content-stack p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.feature-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 16px;
}

.feature-item strong {
    display: block;
    margin-bottom: 4px;
}

.feature-item span {
    color: var(--muted);
    font-size: 0.92rem;
}

.service-grid,
.package-grid,
.team-grid,
.review-grid {
    display: grid;
    gap: 20px;
}

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

.package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.package-card,
.team-card,
.review-card,
.contact-card,
.step-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    overflow: hidden;
}

.service-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.service-media,
.package-media,
.team-media {
    position: relative;
    overflow: hidden;
    background: var(--mist);
}

.service-media {
    aspect-ratio: 4 / 3;
}

.package-media {
    aspect-ratio: 16 / 10;
}

.team-media {
    aspect-ratio: 4 / 5;
}

.service-media img,
.package-media img,
.team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.team-media img {
    object-position: center top;
}

.service-card:hover img,
.package-card:hover img,
.team-card:hover img {
    transform: scale(1.035);
}

.duration,
.package-tag {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.91);
    color: var(--pine);
    font-size: 0.78rem;
    font-weight: 900;
}

.service-body,
.package-body,
.team-body {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.service-body h2,
.package-body h2,
.team-body h2 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.service-body p,
.package-body p,
.team-body p,
.review-card p {
    margin: 0;
    color: var(--muted);
}

.mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mini-list li {
    border-radius: 999px;
    padding: 6px 10px;
    background: var(--mist);
    color: var(--pine);
    font-size: 0.78rem;
    font-weight: 800;
}

.package-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.package-body ul {
    margin: 0;
    padding-inline-start: 18px;
    color: var(--muted);
}

.package-body li {
    margin: 6px 0;
}

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

.step-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.step-card span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--clay);
    color: #fff;
    font-weight: 900;
}

.step-card h2,
.step-card h3 {
    margin: 20px 0 8px;
    font-size: 1.25rem;
}

.step-card p {
    margin: 0;
    color: #c7ded7;
}

.team-card {
    background: var(--surface);
}

.review-card {
    padding: 22px;
}

.rating {
    color: var(--clay);
    font-size: 1rem;
    margin-bottom: 12px;
}

.review-card strong {
    display: block;
    margin-top: 16px;
}

.page-hero,
.compact-hero {
    padding: 88px 0 52px;
    background: var(--mist);
}

.page-hero .shell,
.compact-hero .shell {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.5fr);
    gap: 44px;
    align-items: end;
}

.page-note {
    border-inline-start: 4px solid var(--clay);
    padding: 18px 0 18px 18px;
    color: var(--muted);
}

[dir="rtl"] .page-note {
    padding: 18px 18px 18px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: stretch;
}

.contact-card {
    padding: 24px;
}

.contact-card h2,
.contact-card h3 {
    margin: 0 0 12px;
}

.contact-card p {
    margin: 0 0 18px;
    color: var(--muted);
}

.contact-details {
    display: grid;
    gap: 12px;
}

.contact-details a,
.contact-details span {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    text-decoration: none;
}

.contact-details b {
    color: var(--pine);
}

.contact-visual {
    border-radius: 8px;
    min-height: 420px;
    overflow: hidden;
    background: var(--pine);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.contact-rail {
    position: fixed;
    inset-inline-end: 22px;
    bottom: 22px;
    z-index: 60;
    display: grid;
    gap: 10px;
}

.rail-link {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 900;
}

.rail-link .whatsapp-icon {
    width: 27px;
    height: 27px;
}

.rail-whatsapp {
    background: #1fae68;
    color: #fff;
}

.rail-call {
    background: var(--pine);
    color: #fff;
}

.site-footer {
    padding: 62px 0 28px;
    background: #111c1a;
    color: #e9f1ee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 42px;
}

.footer-brand {
    margin-bottom: 18px;
}

.site-footer p,
.site-footer address,
.site-footer a,
.site-footer span {
    color: #c7d8d3;
}

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 1rem;
    color: #fff;
}

.footer-links,
.site-footer address {
    display: grid;
    gap: 9px;
    font-style: normal;
}

.footer-links a,
.site-footer address a {
    text-decoration: none;
}

.footer-links a:hover,
.site-footer address a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .primary-nav {
        position: fixed;
        inset: 82px 0 auto 0;
        display: grid;
        justify-content: stretch;
        gap: 0;
        padding: 16px;
        background: rgba(247, 250, 246, 0.98);
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 220ms ease, opacity 220ms ease;
    }

    body.nav-open .primary-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav a {
        border-radius: 8px;
        padding: 16px;
        font-size: 1rem;
    }

    .menu-toggle {
        display: inline-block;
    }

    .phone-link {
        display: none;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .overview-grid,
    .page-hero .shell,
    .compact-hero .shell,
    .contact-layout,
    .section-head {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .package-grid,
    .team-grid,
    .review-grid,
    .step-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .shell {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        min-height: 72px;
        gap: 12px;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-copy strong {
        display: block;
        max-width: 168px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .brand-copy small {
        display: none;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .primary-nav {
        inset-top: 72px;
    }

    .language-link {
        padding: 9px 12px;
    }

    .header-actions {
        flex: 0 0 auto;
    }

    .hero {
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
        min-height: calc(100svh - 72px);
        padding: 82px 0 38px;
    }

    .hero .shell {
        width: 100vw;
        max-width: 100vw;
        margin-inline: 0;
        padding-inline: 18px;
    }

    .hero::after {
        background:
            linear-gradient(0deg, rgba(15, 32, 29, 0.84), rgba(15, 32, 29, 0.32)),
            linear-gradient(90deg, rgba(15, 32, 29, 0.70), rgba(15, 32, 29, 0.10));
    }

    [dir="rtl"] .hero::after {
        background:
            linear-gradient(0deg, rgba(15, 32, 29, 0.84), rgba(15, 32, 29, 0.32)),
            linear-gradient(270deg, rgba(15, 32, 29, 0.70), rgba(15, 32, 29, 0.10));
    }

    .hero h1,
    .section h2,
    .page-hero h1,
    .compact-hero h1,
    .content-stack h2 {
        font-size: 2.6rem;
    }

    .hero h1 {
        font-size: 2.35rem;
        max-width: 100%;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .hero-lede {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-copy {
        max-width: 100%;
        margin-inline: auto;
        text-align: center;
    }

    .hero-actions {
        align-items: stretch;
        justify-content: center;
    }

    .hero-actions .button,
    .hero-actions .text-link {
        width: min(100%, 320px);
        margin-inline: auto;
        white-space: normal;
        text-align: center;
    }

    [dir="rtl"] .hero h1 {
        text-align: center;
    }

    .hero-metrics {
        text-align: center;
    }

    .hero-metrics,
    .feature-list,
    .service-grid,
    .package-grid,
    .team-grid,
    .review-grid,
    .step-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .booking-panel {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .section {
        padding: 68px 0;
    }

    .section.tight {
        padding: 48px 0;
    }

    .media-panel,
    .media-panel img,
    .contact-visual,
    .contact-visual img {
        min-height: 340px;
    }

    .contact-details a,
    .contact-details span {
        display: grid;
        gap: 4px;
    }

    .contact-rail {
        inset-inline-end: 14px;
        bottom: 14px;
    }
}
