:root {
    --ink: #2e2925;
    --brown: #493526;
    --brown-soft: #6f543e;
    --gold: #c6a15b;
    --gold-light: #e0c58c;
    --cream: #f5f0e8;
    --cream-deep: #e9e0d3;
    --paper: #fffdf9;
    --green: #31463a;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(57, 39, 25, 0.13);
    --radius: 3px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    line-height: 1.12;
}

h1 { font-size: clamp(3.25rem, 7vw, 6.8rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.35rem, 4vw, 4rem); letter-spacing: -0.025em; }
h3 { font-size: 1.65rem; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only, .skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    inset: 16px auto auto 16px;
    z-index: 1000;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 16px;
    clip: auto;
    color: white;
    background: var(--brown);
}

.announcement {
    position: relative;
    z-index: 52;
    color: rgba(255,255,255,.8);
    background: #2c241f;
    font-size: .75rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.announcement__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.announcement__contact { display: flex; align-items: center; gap: 18px; }
.announcement__contact a:hover { color: var(--gold-light); }
.announcement__divider { width: 1px; height: 13px; background: rgba(255,255,255,.25); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 82px;
    background: rgba(255,253,249,.95);
    border-bottom: 1px solid rgba(73,53,38,.1);
    backdrop-filter: blur(16px);
}

.header__inner { height: 100%; display: flex; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: var(--brown); font: 600 1.3rem/1 "Playfair Display", Georgia, serif; }
.brand small { margin-top: 6px; color: #876f5d; font-size: .58rem; letter-spacing: .19em; text-transform: uppercase; }

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
    padding: 3px;
    color: #9a8879;
    background: #f1ebe3;
    border: 1px solid #e4d9cc;
    border-radius: 999px;
}
.language-switch button {
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    color: #75675d;
    background: transparent;
    border: 0;
    border-radius: 999px;
    font: 600 .7rem/1 "DM Sans", sans-serif;
    letter-spacing: .08em;
    cursor: pointer;
}
.language-switch button[aria-pressed="true"] { color: white; background: var(--brown); }
.language-switch button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.main-nav { display: flex; align-items: center; gap: clamp(15px, 2vw, 32px); margin-left: clamp(16px, 2vw, 30px); }
.main-nav > a:not(.button) { position: relative; color: #51473f; font-size: .86rem; font-weight: 500; }
.main-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 27px;
    color: white;
    background: var(--brown);
    border: 1px solid var(--brown);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .025em;
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.button:hover { color: white; background: var(--brown-soft); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(73,53,38,.22); }
.button:focus-visible, .text-link:focus-visible, .main-nav a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.button--small { min-height: 44px; padding: 10px 21px; }
.button--gold { color: #2d241d; background: var(--gold-light); border-color: var(--gold-light); }
.button--gold:hover { color: #2d241d; background: white; border-color: white; }
.button--outline { color: var(--brown); background: transparent; }
.button--outline:hover { background: var(--brown); }
.button--whatsapp { background: var(--green); border-color: var(--green); }

.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 1px; margin: 5px 0; background: var(--brown); transition: transform .25s ease, opacity .25s ease; }

.hero {
    position: relative;
    min-height: calc(100svh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: #332b25 url("../img/bali.jpg") center 22% / cover no-repeat;
}

.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,26,21,.84) 0%, rgba(35,26,21,.64) 45%, rgba(35,26,21,.2) 76%, rgba(35,26,21,.3) 100%), linear-gradient(0deg, rgba(31,23,19,.55), transparent 45%); }
.hero__content { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 60px; }
.hero h1 { max-width: 820px; margin: 12px 0 24px; }
.hero h1 em { color: var(--gold-light); font-weight: 500; }
.hero__intro { max-width: 600px; margin-bottom: 32px; color: rgba(255,255,255,.86); font-size: clamp(1rem, 1.8vw, 1.2rem); }
.hero__actions { display: flex; align-items: center; gap: 28px; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    color: var(--brown-soft);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.eyebrow--light { color: var(--gold-light); }

.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--brown); font-size: .9rem; font-weight: 600; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: white; }

.hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    width: min(760px, 100%);
    margin-top: 75px;
    border-top: 1px solid rgba(255,255,255,.25);
}
.hero__facts > div { padding: 22px 25px 0 0; }
.hero__facts > div + div { padding-left: 25px; border-left: 1px solid rgba(255,255,255,.25); }
.hero__facts strong { display: block; font: 500 1rem/1.4 "Playfair Display", Georgia, serif; }
.fact__label { display: block; margin-bottom: 5px; color: var(--gold-light); font-size: .65rem; letter-spacing: .17em; text-transform: uppercase; }
.hero__side-label { position: absolute; right: 24px; bottom: 34px; z-index: 2; font-size: .58rem; letter-spacing: .24em; writing-mode: vertical-rl; }

.professional-banner {
    color: white;
    background: #653b32;
    border-top: 1px solid rgba(224,197,140,.5);
    border-bottom: 1px solid rgba(224,197,140,.5);
}
.professional-banner__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.professional-banner__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    color: #3d2b22;
    background: var(--gold-light);
    border-radius: 50%;
    font: 700 1rem/1 "DM Sans", sans-serif;
}
.professional-banner__copy { max-width: 900px; }
.professional-banner strong { display: block; font-size: .83rem; letter-spacing: .13em; }
.professional-banner p { margin: 4px 0 0; color: rgba(255,255,255,.76); font-size: .8rem; line-height: 1.5; }

