    /* ── Variables ──────────────────────────────────────────────────── */
    :root {
      --cream:      #F7F3EE;
      --warm-white: #FFF;
      --clay:       #8B5E3C;
      --terracotta: #C4704A;
      --vine:       #2E3D2F;
      --gold:       orange;
      --fog:        #D6CFC6;
      --text:       #1A1A18;
      --text-muted: #6B6560;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; font-weight: 300; -webkit-font-smoothing: antialiased; }

    /* ── Site Header ────────────────────────────────────────────────── */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
      background: transparent;
      border-bottom: 1px solid rgba(247,243,238,0.1);
      transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
    }
    .site-header.scrolled {
      background: rgba(247,243,238,0.96);
      border-bottom-color: rgba(196,112,74,0.12);
      box-shadow: 0 2px 24px rgba(0,0,0,0.06);
      backdrop-filter: blur(12px);
    }
    .navbar { padding: 1.25rem 0; }
    .navbar-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.65rem; font-weight: 300; letter-spacing: 0.06em;
      color: #fff !important; text-decoration: none;
      transition: color 0.3s;
    }
    .navbar-brand span { color: var(--gold); font-style: italic; }
    .site-header.scrolled .navbar-brand { color: var(--vine) !important; }
    .site-header.scrolled .navbar-brand span { color: var(--terracotta); }

    .desktop-nav { display: flex; align-items: center; gap: 4px; }
    .nav-link {
      font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.85) !important; padding: 0.4rem 0.9rem !important;
      text-decoration: none; transition: color 0.2s;
    }
    .nav-link:hover { color: var(--gold) !important; }
    .site-header.scrolled .nav-link { color: var(--text-muted) !important; }
    .site-header.scrolled .nav-link:hover { color: var(--terracotta) !important; }
    .nav-cta {
      background: rgba(255,255,255,0.15) !important; color: #fff !important;
      border: 1px solid rgba(255,255,255,0.4) !important;
      border-radius: 2px; margin-left: 8px; transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--terracotta) !important; border-color: var(--terracotta) !important; }
    .site-header.scrolled .nav-cta { background: var(--vine) !important; border-color: var(--vine) !important; }
    .site-header.scrolled .nav-cta:hover { background: var(--terracotta) !important; }

    /* ── Hamburger ──────────────────────────────────────────────────── */
    .mobile-nav-toggle {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 36px; height: 36px; padding: 0; background: none; border: none; cursor: pointer; z-index: 1100;
    }
    .mobile-nav-toggle__bar {
      display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }
    .site-header.scrolled .mobile-nav-toggle__bar { background: var(--vine); }
    .mobile-nav-toggle.is-open .mobile-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-nav-toggle.is-open .mobile-nav-toggle__bar:nth-child(2) { opacity: 0; width: 0; }
    .mobile-nav-toggle.is-open .mobile-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 991px) {
      .desktop-nav { display: none !important; }
      .mobile-nav-toggle { display: flex; }
    }

    /* ── Mobile Drawer ──────────────────────────────────────────────── */
    .mobile-drawer {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(320px, 88vw); background: var(--warm-white);
      z-index: 1200; display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
      box-shadow: -8px 0 40px rgba(0,0,0,0.12);
      overflow-y: auto;
    }
    .mobile-drawer.is-open { transform: translateX(0); }
    .mobile-drawer__head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--fog); flex-shrink: 0;
    }
    .mobile-drawer__brand {
      font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
      font-weight: 300; color: var(--vine); text-decoration: none;
    }
    .mobile-drawer__brand span { color: var(--terracotta); font-style: italic; }
    .mobile-drawer__close {
      background: none; border: none; font-size: 1.8rem; line-height: 1;
      color: var(--text-muted); cursor: pointer; padding: 0 0.25rem;
    }
    .mobile-drawer__close:hover { color: var(--terracotta); }
    .mobile-drawer__nav { flex: 1; padding: 1rem 0; }
    .mobile-drawer__list { list-style: none; margin: 0; padding: 0; }
    .mobile-drawer__item { border-bottom: 1px solid rgba(214,207,198,0.6); }
    .mobile-drawer__link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 1.5rem; font-size: 1rem; font-weight: 300;
      color: var(--text); text-decoration: none; transition: color 0.2s, background 0.2s;
    }
    .mobile-drawer__link::after { content: '→'; font-size: 0.85rem; color: var(--fog); transition: color 0.2s, transform 0.2s; }
    .mobile-drawer__link:hover { color: var(--terracotta); background: rgba(196,112,74,0.04); }
    .mobile-drawer__link:hover::after { color: var(--terracotta); transform: translateX(3px); }
    .mobile-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--fog); background: var(--cream); flex-shrink: 0; }
    .mobile-drawer__contact { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; }
    .mobile-drawer__contact a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; }
    .mobile-drawer__contact a:hover { color: var(--terracotta); }
    .mobile-drawer__backdrop {
      position: fixed; inset: 0; background: rgba(46,61,47,0.5); z-index: 1199;
      opacity: 0; pointer-events: none; transition: opacity 0.38s ease; backdrop-filter: blur(2px);
    }
    .mobile-drawer__backdrop.is-visible { opacity: 1; pointer-events: auto; }
    body.drawer-open { overflow: hidden; }

    /* ── Video Hero ──────────────────────────────────────────────────── */
    .video-hero {
      position: relative; width: 100%; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
    }
    .video-hero__bg { position: absolute; inset: 0; z-index: 0; }
    .video-hero__video {
      width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
      background: var(--vine) url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
    }
    .video-hero__overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to right, rgba(46,61,47,0.75) 0%, rgba(46,61,47,0.4) 60%, rgba(46,61,47,0.15) 100%),
        linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
    }
    .video-hero__content {
      position: relative; z-index: 1;
      padding-top: 120px; padding-bottom: 7rem;
    }
    .video-hero__eyebrow {
      font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: 0.8rem;
      animation: fadeUp 0.8s ease both 0.1s;
    }
    .video-hero__eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }
    .video-hero__title {
      font-family: 'Cormorant Garamond', serif; font-weight: 300;
      font-size: clamp(3rem,6vw,6rem); line-height: 1.04; color: var(--cream);
      margin-bottom: 1.5rem; animation: fadeUp 0.9s ease both 0.2s;
    }
    .video-hero__title em { font-style: italic; color: var(--gold); }
    .video-hero__sub {
      font-size: clamp(1rem,1.4vw,1.15rem); font-weight: 300;
      color: rgba(247,243,238,0.82); line-height: 1.8; max-width: 520px;
      margin-bottom: 2.5rem; animation: fadeUp 1s ease both 0.35s;
    }
    .video-hero__actions {
      display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
      animation: fadeUp 1s ease both 0.5s;
    }
    .video-hero__badge {
      position: absolute; bottom: 3.5rem; right: 0;
      background: rgba(253,250,246,0.96); border: 1px solid var(--fog);
      padding: 1.1rem 1.6rem; border-radius: 4px 0 0 4px;
      box-shadow: -6px 6px 30px rgba(0,0,0,0.12);
      animation: fadeIn 1.2s ease both 0.7s; text-align: center;
    }
    @media (max-width: 576px) { .video-hero__badge { display: none; } }
    .video-hero__badge-num { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; color:var(--vine); line-height:1; }
    .video-hero__badge-label { font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); margin-top:0.2rem; line-height:1.4; }
    .video-hero__scroll-cue { position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); animation:fadeIn 1.5s ease both 1.2s; }
    .video-hero__scroll-cue span { display:block; width:1px; height:52px; background:linear-gradient(to bottom,rgba(247,243,238,0),rgba(247,243,238,0.5)); margin:0 auto; animation:scrollDrop 2s ease-in-out infinite; }

    /* ── Buttons ─────────────────────────────────────────────────────── */
    .btn {
      font-family: 'DM Sans', sans-serif; letter-spacing: 0.1em; text-transform: uppercase;
      font-size: 0.8rem; border-radius: 2px; transition: background 0.2s, transform 0.2s, border-color 0.2s;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
    .btn-primary:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
    .btn-secondary { background: var(--vine); border-color: var(--vine); color: var(--cream); }
    .btn-secondary:hover { background: #1e2920; border-color: #1e2920; color: var(--cream); }
    .btn-outline-primary { border-color: var(--terracotta); color: var(--terracotta); }
    .btn-outline-primary:hover { background: var(--terracotta); color: #fff; }
    .btn-arrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.82rem; letter-spacing: 0.08em; color: var(--vine);
      text-decoration: none; transition: gap 0.2s, color 0.2s;
      background: none; border: none; padding: 0;
    }
    .btn-arrow:hover { gap: 0.9rem; color: var(--terracotta); }
    .btn-arrow--light { color: rgba(247,243,238,0.9) !important; }
    .btn-arrow--light:hover { color: var(--gold) !important; }

    /* ── Stats Bar ───────────────────────────────────────────────────── */
    .stats-bar { background: var(--vine); padding: 2.5rem 0; }
    .stat-block__num { font-family:'Cormorant Garamond',serif; font-size:2.4rem; font-weight:300; color:var(--gold); line-height:1; }
    .stat-block__label { font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:rgba(247,243,238,0.6); margin-top:0.25rem; }

    /* ── Sections ────────────────────────────────────────────────────── */
    .section { padding: 7rem 0; }
    .section--cream { background: var(--cream); }
    .section--white { background: var(--warm-white); }
    .section--vine  { background: var(--vine); }
    @media (max-width: 768px) { .section { padding: 5rem 0; } }

    .eyebrow {
      font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--terracotta); margin-bottom: 0.75rem;
      display: flex; align-items: center; gap: 0.8rem;
    }
    .eyebrow::before { content:''; display:block; width:24px; height:1px; background:var(--terracotta); }
    .eyebrow--gold { color: var(--gold); }
    .eyebrow--gold::before { background: var(--gold); }
    .section-title {
      font-family: 'Cormorant Garamond', serif; font-weight: 300;
      font-size: clamp(2rem,3.5vw,3.4rem); line-height: 1.12; color: var(--vine);
    }
    .section-title em { font-style: italic; color: var(--terracotta); }
    .tag {
      display: inline-block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--terracotta); border: 1px solid var(--terracotta);
      padding: 0.2rem 0.65rem; border-radius: 2px; margin-bottom: 0.75rem;
    }
    .icon-circle {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(196,112,74,0.1); display: flex; align-items: center;
      justify-content: center; font-size: 1rem; flex-shrink: 0;
    }

    /* ── Tour Cards ──────────────────────────────────────────────────── */
    .tour-card {
      background: var(--cream); border: 1px solid var(--fog);
      border-radius: 4px; overflow: hidden; height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
    .tour-card__img { width:100%; height:220px; object-fit:cover; display:block; background:var(--fog); }
    .tour-card__body { padding: 1.75rem; }
    .tour-card__name { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--vine); margin-bottom:0.5rem; }
    .tour-card__desc { font-size:0.88rem; color:var(--text-muted); line-height:1.7; font-weight:300; margin-bottom:1.25rem; }
    .tour-card__footer { display:flex; justify-content:space-between; align-items:center; padding-top:1.1rem; border-top:1px solid var(--fog); }
    .tour-card__price { font-family:'Cormorant Garamond',serif; font-size:1.4rem; color:var(--vine); }
    .tour-card__price small { font-family:'DM Sans',sans-serif; font-size:0.72rem; color:var(--text-muted); }
    .tour-card__link { font-size:0.75rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--terracotta); text-decoration:none; transition:letter-spacing 0.2s; }
    .tour-card__link:hover { letter-spacing:0.2em; color:var(--clay); }

    /* ── About Strip ─────────────────────────────────────────────────── */
    .about-strip__image-wrap { position: relative; }
    .about-strip__accent {
      position: absolute; bottom: -2rem; right: -2rem; width: 170px;
      background: var(--vine); border-radius: 4px; padding: 1.75rem; text-align: center; color: var(--cream);
    }
    .accent-box__num { font-family:'Cormorant Garamond',serif; font-size:2.8rem; font-weight:300; color:var(--gold); line-height:1; }
    .accent-box__label { font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(247,243,238,0.65); margin-top:0.3rem; line-height:1.4; }
    .feature-item { display: flex; gap: 1rem; align-items: flex-start; }
    .feature-item__text { font-size:0.88rem; color:var(--text-muted); line-height:1.6; }
    .feature-item__text strong { display:block; color:var(--vine); font-weight:500; margin-bottom:0.15rem; }

    /* ── Gallery Grid ────────────────────────────────────────────────── */
    .gallery-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 240px 240px; gap: 0.75rem;
    }
    .gallery-grid__item { border-radius:4px; overflow:hidden; transition:transform 0.4s; }
    .gallery-grid__item:first-child { grid-row: 1 / 3; }
    .gallery-grid__item:hover { transform: scale(1.02); }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-grid__item:first-child { grid-row: auto; }
    }

    /* ── Testimonials ────────────────────────────────────────────────── */
    .testimonial-card { background:var(--warm-white); border:1px solid var(--fog); border-radius:4px; padding:2rem; height:100%; }
    .testimonial-card__quote { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-style:italic; font-weight:300; color:var(--vine); line-height:1.75; margin-bottom:1.5rem; }
    .testimonial-card__author { display:flex; align-items:center; gap:0.75rem; }
    .testimonial-card__avatar { width:42px; height:42px; border-radius:50%; background:var(--fog); display:flex; align-items:center; justify-content:center; font-size:1.2rem; }
    .testimonial-card__name { font-size:0.88rem; font-weight:500; color:var(--vine); }
    .testimonial-card__origin { font-size:0.75rem; color:var(--text-muted); }
    .stars { color:var(--gold); letter-spacing:0.08em; font-size:0.9rem; margin-bottom:0.75rem; }

    /* ── Reveal animations ───────────────────────────────────────────── */
    .reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease, transform 0.7s ease; }
    .reveal.is-visible { opacity:1; transform:translateY(0); }

    /* ── Footer ──────────────────────────────────────────────────────── */
    .site-footer { background:var(--vine); color:var(--cream); padding:3.5rem 0; }
    .site-footer__brand { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:300; color:var(--cream); text-decoration:none; }
    .site-footer__brand span { color:var(--gold); font-style:italic; }
    .site-footer__tagline { font-size:0.8rem; color:rgba(247,243,238,0.5); margin-top:0.4rem; }
    .site-footer__nav { list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:0.25rem 1.5rem; }
    .site-footer__nav a { font-size:0.8rem; letter-spacing:0.08em; text-transform:uppercase; color:rgba(247,243,238,0.6); text-decoration:none; transition:color 0.2s; }
    .site-footer__nav a:hover { color:var(--gold); }
    .site-footer__copy { font-size:0.75rem; color:rgba(247,243,238,0.4); }
    .site-footer__divider { border-color:rgba(247,243,238,0.1); margin:2rem 0 1.5rem; }
    .footer-col-title { font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:rgba(247,243,238,0.45); margin-bottom:1rem; }

    /* ── Keyframes ───────────────────────────────────────────────────── */
    @keyframes fadeUp  { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeIn  { from{opacity:0} to{opacity:1} }
    @keyframes scrollDrop { 0%,100%{opacity:0;transform:translateY(-8px)} 50%{opacity:1;transform:translateY(8px)} }