/* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --navy:   #0c3347;
      --navy-mid: #1a5270;
      --navy-light: #2a6b85;
      --teal:   #2ab8c5;
      --teal-light: #3dcbdc;
      --gold:   #c4894a;
      --gold-light: #d9a06a;
      --gold-pale: #f0e0cc;
      --sage:   #4ab87a;
      --sage-light: #6ecf96;
      --cream:  #faf8f3;
      --cream-dark: #f0ebe0;
      --text-dark: #1a1a2e;
      --text-mid: #3d3d5c;
      --text-light: #7a7a9a;
      --white:  #ffffff;
      --nav-height: 80px;
      --transition: 0.3s ease;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Inter', 'Lato', sans-serif;
      background-color: var(--cream);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ============================================================
       UTILITY CLASSES
    ============================================================ */
    .serif { font-family: 'Playfair Display', Georgia, serif; }
    .gold-text { color: var(--gold); }
    .teal-text { color: var(--teal); }

    .btn {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      padding: 14px 32px;
      border-radius: 4px;
      transition: all var(--transition);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--navy);
    }
    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(201,168,76,0.35);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.7);
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
      transform: translateY(-1px);
    }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
      transition: box-shadow var(--transition), background var(--transition);
    }

    .nav.scrolled {
      background: rgba(10, 22, 40, 0.97);
      box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    }

    /* ---- Logo ---- */
    .nav__logo {
      flex: 0 0 auto;
      text-decoration: none;
    }

    .nav__logo-text {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      letter-spacing: 0.02em;
    }

    .nav__logo-sub {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.48rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.65);
      margin-top: 2px;
    }

    /* ---- Center links ---- */
    .nav__links {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      list-style: none;
    }

    .nav__links > li {
      position: relative;
    }

    .nav__links > li > a,
    .nav__links > li > button {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.80);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 3px;
      transition: color var(--transition), background var(--transition);
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    .nav__links > li > a:hover,
    .nav__links > li > button:hover,
    .nav__links > li > a.active {
      color: var(--gold);
      background: rgba(201,168,76,0.08);
    }

    .nav__links > li > a.active {
      color: var(--gold);
    }

    /* Dropdown caret */
    .nav__caret {
      font-size: 0.6rem;
      transition: transform var(--transition);
    }

    .nav__links > li.open > button .nav__caret {
      transform: rotate(180deg);
    }

    /* ---- Dropdown menu ---- */
    .nav__dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      min-width: 160px;
      background: var(--navy-mid);
      border: 1px solid rgba(201,168,76,0.18);
      border-radius: 6px;
      padding: 8px 0;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
      transform: translateX(-50%) translateY(-6px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }

    .nav__links > li.open .nav__dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    .nav__dropdown li a {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      padding: 10px 20px;
      transition: color var(--transition), background var(--transition);
    }

    .nav__dropdown li a:hover {
      color: var(--gold);
      background: rgba(201,168,76,0.08);
    }

    /* Gold divider line inside dropdown */
    .nav__dropdown li + li {
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* ---- Right side: social + reserve ---- */
    .nav__right {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav__social {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color var(--transition);
    }

    .nav__social-link:hover {
      color: var(--gold);
    }

    .nav__social-link svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .nav__reserve {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--gold);
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 4px;
      white-space: nowrap;
      transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    }

    .nav__reserve:hover {
      background: var(--gold-light);
      box-shadow: 0 4px 16px rgba(201,168,76,0.4);
      transform: translateY(-1px);
    }

    /* ---- Hamburger ---- */
    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav__hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: rgba(255,255,255,0.85);
      border-radius: 2px;
      transition: all var(--transition);
    }

    .nav__hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav__hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav__hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ---- Mobile drawer ---- */
    .nav__mobile-drawer {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: var(--navy-mid);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      padding: 20px 0 28px;
      z-index: 999;
      transform: translateY(-8px);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition), transform var(--transition);
      box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    }

    .nav__mobile-drawer.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .nav__mobile-list {
      list-style: none;
    }

    .nav__mobile-list li a,
    .nav__mobile-list li button {
      display: block;
      width: 100%;
      text-align: left;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.80);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 13px 32px;
      transition: color var(--transition), background var(--transition);
    }

    .nav__mobile-list li a:hover,
    .nav__mobile-list li button:hover {
      color: var(--gold);
      background: rgba(201,168,76,0.06);
    }

    .nav__mobile-submenu {
      list-style: none;
      background: rgba(255,255,255,0.03);
      border-left: 2px solid rgba(201,168,76,0.3);
      margin: 0 32px;
      display: none;
    }

    .nav__mobile-submenu.open { display: block; }

    .nav__mobile-submenu li a {
      font-size: 0.73rem;
      padding: 10px 20px;
      color: rgba(255,255,255,0.65);
    }

    .nav__mobile-divider {
      height: 1px;
      background: rgba(255,255,255,0.06);
      margin: 8px 32px;
    }

    .nav__mobile-social {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 12px 32px 0;
    }

    .nav__mobile-social a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color var(--transition);
    }

    .nav__mobile-social a:hover { color: var(--gold); }

    .nav__mobile-social svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .nav__mobile-reserve {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--gold);
      text-decoration: none;
      text-align: center;
      padding: 14px 32px;
      margin: 16px 32px 0;
      border-radius: 4px;
    }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-top: 0;
    }

    /* Placeholder image block */
    .hero__bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        #0c3347 0%,
        #1a5270 20%,
        #1e6882 45%,
        #1a5c78 65%,
        #144d68 85%,
        #0c3347 100%
      );
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Decorative texture overlay */
    .hero__bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(42,184,197,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 20% 70%, rgba(74,184,122,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 80%, rgba(196,137,74,0.10) 0%, transparent 60%);
    }

    /* Placeholder label */
    .hero__placeholder-label {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.18);
      text-align: center;
      max-width: 340px;
      border: 1px dashed rgba(255,255,255,0.10);
      padding: 16px 24px;
      border-radius: 4px;
      pointer-events: none;
      white-space: nowrap;
    }

    /* Dark overlay gradient for readability */
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(12,51,71,0.10) 0%,
        rgba(12,51,71,0.20) 40%,
        rgba(12,51,71,0.40) 80%,
        rgba(12,51,71,0.55) 100%
      );
    }

    /* Subtle peacock-feather SVG decoration bottom-right */
    .hero__deco {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 420px;
      height: 420px;
      opacity: 0.07;
      pointer-events: none;
      overflow: hidden;
    }

    .hero__deco svg {
      width: 100%;
      height: 100%;
    }

    /* Top-left corner botanical accent */
    .hero__deco-tl {
      position: absolute;
      left: 0;
      top: 80px;
      width: 280px;
      height: 280px;
      opacity: 0.06;
      pointer-events: none;
      transform: scaleX(-1);
    }

    .hero__deco-tl svg {
      width: 100%;
      height: 100%;
    }

    /* Content */
    .hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      max-width: 780px;
    }

    /* Gold top rule */
    .hero__rule {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 28px;
    }

    .hero__rule-line {
      display: block;
      width: 60px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold));
    }

    .hero__rule-line.right {
      background: linear-gradient(to left, transparent, var(--gold));
    }

    .hero__rule-diamond {
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .hero__eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .hero__tagline {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 22px;
      letter-spacing: -0.01em;
    }

    .hero__tagline em {
      font-style: italic;
      color: var(--gold);
    }

    .hero__sub {
      font-family: 'Inter', sans-serif;
      font-size: 1.02rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
      max-width: 520px;
      margin: 0 auto 40px;
      letter-spacing: 0.01em;
    }

    .hero__ctas {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero__ctas .btn {
      padding: 16px 38px;
      font-size: 0.74rem;
    }

    /* Minimal hero layout */
    .hero__content--minimal {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero__brand-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(5rem, 15vw, 11rem);
      font-weight: 700;
      font-style: italic;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.01em;
      margin-bottom: 0.15em;
      text-shadow: 0 4px 40px rgba(196,137,74,0.35);
    }

    .hero__brand-sub {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.65rem, 1.6vw, 0.85rem);
      font-weight: 400;
      letter-spacing: 0.36em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.80);
      margin-bottom: 3rem;
    }

    /* Scroll indicator */
    .hero__scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.35);
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color var(--transition);
    }

    .hero__scroll:hover { color: var(--gold); }

    .hero__scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.15); }
    }

    /* ============================================================
       FOOTER (PHASE 1 STUB)
    ============================================================ */
    .footer-stub {
      background: var(--navy);
      border-top: 1px solid rgba(201,168,76,0.2);
      padding: 28px 32px;
      text-align: center;
    }

    .footer-stub p {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.35);
    }

    /* ============================================================
       RESPONSIVE — TABLET
    ============================================================ */
    @media (max-width: 1024px) {
      .nav__links > li > a,
      .nav__links > li > button {
        font-size: 0.68rem;
        padding: 8px 8px;
      }

      .hero__deco { width: 300px; height: 300px; }
    }

    /* ============================================================
       RESPONSIVE — MOBILE
    ============================================================ */
    @media (max-width: 768px) {
      :root {
        --nav-height: 68px;
      }

      .nav {
        padding: 0 20px;
      }

      .nav__links,
      .nav__right {
        display: none;
      }

      .nav__hamburger {
        display: flex;
      }

      .nav__mobile-drawer {
        display: block;
      }

      .hero__placeholder-label {
        display: none;
      }

      .hero__deco { width: 220px; height: 220px; opacity: 0.05; }
      .hero__deco-tl { width: 180px; }

      .hero__tagline {
        font-size: clamp(2rem, 8vw, 2.8rem);
      }

      .hero__sub {
        font-size: 0.93rem;
      }

      .hero__ctas .btn {
        padding: 14px 28px;
        font-size: 0.7rem;
      }

      .hero__scroll { bottom: 24px; }

      .footer-stub { padding: 22px 20px; }
    }

    @media (max-width: 400px) {
      .hero__ctas {
        flex-direction: column;
        align-items: stretch;
        max-width: 260px;
        margin: 0 auto;
      }

      .hero__ctas .btn {
        text-align: center;
      }
    }

    /* ============================================================
       SCROLL REVEAL — IntersectionObserver
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-d1 { transition-delay: 0.10s; }
    .reveal-d2 { transition-delay: 0.22s; }
    .reveal-d3 { transition-delay: 0.34s; }

    /* ============================================================
       SHARED SECTION LAYOUT UTILITIES
    ============================================================ */
    .sec-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .sec-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
    }

    .sec-rule {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .sec-rule-line {
      display: block;
      width: 48px;
      height: 1px;
    }

    .sec-rule-line--gold     { background: linear-gradient(to right, transparent, var(--gold)); }
    .sec-rule-line--gold-r   { background: linear-gradient(to left,  transparent, var(--gold)); }
    .sec-rule-line--teal     { background: linear-gradient(to right, transparent, var(--teal)); }
    .sec-rule-line--teal-r   { background: linear-gradient(to left,  transparent, var(--teal)); }

    .sec-rule-diamond {
      width: 5px;
      height: 5px;
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .sec-rule-diamond--gold { background: var(--gold); }
    .sec-rule-diamond--teal { background: var(--teal); }

    /* ============================================================
       SECTION 1 — BRAND STORY TEASER
    ============================================================ */
    .story-teaser {
      background: var(--cream);
      padding: 112px 0 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Botanical SVG watermarks — left and right edges */
    .story-teaser::before,
    .story-teaser::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 220px;
      background-repeat: no-repeat;
      background-size: contain;
      opacity: 0.045;
      pointer-events: none;
    }

    .story-teaser::before {
      left: -30px;
      background-position: center left;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 420' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 420 C80 310 55 200 85 100 C105 28 162 8 182 42' stroke='%232a9d8f' stroke-width='3' fill='none'/%3E%3Cpath d='M85 100 C55 112 25 155 8 210' stroke='%232a9d8f' stroke-width='2' fill='none'/%3E%3Cpath d='M85 100 C118 118 148 162 150 208' stroke='%232a9d8f' stroke-width='2' fill='none'/%3E%3Cpath d='M135 48 C118 68 94 98 82 132' stroke='%232a9d8f' stroke-width='1.5' fill='none'/%3E%3Cpath d='M135 48 C152 68 160 98 155 132' stroke='%232a9d8f' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    }

    .story-teaser::after {
      right: -30px;
      background-position: center right;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 420' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 420 C120 310 145 200 115 100 C95 28 38 8 18 42' stroke='%232a9d8f' stroke-width='3' fill='none'/%3E%3Cpath d='M115 100 C145 112 175 155 192 210' stroke='%232a9d8f' stroke-width='2' fill='none'/%3E%3Cpath d='M115 100 C82 118 52 162 50 208' stroke='%232a9d8f' stroke-width='2' fill='none'/%3E%3Cpath d='M65 48 C82 68 106 98 118 132' stroke='%232a9d8f' stroke-width='1.5' fill='none'/%3E%3Cpath d='M65 48 C48 68 40 98 45 132' stroke='%232a9d8f' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    }

    .story-teaser__inner {
      max-width: 700px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 1;
    }

    .story-teaser__heading {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      font-weight: 400;
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 28px;
      letter-spacing: -0.01em;
    }

    .story-teaser__heading em {
      font-style: italic;
      color: var(--teal);
    }

    .story-teaser__body {
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.85;
      color: var(--text-mid);
      margin-bottom: 38px;
    }

    .story-teaser__link {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.35);
      padding-bottom: 3px;
      transition: color var(--transition), gap var(--transition), border-color var(--transition);
    }

    .story-teaser__link:hover {
      color: var(--gold-light);
      gap: 16px;
      border-color: var(--gold-light);
    }

    .story-teaser__link-arrow {
      font-size: 1rem;
      line-height: 1;
      display: inline-block;
      transition: transform var(--transition);
    }

    .story-teaser__link:hover .story-teaser__link-arrow {
      transform: translateX(4px);
    }

    /* ============================================================
       SECTION 2 — FEATURED EVENTS
    ============================================================ */
    .events-preview {
      background: var(--cream-dark);
      padding: 100px 0 108px;
      position: relative;
    }

    .events-preview__header {
      text-align: center;
      margin-bottom: 60px;
    }

    .events-preview__heading {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 400;
      color: var(--navy);
      line-height: 1.2;
    }

    .events-preview__sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text-light);
      margin-top: 12px;
      letter-spacing: 0.02em;
    }

    /* 3-col → 2-col tablet → 1-col mobile */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    /* ---- Event card ---- */
    .event-card {
      background: var(--white);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(10, 22, 40, 0.07), 0 1px 4px rgba(10, 22, 40, 0.05);
      display: flex;
      flex-direction: column;
      transition: box-shadow var(--transition), transform var(--transition);
      position: relative;
    }

    /* Gold bottom accent bar — slides in on hover */
    .event-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--teal), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .event-card:hover {
      box-shadow: 0 12px 44px rgba(10, 22, 40, 0.14), 0 2px 8px rgba(10, 22, 40, 0.08);
      transform: translateY(-5px);
    }

    .event-card:hover::after {
      transform: scaleX(1);
    }

    /* 16:9 image placeholder */
    .event-card__img {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: linear-gradient(140deg, var(--navy-light) 0%, var(--navy-mid) 55%, #0a2035 100%);
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    .event-card__img::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 25% 35%, rgba(42, 157, 143, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 55% 65% at 78% 72%, rgba(201, 168, 76, 0.12) 0%, transparent 55%);
    }

    .event-card__img-label {
      position: absolute;
      bottom: 10px;
      left: 10px;
      right: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 0.58rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.32);
      border: 1px dashed rgba(255, 255, 255, 0.12);
      padding: 7px 11px;
      border-radius: 3px;
      line-height: 1.5;
    }

    .event-card__tag {
      position: absolute;
      top: 14px;
      left: 14px;
      font-family: 'Inter', sans-serif;
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--gold);
      padding: 5px 10px;
      border-radius: 2px;
      z-index: 1;
    }

    .event-card__body {
      padding: 28px 28px 32px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .event-card__date {
      font-family: 'Inter', sans-serif;
      font-size: 0.67rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 10px;
    }

    .event-card__name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .event-card__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.87rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.75;
      flex: 1;
      margin-bottom: 26px;
    }

    .event-card__cta {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--gold);
      padding: 11px 22px;
      border-radius: 3px;
      align-self: flex-start;
      transition: background var(--transition), color var(--transition), gap var(--transition);
    }

    .event-card__cta:hover {
      background: var(--gold);
      color: var(--navy);
      gap: 13px;
    }

    .event-card__cta-arrow {
      font-size: 0.85rem;
      display: inline-block;
      transition: transform var(--transition);
    }

    .event-card:hover .event-card__cta-arrow {
      transform: translateX(3px);
    }

    .events-preview__footer {
      text-align: center;
      margin-top: 52px;
    }

    .events-preview__footer .btn {
      padding: 14px 42px;
      font-size: 0.72rem;
    }

    /* ============================================================
       SECTION 3 — MENU PREVIEW
    ============================================================ */
    .menu-preview {
      background: var(--navy);
      padding: 108px 0 116px;
      position: relative;
      overflow: hidden;
    }

    /* Radial glow accents — top-right and bottom-left */
    .menu-preview::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -100px;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(42, 157, 143, 0.09) 0%, transparent 65%);
      pointer-events: none;
    }

    .menu-preview::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -80px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .menu-preview__header {
      text-align: center;
      margin-bottom: 72px;
      position: relative;
      z-index: 1;
    }

    .menu-preview__heading {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
    }

    .menu-preview__heading em {
      font-style: italic;
      color: var(--gold);
    }

    .menu-preview__sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.48);
      margin-top: 14px;
      letter-spacing: 0.02em;
    }

    /* 3-col layout with teal dividers via 1px grid tracks */
    .menu-preview__cols {
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr;
      gap: 0;
      position: relative;
      z-index: 1;
    }

    /* Teal gradient vertical divider */
    .menu-preview__divider {
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(42, 157, 143, 0.45) 25%,
        rgba(42, 157, 143, 0.55) 50%,
        rgba(42, 157, 143, 0.45) 75%,
        transparent 100%
      );
      align-self: stretch;
    }

    .menu-col {
      padding: 48px 52px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: background var(--transition);
      border-radius: 4px;
    }

    .menu-col:hover {
      background: rgba(255, 255, 255, 0.025);
    }

    /* Line-art icon */
    .menu-col__icon {
      width: 46px;
      height: 46px;
      margin-bottom: 22px;
    }

    .menu-col__icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--teal);
      fill: none;
      stroke-width: 1.3;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0.75;
    }

    .menu-col__eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 10px;
    }

    .menu-col__name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.1;
    }

    .menu-col__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.87rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.52);
      line-height: 1.78;
      margin-bottom: 32px;
      max-width: 240px;
    }

    /* Sample dishes list */
    .menu-col__dishes {
      list-style: none;
      margin-bottom: 36px;
      width: 100%;
      text-align: left;
    }

    .menu-col__dishes li {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.42);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 10px;
      transition: color var(--transition);
    }

    .menu-col__dishes li:last-child { border-bottom: none; }

    .menu-col:hover .menu-col__dishes li {
      color: rgba(255, 255, 255, 0.58);
    }

    .menu-col__dishes li span {
      color: rgba(201, 168, 76, 0.6);
      font-size: 0.74rem;
      flex-shrink: 0;
      transition: color var(--transition);
    }

    .menu-col:hover .menu-col__dishes li span {
      color: rgba(201, 168, 76, 0.82);
    }

    .menu-col__btn {
      font-family: 'Inter', sans-serif;
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--gold);
      text-decoration: none;
      padding: 13px 30px;
      border-radius: 3px;
      margin-top: auto;
      transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    }

    .menu-col__btn:hover {
      background: var(--gold-light);
      box-shadow: 0 6px 22px rgba(201, 168, 76, 0.32);
      transform: translateY(-2px);
    }

    /* ============================================================
       RESPONSIVE — NEW SECTIONS — TABLET ≤1024px
    ============================================================ */
    @media (max-width: 1024px) {
      .sec-inner { padding: 0 32px; }

      .events-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* On tablet, show only Lunch + Dinner, hide Brunch column + its divider */
      .menu-preview__cols {
        grid-template-columns: 1fr 1px 1fr;
      }

      .menu-col--brunch,
      .menu-preview__divider--brunch {
        display: none;
      }

      .menu-col { padding: 38px 32px; }
    }

    /* ============================================================
       RESPONSIVE — NEW SECTIONS — MOBILE ≤768px
    ============================================================ */
    @media (max-width: 768px) {
      .sec-inner { padding: 0 20px; }

      .story-teaser { padding: 80px 0 72px; }
      .story-teaser__inner { padding: 0 24px; }
      .story-teaser__heading { font-size: clamp(1.55rem, 6vw, 2.1rem); }
      .story-teaser__body { font-size: 0.97rem; }

      .events-preview { padding: 72px 0 80px; }
      .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .menu-preview { padding: 72px 0 80px; }
      .menu-preview__cols {
        grid-template-columns: 1fr;
      }
      .menu-preview__divider { display: none; }
      .menu-col {
        padding: 44px 28px;
        border-bottom: 1px solid rgba(42, 157, 143, 0.15);
      }
      .menu-col:last-child { border-bottom: none; }
      /* Re-show brunch on mobile stacked layout */
      .menu-col--brunch,
      .menu-preview__divider--brunch {
        display: flex;
      }
      .menu-preview__divider--brunch { display: none; }
    }

    @media (max-width: 480px) {
      .event-card__body { padding: 22px 22px 26px; }
      .menu-col__dishes { display: none; }
      .menu-col { padding: 38px 24px; }
    }

    /* ============================================================
       FULL EVENTS PAGE SECTION
    ============================================================ */

    /* ---- Page wrapper ---- */
    .events-page {
      background: var(--cream-dark);
    }

    /* ---- Navy header band ---- */
    .events-page__header {
      background: var(--navy);
      padding: 108px 0 88px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Ambient glow top-right */
    .events-page__header::before {
      content: '';
      position: absolute;
      top: -70px;
      right: -90px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(42, 157, 143, 0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Ambient glow bottom-left */
    .events-page__header::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -80px;
      width: 440px;
      height: 440px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .events-page__heading {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.1rem, 4.2vw, 3.4rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    /* Gold + teal gradient underline accent bar */
    .events-page__heading-accent {
      display: block;
      width: 80px;
      height: 2px;
      background: linear-gradient(to right, var(--teal), var(--gold));
      margin: 0 auto 28px;
      border-radius: 2px;
      position: relative;
      z-index: 1;
    }

    .events-page__sub {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.58);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.78;
      letter-spacing: 0.01em;
      position: relative;
      z-index: 1;
    }

    /* ---- Cards body area ---- */
    .events-page__body {
      padding: 80px 0 108px;
    }

    /* 2-col grid */
    .events-page__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    /* 5th card spans both columns — featured treatment */
    .event-card--featured {
      grid-column: 1 / -1;
      flex-direction: row;
      align-items: stretch;
    }

    .event-card--featured .event-card__img {
      width: 44%;
      aspect-ratio: unset;
      min-height: 300px;
      flex-shrink: 0;
    }

    .event-card--featured .event-card__body {
      padding: 44px 52px;
      justify-content: center;
    }

    .event-card--featured .event-card__name {
      font-size: 1.55rem;
    }

    .event-card--featured .event-card__desc {
      font-size: 0.92rem;
      max-width: 520px;
    }

    /* ---- Gold pill date/time badge ---- */
    .event-card__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--gold);
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 13px;
      align-self: flex-start;
      flex-shrink: 0;
    }

    .event-card__badge-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(10, 22, 40, 0.45);
      flex-shrink: 0;
    }

    /* Tickets-required / notice line */
    .event-card__notice {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-family: 'Inter', sans-serif;
      font-size: 0.63rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      color: var(--text-light);
      margin-top: -6px;
      margin-bottom: 20px;
    }

    /* ---- Solid-gold CTA (overrides outlined default for Events page) ---- */
    .event-card__cta--solid {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--navy);
    }

    .event-card__cta--solid:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
      color: var(--navy);
    }

    /* ---- Per-card atmospheric image tints ---- */
    /* Summer Nights: warm teal night */
    .event-card__img--summer {
      background: linear-gradient(145deg, #071e30 0%, #0c3040 45%, #0e3535 100%);
    }
    .event-card__img--summer::before {
      background:
        radial-gradient(ellipse 75% 55% at 28% 38%, rgba(42, 157, 143, 0.30) 0%, transparent 58%),
        radial-gradient(ellipse 50% 60% at 78% 70%, rgba(201, 168, 76, 0.14) 0%, transparent 52%);
    }

    /* Spring White Party: soft gold/lavender elegance */
    .event-card__img--white-party {
      background: linear-gradient(145deg, #160e2e 0%, #1c1840 45%, #0e1228 100%);
    }
    .event-card__img--white-party::before {
      background:
        radial-gradient(ellipse 65% 55% at 62% 32%, rgba(201, 168, 76, 0.24) 0%, transparent 58%),
        radial-gradient(ellipse 50% 60% at 22% 74%, rgba(180, 155, 220, 0.13) 0%, transparent 55%);
    }

    /* World Cup: bold navy-teal energy */
    .event-card__img--worldcup {
      background: linear-gradient(145deg, #071520 0%, #0a2235 45%, #0c2030 100%);
    }
    .event-card__img--worldcup::before {
      background:
        radial-gradient(ellipse 80% 50% at 50% 28%, rgba(42, 157, 143, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 65% at 18% 78%, rgba(107, 143, 113, 0.16) 0%, transparent 55%);
    }

    /* Holiday Gala: deep midnight navy, refined gold */
    .event-card__img--gala {
      background: linear-gradient(145deg, #070d18 0%, #0c1628 45%, #060c16 100%);
    }
    .event-card__img--gala::before {
      background:
        radial-gradient(ellipse 60% 50% at 38% 38%, rgba(201, 168, 76, 0.20) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 80% 65%, rgba(201, 168, 76, 0.11) 0%, transparent 55%);
    }

    /* Brunch & Bloom: sage morning warmth */
    .event-card__img--brunch {
      background: linear-gradient(145deg, #0c2030 0%, #112c38 45%, #0d2830 100%);
    }
    .event-card__img--brunch::before {
      background:
        radial-gradient(ellipse 70% 55% at 32% 38%, rgba(107, 143, 113, 0.28) 0%, transparent 58%),
        radial-gradient(ellipse 55% 60% at 74% 68%, rgba(42, 157, 143, 0.17) 0%, transparent 52%);
    }

    /* ============================================================
       RESPONSIVE — EVENTS PAGE — TABLET ≤1024px
    ============================================================ */
    @media (max-width: 1024px) {
      .events-page__header { padding: 84px 0 72px; }

      /* Featured card collapses to stacked layout */
      .event-card--featured {
        flex-direction: column;
      }

      .event-card--featured .event-card__img {
        width: 100%;
        aspect-ratio: 16 / 9;
        min-height: unset;
      }

      .event-card--featured .event-card__body {
        padding: 28px 28px 32px;
        justify-content: flex-start;
      }

      .event-card--featured .event-card__name {
        font-size: 1.3rem;
      }
    }

    /* ============================================================
       RESPONSIVE — EVENTS PAGE — MOBILE ≤768px
    ============================================================ */
    @media (max-width: 768px) {
      .events-page__header { padding: 72px 0 60px; }
      .events-page__sub { font-size: 0.93rem; }

      .events-page__body { padding: 60px 0 76px; }

      .events-page__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* Featured card: single col on mobile, no special treatment */
      .event-card--featured {
        grid-column: 1;
        flex-direction: column;
      }

      .event-card--featured .event-card__img {
        width: 100%;
        aspect-ratio: 16 / 9;
        min-height: unset;
      }

      .event-card--featured .event-card__body {
        padding: 24px 24px 28px;
        justify-content: flex-start;
      }

      .event-card--featured .event-card__name {
        font-size: 1.2rem;
      }
    }

    /* ============================================================
       FULL MENUS SECTION
    ============================================================ */

    .menus-page {
      background: var(--cream);
    }

    /* ---- Navy header band ---- */
    .menus-page__header {
      background: var(--navy);
      padding: 108px 0 0;
      position: relative;
      overflow: hidden;
    }

    .menus-page__header::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .menus-page__header::after {
      content: '';
      position: absolute;
      bottom: 0; left: -70px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Title row */
    .menus-page__title-row {
      text-align: center;
      padding-bottom: 56px;
      position: relative;
      z-index: 1;
    }

    .menus-page__heading {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .menus-page__heading-accent {
      display: block;
      width: 72px; height: 2px;
      background: linear-gradient(to right, var(--teal), var(--gold));
      margin: 0 auto 22px;
      border-radius: 2px;
    }

    .menus-page__sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.97rem; font-weight: 300;
      color: rgba(255,255,255,0.55);
      max-width: 540px; margin: 0 auto;
      line-height: 1.75;
    }

    /* ---- Tab bar — flush to bottom of header band ---- */
    .menus-tabs {
      display: flex;
      justify-content: center;
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .menus-tab {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      background: none; border: none; cursor: pointer;
      padding: 22px 48px;
      position: relative;
      transition: color var(--transition), background var(--transition);
      white-space: nowrap;
    }

    .menus-tab:hover {
      color: rgba(255,255,255,0.78);
      background: rgba(255,255,255,0.03);
    }

    /* Gold underline slide-in indicator */
    .menus-tab::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      border-radius: 3px 3px 0 0;
    }

    .menus-tab.active {
      color: var(--gold);
      background: rgba(201,168,76,0.06);
    }

    .menus-tab.active::after { transform: scaleX(1); }

    /* ---- Tab panels ---- */
    .menus-panels {
      padding: 72px 0 100px;
    }

    .menus-panel { display: none; }

    .menus-panel.active {
      display: block;
      animation: panelFadeIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes panelFadeIn {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ---- Menu category section ---- */
    .menu-section { margin-bottom: 64px; }
    .menu-section:last-child { margin-bottom: 0; }

    /* Teal divider row */
    .menu-section__header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 34px;
    }

    .menu-section__title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.3rem; font-weight: 500;
      color: var(--navy);
      white-space: nowrap; flex-shrink: 0;
    }

    /* Teal gradient rule */
    .menu-section__rule {
      flex: 1; height: 1px;
      background: linear-gradient(
        to right,
        rgba(42,157,143,0.55),
        rgba(42,157,143,0.14) 55%,
        transparent 100%
      );
    }

    .menu-section__count {
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--teal); opacity: 0.65;
      flex-shrink: 0;
    }

    /* ---- 2-col dish grid ---- */
    .menu-dishes {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px 28px;
    }

    /* ---- Dish card ---- */
    .dish-card {
      display: flex;
      flex-direction: column;
      padding: 24px 26px;
      background: var(--white);
      border-radius: 5px;
      border-left: 3px solid transparent;
      box-shadow: 0 1px 10px rgba(10,22,40,0.055), 0 1px 3px rgba(10,22,40,0.035);
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
      position: relative;
    }

    .dish-card:hover {
      border-left-color: var(--teal);
      box-shadow: 0 6px 26px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.055);
      transform: translateY(-2px);
    }

    .dish-card__top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 8px;
    }

    .dish-card__name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.03rem; font-weight: 600;
      color: var(--navy);
      line-height: 1.25; flex: 1;
    }

    .dish-card__price {
      font-family: 'Inter', sans-serif;
      font-size: 0.87rem; font-weight: 600;
      color: var(--gold);
      white-space: nowrap; flex-shrink: 0;
      letter-spacing: 0.02em;
      padding-top: 3px;
    }

    .dish-card__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem; font-weight: 300;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* Chef's Pick ribbon */
    .dish-card--chef::before {
      content: "Chef's Pick";
      position: absolute;
      top: -1px; right: 18px;
      font-family: 'Inter', sans-serif;
      font-size: 0.53rem; font-weight: 700;
      letter-spacing: 0.13em; text-transform: uppercase;
      color: var(--navy); background: var(--gold);
      padding: 4px 9px;
      border-radius: 0 0 4px 4px;
    }

    /* Small pill tag (vegetarian/vegan/GF) */
    .dish-card__tag {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.57rem; font-weight: 600;
      letter-spacing: 0.09em; text-transform: uppercase;
      color: var(--sage); border: 1px solid var(--sage-light);
      padding: 2px 8px; border-radius: 10px;
      margin-top: 8px; align-self: flex-start;
    }

    /* ---- Bottomless drinks highlight card (spans full width) ---- */
    .menu-bottomless {
      grid-column: 1 / -1;
      background: var(--navy);
      border-radius: 8px;
      padding: 36px 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      position: relative;
      overflow: hidden;
    }

    .menu-bottomless::before {
      content: '';
      position: absolute;
      right: -40px; top: -40px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(42,157,143,0.14) 0%, transparent 65%);
      pointer-events: none;
    }

    .menu-bottomless__text { position: relative; z-index: 1; }

    .menu-bottomless__label {
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 8px;
    }

    .menu-bottomless__name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.4rem; font-weight: 400;
      color: var(--white);
      margin-bottom: 6px; line-height: 1.2;
    }

    .menu-bottomless__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem; font-weight: 300;
      color: rgba(255,255,255,0.52);
      line-height: 1.6; max-width: 400px;
    }

    .menu-bottomless__price {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2.4rem; font-weight: 400;
      color: var(--gold);
      white-space: nowrap;
      position: relative; z-index: 1;
      flex-shrink: 0; text-align: right;
    }

    .menu-bottomless__price sup {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem; font-weight: 600;
      vertical-align: super;
      color: rgba(201,168,76,0.7);
    }

    .menu-bottomless__price sub {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem; font-weight: 400;
      color: rgba(201,168,76,0.55);
      letter-spacing: 0.08em; text-transform: uppercase;
      text-align: right; margin-top: 3px;
    }

    /* ---- Reserve strip at bottom of menus section ---- */
    .menu-reserve-strip {
      background: var(--navy);
      border-top: 1px solid rgba(201,168,76,0.15);
      padding: 30px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .menu-reserve-strip__text {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.12rem; font-weight: 400;
      color: var(--white); font-style: italic;
    }

    .menu-reserve-strip__text em {
      color: var(--gold); font-style: normal;
    }

    /* ============================================================
       RESPONSIVE — MENUS — TABLET ≤1024px
    ============================================================ */
    @media (max-width: 1024px) {
      .menus-tab { padding: 20px 30px; }

      .menu-bottomless {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px; padding: 30px 28px;
      }
    }

    /* ============================================================
       RESPONSIVE — MENUS — MOBILE ≤768px
    ============================================================ */
    @media (max-width: 768px) {
      .menus-page__header { padding: 72px 0 0; }
      .menus-page__title-row { padding-bottom: 40px; }

      .menus-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding: 0 16px;
      }
      .menus-tabs::-webkit-scrollbar { display: none; }

      .menus-tab { padding: 18px 22px; font-size: 0.7rem; flex-shrink: 0; }

      .menus-panels { padding: 48px 0 72px; }

      .menu-dishes { grid-template-columns: 1fr; gap: 14px; }

      .menu-section { margin-bottom: 44px; }

      .menu-bottomless {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px; padding: 26px 20px;
      }

      .menu-reserve-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px; padding: 26px 20px;
      }
    }

    @media (max-width: 480px) {
      .dish-card { padding: 18px 16px; }
      .menus-tab { padding: 16px 18px; }
    }

    /* ============================================================
       SHARED FORM UTILITIES
    ============================================================ */
    .form-field { display: flex; flex-direction: column; gap: 6px; }
    .form-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--navy-mid);
    }
    .form-input,
    .form-textarea,
    .form-select {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: var(--navy);
      background: #fff;
      border: 1.5px solid #d6cfc2;
      border-radius: 6px;
      padding: 11px 14px;
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
      width: 100%;
      box-sizing: border-box;
    }
    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(42,157,143,0.15);
    }
    .form-input.error,
    .form-textarea.error,
    .form-select.error {
      border-color: #c0392b;
      box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
    }
    .form-textarea { resize: vertical; min-height: 110px; }
    .form-select-wrap { position: relative; }
    .form-select-wrap::after {
      content: '';
      position: absolute;
      right: 14px; top: 50%; transform: translateY(-50%);
      border: 5px solid transparent;
      border-top-color: var(--navy-mid);
      pointer-events: none;
    }
    .form-select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }
    .btn-gold-full {
      display: block;
      width: 100%;
      padding: 15px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background var(--transition), transform 0.15s;
      margin-top: 4px;
    }
    .btn-gold-full:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-gold-full:active { transform: translateY(0); }
    .form-success {
      display: none;
      text-align: center;
      padding: 28px 20px;
      background: rgba(42,157,143,0.08);
      border: 1.5px solid var(--teal);
      border-radius: 8px;
      color: var(--navy);
    }
    .form-success.visible { display: block; }
    .form-success__icon { font-size: 2.2rem; margin-bottom: 10px; }
    .form-success__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .form-success__body { font-size: 0.92rem; color: #5a6473; }

    /* ============================================================
       GROUP EVENTS SECTION
    ============================================================ */
    .group-events {
      background: var(--cream);
      padding: 96px 24px;
    }
    .group-events__inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .group-events__header {
      text-align: center;
      margin-bottom: 48px;
    }
    .group-events__eyebrow {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }
    .group-events__heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .group-events__intro {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      color: #5a6473;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .group-events__types {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .ge-type {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1.5px solid #e4ddd2;
      border-radius: 40px;
      padding: 8px 18px;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--navy-mid);
      letter-spacing: 0.04em;
    }
    .ge-type__icon { font-size: 1rem; line-height: 1; }
    .group-events__form-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 40px rgba(10,22,40,0.09);
      padding: 44px 48px;
    }
    .group-events__form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px 28px;
    }
    .group-events__form .form-field--full {
      grid-column: 1 / -1;
    }
    .group-events__note {
      margin-top: 18px;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      color: #8a9aaa;
      line-height: 1.5;
    }
    .group-events__note strong { color: var(--navy-mid); }
    @media (max-width: 768px) {
      .group-events__form { grid-template-columns: 1fr; }
      .group-events__form-card { padding: 32px 24px; }
    }

    /* ============================================================
       COMMUNITY SECTION
    ============================================================ */
    .community {
      background: var(--navy);
      padding: 96px 24px;
    }
    .community__inner {
      max-width: 1160px;
      margin: 0 auto;
    }
    .community__header {
      text-align: center;
      margin-bottom: 56px;
    }
    .community__eyebrow {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .community__heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .community__subhead {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      color: rgba(250,248,243,0.65);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .community__spotlights {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 72px;
    }
    .spotlight-card {
      background: var(--navy-mid);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .spotlight-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    }
    .spotlight-card__img {
      aspect-ratio: 4 / 3;
      position: relative;
      overflow: hidden;
    }
    .spotlight-card__img-inner {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(250,248,243,0.55);
      border: 2px dashed rgba(250,248,243,0.2);
      margin: 16px;
      border-radius: 6px;
      text-align: center;
      padding: 12px;
    }
    .spotlight-card__body { padding: 22px; }
    .spotlight-card__tag {
      display: inline-block;
      background: rgba(42,157,143,0.18);
      color: var(--teal-light);
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
      margin-bottom: 10px;
    }
    .spotlight-card__name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--cream);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .spotlight-card__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.87rem;
      color: rgba(250,248,243,0.65);
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .spotlight-card__link {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,168,76,0.4);
      padding-bottom: 2px;
      transition: color var(--transition), border-color var(--transition);
    }
    .spotlight-card__link:hover { color: var(--gold-light); border-color: var(--gold-light); }

    /* ONE Card */
    .one-card {
      background: linear-gradient(135deg, #0f2040 0%, #0a1628 60%, #0d1e3a 100%);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 20px;
      padding: 60px 56px;
      margin-bottom: 56px;
      position: relative;
      overflow: hidden;
    }
    .one-card::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .one-card__inner {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 56px;
      align-items: center;
      position: relative; z-index: 1;
    }
    .one-card__eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .one-card__heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .one-card__sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: rgba(250,248,243,0.65);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .one-card__benefits { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
    .one-card__benefit {
      display: flex; align-items: flex-start; gap: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      color: rgba(250,248,243,0.85);
      line-height: 1.5;
    }
    .one-card__benefit::before {
      content: '';
      flex-shrink: 0;
      width: 18px; height: 18px;
      margin-top: 1px;
      background: var(--gold);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230a1628' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: 12px 12px;
      background-repeat: no-repeat;
      background-position: center;
    }
    .one-card__card-visual {
      aspect-ratio: 16/10;
      background: linear-gradient(145deg, #1a3358 0%, #0f2040 50%, #0a1628 100%);
      border-radius: 16px;
      border: 1px solid rgba(201,168,76,0.35);
      display: flex; flex-direction: column;
      justify-content: space-between;
      padding: 28px 32px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      position: relative;
      overflow: hidden;
    }
    .one-card__card-visual::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at top left, rgba(201,168,76,0.12) 0%, transparent 60%);
    }
    .one-card__card-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--gold);
      font-style: italic;
      position: relative; z-index: 1;
    }
    .one-card__card-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.6);
      position: relative; z-index: 1;
    }
    .one-card__card-name {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--cream);
      position: relative; z-index: 1;
    }
    @media (max-width: 1024px) {
      .one-card__inner { grid-template-columns: 1fr; gap: 40px; }
      .one-card__card-visual { max-width: 380px; }
    }

    /* Alliance Banner */
    .alliance-banner {
      background: rgba(250,248,243,0.05);
      border: 1px solid rgba(250,248,243,0.12);
      border-radius: 12px;
      padding: 32px 40px;
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    .alliance-banner__badge {
      flex-shrink: 0;
      width: 72px; height: 72px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .alliance-banner__badge svg { width: 38px; height: 38px; }
    .alliance-banner__text { flex: 1; min-width: 240px; }
    .alliance-banner__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--cream);
      margin-bottom: 4px;
    }
    .alliance-banner__desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.87rem;
      color: rgba(250,248,243,0.6);
      line-height: 1.6;
    }
    .alliance-banner__cta {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border: 1.5px solid rgba(201,168,76,0.5);
      border-radius: 40px;
      padding: 10px 24px;
      transition: background var(--transition), border-color var(--transition);
      white-space: nowrap;
    }
    .alliance-banner__cta:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
    @media (max-width: 768px) {
      .community__spotlights { grid-template-columns: 1fr; }
      .one-card { padding: 40px 28px; }
      .alliance-banner { padding: 24px 20px; gap: 20px; }
    }

    /* ============================================================
       CONTACT SECTION
    ============================================================ */
    .contact {
      background: var(--cream);
      padding: 96px 24px;
    }
    .contact__inner {
      max-width: 1160px;
      margin: 0 auto;
    }
    .contact__header {
      text-align: center;
      margin-bottom: 56px;
    }
    .contact__eyebrow {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }
    .contact__heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--navy);
      line-height: 1.2;
    }
    .contact__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .contact__form-card {
      background: #fff;
      border-radius: 14px;
      border-top: 4px solid var(--teal);
      box-shadow: 0 4px 32px rgba(10,22,40,0.08);
      padding: 40px 40px;
    }
    .contact__form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .contact__form { display: flex; flex-direction: column; gap: 20px; }
    .contact__info { display: flex; flex-direction: column; gap: 32px; }
    .contact__info-block { }
    .contact__info-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 8px;
    }
    .contact__info-value {
      font-family: 'Inter', sans-serif;
      font-size: 0.97rem;
      color: var(--navy);
      line-height: 1.65;
    }
    .contact__info-value a { color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(10,22,40,0.2); }
    .contact__info-value a:hover { border-color: var(--teal); color: var(--teal); }
    .contact__hours {
      width: 100%;
      border-collapse: collapse;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
    }
    .contact__hours td { padding: 7px 0; color: var(--navy); border-bottom: 1px solid rgba(10,22,40,0.07); }
    .contact__hours td:last-child { text-align: right; color: #5a6473; }
    .contact__map {
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #d4cfc5 0%, #c8c2b5 100%);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .contact__map-inner {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(10,22,40,0.45);
      border: 2px dashed rgba(10,22,40,0.2);
      padding: 12px 20px;
      border-radius: 6px;
      text-align: center;
    }
    .contact__social {
      display: flex; gap: 12px; align-items: center; padding-top: 4px;
    }
    .contact__social-link {
      display: flex; align-items: center; justify-content: center;
      width: 42px; height: 42px;
      background: var(--navy);
      border-radius: 50%;
      color: var(--cream);
      text-decoration: none;
      transition: background var(--transition), transform 0.15s;
    }
    .contact__social-link:hover { background: var(--teal); transform: translateY(-2px); }
    .contact__social-link svg { width: 18px; height: 18px; }
    @media (max-width: 1024px) {
      .contact__grid { grid-template-columns: 1fr; gap: 32px; }
      .contact__form-card { padding: 32px 28px; }
    }

    /* ============================================================
       OUR STORY SECTION
    ============================================================ */
    .our-story {
      background: var(--cream);
      padding: 100px 24px;
      overflow: hidden;
    }
    .our-story__inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .our-story__eyebrow {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
    }
    .our-story__heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--navy);
      line-height: 1.18;
      margin-bottom: 28px;
    }
    .our-story__heading em {
      color: var(--teal);
      font-style: italic;
    }
    .our-story__body p {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      color: #4a5568;
      line-height: 1.82;
      margin-bottom: 20px;
    }
    .our-story__body p:last-child { margin-bottom: 0; }
    .our-story__body strong { color: var(--navy); font-weight: 600; }
    .our-story__values {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 44px;
      padding-top: 36px;
      border-top: 1px solid rgba(10,22,40,0.1);
    }
    .our-story__value {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }
    .our-story__value-icon {
      width: 52px; height: 52px;
      background: var(--navy);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .our-story__value-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
    }

    /* Photo block */
    .our-story__photo {
      position: relative;
    }
    .our-story__photo-main {
      aspect-ratio: 3 / 4;
      background: linear-gradient(160deg, #c8b8a2 0%, #a89070 40%, #8a6a50 100%);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .our-story__photo-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      border: 2px dashed rgba(255,255,255,0.3);
      padding: 14px 20px;
      border-radius: 8px;
      text-align: center;
      max-width: 200px;
      line-height: 1.5;
    }
    .our-story__photo-accent {
      position: absolute;
      bottom: -20px;
      left: -20px;
      width: 140px; height: 140px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0.12;
      pointer-events: none;
    }
    .our-story__photo-badge {
      position: absolute;
      bottom: 28px;
      right: -20px;
      background: var(--navy);
      border: 3px solid var(--gold);
      border-radius: 14px;
      padding: 16px 22px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
    .our-story__photo-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold);
      line-height: 1;
    }
    .our-story__photo-badge-text {
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(250,248,243,0.7);
      margin-top: 4px;
    }
    @media (max-width: 1024px) {
      .our-story__inner { grid-template-columns: 1fr; gap: 48px; }
      .our-story__photo { order: -1; }
      .our-story__photo-main { aspect-ratio: 16/9; max-height: 400px; }
      .our-story__photo-badge { right: 16px; }
      .our-story__values { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .our-story__values { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    }

    /* ============================================================
       EXPANDED FOOTER
    ============================================================ */
    .footer {
      background: var(--navy);
      border-top: 1px solid rgba(201,168,76,0.2);
    }
    .footer__main {
      max-width: 1160px;
      margin: 0 auto;
      padding: 72px 24px 56px;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.2fr;
      gap: 56px;
    }

    /* Col 1 — Brand */
    .footer__brand { }
    .footer__logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      color: var(--gold);
      font-style: italic;
      text-decoration: none;
      display: inline-block;
      margin-bottom: 14px;
      letter-spacing: 0.02em;
    }
    .footer__tagline {
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      color: rgba(250,248,243,0.55);
      line-height: 1.65;
      max-width: 240px;
      margin-bottom: 26px;
    }
    .footer__social {
      display: flex;
      gap: 10px;
    }
    .footer__social-link {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px;
      background: rgba(250,248,243,0.08);
      border: 1px solid rgba(250,248,243,0.12);
      border-radius: 50%;
      color: rgba(250,248,243,0.7);
      text-decoration: none;
      transition: background var(--transition), border-color var(--transition), color var(--transition);
    }
    .footer__social-link:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--navy);
    }
    .footer__social-link svg { width: 17px; height: 17px; }

    /* Col 2 — Nav */
    .footer__nav-heading {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .footer__nav {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer__nav a {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: rgba(250,248,243,0.65);
      text-decoration: none;
      transition: color var(--transition);
    }
    .footer__nav a:hover { color: var(--cream); }

    /* Col 3 — Hours + Reserve */
    .footer__info-heading {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .footer__hours {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 18px;
    }
    .footer__hours td {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      padding: 5px 0;
      color: rgba(250,248,243,0.65);
      border-bottom: 1px solid rgba(250,248,243,0.06);
    }
    .footer__hours td:last-child { text-align: right; }
    .footer__address {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: rgba(250,248,243,0.5);
      line-height: 1.65;
      margin-bottom: 24px;
    }
    .footer__address a {
      color: rgba(250,248,243,0.5);
      text-decoration: none;
      border-bottom: 1px solid rgba(250,248,243,0.2);
      transition: color var(--transition);
    }
    .footer__address a:hover { color: var(--cream); }
    .btn-footer-reserve {
      display: inline-block;
      padding: 12px 28px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 6px;
      text-decoration: none;
      transition: background var(--transition), transform 0.15s;
    }
    .btn-footer-reserve:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* Bottom bar */
    .footer__bottom {
      border-top: 1px solid rgba(250,248,243,0.08);
    }
    .footer__bottom-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer__copy {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      color: rgba(250,248,243,0.35);
    }
    .footer__badge {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: rgba(201,168,76,0.6);
    }
    .footer__badge-dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0.6;
    }
    @media (max-width: 1024px) {
      .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 640px) {
      .footer__main { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 36px; }
      .footer__bottom-inner { flex-direction: column; text-align: center; }
    }

    /* ============================================================
       BACK TO TOP BUTTON
    ============================================================ */
    .back-to-top {
      position: fixed;
      bottom: 32px;
      right: 28px;
      z-index: 900;
      width: 48px; height: 48px;
      background: var(--gold);
      border: none;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(201,168,76,0.4);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
      pointer-events: none;
    }
    .back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .back-to-top:hover { background: var(--gold-light); }
    .back-to-top svg { width: 20px; height: 20px; color: var(--navy); }