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

    :root {
      --black:     #1A0D06;
      --warm-dark: #2C1A0E;
      --burgundy:  #8B1A2F;
      --green:     #2D4A2D;
      --forest:    #2D4A2D;
      --gold:      #C9A84C;
      --cream:     #FAF1E3;
      --cream-dim: #EDE0CC;
    }

    html { scroll-behavior: smooth; font-size: 112.5%; /* ~18px, scales with user browser prefs */ }
    body {
      font-family: 'Cormorant Garamond', 'Georgia', serif;
      background: var(--black);
      color: var(--cream);
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 2rem;
      height: 64px;
    }
    .nav-logo {
      font-size: 0.9rem; letter-spacing: 0.12em; color: var(--gold);
      text-transform: uppercase; font-weight: 400;
      white-space: nowrap;
    }
    .nav-links {
      display: flex; gap: 1.6rem; list-style: none;
    }
    .nav-links li a {
      color: var(--cream); text-decoration: none;
      font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
      font-weight: 400; transition: color 0.2s;
    }
    .nav-links li a:hover, .nav-links li a.active { color: var(--gold); }

    /* ── PAGE SECTIONS ── */
    .page { display: none; }
    .page.active { display: block; }

    /* ── HOME: HERO ── */
    #home { padding-top: 64px; }
    .hero {
      min-height: 100vh; min-height: 100svh;
      background: url('../ChatGPT Image Jun 20, 2026 at 12_51_08 AM.png') center center / cover no-repeat;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 4rem 2rem;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(10,10,10,0.72);
      pointer-events: none;
    }
    .ga-monogram {
      width: 150px; height: 150px;
      margin: 0 auto 2.5rem;
      position: relative;
    }
    .ga-monogram img {
      width: 100%; height: 100%; object-fit: contain;
    }
    .hero h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300; color: var(--cream);
      letter-spacing: 0.04em; line-height: 1.15;
      margin-bottom: 1.2rem;
    }
    .hero-sub {
      font-style: italic; color: var(--gold);
      font-size: clamp(1rem, 2vw, 1.3rem);
      letter-spacing: 0.06em; margin-bottom: 3rem;
    }
    .hero-ctas { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
    .btn-outline {
      padding: 0.85rem 2.2rem;
      border: 1px solid var(--gold); color: var(--gold);
      background: transparent; font-family: inherit;
      font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
      cursor: pointer; transition: all 0.25s;
    }
    .btn-outline:hover { background: var(--gold); color: var(--black); }
    .btn-filled {
      padding: 0.85rem 2.2rem;
      background: var(--gold); color: var(--black);
      border: 1px solid var(--gold);
      font-family: inherit; font-size: 0.8rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      cursor: pointer; transition: all 0.25s;
    }
    .btn-filled:hover { background: transparent; color: var(--gold); }

    /* ── HOME: ABOUT ── */
    .about-section {
      background: var(--green);
      padding: 6rem 3rem;
      text-align: center;
      position: relative;
    }
    .about-section::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px,
        transparent 1px, transparent 8px
      );
    }
    .about-section > * { position: relative; }
    .about-label {
      font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: rgba(201,168,76,0.7); margin-bottom: 0.75rem;
    }
    .about-section h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300; color: var(--gold);
      letter-spacing: 0.06em; margin-bottom: 2rem;
    }
    .about-section p {
      max-width: 700px; margin: 0 auto 1.4rem;
      font-size: 1.12rem; color: var(--cream);
      font-weight: 300; line-height: 1.9;
    }
    .about-quote {
      max-width: 620px; margin: 2.5rem auto;
      border-left: 2px solid var(--gold);
      padding: 1rem 2rem;
      text-align: left;
    }
    .about-quote p {
      font-size: 1.2rem; font-style: italic;
      color: var(--cream); margin: 0;
      line-height: 1.75;
    }
    .about-tagline {
      font-size: 1.05rem; color: var(--gold);
      font-style: italic; letter-spacing: 0.06em;
      margin-top: 3rem !important;
    }
    .hours {
      margin: 2rem auto;
      font-size: 0.88rem; color: rgba(245,240,232,0.65);
      letter-spacing: 0.08em;
    }
    .about-divider {
      width: 60px; height: 1px;
      background: rgba(201,168,76,0.4);
      margin: 2.5rem auto;
    }
    .about-icons {
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 2.5rem; margin-top: 3.5rem;
    }
    .about-icon { text-align: center; }
    .about-icon .icon-symbol {
      font-size: 1.8rem; margin-bottom: 0.5rem; display: block;
    }
    .about-icon .icon-label {
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--cream); font-weight: 400;
    }

    /* ── MOSO MENU PAGE ── */
    #moso { padding-top: 64px; background: var(--black); }
    .menu-hero {
      text-align: center; padding: 5rem 2rem 3rem;
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .menu-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300; color: var(--gold); letter-spacing: 0.06em;
    }
    .menu-hero p {
      font-style: italic; color: rgba(245,240,232,0.65);
      font-size: 1.1rem; margin-top: 0.75rem; letter-spacing: 0.04em;
    }
    .menu-container { max-width: 860px; margin: 0 auto; padding: 3rem 2rem 5rem; }
    .menu-section { margin-bottom: 3.5rem; }
    .menu-section-title {
      font-size: 1.15rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); font-weight: 400;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid rgba(201,168,76,0.35);
      margin-bottom: 1.5rem;
    }
    .menu-section-sub {
      font-style: italic; font-size: 1.05rem;
      color: rgba(245,240,232,0.5); margin-bottom: 1.2rem;
      letter-spacing: 0.04em;
    }
    .menu-item {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(245,240,232,0.06);
    }
    .menu-item:last-child { border-bottom: none; }
    .item-left { flex: 1; padding-right: 1.5rem; }
    .item-name {
      font-size: 1.28rem; font-weight: 400; color: var(--cream);
      letter-spacing: 0.02em;
    }
    .item-desc {
      font-size: 1.02rem; color: rgba(245,240,232,0.5);
      font-style: italic; margin-top: 0.3rem; line-height: 1.7;
    }
    .item-price {
      font-size: 1.15rem; color: var(--gold); white-space: nowrap;
      font-weight: 400; letter-spacing: 0.03em;
    }
    .menu-cta { text-align: center; padding: 2rem 0 4rem; }

    /* Wellness grid */
    .wellness-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.2rem;
    }
    .wellness-card {
      border: 1px solid rgba(201,168,76,0.2);
      padding: 1.2rem 1.4rem;
    }
    .wellness-card .w-name {
      font-size: 1.18rem; color: var(--gold); font-weight: 500; margin-bottom: 0.3rem;
    }
    .wellness-card .w-ingredients {
      font-size: 0.98rem; color: rgba(245,240,232,0.55); font-style: italic;
      line-height: 1.5;
    }
    .wellness-card .w-calories {
      font-size: 0.75rem; color: rgba(201,168,76,0.6);
      margin-top: 0.4rem; letter-spacing: 0.06em;
    }

    /* Enhancers */
    .enhancer-list {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 0.8rem; margin-top: 0.5rem;
    }
    .enhancer-item {
      display: flex; gap: 0.6rem; align-items: flex-start;
      padding: 0.6rem 0.8rem;
      border: 1px solid rgba(201,168,76,0.12);
    }
    .enhancer-item .e-name {
      font-size: 1.02rem; color: var(--cream); font-weight: 500;
    }
    .enhancer-item .e-benefit {
      font-size: 0.92rem; color: rgba(245,240,232,0.5); font-style: italic;
    }
    .add-price {
      display: inline-block; margin-bottom: 1rem;
      font-size: 0.85rem; color: var(--gold); letter-spacing: 0.08em;
    }

    /* Mocktail / Boba */
    .drink-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.2rem;
    }
    .drink-card {
      border: 1px solid rgba(201,168,76,0.2); padding: 1.2rem 1.4rem;
    }
    .drink-card .d-name {
      font-size: 1.18rem; color: var(--gold); font-weight: 500; margin-bottom: 0.3rem;
    }
    .drink-card .d-ingredients {
      font-size: 0.98rem; color: rgba(245,240,232,0.55); font-style: italic;
      line-height: 1.5;
    }

    /* ── GROVE ATELIER PAGE ── */
    #atelier { padding-top: 64px; background: var(--cream); color: var(--black); }
    .atelier-hero {
      text-align: center; padding: 5rem 2rem 3rem;
      border-bottom: 1px solid rgba(10,10,10,0.12);
    }
    .atelier-banner {
      display: inline-block;
      border: 2px solid var(--black); padding: 0.6rem 2.5rem;
      font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--black); margin-bottom: 2.5rem; font-weight: 400;
    }
    .atelier-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300; color: var(--black); letter-spacing: 0.06em;
    }
    .atelier-hero p {
      font-style: italic; color: rgba(10,10,10,0.6);
      font-size: 1.1rem; margin-top: 0.75rem;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem; max-width: 1000px; margin: 0 auto;
      padding: 4rem 2rem;
    }
    .service-card {
      border: 1.5px solid var(--burgundy);
      padding: 2rem 1.8rem;
    }
    .service-card h3 {
      font-size: 1.25rem; color: var(--burgundy);
      font-weight: 400; letter-spacing: 0.06em; margin-bottom: 0.6rem;
    }
    .service-card p {
      font-size: 0.9rem; color: rgba(10,10,10,0.65);
      font-style: italic; line-height: 1.6;
    }
    .atelier-cta { text-align: center; padding: 1rem 2rem 5rem; }
    .btn-dark {
      padding: 0.85rem 2.8rem;
      background: var(--black); color: var(--cream);
      border: 1px solid var(--black); font-family: inherit;
      font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
      cursor: pointer; transition: all 0.25s;
    }
    .btn-dark:hover { background: var(--burgundy); border-color: var(--burgundy); }

    /* ── SAGE & CLOVERS ── */
    #sage {
      padding-top: 64px;
      background: #1A2E1A; color: var(--cream);
      min-height: 100vh; min-height: 100svh;
      display: flex; flex-direction: column;
    }
    .sage-content {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 6rem 2rem;
    }
    .sage-content h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300; color: var(--gold);
      letter-spacing: 0.1em; margin-bottom: 1.5rem;
    }
    .sage-content p {
      max-width: 560px; font-size: 1.1rem;
      color: var(--cream); font-style: italic;
      line-height: 1.8; margin-bottom: 3rem;
    }
    .email-form {
      display: flex; gap: 0; max-width: 440px; width: 100%;
    }
    .email-form input {
      flex: 1; padding: 0.9rem 1.2rem;
      background: rgba(245,240,232,0.08);
      border: 1px solid rgba(201,168,76,0.4);
      border-right: none;
      color: var(--cream); font-family: inherit; font-size: 0.95rem;
      outline: none;
    }
    .email-form input::placeholder { color: rgba(245,240,232,0.4); }
    .email-form button {
      padding: 0.9rem 1.8rem;
      background: var(--gold); color: var(--black);
      border: 1px solid var(--gold);
      font-family: inherit; font-size: 0.8rem;
      letter-spacing: 0.15em; text-transform: uppercase;
      cursor: pointer; white-space: nowrap;
    }

    /* ── VISUALSHINES ── */
    #visual {
      padding-top: 64px; background: var(--black);
      min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column;
    }
    .visual-content {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 6rem 2rem;
    }
    .visual-content h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300; color: var(--gold);
      letter-spacing: 0.12em; margin-bottom: 1rem;
    }
    .visual-content p {
      font-size: 1.1rem; color: rgba(245,240,232,0.6);
      font-style: italic; margin-bottom: 2.5rem;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(201,168,76,0.3);
      padding: 3rem;
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem; align-items: start;
    }
    .footer-logo {
      width: 70px; height: 70px;
    }
    .footer-logo img { width: 100%; height: 100%; object-fit: contain; }
    .footer-center { text-align: center; }
    .footer-center p {
      font-size: 0.8rem; color: rgba(245,240,232,0.5);
      letter-spacing: 0.06em; line-height: 1.9;
    }
    .footer-right { text-align: right; }
    .footer-right a {
      color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none;
    }
    .footer-tagline {
      text-align: center; padding: 1.5rem;
      font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(245,240,232,0.3);
      border-top: 1px solid rgba(201,168,76,0.1);
    }
    .gold-divider {
      border: none; border-top: 1px solid rgba(201,168,76,0.3);
      margin: 0;
    }
    /* ── FOOTER SOCIAL & ESTABLISHED ── */
    .footer-social {
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 1rem; padding: 1.2rem 2rem;
      background: rgba(0,0,0,0.4);
      border-top: 1px solid rgba(201,168,76,0.1);
    }
    .footer-social a {
      color: rgba(245,240,232,0.7); text-decoration: none;
      font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
      border: 1px solid rgba(201,168,76,0.25); padding: 0.35rem 0.9rem;
      transition: all 0.2s;
    }
    .footer-social a:hover { color: var(--gold); border-color: var(--gold); }
    .footer-established {
      display: flex; align-items: center; justify-content: center;
      gap: 0.8rem; padding: 1rem 2rem;
      background: #1C0E06;
      border-top: 1px solid rgba(201,168,76,0.08);
      font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(245,240,232,0.5);
    }
    .footer-established img { width: 28px; height: 28px; object-fit: contain; opacity: 0.6; }

    /* ── CATERING WIZARD ── */
    .cw-opt {
      background: transparent;
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--cream);
      padding: 0.5rem 1.2rem;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.2s;
    }
    .cw-opt:hover { border-color: var(--gold); color: var(--gold); }
    .cw-opt.cw-selected { background: var(--gold); color: var(--black); border-color: var(--gold); }
    .cw-event-card {
      border: 1px solid rgba(201,168,76,0.25);
      padding: 2rem 1rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
    }
    .cw-event-card:hover { border-color: rgba(201,168,76,0.6); background: rgba(201,168,76,0.04); }
    .cw-event-card.cw-selected { border-color: var(--gold); background: rgba(201,168,76,0.08); }
    .cw-tier-card {
      border: 1px solid rgba(201,168,76,0.25);
      padding: 2rem 1.5rem;
      cursor: pointer;
      transition: all 0.2s;
    }
    .cw-tier-card:hover { border-color: rgba(201,168,76,0.6); background: rgba(201,168,76,0.04); }
    .cw-tier-card.cw-selected { border-color: var(--gold); background: rgba(201,168,76,0.08); }
    .cw-tier-card.cw-popular { border-color: rgba(201,168,76,0.5); }
    .cw-item-label {
      display: flex; align-items: center; gap: 0.6rem;
      cursor: pointer; padding: 0.45rem 0.6rem;
      border: 1px solid rgba(201,168,76,0.08);
      font-size: 0.8rem; color: rgba(245,240,232,0.75);
      transition: background 0.15s;
    }
    .cw-item-label:hover { background: rgba(201,168,76,0.06); }
    .cw-item-label input[type="checkbox"] { accent-color: var(--gold); width:14px; height:14px; flex-shrink:0; }
    /* ── PAGE FADE TRANSITION ── */
    .page { opacity: 0; transition: opacity 0.25s ease; }
    .page.active { opacity: 1; }

    /* ── BUTTON PRESS ANIMATION ── */
    .btn-filled:active, .btn-outline:active, .float-order-btn:active { transform: scale(0.97); }

    /* ── HAMBURGER BUTTON ── */
    .hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      gap: 5px; width: 40px; height: 40px;
      background: none; border: none; cursor: pointer; padding: 4px;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: #5C3520; border-radius: 2px; /* was var(--cream) — invisible on the warm cream nav */
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE NAV OVERLAY ── */
    .mobile-nav-overlay {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999;
      background: rgba(10,10,10,0.96);
      flex-direction: column; align-items: center; justify-content: center;
    }
    .mobile-nav-overlay.open { display: flex; }
    .mobile-nav-menu {
      display: flex; flex-direction: column; align-items: center; gap: 0;
      width: 100%;
    }
    .mobile-nav-menu a {
      display: block; width: 100%; text-align: center;
      padding: 1.4rem 2rem;
      color: var(--cream); text-decoration: none;
      font-size: 1.4rem; letter-spacing: 0.12em;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300; text-transform: uppercase;
      border-bottom: 1px solid rgba(201,168,76,0.1);
      transition: color 0.2s, background 0.2s;
    }
    .mobile-nav-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.04); }
    .mobile-nav-close {
      position: absolute; top: 1.2rem; right: 1.5rem;
      background: none; border: none; color: var(--cream);
      font-size: 2rem; cursor: pointer; line-height: 1;
    }

    /* ── SCROLL-TO-TOP ── */
    .scroll-top {
      position: fixed; bottom: 5.5rem; left: 1.2rem; z-index: 200;
      width: 40px; height: 40px;
      background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
      color: var(--gold); font-size: 1.1rem; line-height: 1;
      cursor: pointer; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, transform 0.3s;
      transform: translateY(10px);
    }
    .scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .scroll-top:hover { background: rgba(201,168,76,0.3); }

    /* ── TABLET: collapse nav links to hamburger earlier ── */
    @media (max-width: 1024px) {
      nav { padding: 0 1.5rem; }
      nav#nav-ga { display: flex; justify-content: space-between; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }


    /* ── TABLET FOOTER FIX ── */
    @media (max-width: 900px) and (min-width: 769px) {
      footer { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .footer-right { text-align: left; }
      .footer-logo { grid-column: 1 / -1; justify-self: center; }
    }

    /* ── MOBILE RESPONSIVE ── */
    @media (max-width: 768px) {
      /* Nav — revert grid to flex on mobile so hamburger stays right-aligned */
      nav { padding: 0 1rem; }
      nav#nav-ga { display: flex; justify-content: space-between; }
      .nav-logo { font-size: 0.7rem; letter-spacing: 0.1em; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      .hero { min-height: 72vh; }
      .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

      /* Inputs — prevent iOS auto-zoom */
      input, select, textarea { font-size: 16px !important; }

      /* Footer */
      footer { grid-template-columns: 1fr; text-align: center; }
      .footer-right { text-align: center; }
      .services-grid { grid-template-columns: 1fr; }
      .email-form { flex-direction: column; }
      .email-form input { border-right: 1px solid rgba(201,168,76,0.4); border-bottom: none; }

      /* Event type cards — 2 column grid */
      .cw-event-grid { grid-template-columns: 1fr 1fr !important; }

      /* Wizard tab labels */
      .cw-tab { font-size: 0.6rem !important; padding: 0.5rem 0.3rem !important; }

      /* Catering wizard */
      #cw-menu-wrap { grid-template-columns: 1fr !important; }
      #cw-summary-panel { position: static !important; }

      /* Float button */
      .float-order-btn { bottom: 1.2rem; right: 1.2rem; padding: 0.75rem 1.5rem; font-size: 0.72rem; }

      /* Scroll-to-top */
      .scroll-top { bottom: 4.5rem; }

      /* About section text */
      .about-section p { font-size: 1rem; }
      .about-quote { font-size: 1.1rem !important; }

      /* Hero sub text */
      .hero-sub { font-size: 0.78rem; letter-spacing: 0.08em; }

      /* Membership section */
      #membership-inquiry { padding: 2.5rem 1.2rem 4rem; }

      /* Visual gallery — 2 cols on mobile */
      .visual-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }

      /* Catering wizard tier cards */
      .cw-tier-card { padding: 1.4rem 1rem !important; }
    }

    /* ── EXTRA SMALL SCREENS (≤ 420px) ── */
    @media (max-width: 420px) {
      .hero h1 { font-size: 2rem !important; }
      .hero-ctas { flex-direction: column; align-items: center; }
      .about-section p { font-size: 0.95rem; }
      .menu-container { padding: 2rem 0.9rem 4rem; }
      .mf-btn { font-size: 0.62rem !important; padding: 0.5rem 0.7rem !important; }
      #membership-inquiry { padding: 2rem 0.9rem 5rem; }
    }

    /* ══════════════════════════════════════
       HOME REDESIGN — cozy warm loungy
    ══════════════════════════════════════ */

    /* Hero — bottom-anchored, left-aligned, banner height */
    #home .hero {
      min-height: 58vh;
      align-items: flex-start;
      justify-content: flex-end;
      text-align: left;
      padding: 0 3.5rem 4rem;
    }
    #home .ga-monogram { display: none; }

    #home .hero::before {
      background: linear-gradient(
        to bottom,
        rgba(28,16,9,0.04) 0%,
        rgba(28,16,9,0.38) 40%,
        rgba(28,16,9,0.68) 100%
      );
    }

    .hero-location-tag {
      display: flex; align-items: center; gap: 0.7rem;
      margin-bottom: 1.1rem;
    }
    .hero-location-tag::before {
      content: '';
      width: 24px; height: 1px;
      background: rgba(201,168,76,0.6);
      display: block;
    }
    .hero-location-tag span {
      font-size: 0.68rem; letter-spacing: 0.28em;
      color: #C9A84C; text-transform: uppercase;
    }

    #home .hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 4.8rem);
      color: #FAF1E3; line-height: 1.11;
      max-width: 600px;
    }
    #home .hero .hero-sub {
      color: #C9A84C;
      font-size: clamp(0.88rem, 1.8vw, 1.15rem);
      letter-spacing: 0.04em; margin-bottom: 2.2rem;
      max-width: 520px;
    }
    #home .hero-ctas { justify-content: flex-start; }

    #home .btn-filled {
      background: #C9A84C; color: #1C1009;
      border-color: #C9A84C; font-weight: 700;
      padding: 1rem 2.4rem;
    }
    #home .btn-filled:hover { background: #b8933b; color: #1C1009; }
    #home .btn-outline {
      border-color: #C9A84C; color: #FAF1E3;
      padding: 1rem 2.4rem;
      box-shadow: 0 0 12px rgba(201,168,76,0.35), inset 0 0 0 1px rgba(201,168,76,0.15);
      animation: btn-pulse 3s ease-in-out infinite;
    }
    @keyframes btn-pulse {
      0%, 100% { box-shadow: 0 0 12px rgba(201,168,76,0.35), inset 0 0 0 1px rgba(201,168,76,0.15); }
      50%       { box-shadow: 0 0 22px rgba(201,168,76,0.65), inset 0 0 0 1px rgba(201,168,76,0.25); }
    }
    #home .btn-outline:hover {
      background: rgba(201,168,76,0.15); color: #FAF1E3;
      box-shadow: 0 0 28px rgba(201,168,76,0.7), inset 0 0 0 1px rgba(201,168,76,0.3);
      animation: none;
    }

    @media (max-width: 768px) {
      #home .hero {
        min-height: 65vh;
        align-items: center; text-align: center;
        padding: 0 1.5rem 3rem;
        justify-content: flex-end;
      }
      #home .hero h1 { max-width: 100%; }
      #home .hero .hero-sub { max-width: 100%; }
      #home .hero-ctas {
        justify-content: center; flex-direction: column;
        align-items: stretch; width: 100%; gap: 0.7rem;
      }
      .hero-location-tag { justify-content: center; }
      .hero-location-tag::before { display: none; }
    }

    /* Hero events notice */
    .hero-event-notice {
      margin-top: 1.6rem;
      padding: 1rem 1.3rem;
      background: rgba(20,10,5,0.6);
      border: 1px solid rgba(201,168,76,0.28);
      border-radius: 4px;
      max-width: 440px;
      backdrop-filter: blur(4px);
    }
    .hero-event-notice p {
      font-size: 0.84rem; font-style: italic;
      color: rgba(250,241,227,0.92);
      line-height: 1.75; margin-bottom: 0.75rem;
    }
    .hero-event-btn {
      display: inline-block;
      font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: #C9A84C; text-decoration: none;
      border: 1px solid rgba(201,168,76,0.45);
      padding: 0.45rem 1.1rem; border-radius: 2px;
      transition: background 0.2s, border-color 0.2s;
    }
    .hero-event-btn:hover { background: rgba(201,168,76,0.12); border-color: #C9A84C; }
    @media (max-width: 768px) {
      .hero-event-notice { max-width: 100%; }
      .hero-event-btn { display: block; text-align: center; padding: 0.65rem; }
    }

    /* Feature pill bar */
    .home-features {
      background: #F5EAD8;
      padding: 0.85rem 2rem;
      display: flex; gap: 0.65rem; align-items: center;
      overflow-x: auto; -webkit-overflow-scrolling: touch;
      border-bottom: 1px solid #EAD9C8;
      scrollbar-width: none;
    }
    .home-features::-webkit-scrollbar { display: none; }
    .home-feature-pill {
      background: #FFF6E9; border: 1px solid #DFD0BC;
      border-radius: 20px; padding: 0.4rem 1rem;
      font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: #5C3520; white-space: nowrap; flex-shrink: 0;
    }
    .home-address-link {
      margin-left: auto; font-size: 0.68rem;
      color: #B85C3A; letter-spacing: 0.06em;
      white-space: nowrap; text-decoration: none; flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .home-address-link { display: none; }
      .home-features { padding: 0.75rem 1.2rem; }
    }

    /* About section — warm cream */
    #home .about-section {
      background: #FAF1E3 !important;
      padding: 5rem 4rem;
      text-align: left;
    }
    #home .about-section::before { display: none; }
    #home .about-section .about-label { color: #C9A84C; text-align: left; }
    #home .about-section h2 { color: #1C1009; margin-bottom: 0; text-align: left; }

    /* Hide original flat content — re-laid-out inside .about-inner */
    #home .about-section > p,
    #home .about-section > .about-divider,
    #home .about-section > .about-quote,
    #home .about-section > .hours,
    #home .about-section > .about-icons { display: none !important; }

    /* 2-col grid */
    .about-inner {
      display: grid; grid-template-columns: 1.15fr 0.85fr;
      gap: 3.5rem; align-items: start;
      max-width: 1100px; margin: 2.5rem auto 0;
    }
    @media (max-width: 860px) {
      .about-inner { grid-template-columns: 1fr; gap: 2rem; }
      #home .about-section { padding: 3rem 1.4rem; }
    }

    .about-text-col > p {
      font-size: 1.05rem; color: #5C3520;
      line-height: 1.95; margin-bottom: 1.15rem;
      text-align: left;
    }
    .about-text-col > .about-tagline-home {
      font-style: italic; color: #B85C3A;
      font-size: 1rem; letter-spacing: 0.04em; margin-top: 1.2rem;
    }
    .home-icons-row {
      display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: 2rem;
    }
    .home-icon-item { text-align: center; }
    .home-icon-item .icon-symbol { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
    .home-icon-item .icon-label {
      font-size: 0.65rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: #5C3520;
    }

    .about-side-col {
      display: flex; flex-direction: column; gap: 1.2rem;
    }

    /* Quote card */
    .about-quote-card {
      background: #5C3520; padding: 1.8rem 2rem; border-radius: 6px;
    }
    .about-quote-card .quote-text {
      font-style: italic; font-size: 1.2rem;
      color: #FAF1E3; line-height: 1.7; margin-bottom: 0.8rem;
    }
    .about-quote-card .quote-attr {
      font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: #C9A84C;
    }

    /* Hours card */
    .about-hours-card {
      border: 1px solid #EAD9C8; background: #FFF6E9;
      border-radius: 6px; padding: 1.4rem 1.6rem;
    }
    .about-hours-label {
      font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: #B85C3A; margin-bottom: 0.8rem; display: block;
    }
    .about-hours-body {
      font-size: 0.92rem; color: #3D1F0A;
      line-height: 2; letter-spacing: 0.03em;
    }

    /* Order CTA */
    .about-cta-order {
      display: block; width: 100%;
      background: #B85C3A; color: #FAF1E3;
      border: none; font-family: inherit;
      font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
      padding: 1rem; border-radius: 3px; cursor: pointer;
      font-weight: 600; text-align: center; text-decoration: none;
      transition: background 0.2s;
    }
    .about-cta-order:hover { background: #9A4828; color: #FAF1E3; }

    /* Home footer — warm dark */
    #home footer {
      background: #2C1A0E;
      border-top: none;
    }
    #home .footer-center p { color: rgba(250,241,227,0.5); }
    #home .footer-right a { color: #C9A84C; }
    #home .footer-tagline {
      background: #2C1A0E;
      border-top-color: rgba(201,168,76,0.12);
      color: rgba(201,168,76,0.55);
      font-style: italic; letter-spacing: 0.08em;
    }
    #home .footer-social { background: #1A0C04; border-top-color: rgba(201,168,76,0.08); }
    #home .footer-established { background: #1C0E06; border-top-color: rgba(201,168,76,0.06); color: rgba(245,240,232,0.5); }

    /* ── FLOATING ORDER BUTTON ── */
    .float-order-btn {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
      background: var(--gold); color: var(--black);
      padding: 0.85rem 2rem; font-family: inherit;
      font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
      font-weight: 600; text-decoration: none;
      opacity: 0; pointer-events: none; transform: translateY(14px);
      transition: opacity 0.3s, transform 0.3s, background 0.2s;
      border: none; cursor: pointer;
    }
    .float-order-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .float-order-btn:hover { background: #b8933b; }

    /* ══════════════════════════════════════════════════════
       WARM THEME — Nav, Hamburger, Mobile Menu, Moso Menu
    ══════════════════════════════════════════════════════ */

    /* ── Default nav: always warm cream ── */
    nav#nav-ga {
      background: #FAF1E3;
      border-bottom: 1px solid #EAD9C8;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
    }
    /* ── Tablet/Mobile: override grid back to flex (must come after warm nav#nav-ga block,
       otherwise the grid rule wins the cascade and the hamburger drifts to mid-bar) ── */
    @media (max-width: 1024px) {
      nav#nav-ga { display: flex; justify-content: space-between; align-items: center; }
    }
    #nav-ga .nav-logo {
      color: #5C3520;
    }
    #nav-ga .nav-links li a {
      color: #5C3520;
    }
    #nav-ga .nav-links li a:hover {
      color: #B85C3A;
    }
    #nav-ga .nav-links li a.active {
      color: #5C3520;
      font-weight: 600;
    }
    /* External nav links (Events, Gallery) — styled via CSS, no inline styles */
    #nav-ga .nav-ext-link {
      color: #5C3520;
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 400;
      transition: color 0.2s;
    }
    #nav-ga .nav-ext-link:hover { color: #B85C3A; }

    /* Language toggle button */
    #nav-ga #lang-btn {
      background: none;
      border: 1px solid rgba(92,53,32,0.35);
      color: #5C3520;
      font-family: inherit;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      padding: 0.32rem 0.6rem;
      cursor: pointer;
      text-transform: uppercase;
    }
    #nav-ga #lang-btn:hover { border-color: #C9A84C; }
    /* Hamburger bars: dark on warm nav */
    #nav-ga .hamburger span {
      background: #5C3520;
    }
    /* Push button group to right edge in grid */
    #nav-ga > div {
      justify-self: end;
    }

    /* ── Mobile nav overlay: warm cream ── */
    .mobile-nav-overlay {
      background: #FAF1E3 !important;  /* fully opaque — no bleed-through */
    }
    .mobile-nav-menu a {
      color: #5C3520 !important;
      background: transparent !important;  /* reset any dark-theme background */
      border-bottom: 1px solid #EAD9C8 !important;
      font-size: 1.6rem;
    }
    .mobile-nav-menu a:hover {
      color: #B85C3A !important;
      background: rgba(184,92,58,0.06) !important;
    }
    .mobile-nav-menu a.active {
      color: #5C3520 !important;        /* same as regular — active is indicated by page content */
      background: rgba(184,92,58,0.06) !important;
      font-weight: 600 !important;
    }
    .mobile-nav-close {
      color: #5C3520 !important;
      font-size: 2.4rem;
    }

    /* ── Moso Signature page: warm cream ── */
    #moso {
      background: #FAF1E3;
      color: #1C1009;
    }
    .menu-hero {
      border-bottom-color: #EAD9C8;
    }
    .menu-hero h1 {
      color: #1C1009;
    }
    .menu-hero p {
      color: rgba(92,53,32,0.6);
    }
    .menu-section-title {
      color: #5C3520;
      border-bottom-color: #D4C0A8;
    }
    .menu-section-sub {
      color: rgba(92,53,32,0.55);
    }
    .menu-item {
      border-bottom-color: rgba(92,53,32,0.08);
    }
    .item-name {
      color: #1C1009;
    }
    .item-desc {
      color: rgba(92,53,32,0.58);
    }
    .item-price {
      color: #B85C3A;
    }
    /* Wellness & drink cards */
    .wellness-card {
      border-color: #EAD9C8;
      background: #FFF6E9;
    }
    .wellness-card .w-name {
      color: #5C3520;
    }
    .wellness-card .w-ingredients {
      color: rgba(92,53,32,0.58);
    }
    .wellness-card .w-calories {
      color: rgba(92,53,32,0.5);  /* was gold on cream = invisible */
    }
    .drink-card {
      border-color: #EAD9C8;
      background: #FFF6E9;
    }
    .drink-card .d-name {
      color: #5C3520;
    }
    .drink-card .d-ingredients {
      color: rgba(92,53,32,0.58);
    }
    /* Enhancers */
    .enhancer-item {
      border-color: rgba(92,53,32,0.1);
      background: #FFF6E9;
    }
    .enhancer-item .e-name {
      color: #1C1009;
    }
    .enhancer-item .e-benefit {
      color: rgba(92,53,32,0.55);
    }
    .add-price {
      color: #B85C3A;
    }
    /* Catering wizard items on moso page */
    .cw-opt {
      color: #5C3520;
      border-color: rgba(92,53,32,0.25);
    }
    .cw-opt:hover { border-color: #C9A84C; color: #5C3520; }
    .cw-opt.cw-selected { background: #C9A84C; color: #1C1009; border-color: #C9A84C; }
    .cw-event-card {
      border-color: rgba(92,53,32,0.2);
      color: #1C1009;
    }
    .cw-event-card:hover { border-color: #C9A84C; background: rgba(201,168,76,0.05); }
    .cw-event-card.cw-selected { border-color: #C9A84C; background: rgba(201,168,76,0.08); }
    .cw-tier-card {
      border-color: rgba(92,53,32,0.2);
      color: #1C1009;
    }
    .cw-tier-card:hover { border-color: #C9A84C; background: rgba(201,168,76,0.05); }
    .cw-tier-card.cw-selected { border-color: #C9A84C; background: rgba(201,168,76,0.08); }
    .cw-item-label {
      border-color: rgba(92,53,32,0.1);
      color: rgba(92,53,32,0.8);
    }
    .cw-item-label:hover { background: rgba(92,53,32,0.05); }
    /* Menu CTA button */
    .menu-cta .btn-filled {
      background: #B85C3A; color: #FAF1E3; border-color: #B85C3A;
    }
    .menu-cta .btn-filled:hover { background: #9A4828; color: #FAF1E3; }
    /* Moso footer warm dark */
    #moso footer {
      background: #2C1A0E;
      border-top: none;
    }
    #moso .footer-center p { color: rgba(250,241,227,0.5); }
    #moso .footer-right a { color: #C9A84C; }
    #moso .footer-tagline {
      background: #2C1A0E;
      border-top-color: rgba(201,168,76,0.12);
      color: rgba(201,168,76,0.55);
    }
    #moso .footer-social { background: #1A0C04; border-top-color: rgba(201,168,76,0.08); }
    #moso .footer-established { background: #1C0E06; border-top-color: rgba(201,168,76,0.06); color: rgba(245,240,232,0.5); }

    /* ── Tablet/Mobile: override grid back to flex (must come after warm nav#nav-ga block) ── */
    @media (max-width: 1024px) {
      nav#nav-ga { display: flex; justify-content: space-between; }
    }
