
    /* ── TOKENS ── */
    :root,[data-theme="light"]{
      --text-xs:clamp(0.72rem,.68rem + .2vw,.82rem);
      --text-sm:clamp(0.875rem,.8rem + .35vw,1rem);
      --text-base:clamp(1rem,.95rem + .25vw,1.125rem);
      --text-lg:clamp(1.15rem,1rem + .75vw,1.5rem);
      --text-xl:clamp(1.5rem,1.2rem + 1.25vw,2.25rem);
      --text-2xl:clamp(2rem,1.2rem + 2.5vw,3.5rem);
      --text-3xl:clamp(2.6rem,1rem + 4.5vw,5.5rem);
      --text-hero:clamp(3.2rem,.5rem + 8vw,8.5rem);
      --space-1:.25rem;--space-2:.5rem;--space-3:.75rem;--space-4:1rem;
      --space-5:1.25rem;--space-6:1.5rem;--space-8:2rem;--space-10:2.5rem;
      --space-12:3rem;--space-16:4rem;--space-20:5rem;--space-24:6rem;
      --color-bg:#faf8f3;
      --color-surface:#f3eee4;
      --color-surface-2:#ece5d7;
      --color-surface-offset:#e5dccb;
      --color-border:rgba(43,36,27,.14);
      --color-divider:rgba(43,36,27,.09);
      --color-text:#2b241b;
      --color-text-muted:#6f6455;
      --color-text-faint:#a09080;
      --color-text-inverse:#faf8f3;
      --color-primary:#4c6544;
      --color-primary-hover:#3e5538;
      --color-primary-hl:#dce8d8;
      --color-accent:#8a6c43;
      --color-accent-soft:#efe4d3;
      --color-success:#437a22;
      --shadow-sm:0 1px 3px rgba(43,36,27,.06);
      --shadow-md:0 8px 28px rgba(43,36,27,.09);
      --shadow-lg:0 20px 52px rgba(43,36,27,.13);
      --radius-md:.5rem;--radius-lg:.75rem;--radius-xl:1rem;
      --radius-2xl:1.5rem;--radius-full:9999px;
      --font-display:'Cormorant Garamond',Georgia,serif;
      --font-body:'Jost',Arial,sans-serif;
      --content-default:1100px;
      --nav-h:72px;
      --transition:180ms cubic-bezier(.16,1,.3,1);
    }
    [data-theme="dark"]{
      --color-bg:#181612;--color-surface:#221e18;--color-surface-2:#2a2520;
      --color-surface-offset:#342e27;--color-border:rgba(233,225,211,.12);
      --color-divider:rgba(233,225,211,.08);--color-text:#e9e1d3;
      --color-text-muted:#baae9b;--color-text-faint:#7d7060;
      --color-text-inverse:#1a1612;--color-primary:#87a17d;
      --color-primary-hover:#9eb594;--color-primary-hl:#2b3829;
      --color-accent:#c0a171;--color-accent-soft:#3d3226;--color-success:#6daa45;
      --shadow-sm:0 1px 3px rgba(0,0,0,.22);
      --shadow-md:0 8px 28px rgba(0,0,0,.32);
      --shadow-lg:0 20px 52px rgba(0,0,0,.42);
    }

    [data-theme="dark"] footer {
      background: #0e0c09;
    }
    [data-theme="dark"] .footer-top {
      border-bottom-color: rgba(233,225,211,.1);
    }
    [data-theme="dark"] .footer-logo strong {
      color: #e9e1d3;
    }
    [data-theme="dark"] .footer-logo span {
      color: rgba(233,225,211,.5);
    }
    [data-theme="dark"] .footer-brand p {
      color: rgba(233,225,211,.6);
    }
    [data-theme="dark"] .footer-col h4 {
      color: rgba(233,225,211,.4);
    }
    [data-theme="dark"] .footer-links a {
      color: rgba(233,225,211,.65);
    }
    [data-theme="dark"] .footer-links a:hover {
      color: #e9e1d3;
    }
    [data-theme="dark"] .footer-contact-item {
      color: rgba(233,225,211,.65);
    }
    [data-theme="dark"] .footer-contact-item svg {
      color: rgba(233,225,211,.35);
    }
    [data-theme="dark"] .social-link {
      border-color: rgba(233,225,211,.15);
      color: rgba(233,225,211,.55);
    }
    [data-theme="dark"] .social-link:hover {
      border-color: rgba(233,225,211,.4);
      color: #e9e1d3;
    }
    [data-theme="dark"] .footer-bottom p {
      color: rgba(233,225,211,.35);
    }
    [data-theme="dark"] .footer-bottom-links a {
      color: rgba(233,225,211,.35);
    }
    [data-theme="dark"] .footer-bottom-links a:hover {
      color: rgba(233,225,211,.7);
    }
    [data-theme="dark"] .lang-switch {
      border-color: rgba(233,225,211,.2);
      color: rgba(233,225,211,.5);
    }
    [data-theme="dark"] .lang-switch:hover {
      border-color: rgba(233,225,211,.4);
      color: rgba(233,225,211,.8);
    }

    /* ── RESET ── */
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;scroll-padding-top:var(--nav-h)}
    body{min-height:100dvh;font-family:var(--font-body);font-size:var(--text-base);
      line-height:1.7;background:var(--color-bg);color:var(--color-text);overflow-x:hidden}
    img{display:block;max-width:100%;height:auto;object-fit:cover}
    h1,h2,h3,h4{font-family:var(--font-display);line-height:1.08;text-wrap:balance}
    p,li{text-wrap:pretty}
    button,input,select,textarea{font:inherit;color:inherit}
    button{cursor:pointer;border:none;background:none}
    a{color:inherit;text-decoration:none}
    ::selection{background:color-mix(in srgb,var(--color-primary) 22%,transparent)}
    :focus-visible{outline:2px solid var(--color-primary);outline-offset:3px;border-radius:var(--radius-sm)}
    @media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}}
    .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}

    /* ── LAYOUT ── */
    .container{max-width:var(--content-default);margin-inline:auto;padding-inline:clamp(var(--space-5),4vw,var(--space-10))}
    .section{padding-block:clamp(var(--space-16),9vw,var(--space-24))}
    .eyebrow{font-size:var(--text-xs);letter-spacing:.2em;text-transform:uppercase;
      color:var(--color-text-muted);display:flex;align-items:center;
      gap:var(--space-3);margin-bottom:var(--space-5)}
    .eyebrow::before{content:'';width:28px;height:1px;background:var(--color-accent);flex-shrink:0}

    /* ── HEADER ── */
    .site-header{position:sticky;top:0;z-index:50;height:var(--nav-h);display:flex;align-items:center;
      background:color-mix(in srgb,var(--color-bg) 82%,transparent);
      backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
      border-bottom:1px solid var(--color-divider);transition:background var(--transition)}
    .site-header .container{display:flex;align-items:center;justify-content:space-between;width:100%}
    .brand{display:flex;align-items:center;gap:var(--space-3)}
    .brand-svg{width:40px;height:40px;color:var(--color-primary);flex-shrink:0}
    .brand-name{font-family:var(--font-display);font-size:1.2rem;font-weight:600;line-height:1;letter-spacing:.01em}
    .brand-tag{font-size:var(--text-xs);color:var(--color-text-muted);letter-spacing:.12em;text-transform:uppercase}
    nav.primary{display:none}
    @media(min-width:860px){nav.primary{display:flex;align-items:center;gap:var(--space-8)}}
    nav.primary a{font-size:var(--text-sm);color:var(--color-text-muted);letter-spacing:.04em;
      padding:var(--space-1) 0;border-bottom:1px solid transparent;
      transition:color var(--transition),border-color var(--transition)}
    nav.primary a:hover{color:var(--color-text);border-color:var(--color-accent)}
    .header-actions{display:flex;align-items:center;gap:var(--space-3)}
    .lang-toggle {
        font-size: var(--text-xs);letter-spacing: .12em;text-transform: uppercase;padding: var(--space-2) var(--space-3);
        border: 1px solid var(--color-border);border-radius: var(--radius-full);color: var(--color-text-muted);transition: all var(--transition);
        min-height: 36px;text-decoration: none;display: inline-flex;align-items: center;
    }
    .lang-toggle:hover {color: var(--color-text);border-color: var(--color-text-muted);}
    .theme-btn{display:flex;align-items:center;justify-content:center;width:40px;height:40px;
      border:1px solid var(--color-border);border-radius:var(--radius-full);
      color:var(--color-text-muted);transition:all var(--transition)}
    .theme-btn:hover{color:var(--color-text);border-color:var(--color-text-muted)}
    .btn-book{display:none}
    @media(min-width:860px){.btn-book{display:inline-flex;align-items:center;gap:var(--space-2);
      font-size:var(--text-sm);padding:.7rem 1.2rem;background:var(--color-primary);
      color:var(--color-text-inverse);border-radius:var(--radius-full);
      transition:background var(--transition)}}
    .btn-book:hover{background:var(--color-primary-hover)}
    .menu-btn{display:flex;align-items:center;justify-content:center;width:44px;height:44px;
      border:1px solid var(--color-border);border-radius:var(--radius-md);color:var(--color-text-muted)}
    @media(min-width:860px){.menu-btn{display:none}}

    /* ── MOBILE NAV ── */
    .mobile-nav{display:none;position:fixed;inset:0;z-index:100;background:var(--color-bg);
      padding:var(--space-6) var(--space-5);flex-direction:column;gap:var(--space-6)}
    .mobile-nav.open{display:flex}
    .mobile-nav-header{display:flex;justify-content:space-between;align-items:center}
    .mobile-nav a{font-family:var(--font-display);font-size:var(--text-xl);font-weight:500;
      border-bottom:1px solid var(--color-divider);padding-bottom:var(--space-4)}
    .mobile-nav .btn-mobile-book{margin-top:var(--space-4);display:inline-flex;
      align-items:center;justify-content:center;padding:1rem 2rem;
      background:var(--color-primary);color:var(--color-text-inverse);
      border-radius:var(--radius-full);font-size:var(--text-base)}

    /* ── HERO ── */
    .hero{position:relative;min-height:calc(100dvh - var(--nav-h));display:flex;
      align-items:center;overflow:hidden;padding-block:clamp(var(--space-16),8vw,var(--space-24))}
    .hero-bg{position:absolute;inset:0;z-index:0}
    .hero-bg img{width:100%;height:100%;object-position:center 35%}
    .hero-bg::after{content:'';position:absolute;inset:0;
      background:linear-gradient(160deg,rgba(26,20,12,.78) 0%,rgba(26,20,12,.45) 55%,rgba(26,20,12,.18) 100%)}
    .hero-content{position:relative;z-index:1;max-width:700px;display:grid;gap:var(--space-8)}
    .hero-eyebrow{display:inline-flex;align-items:center;gap:var(--space-3);
      font-size:var(--text-xs);letter-spacing:.2em;text-transform:uppercase;color:rgba(250,248,243,.75)}
    .hero-eyebrow::before{content:'';display:block;width:32px;height:1px;background:var(--color-accent)}
    .hero h1{font-size:var(--text-hero);font-weight:500;color:#faf8f3;line-height:.95;letter-spacing:-.03em}
    .hero h1 em{font-style:italic;color:color-mix(in srgb,var(--color-accent) 80%,#faf8f3)}
    .hero-desc{font-size:var(--text-base);color:rgba(250,248,243,.82);max-width:52ch;font-weight:300;line-height:1.75;text-shadow: 0 1px 8px rgba(0,0,0,.5);}
    .hero-actions{display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-4)}
    .btn-hero-primary{display:inline-flex;align-items:center;gap:var(--space-2);padding:1.05rem 2rem;
      background:var(--color-primary);color:var(--color-text-inverse);border-radius:var(--radius-full);
      font-size:var(--text-sm);font-weight:500;letter-spacing:.04em;
      transition:background var(--transition);min-height:52px}
    .btn-hero-primary:hover{background:var(--color-primary-hover)}
    .btn-hero-ghost{display:inline-flex;align-items:center;gap:var(--space-2);padding:1.05rem 1.8rem;
      border:1px solid rgba(250,248,243,.35);color:rgba(250,248,243,.88);border-radius:var(--radius-full);
      font-size:var(--text-sm);letter-spacing:.04em;transition:all var(--transition);min-height:52px}
    .btn-hero-ghost:hover{border-color:rgba(250,248,243,.7);color:#faf8f3}

    /* ── ABOUT ── */
    .about{background:var(--color-bg)}
    @media(min-width:800px){.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(var(--space-10),5vw,var(--space-16));align-items:start}}
    .about h2{font-size:var(--text-2xl);font-weight:500;max-width:14ch;margin-bottom:var(--space-6)}
    .lead{font-size:var(--text-lg);font-family:var(--font-display);font-style:italic;
      color:var(--color-text-muted);max-width:44ch;line-height:1.5;margin-bottom:var(--space-6)}
    .about p{color:var(--color-text-muted);max-width:58ch;line-height:1.8}
    .about p+p{margin-top:var(--space-4)}
    .pills{display:flex;flex-wrap:wrap;gap:var(--space-2);margin-top:var(--space-8)}
    .pill{display:inline-flex;align-items:center;gap:var(--space-2);padding:.55rem 1rem;
      border:1px solid var(--color-border);border-radius:var(--radius-full);
      font-size:var(--text-xs);letter-spacing:.06em;color:var(--color-text-muted);background:var(--color-surface)}
    .about-visual{border-radius:var(--radius-2xl);overflow:hidden;aspect-ratio:4/5;
      box-shadow:var(--shadow-lg);position:relative;margin-top:var(--space-8)}
    @media(min-width:800px){.about-visual{margin-top:0}}
    .about-visual img{width:100%;height:100%}
    .about-visual-caption{position:absolute;bottom:0;left:0;right:0;padding:var(--space-6);
      background:linear-gradient(0deg,rgba(26,20,12,.8),transparent);
      color:rgba(250,248,243,.8);font-size:var(--text-xs);letter-spacing:.12em;text-transform:uppercase}
    .about-benefits {list-style: none;margin-top: var(--space-3);padding-left: 0;display: grid;gap: var(--space-3);}
    .about-benefits li {display: grid;grid-template-columns: 2rem 1fr;gap: var(--space-3);align-items: start;}

.about-benefit-num {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success);
    color: var(--color-text-inverse);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
}

    /* ── STOPS ── */
    .stops{background:var(--color-surface)}
    .stops-intro{text-align:center;max-width:680px;margin-inline:auto;margin-bottom:clamp(var(--space-12),6vw,var(--space-20))}
    .stops-intro .eyebrow{justify-content:center}
    .stops-intro .eyebrow::before{display:none}
    .stops-intro h2{font-size:var(--text-2xl);font-weight:500;margin-bottom:var(--space-5)}
    .stops-intro p{color:var(--color-text-muted);max-width:52ch;margin-inline:auto;line-height:1.8}
    .stops-grid{display:grid;gap:var(--space-2)}
    @media(min-width:700px){.stops-grid{grid-template-columns:repeat(1,1fr)}}
    @media(min-width:1020px){.stops-grid{grid-template-columns:repeat(2,1fr)}}
    .stop-card{background:var(--color-bg);border:1px solid var(--color-border);
      border-radius:var(--radius-xl);padding:var(--space-6) var(--space-5);
      display:grid;gap:var(--space-3);transition:box-shadow var(--transition),transform var(--transition)}
    .stop-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
    .stop-num{font-family:var(--font-display);font-size:clamp(2.2rem,3vw,3rem);
      font-weight:600;color:var(--color-accent);line-height:1;opacity:.7}
    .stop-card h3{font-size:var(--text-lg);font-weight:500}
    .stop-card p{font-size:var(--text-sm);color:var(--color-text-muted);line-height:1.7;max-width:none}
    .stop-divider{height:1px;background:var(--color-divider)}
    .stops-cta{margin-top:clamp(var(--space-12),5vw,var(--space-16));display:flex;
      flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--space-6);
      padding:var(--space-8);background:var(--color-surface-2);
      border:1px solid var(--color-border);border-radius:var(--radius-2xl)}
    .stops-cta-text{flex: 1 1 0; min-width: 0;}
    .stops-cta-text h3{font-size:var(--text-xl);font-weight:500;margin-bottom:var(--space-2)}
    .stops-cta-text p{font-size:var(--text-sm);color:var(--color-text-muted)}
    .stops-cta .btn-primary{flex: 0 0 auto;}
    @media (max-width: 768px) {
    .stops-cta {flex-direction: column;align-items: flex-start;}
    .stops-cta-text {width: 100%;}
    .stops-cta .btn-primary {width: 100%;justify-content: center;}
    }

    /* ── GUIDE ── */
    .guide{background:var(--color-bg)}
    @media(min-width:800px){.guide-grid{display:grid;grid-template-columns:.9fr 1fr;gap:clamp(var(--space-10),6vw,var(--space-20));align-items:center}}
    .guide-portrait{border-radius:var(--radius-2xl);overflow:hidden;aspect-ratio:3/4;
      box-shadow:var(--shadow-lg);position:relative;margin-bottom:var(--space-8)}
    @media(min-width:800px){.guide-portrait{margin-bottom:0}}
    .guide-portrait img{width:100%;height:100%}
    .guide-badge{position:absolute;bottom:var(--space-6);left:var(--space-6);right:var(--space-6);
      background:color-mix(in srgb,var(--color-bg) 90%,transparent);
      backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
      border:1px solid var(--color-border);border-radius:var(--radius-xl);
      padding:var(--space-4) var(--space-5);display:flex;align-items:center;gap:var(--space-4)}
    .guide-badge svg{flex-shrink:0;color:var(--color-primary)}
    .guide-badge strong{font-family:var(--font-display);font-size:var(--text-lg);font-weight:600;display:block;line-height:1.1}
    .guide-badge span{font-size:var(--text-xs);color:var(--color-text-muted);letter-spacing:.08em;text-transform:uppercase}
    .guide-body{display:grid;gap:var(--space-6)}
    .guide-body h2{font-size:var(--text-2xl);font-weight:500;max-width:13ch}
    .guide-body .lead{font-family:var(--font-display);font-style:italic;font-size:var(--text-lg);color:var(--color-text-muted);line-height:1.5;max-width:44ch}
    .guide-body p{color:var(--color-text-muted);max-width:56ch;line-height:1.8}
    .values{display:grid;gap:var(--space-3);margin-top:var(--space-2)}
    @media(min-width:560px){.values{grid-template-columns:1fr 1fr}}
    .value{display:flex;align-items:flex-start;gap:var(--space-3);padding:var(--space-4);
      background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg)}
    .value-dot{width:8px;height:8px;border-radius:50%;background:var(--color-primary);flex-shrink:0;margin-top:.45rem}
    .value p{font-size:var(--text-sm);color:var(--color-text-muted);max-width:none;line-height:1.6}

    /* ── GALLERY ── */
    .gallery{background:var(--color-surface)}
    .gallery-intro-row{display:flex;flex-wrap:wrap;align-items:flex-end;
      justify-content:space-between;gap:var(--space-6);margin-bottom:clamp(var(--space-10),5vw,var(--space-16))}
    .gallery-intro h2{font-size:var(--text-2xl);font-weight:500;max-width:18ch;margin-bottom:var(--space-5)}
    .gallery-intro p{color:var(--color-text-muted);max-width:52ch;line-height:1.8}
    .btn-outline{display:inline-flex;align-items:center;gap:var(--space-2);padding:.9rem 1.6rem;
      border:1px solid var(--color-border);border-radius:var(--radius-full);
      font-size:var(--text-sm);color:var(--color-text-muted);transition:all var(--transition);min-height:48px}
    .btn-outline:hover{border-color:var(--color-primary);color:var(--color-primary)}
    .masonry{columns:2 220px;column-gap:var(--space-3)}
    @media(min-width:700px){.masonry{columns:3 200px}}
    @media(min-width:1000px){.masonry{columns:4 200px}}
    .gallery-item{break-inside:avoid;margin-bottom:var(--space-3);border-radius:var(--radius-xl);overflow:hidden;position:relative;cursor:pointer}
    .gallery-item img{width:100%;display:block;transition:transform .5s ease}
    .gallery-item:hover img{transform:scale(1.04)}
    .gallery-item-ov{position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(26,20,12,.5));opacity:0;transition:opacity var(--transition)}
    .gallery-item:hover .gallery-item-ov{opacity:1}
    .gallery-cta{margin-top:clamp(var(--space-10),4vw,var(--space-16));display:flex;justify-content:center}

    /* ── LOCATION ── */
    .location{background:var(--color-bg)}
    @media(min-width:860px){.location-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(var(--space-10),6vw,var(--space-16));align-items:start}}
    .location-info h2{font-size:var(--text-2xl);font-weight:500;max-width:16ch;margin-bottom:var(--space-5)}
    .location-info p{color:var(--color-text-muted);max-width:48ch;line-height:1.8;margin-bottom:var(--space-6)}
    .loc-rows{display:grid;gap:var(--space-3);margin-bottom:var(--space-6)}
    .loc-row{display:flex;align-items:flex-start;gap:var(--space-4);padding:var(--space-4) var(--space-5);
      background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg)}
    .loc-row svg{flex-shrink:0;margin-top:.18rem;color:var(--color-primary)}
    .loc-row strong{font-size:var(--text-sm);font-weight:500;display:block}
    .loc-row span{font-size:var(--text-xs);color:var(--color-text-muted)}
    .btn-maps{display:inline-flex;align-items:center;gap:var(--space-2);padding:.9rem 1.7rem;
      background:var(--color-primary);color:var(--color-text-inverse);border-radius:var(--radius-full);
      font-size:var(--text-sm);font-weight:500;min-height:48px;transition:background var(--transition)}
    .btn-maps:hover{background:var(--color-primary-hover)}
    .map-wrap{border-radius:var(--radius-2xl);overflow:hidden;box-shadow:var(--shadow-lg);
      aspect-ratio:4/3;margin-top:var(--space-8)}
    @media(min-width:860px){.map-wrap{margin-top:0}}
    .map-wrap iframe{width:100%;height:100%;border:0;display:block}
    .map-caption{margin-top:var(--space-3);font-size:var(--text-xs);color:var(--color-text-faint);text-align:center;letter-spacing:.06em}

    /* ── BOOKING CTA ── */
    .booking{background:var(--color-surface)}
    @media(min-width:860px){.booking-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(var(--space-10),6vw,var(--space-16));align-items:center}}
    .booking-visual{border-radius:var(--radius-2xl);overflow:hidden;aspect-ratio:16/10;box-shadow:var(--shadow-lg);position:relative;margin-bottom:var(--space-5)}
    @media(min-width:860px){.booking-visual{margin-bottom:0}}
    .booking-visual img{width:100%;height:100%}
    .booking-tag{position:absolute;top:var(--space-5);left:var(--space-5);
      background:color-mix(in srgb,var(--color-bg) 88%,transparent);
      backdrop-filter:blur(10px);border:1px solid var(--color-border);
      border-radius:var(--radius-full);padding:.45rem 1rem;
      font-size:var(--text-xs);color:var(--color-text-muted);letter-spacing:.1em;text-transform:uppercase}
    .cal-widget{background:var(--color-bg);border:1px solid var(--color-border);
      border-radius:var(--radius-xl);padding:var(--space-5);box-shadow:var(--shadow-sm)}
    .cal-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:var(--space-4)}
    .cal-header span{font-size:var(--text-sm);font-weight:500}
    .cal-nav{display:flex;align-items:center;justify-content:center;width:32px;height:32px;
      border:1px solid var(--color-border);border-radius:var(--radius-full);
      color:var(--color-text-muted);transition:all var(--transition)}
    .cal-nav:hover{border-color:var(--color-primary);color:var(--color-primary)}
    .cal-dow{display:grid;grid-template-columns:repeat(7,1fr);gap:2px;margin-bottom:var(--space-2)}
    .cal-dow span{font-size:var(--text-xs);color:var(--color-text-faint);text-align:center;padding:.3rem 0}
    .cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:3px}
    .cal-cell{aspect-ratio:1;display:flex;align-items:center;justify-content:center;
      font-size:var(--text-xs);border-radius:var(--radius-md);cursor:pointer;
      color:var(--color-text-muted);transition:all var(--transition);min-height:34px}
    .cal-cell.avail{color:var(--color-text)}
    .cal-cell.avail:hover{background:var(--color-surface)}
    .cal-cell.sel{background:var(--color-primary);color:var(--color-text-inverse);font-weight:500}
    .cal-cell.today{border:1px solid var(--color-primary);color:var(--color-primary)}
    .cal-cell.past,.cal-cell.empty{color:var(--color-text-faint);cursor:default;opacity:.45}
    .cal-legend{display:flex;gap:var(--space-4);margin-top:var(--space-4);flex-wrap:wrap}
    .cal-legend-item{display:flex;align-items:center;gap:var(--space-2);font-size:var(--text-xs);color:var(--color-text-faint)}
    .cal-dot{width:8px;height:8px;border-radius:50%}
    .cal-dot.green{background:var(--color-primary)}
    .cal-dot.ring{border:1px solid var(--color-primary)}
    .slots-section{margin-top:var(--space-5);border-top:1px solid var(--color-divider);padding-top:var(--space-4);display:none}
    .slots-label{font-size:var(--text-xs);color:var(--color-text-muted);letter-spacing:.08em;text-transform:uppercase;margin-bottom:var(--space-3)}
    .slots-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-2)}
    .slot{display:flex;align-items:center;justify-content:center;padding:.5rem;
      background:var(--color-surface);border:1px solid var(--color-border);
      border-radius:var(--radius-md);font-size:var(--text-xs);cursor:pointer;
      transition:all var(--transition);min-height:38px}
    .slot:hover{border-color:var(--color-primary);color:var(--color-primary)}
    .slot.taken{background:var(--color-surface-offset);color:var(--color-text-faint);cursor:not-allowed;text-decoration:line-through}
    .booking-text{display:grid;gap:var(--space-6)}
    .booking-text h2{font-size:var(--text-2xl);font-weight:500;max-width:15ch}
    .booking-text p{color:var(--color-text-muted);max-width:50ch;line-height:1.8}
    .booking-pills{display:flex;flex-wrap:wrap;gap:var(--space-2)}
    .booking-actions{display:flex;flex-wrap:wrap;gap:var(--space-4);align-items:center}
    .btn-primary{display:inline-flex;align-items:center;gap:var(--space-2);padding:1rem 2rem;
      background:var(--color-primary);color:var(--color-text-inverse);border-radius:var(--radius-full);
      font-size:var(--text-sm);font-weight:500;min-height:52px;transition:background var(--transition),box-shadow var(--transition)}
    .btn-primary:hover{background:var(--color-primary-hover);box-shadow:var(--shadow-md)}
    .btn-secondary{display:inline-flex;align-items:center;gap:var(--space-2);padding:1rem 1.8rem;
      border:1px solid var(--color-border);border-radius:var(--radius-full);
      font-size:var(--text-sm);color:var(--color-text-muted);min-height:52px;transition:all var(--transition)}
    .btn-secondary:hover{border-color:var(--color-primary);color:var(--color-primary)}
    .booking-note{font-size:var(--text-xs);color:var(--color-text-faint)}
    .booking-note strong{color:var(--color-text-muted)}

    /* ── CONTACT ── */
    .contact{background:var(--color-bg)}
    @media(min-width:860px){.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:clamp(var(--space-10),6vw,var(--space-16));align-items:start}}
    .contact-info h2{font-size:var(--text-2xl);font-weight:500;max-width:16ch;margin-bottom:var(--space-5)}
    .contact-info p{color:var(--color-text-muted);max-width:48ch;line-height:1.8;margin-bottom:var(--space-8)}
    .channels{display:grid;gap:var(--space-3)}
    .channel{display:flex;align-items:center;gap:var(--space-4);padding:var(--space-4) var(--space-5);
      background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);
      transition:all var(--transition)}
    .channel:hover{border-color:var(--color-primary);transform:translateX(3px)}
    .channel-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;
      background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius-md);
      flex-shrink:0;color:var(--color-primary)}
    .channel strong{font-size:var(--text-sm);font-weight:500;display:block}
    .channel span{font-size:var(--text-xs);color:var(--color-text-muted)}
    .cf-wrap{background:var(--color-surface);border:1px solid var(--color-border);
      border-radius:var(--radius-2xl);padding:clamp(var(--space-6),4vw,var(--space-10));margin-top:var(--space-8)}
    @media(min-width:860px){.cf-wrap{margin-top:0}}
    .cf-wrap h3{font-size:var(--text-xl);font-weight:500;margin-bottom:var(--space-6)}
    .form-grid{display:grid;gap:var(--space-4)}
    .form-row{display:grid;gap:var(--space-4)}
    @media(min-width:520px){.form-row{grid-template-columns:1fr 1fr}}
    .field{display:flex;flex-direction:column;gap:var(--space-2)}
    .field label{font-size:var(--text-xs);letter-spacing:.1em;text-transform:uppercase;color:var(--color-text-muted);font-weight:500}
    .field input,.field textarea,.field select{padding:.8rem 1rem;background:var(--color-bg);
      border:1px solid var(--color-border);border-radius:var(--radius-lg);
      font-size:var(--text-sm);outline:none;transition:border-color var(--transition),box-shadow var(--transition);resize:vertical}
    .field input::placeholder,.field textarea::placeholder{color:var(--color-text-faint)}
    .field input:focus,.field textarea:focus,.field select:focus{border-color:var(--color-primary);
      box-shadow:0 0 0 3px color-mix(in srgb,var(--color-primary) 15%,transparent)}
    .field textarea{min-height:120px}
    .btn-send{width:100%;display:flex;align-items:center;justify-content:center;gap:var(--space-2);
      padding:1rem;background:var(--color-primary);color:var(--color-text-inverse);
      border-radius:var(--radius-lg);font-size:var(--text-sm);font-weight:500;min-height:52px;
      transition:background var(--transition),box-shadow var(--transition);margin-top:var(--space-2)}
    .btn-send:hover{background:var(--color-primary-hover);box-shadow:var(--shadow-md)}
    .form-success{text-align:center;padding:var(--space-8);color:var(--color-success)}
    .form-success svg{margin:0 auto var(--space-4)}
    .form-success h4{font-size:var(--text-lg);margin-bottom:var(--space-2)}
    .form-success p{font-size:var(--text-sm);color:var(--color-text-muted);max-width:none}
    .field-error {display: block;margin-top: var(--space-1);font-size: var(--text-xs);color: #cc0000;}

    /* ── DONATE ── */
    .donate{background:var(--color-surface)}
    @media(min-width:860px){.donate-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(var(--space-10),6vw,var(--space-16));align-items:center}}
    .donate-text h2{font-size:var(--text-2xl);font-weight:500;max-width:16ch;margin-bottom:var(--space-5)}
    .donate-text p{color:var(--color-text-muted);max-width:50ch;line-height:1.8}
    .donate-text p+p{margin-top:var(--space-4)}

    .donate-img{border-radius:var(--radius-2xl);overflow:hidden;aspect-ratio:4/3;
      box-shadow:var(--shadow-lg);position:relative;margin-top:var(--space-8)}
    @media(min-width:860px){.donate-img{margin-top:0}}
    .donate-img img{width:100%;height:100%}
    .donate-img figcaption{position:absolute;bottom:0;left:0;right:0;padding:var(--space-5);
      background:linear-gradient(to top,rgba(20,16,8,.65),transparent);
      color:var(--color-text-inverse);font-size:var(--text-xs);letter-spacing:.08em;text-transform:uppercase}
    .donate-action {margin-top: var(--space-4);}
    .donate-iban {margin-top: var(--space-4);}

    /* ── FOOTER ── */
    footer{background:var(--color-text);color:var(--color-text-inverse)}
    .footer-top{padding-block:clamp(var(--space-12),7vw,var(--space-20));border-bottom:1px solid rgba(250,248,243,.1)}
    .footer-grid{display:grid;gap:clamp(var(--space-10),5vw,var(--space-16))}
    @media(min-width:700px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr}}
    .footer-brand{display:grid;gap:var(--space-5)}
    .footer-logo{display:flex;align-items:center;gap:var(--space-3)}
    .footer-logo strong{font-family:var(--font-display);font-size:var(--text-lg);font-weight:600}
    .footer-logo span{font-size:var(--text-xs);letter-spacing:.12em;text-transform:uppercase;color:rgba(250,248,243,.5)}
    .footer-brand p{font-size:var(--text-sm);color:rgba(250,248,243,.6);max-width:36ch;line-height:1.7}
    .socials{display:flex;gap:var(--space-3)}
    .social-link{display:flex;align-items:center;justify-content:center;width:40px;height:40px;
      border:1px solid rgba(250,248,243,.15);border-radius:var(--radius-full);
      color:rgba(250,248,243,.55);transition:all var(--transition)}
    .social-link:hover{border-color:rgba(250,248,243,.4);color:#faf8f3}
    .footer-col h4{font-family:var(--font-body);font-size:var(--text-xs);letter-spacing:.18em;
      text-transform:uppercase;color:rgba(250,248,243,.4);margin-bottom:var(--space-5);font-weight:500}
    .footer-links{display:flex;flex-direction:column;gap:var(--space-3)}
    .footer-links a{font-size:var(--text-sm);color:rgba(250,248,243,.65);transition:color var(--transition)}
    .footer-links a:hover{color:#faf8f3}
    .footer-contact-item{display:flex;align-items:flex-start;gap:var(--space-3);
      font-size:var(--text-sm);color:rgba(250,248,243,.65);margin-bottom:var(--space-4)}
    .footer-contact-item svg{flex-shrink:0;color:rgba(250,248,243,.35);margin-top:.2rem}
    .footer-bottom{padding-block:var(--space-6);display:flex;flex-wrap:wrap;gap:var(--space-4);
      align-items:center;justify-content:space-between}
    .footer-bottom p{font-size:var(--text-xs);color:rgba(250,248,243,.35)}
    .footer-bottom-links{display:flex;gap:var(--space-5)}
    .footer-bottom-links a{font-size:var(--text-xs);color:rgba(250,248,243,.35);transition:color var(--transition)}
    .footer-bottom-links a:hover{color:rgba(250,248,243,.7)}
    .lang-switch{display:inline-flex;align-items:center;gap:var(--space-1);padding:.35rem .75rem;
      border:1px solid rgba(250,248,243,.2);border-radius:var(--radius-full);
      font-size:var(--text-xs);color:rgba(250,248,243,.5);cursor:pointer;
      transition:all var(--transition)}
    .lang-switch:hover{border-color:rgba(250,248,243,.4);color:rgba(250,248,243,.8)}

    /* ── REVEAL ── */
    .reveal{opacity:0;transform:translateY(18px);transition:opacity .55s ease,transform .55s ease}
    .reveal.visible{opacity:1;transform:none}
    @media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none}}

    /* ══════════════════════════════════════════
    BOOKING WIDGET
    ══════════════════════════════════════════ */
    .booking-widget {
    max-width: 860px;
    margin-inline: auto;
    }

    /* Layout 2 coloane */
    .bw-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-6);
    align-items: start;
    }
    @media (max-width: 700px) {
    .bw-layout { grid-template-columns: 1fr; }
    }

    /* ── Calendar ── */
    .bw-calendar {
    background: var(--color-surface);
    border: 1px solid oklch(from var(--color-text) l c h / 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    }

    .bw-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
    }
    .bw-month-label { font-size: var(--text-base); font-weight: 600; }
    .bw-nav-btn {
    width: 32px; height: 32px;
    border-radius: var(--radius-md);
    border: 1px solid oklch(from var(--color-text) l c h / 0.12);
    background: var(--color-surface-2);
    color: var(--color-text);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--transition-interactive);
    }
    .bw-nav-btn:hover:not(:disabled) { background: var(--color-surface-dynamic); }
    .bw-nav-btn:disabled { opacity: .35; cursor: default; }

    .bw-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 2px; margin-bottom: var(--space-2);
    }
    .bw-weekdays div {
    text-align: center; font-size: var(--text-xs);
    font-weight: 600; color: var(--color-text-muted);
    padding: var(--space-1) 0;
    }

    .bw-days {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
    }
    .bw-day-empty { aspect-ratio: 1; }

    .bw-day {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2px;
    transition: background var(--transition-interactive),
                border-color var(--transition-interactive);
    position: relative;
    }
    .bw-day-num { font-size: clamp(0.7rem, 1.5vw, 0.8rem); font-weight: 500; }
    .bw-day-dot {
    width: 4px; height: 4px; border-radius: 50%;
    }
    .bw-day-dot--ok      { background: var(--color-primary); }
    .bw-day-dot--today   { background: var(--color-gold); }
    .bw-day-dot--blocked { background: var(--color-notification); }

    /* États */
    .bw-day--past     { opacity: .3; cursor: default; }
    .bw-day--blocked  { opacity: .45; cursor: default; }
    .bw-day--full     { opacity: .5; cursor: default; }

    .bw-day--available:hover {
    background: var(--color-primary-highlight);
    border-color: var(--color-primary);
    }
    .bw-day--selected {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-text-inverse);
    }
    .bw-day--selected .bw-day-dot { background: rgba(255,255,255,.7); }
    .bw-day--today .bw-day-num { font-weight: 700; }

    /* Legendă */
    .bw-legend {
    display: flex; gap: var(--space-4); flex-wrap: wrap;
    margin-top: var(--space-3); padding-top: var(--space-3);
    border-top: 1px solid var(--color-divider);
    font-size: var(--text-xs); color: var(--color-text-muted);
    }
    .bw-legend span { display: flex; align-items: center; gap: var(--space-1); }
    .bw-leg-dot {
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
    }
    .bw-leg-dot--ok      { background: var(--color-primary); }
    .bw-leg-dot--full    { background: var(--color-text-faint); }
    .bw-leg-dot--blocked { background: var(--color-notification); }

    /* ── Panoul drept ── */
    .bw-right {
    background: var(--color-surface);
    border: 1px solid oklch(from var(--color-text) l c h / 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    min-height: 280px;
    }

    .bw-placeholder {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    height: 200px; color: var(--color-text-muted);
    font-size: var(--text-sm);
    }

    .bw-selected-date {
    display: flex; align-items: center; gap: var(--space-2);
    font-size: var(--text-sm); font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-divider);
    text-transform: capitalize;
    }

    /* Sloturi */
    .bw-slots-label {
    font-size: var(--text-sm); font-weight: 600;
    margin-bottom: var(--space-3);
    }
    .bw-slots { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }

    .bw-slot {
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid oklch(from var(--color-text) l c h / 0.1);
    background: var(--color-surface-2);
    cursor: pointer;
    transition: background var(--transition-interactive),
                border-color var(--transition-interactive);
    }
    .bw-slot:hover:not(:disabled):not(.bw-slot--full) {
    background: var(--color-primary-highlight);
    border-color: var(--color-primary);
    }
    .bw-slot--selected {
    background: var(--color-primary-highlight) !important;
    border-color: var(--color-primary) !important;
    }
    .bw-slot--full { opacity: .5; cursor: default; }
    .bw-slot-label { font-size: var(--text-sm); font-weight: 500; }

    .bw-slot-badge {
    font-size: var(--text-xs); font-weight: 600;
    padding: .15rem .5rem; border-radius: var(--radius-full);
    }
    .bw-badge--ok   { background: var(--color-primary-highlight); color: var(--color-primary); }
    .bw-badge--full { background: var(--color-surface-dynamic); color: var(--color-text-muted); }

    /* ── Formular ── */
    .bw-form {
    border-top: 1px solid var(--color-divider);
    padding-top: var(--space-4);
    margin-top: var(--space-2);
    }
    .bw-form-title {
    font-size: var(--text-sm); font-weight: 600;
    margin-bottom: var(--space-4);
    }
    .bw-field { margin-bottom: var(--space-3); }
    .bw-field label {
    display: block; font-size: var(--text-sm); font-weight: 500;
    margin-bottom: var(--space-1);
    }
    .bw-field input, .bw-field select {
    width: 100%; padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    background: var(--color-surface-2);
    color: var(--color-text);
    transition: border-color var(--transition-interactive);
    }
    .bw-field input:focus, .bw-field select:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-color: var(--color-primary);
    }
    .bw-field-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
    }
    @media (max-width: 480px) { .bw-field-row { grid-template-columns: 1fr; } }
    .bw-field-hint {
    font-size: var(--text-xs); color: var(--color-text-muted);
    margin: calc(-1 * var(--space-2)) 0 var(--space-3);
    }
    .bw-error {
    display: block; font-size: var(--text-xs);
    color: var(--color-error); margin-top: var(--space-1);
    }

    .bw-submit {
    width: 100%; padding: var(--space-3);
    background: var(--color-primary); color: var(--color-text-inverse);
    border: none; border-radius: var(--radius-md);
    font-size: var(--text-sm); font-weight: 600;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: var(--space-2);
    transition: background var(--transition-interactive);
    margin-top: var(--space-2);
    }
    .bw-submit:hover:not(:disabled) { background: var(--color-primary-hover); }
    .bw-submit:disabled { opacity: .6; cursor: default; }

    /* ── Success ── */
    .bw-success {
    text-align: center; padding: var(--space-12) var(--space-8);
    }
    .bw-success-icon {
    display: inline-flex; color: var(--color-primary);
    margin-bottom: var(--space-4);
    }
    .bw-success h3 {
    font-size: var(--text-xl); margin-bottom: var(--space-2);
    }
    .bw-success > p {
    color: var(--color-text-muted); margin-bottom: var(--space-6);
    }
    .bw-success-code {
    display: inline-flex; flex-direction: column; align-items: center;
    background: var(--color-primary-highlight);
    border: 1px solid oklch(from var(--color-primary) l c h / 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-8);
    margin-bottom: var(--space-6);
    }
    .bw-success-code span { font-size: var(--text-xs); color: var(--color-text-muted); }
    .bw-success-code strong { font-size: var(--text-xl); letter-spacing: .15em; color: var(--color-primary); }
    .bw-success-detail {
    display: flex; flex-direction: column; gap: var(--space-2);
    font-size: var(--text-sm); color: var(--color-text-muted);
    margin-bottom: var(--space-5);
    }
    .bw-success-detail div {
    display: flex; align-items: center; justify-content: center; gap: var(--space-2);
    }
    .bw-success-note {
    font-size: var(--text-sm); color: var(--color-text-muted);
    margin-bottom: var(--space-2);
    }
    .bw-reset-btn {
    margin-top: var(--space-6);
    padding: var(--space-2) var(--space-6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: transparent; color: var(--color-text);
    font-size: var(--text-sm); cursor: pointer;
    transition: background var(--transition-interactive);
    }
    .bw-reset-btn:hover { background: var(--color-surface-dynamic); }

    /* Ghizi — grid 2 coloane */
    .guide-grid--expanded {
        align-items: start;
        gap: var(--space-10);
    }

    .guide-body--profiles {
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
    }

    .guide-profiles {
        display: grid;
        gap: var(--space-5);
    }

    .guide-profile {
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        padding: var(--space-6);
        box-shadow: var(--shadow-sm);
    }

    .guide-profile-head {
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-3);
        border-bottom: 1px solid var(--color-divider);
    }

    .guide-profile-head h3 {
        font-family: var(--font-display);
        font-size: var(--text-xl);
        line-height: 1.1;
        margin: 0;
    }

    .guide-profile-head p {
        margin-top: var(--space-2);
        color: var(--color-text-muted);
        font-size: var(--text-sm);
    }

    .guide-profile-text > p,
    .guide-more p {
        margin-bottom: var(--space-4);
    }

    .guide-profile-text p:last-child,
    .guide-more p:last-child {
        margin-bottom: 0;
    }

    .guide-highlight {
        font-family: var(--font-display);
        font-size: var(--text-lg);
        line-height: 1.35;
        color: var(--color-text);
        font-weight: 600;
    }

    .guide-toggle {
        margin-top: var(--space-4);
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: 0;
        background: transparent;
        border: none;
        color: var(--color-primary);
        font-size: var(--text-sm);
        font-weight: 500;
        cursor: pointer;
    }

    .guide-toggle svg {
        transition: transform 180ms ease;
    }

    .guide-toggle[aria-expanded="true"] svg {
        transform: rotate(180deg);
    }

    @media (max-width: 1024px) {
        .guide-grid--expanded {
            grid-template-columns: 1fr;
        }

        .guide-portrait {
            max-width: 720px;
        }
    }