.intro-section { background: var(--paper); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(60px, 8vw, 115px); }
.image-composition { position: relative; padding: 0 64px 72px 0; }
.image-composition__main { width: 100%; height: 600px; object-fit: cover; object-position: 50% 48%; }
.image-composition__accent { position: absolute; right: 0; bottom: 0; width: 47%; height: 250px; object-fit: cover; border: 9px solid var(--paper); box-shadow: var(--shadow); }
.experience-badge { position: absolute; left: -28px; bottom: 27px; width: 148px; height: 148px; display: grid; place-content: center; text-align: center; color: white; background: var(--brown); border-radius: 50%; font: 500 .9rem/1.35 "Playfair Display", Georgia, serif; transform: rotate(-6deg); }
.experience-badge strong { display: block; color: var(--gold-light); font-size: 1.5rem; }
.section-copy h2 { max-width: 590px; margin-bottom: 28px; }
.section-copy > p:not(.eyebrow) { color: #69615b; }
.section-copy .lead { color: #443b35; font-size: 1.08rem; }
.check-list { display: grid; gap: 10px; margin: 28px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #4f4842; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.services-section { background: var(--cream); }
.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading > p:last-child { color: #746b63; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; background: var(--paper); box-shadow: 0 14px 45px rgba(73,53,38,.07); transition: transform .35s ease, box-shadow .35s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card__number { position: absolute; z-index: 2; top: 18px; left: 18px; width: 42px; height: 42px; display: grid; place-items: center; color: white; background: rgba(54,39,29,.82); border-radius: 50%; font: 500 .78rem/1 "Playfair Display", Georgia, serif; backdrop-filter: blur(6px); }
.service-card__image-wrap { height: 280px; overflow: hidden; }
.service-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card__body { padding: 30px 28px 34px; }
.service-card__meta { margin-bottom: 12px; color: #9a7747; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.service-card h3 { min-height: 58px; margin-bottom: 15px; color: var(--brown); }
.service-card__body > p:not(.service-card__meta) { color: #746b63; font-size: .93rem; }

.price-section { color: white; background: var(--brown); }
.split--prices { align-items: start; }
.price-section .section-copy { position: sticky; top: 130px; padding: 26px 0; }
.price-section .section-copy h2 { color: white; }
.price-section .section-copy > p:not(.eyebrow):not(.small-note) { max-width: 480px; color: rgba(255,255,255,.72); }
.price-section .button { margin-top: 18px; }
.small-note { margin-top: 18px; color: rgba(255,255,255,.55); font-size: .78rem; }
.price-list { border-top: 1px solid rgba(255,255,255,.22); }
.price-group { padding: 34px 0 28px; border-bottom: 1px solid rgba(255,255,255,.22); }
.price-group__heading { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.price-group__heading h3 { margin: 0; color: var(--gold-light); font-size: 1.5rem; }
.price-group__heading span { color: rgba(255,255,255,.45); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.price-row { display: flex; justify-content: space-between; padding: 7px 0; color: rgba(255,255,255,.72); }
.price-row strong { color: white; font-weight: 500; }
.payment-notice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 62px;
    border: 1px solid rgba(224,197,140,.42);
}
.payment-notice > div { padding: 28px 32px; }
.payment-notice > div + div { border-left: 1px solid rgba(224,197,140,.28); }
.payment-notice h3 { margin: 0 0 10px; color: var(--gold-light); font-size: 1.5rem; }
.payment-notice strong { color: white; font: 500 1.1rem/1.5 "Playfair Display", Georgia, serif; }
.payment-notice__accepted { background: rgba(224,197,140,.08); }
.payment-notice__unavailable strong { color: rgba(255,255,255,.72); }

.booking-section { background: var(--paper); }
.booking-panel {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    overflow: hidden;
    background: var(--cream);
    box-shadow: var(--shadow);
}
.booking-panel__main {
    display: flex;
    min-height: 620px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(50px, 7vw, 92px);
    color: white;
    background: var(--brown);
}
.booking-panel__main h2 { max-width: 580px; margin-bottom: 24px; color: white; }
.booking-panel__main > p:not(.eyebrow) { max-width: 570px; color: rgba(255,255,255,.75); }
.booking-panel__button { margin-top: 18px; }
.booking-panel__details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    width: 100%;
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.68);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .035em;
    text-transform: uppercase;
}
.booking-panel__details > span { font-size: .95rem; font-weight: 600; letter-spacing: .035em; }
.booking-panel__details .booking-panel__saturday { color: var(--gold-light); font-size: .95rem; font-weight: 600; letter-spacing: .035em; }
.booking-panel__whatsapp {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
    text-align: center;
}
.booking-panel__whatsapp .eyebrow { justify-content: center; }
.booking-panel__whatsapp h3 { margin-bottom: 10px; color: var(--brown); font-size: 2rem; }
.booking-panel__whatsapp > p:not(.eyebrow) { max-width: 360px; margin-bottom: 24px; color: #746b63; font-size: .9rem; }
.whatsapp-qr {
    width: min(100%, 380px);
    aspect-ratio: 4 / 5;
    margin-bottom: 26px;
    overflow: hidden;
    background: #18a75b;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(38,94,61,.18);
}
.whatsapp-qr img {
    width: 100%;
    height: auto;
    transform: translateY(-18%);
}

.gallery-section { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 330px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: var(--cream-deep); cursor: zoom-in; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.8); }
.gallery-item::after { content: "+"; position: absolute; inset: 50% auto auto 50%; width: 48px; height: 48px; display: grid; place-items: center; color: var(--brown); background: rgba(255,255,255,.9); border-radius: 50%; font-size: 1.5rem; opacity: 0; transform: translate(-50%,-35%); transition: opacity .25s ease, transform .25s ease; }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: translate(-50%,-50%); }

.gift-section { padding-top: 20px; background: var(--paper); }
.gift-card { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; overflow: hidden; background: var(--cream-deep); }
.gift-card__copy { padding: clamp(40px, 7vw, 90px); }
.gift-card__copy h2 { margin-bottom: 22px; }
.gift-card__copy p:not(.eyebrow) { margin-bottom: 30px; color: #665e57; }
.gift-card__visual { height: 100%; min-height: 430px; padding: 55px; display: grid; place-items: center; background: var(--brown); }
.gift-card__visual img { width: 100%; max-width: 640px; box-shadow: 0 24px 60px rgba(0,0,0,.25); transform: rotate(2deg); }

.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 18px; }
.contact-card, .map-card { min-height: 360px; padding: 34px; background: var(--paper); }
.contact-card h3 { margin-bottom: 28px; color: var(--brown); }
.contact-card address { margin-bottom: 16px; color: #675f58; font-style: normal; }
.contact-card > a:not(.button) { color: var(--brown); font-weight: 600; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.contact-actions .button { min-height: 46px; padding: 10px 18px; }
.hours-list { margin: 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid #e9e1d7; }
.hours-list dt, .hours-list dd { margin: 0; font-size: .87rem; }
.hours-list dt { color: #756b63; font-weight: 400; }
.hours-list dd { color: var(--brown); font-weight: 600; text-align: right; }
.contact-card .small-note { color: #9b6d50; font-size: 1rem; font-weight: 500; line-height: 1.5; }
.map-card { position: relative; overflow: hidden; padding: 0; }
.map-card img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.25) saturate(.8); transition: transform .5s ease; }
.map-card:hover img { transform: scale(1.04); }
.map-card span { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; justify-content: space-between; padding: 14px 18px; color: white; background: rgba(59,42,31,.9); font-size: .84rem; font-weight: 600; backdrop-filter: blur(8px); }
.professional-note {
    margin: 36px 0 0;
    padding: 16px 20px;
    color: #653b32;
    background: #f1e4dc;
    border: 1px solid #dec8bb;
    text-align: center;
}
.professional-note strong { display: block; font-size: .76rem; letter-spacing: .1em; }
.professional-note p { max-width: 850px; margin: 5px auto 0; color: #796359; font-size: .84rem; line-height: 1.5; }

.footer { padding: 38px 0; color: rgba(255,255,255,.68); background: #2c241f; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand--footer strong { color: white; }
.brand--footer small { color: var(--gold-light); }
.footer p { margin: 0; font-size: .78rem; }
.mobile-booking { display: none; }
.whatsapp-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 54;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    color: white;
    background: #168c4b;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(28,94,57,.34);
    font-size: .82rem;
    font-weight: 600;
    transition: transform .2s ease, background-color .2s ease;
}
.whatsapp-float:hover { color: white; background: #11763e; transform: translateY(-2px); }
.whatsapp-float:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.whatsapp-float svg { width: 24px; height: 24px; flex: 0 0 24px; fill: currentColor; }

.lightbox { width: min(92vw, 900px); max-width: none; padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(23,17,14,.9); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; }
.lightbox__close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; padding: 0; color: white; background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 1.5rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
    .section { padding: 90px 0; }
    .menu-toggle { display: block; margin-left: 10px; }
    .main-nav {
        position: fixed;
        inset: 120px 0 0;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 30px 24px 100px;
        background: var(--paper);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
    }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav > a:not(.button) { width: 100%; padding: 17px 4px; border-bottom: 1px solid #e9e1d7; font: 500 1.35rem/1.2 "Playfair Display", Georgia, serif; }
    .main-nav .button { margin-top: 26px; }
    .menu-open .menu-toggle > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
    .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .split { gap: 55px; }
    .image-composition { padding-right: 38px; }
    .experience-badge { left: -12px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: .9fr 1.1fr; }
    .service-card:last-child .service-card__image-wrap { height: 100%; min-height: 320px; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .map-card { grid-column: 1 / -1; min-height: 330px; }
}

@media (max-width: 760px) {
    body { font-size: 15px; padding-bottom: 62px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 74px 0; }
    .announcement__inner { justify-content: center; }
    .announcement__inner > span { display: none; }
    .announcement__contact { width: 100%; justify-content: space-between; gap: 10px; font-size: .64rem; }
    .site-header { height: 72px; }
    .main-nav { inset: 110px 0 0; }
    .brand strong { font-size: 1.15rem; }
    .brand small { font-size: .5rem; }
    .hero { min-height: calc(100svh - 110px); align-items: flex-end; background-position: 57% center; }
    .hero__overlay { background: linear-gradient(0deg, rgba(35,26,21,.92) 0%, rgba(35,26,21,.55) 68%, rgba(35,26,21,.28) 100%); }
    .hero__content { padding-top: 120px; padding-bottom: 34px; }
    .hero h1 { margin: 9px 0 18px; }
    .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .hero__facts { margin-top: 50px; grid-template-columns: 1fr 1fr; }
    .hero__facts > div { padding: 16px 12px 0 0; }
    .hero__facts > div + div { padding-left: 12px; }
    .hero__facts > div:last-child { display: none; }
    .hero__facts strong { font-size: .88rem; }
    .hero__side-label { display: none; }
    .professional-banner__inner { min-height: 86px; align-items: flex-start; gap: 11px; }
    .professional-banner strong { font-size: .7rem; letter-spacing: .08em; }
    .professional-banner p { font-size: .73rem; }
    .split { grid-template-columns: 1fr; }
    .image-composition { padding: 0 28px 52px 0; }
    .image-composition__main { height: 440px; }
    .image-composition__accent { width: 46%; height: 170px; border-width: 6px; }
    .experience-badge { left: -5px; bottom: 5px; width: 118px; height: 118px; font-size: .77rem; }
    .experience-badge strong { font-size: 1.2rem; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card:last-child { grid-column: auto; display: block; }
    .service-card:last-child .service-card__image-wrap { min-height: 0; height: 260px; }
    .service-card__image-wrap { height: 260px; }
    .service-card h3 { min-height: 0; }
    .price-section .section-copy { position: static; padding: 0; }
    .split--prices { gap: 48px; }
    .price-group__heading { display: block; }
    .price-group__heading span { display: block; margin-top: 7px; }
    .payment-notice { grid-template-columns: 1fr; margin-top: 46px; }
    .payment-notice > div { padding: 24px; }
    .payment-notice > div + div { border-top: 1px solid rgba(224,197,140,.28); border-left: 0; }
    .booking-panel { width: 100%; grid-template-columns: 1fr; }
    .booking-panel__main { min-height: 0; padding: 62px 24px; }
    .booking-panel__whatsapp { padding: 52px 24px; }
    .whatsapp-qr { width: min(100%, 350px); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
    .gallery-item--wide { grid-column: span 2; }
    .gift-section { padding-top: 0; }
    .gift-card { width: 100%; grid-template-columns: 1fr; }
    .gift-card__copy { padding: 55px 24px; }
    .gift-card__visual { min-height: 300px; padding: 34px 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .map-card { grid-column: auto; min-height: 300px; }
    .contact-card { min-height: 0; padding: 28px 24px; }
    .footer__inner { flex-direction: column; text-align: center; }
    .mobile-booking { position: fixed; right: 12px; bottom: 10px; left: 12px; z-index: 55; display: flex; height: 48px; align-items: center; justify-content: center; color: white; background: var(--brown); border-radius: 999px; box-shadow: 0 8px 30px rgba(42,30,22,.38); font-size: .87rem; font-weight: 600; }
    .whatsapp-float { right: 16px; bottom: 72px; left: auto; min-height: 48px; padding: 10px 15px; }
    iframe[src^="https://widget.salonized.com/button"] { display: none !important; }
}

@media (max-width: 430px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.35rem; }
    .hero__intro { font-size: .94rem; }
    .language-switch { gap: 1px; }
    .language-switch button { min-width: 30px; padding: 0 6px; }
    .gallery-grid { grid-auto-rows: 180px; }
    .hours-list div { display: block; }
    .hours-list dd { margin-top: 3px; text-align: left; }
}
