  :root {
    --bg: #0E0B07;
    --bg-2: #191309;
    --panel: #22190D;
    --line: rgba(227, 192, 119, 0.20);
    --ink: #F5ECDA;
    --muted: #CBB78E;
    --muted-2: #9C8760;
    --marigold: #E3C077;
    --marigold-ink: #1a1206;
    --chili: #8B5A2B;
    --chili-2: #A97940;
    --olive: #9C8760;
    --header-bg: rgba(14, 11, 7, 0.92);
    --logo-chip-bg: #0E0B07;
    --radius-s: 2px;
    --radius-m: 4px;
    --maxw: 1180px;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  :root[data-theme="light"] {
    --bg: #FAF6EE;
    --bg-2: #F0E8D4;
    --panel: #E7DCBE;
    --line: rgba(120, 92, 30, 0.20);
    --ink: #241B0E;
    --muted: #5C4E33;
    --muted-2: #8A7647;
    --marigold: #96731F;
    --marigold-ink: #FFF9EF;
    --chili: #6E4A22;
    --chili-2: #8A6535;
    --olive: #7A6A40;
    --header-bg: rgba(250, 246, 238, 0.92);
    --logo-chip-bg: #0E0B07;
  }

  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  html {
    scroll-behavior: smooth;
    /* --strip-h is set by assets/layout.js to the offer-strip's real height */
    --strip-h: 34px;
    --nav-h: 58px;
    scroll-padding-top: calc(var(--strip-h) + var(--nav-h) + env(safe-area-inset-top, 0px));
  }

  html,
  body {
    height: 100%;
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    transition: background .2s ease, color .2s ease;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

  a {
    color: inherit;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
  }

  button {
    font-family: inherit;
  }

  /* ---------- Offer strip ---------- */
  .offer-strip {
    background: var(--bg);
    color: var(--ink);
    font-size: 13.5px;
    padding: 9px 16px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 60;
    padding-top: calc(9px + env(safe-area-inset-top, 0px));
    border-bottom: 1px solid var(--line);
    line-height: 1.4;
  }

  .offer-strip strong {
    color: var(--marigold);
  }

  .offer-strip .days {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 10px;
    border: 1px solid var(--marigold);
    color: var(--marigold);
    border-radius: 20px;
    font-weight: 600;
  }

  /* ---------- Nav ---------- */
  header.site {
    position: sticky;
    top: var(--strip-h);
    z-index: 59;
    will-change: transform;
    /* keeps sticky compositing reliable across browsers */
    background: var(--header-bg);
    backdrop-filter: blur(6px);
    transition: background .2s ease;
  }

  .navbar {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
  }

  .brand .mark {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.01em;
    color: var(--marigold);
  }

  .brand-logo {
    width: auto;
    display: block;
    max-width: 178px;
  }

  .brand .sub {
    font-size: 11px;
    color: var(--muted-2);
    letter-spacing: 0.04em;
  }

  .foot-logo {
    height: auto;
    max-width: 200px;
    margin-bottom: 4px;
  }

  nav.links {
    display: flex;
    gap: 2px;
    align-items: center;
  }

  nav.links button {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 14.5px;
    padding: 9px 13px;
    cursor: pointer;
    border-radius: var(--radius-s);
    transition: color .15s ease, background .15s ease;
  }

  nav.links button:hover {
    color: var(--ink);
  }

  nav.links button.active {
    color: var(--marigold-ink);
    background: var(--marigold);
    font-weight: 600;
  }

  /* About dropdown (desktop) */
  .nav-dropdown {
    position: relative;
    display: inline-flex;
  }

  .nav-drop-btn .caret {
    font-size: 10px;
    margin-left: 2px;
    display: inline-block;
    transition: transform .15s ease;
  }

  .nav-drop-btn.parent-active {
    color: var(--marigold-ink);
    background: var(--marigold);
    font-weight: 600;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.30);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transform-origin: top left;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s cubic-bezier(.16, 1, .3, 1), visibility .22s;
    z-index: 60;
  }

  /* little arrow pointing back at the About button */
  .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 22px;
    width: 12px;
    height: 12px;
    background: var(--bg-2);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: rotate(45deg);
  }

  /* invisible bridge so hover never breaks in the gap */
  .dropdown-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-dropdown:hover .nav-drop-btn .caret {
    transform: rotate(180deg);
  }

  .dropdown-menu button {
    white-space: nowrap;
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s ease, transform .2s ease, color .15s ease, background .15s ease;
  }

  .nav-dropdown:hover .dropdown-menu button,
  .nav-dropdown:focus-within .dropdown-menu button {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-dropdown:hover .dropdown-menu button:nth-child(1) {
    transition-delay: .05s;
  }

  .nav-dropdown:hover .dropdown-menu button:nth-child(2) {
    transition-delay: .10s;
  }

  .nav-dropdown:hover .dropdown-menu button:nth-child(3) {
    transition-delay: .15s;
  }

  .navcta {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: var(--radius-m);
    font-size: 14.5px;
    font-weight: 600;
    background: transparent;
    color: var(--ink);
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
  }

  .btn:hover {
    border-color: var(--muted);
  }

  .btn-primary {
    background: var(--marigold);
    color: var(--marigold-ink);
    border-color: var(--marigold);
  }

  .btn-primary:hover {
    background: #f0b23d;
    transform: translateY(-1px);
  }

  .btn-ghost-light {
    border-color: rgba(243, 233, 218, 0.35);
  }

  .navmenu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 8px 11px;
    border-radius: var(--radius-s);
  }

  .btn-cart {
    position: relative;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    padding: 9px 12px;
    border-radius: var(--radius-m);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
  }

  .btn-cart:hover {
    border-color: var(--marigold);
  }

  /* square icon buttons in the navbar (phone / theme / cart) */
  .nav-icbtn {
    width: 44px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    background: transparent;
    color: var(--ink);
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: border-color .15s ease, transform .15s ease;
  }

  .nav-icbtn:hover {
    border-color: var(--marigold);
  }

  .nav-icbtn .theme-icon {
    font-size: 15px;
    line-height: 1;
  }

  /* Font Awesome sun/moon inside theme toggle (navbar + drawer) */
  .theme-icon i {
    color: inherit;
  }

  .cart-ic {
    font-size: 17px;
  }

  .cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    background: var(--marigold);
    color: var(--marigold-ink);
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }

  .cart-count.zero {
    display: none;
  }


  .fix {
    overflow: hidden;
  }

  .bg-cover {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    background-position: center !important;
  }

  html[data-theme="light"] .hero-section {
    background-image: url(../assets/home-bg-light.jpg) !important;
    color: var(--ink);
  }

  html[data-theme="light"] .hero-overlay {
    background: linear-gradient(90deg, rgba(250, 246, 238, 0.88) 0%, rgba(250, 246, 238, 0.65) 38%, rgba(250, 246, 238, 0.15) 66%, rgba(250, 246, 238, 0) 100%);
  }

  html[data-theme="light"] .hero h1 {
    color: var(--ink);
    text-shadow: none;
  }

  html[data-theme="light"] .hero p.lead {
    color: var(--muted);
  }

  html[data-theme="light"] .home-area {
    background-image: url(../assets/home-bg-light.jpg) !important;
  }

  .hero-1 .shape-1 {
    position: absolute;
    top: 15px;
    left: 0;
  }

  .float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  @-webkit-keyframes float-bob-y {
    0% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }

    50% {
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }

    100% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }
  }

  @keyframes float-bob-y {
    0% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }

    50% {
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }

    100% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }
  }

  .float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  @-webkit-keyframes float-bob-x {
    0% {
      -webkit-transform: translateX(0px);
      transform: translateX(30px);
    }

    50% {
      -webkit-transform: translateX(10px);
      transform: translateX(10px);
    }

    100% {
      -webkit-transform: translateX(30px);
      transform: translateX(30px);
    }
  }

  @keyframes float-bob-x {
    0% {
      -webkit-transform: translateX(30px);
      transform: translateX(30px);
    }

    50% {
      -webkit-transform: translateX(10px);
      transform: translateX(10px);
    }

    100% {
      -webkit-transform: translateX(30px);
      transform: translateX(30px);
    }
  }

  .hero-1 .shape-3 {
    position: absolute;
    bottom: 0;
    right: 0%;
  }

  /* ---------- Add-to-cart controls injected into menu items ---------- */
  .menu-item {
    flex-wrap: wrap;
  }

  .item-add-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .item-price-select {
    background: var(--bg-2);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12.5px;
    padding: 5px 7px;
    border-radius: var(--radius-s);
    font-family: inherit;
  }

  .qty-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    overflow: hidden;
  }

  .qty-stepper button {
    background: var(--bg-2);
    border: none;
    color: var(--ink);
    width: 26px;
    height: 26px;
    font-size: 15px;
    cursor: pointer;
    line-height: 1;
  }

  .qty-stepper button:hover {
    background: var(--marigold);
    color: var(--marigold-ink);
  }

  .qty-stepper .qn {
    width: 24px;
    text-align: center;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
  }

  .add-btn {
    background: var(--marigold);
    color: var(--marigold-ink);
    border: none;
    border-radius: var(--radius-m);
    padding: 6px 13px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
  }

  .add-btn:hover {
    background: #f0b23d;
  }

  /* ---------- Cart drawer ---------- */
  .cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 6, 3, 0.6);
    z-index: 120;
    display: none;
  }

  .cart-overlay.open {
    display: block;
  }

  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 92vw);
    background: var(--bg-2);
    border-left: 1px solid var(--line);
    z-index: 121;
    transform: translateX(100%);
    transition: transform .28s ease;
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .cart-drawer.open {
    transform: translateX(0);
  }

  .cart-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .cart-drawer-head h3 {
    font-size: 19px;
  }

  .cart-drawer-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
  }

  .cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 20px;
  }

  .cart-line {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
  }

  .cart-line .cl-info {
    flex: 1;
  }

  .cart-line .cl-name {
    font-size: 14px;
    color: var(--ink);
  }

  .cart-line .cl-variant {
    font-size: 12px;
    color: var(--muted-2);
  }

  .cart-line .cl-price {
    font-size: 13px;
    color: var(--marigold);
    margin-top: 2px;
    font-weight: 600;
  }

  .cart-line .cl-remove {
    background: none;
    border: none;
    color: var(--muted-2);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 4px;
  }

  .cart-empty {
    color: var(--muted-2);
    font-size: 14px;
    text-align: center;
    padding: 50px 10px;
  }

  .cart-drawer-foot {
    border-top: 1px solid var(--line);
    padding: 16px 20px 20px;
  }

  .cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 14px;
    font-weight: 600;
  }

  .cart-total-row .amt {
    color: var(--marigold);
    font-family: 'Fraunces', serif;
    font-size: 20px;
  }

  /* ---------- Cart drawer: coming soon ---------- */
  .cart-soon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 24px;
    gap: 14px;
  }

  .cart-soon-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--marigold);
    font-size: 24px;
  }

  .cart-soon h4 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
  }

  .cart-soon p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0;
  }

  .cart-soon .btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .cart-soon .btn i {
    margin-right: 7px;
  }

  /* ---------- Checkout page ---------- */
  .checkout-steps {
    display: flex;
    gap: 6px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }

  .cstep {
    font-size: 13px;
    color: var(--muted-2);
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
  }

  .cstep.active {
    color: var(--marigold-ink);
    background: var(--marigold);
    border-color: var(--marigold);
    font-weight: 600;
  }

  .cstep-panel {
    display: none;
    max-width: 560px;
  }

  .cstep-panel.active {
    display: block;
  }

  .order-type-toggle {
    display: flex;
    gap: 10px;
  }

  .ot-btn {
    background: var(--bg-2);
    border: 1px solid var(--line);
    color: var(--muted);
    padding: 11px 22px;
    border-radius: var(--radius-m);
    cursor: pointer;
    font-size: 14.5px;
  }

  .ot-btn.active {
    background: var(--marigold);
    color: var(--marigold-ink);
    border-color: var(--marigold);
    font-weight: 600;
  }

  .order-summary {
    margin-top: 18px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .cart-line-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--muted);
    padding: 6px 0;
  }

  .cart-line-row .n {
    color: var(--ink);
  }

  /* Desktop: drawer chrome is never shown */
  .mobile-drawer,
  .drawer-overlay {
    display: none;
  }

  @media (max-width:880px) {
    nav.links {
      display: none;
    }

    .navbar {
      padding: 5px 8px;
    }

    .btn-cart {
      padding: 6px 6px;
    }

    .navmenu-toggle {
      display: inline-flex;
    }

    .navcta .btn span.long {
      display: none;
    }

    /* Call + theme move into the drawer on mobile */
    .navcta .nav-cta-move {
      display: none;
    }

    body.drawer-lock {
      overflow: hidden;
    }

    /* Slide-in drawer panel */
    .mobile-drawer {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: min(82vw, 320px);
      padding: 0;
      background: var(--bg-2);
      border-right: 1px solid var(--line);
      box-shadow: 2px 0 20px rgba(0, 0, 0, 0.4);
      z-index: 90;
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform .3s ease;
    }

    .mobile-drawer.open {
      transform: translateX(0);
    }

    .drawer-overlay {
      display: block;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 85;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s ease, visibility .3s ease;
    }

    .drawer-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    /* Top of the slide: Call + theme + close */
    .drawer-head {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px;
      border-bottom: 1px solid var(--line);
    }

    .drawer-close {
      margin-left: auto;
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: 1px solid var(--line);
      color: var(--ink);
      font-size: 22px;
      line-height: 1;
      border-radius: var(--radius-s);
      cursor: pointer;
    }

    .drawer-links {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 10px 16px 18px;
    }

    .drawer-links button {
      text-align: left;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 15px;
      padding: 11px 4px;
      border-bottom: 1px solid var(--line);
    }

    .drawer-links button.active {
      color: var(--marigold);
    }
  }

  /* About accordion (mobile) */
  .drawer-acc-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .drawer-acc-btn .caret {
    font-size: 11px;
    transition: transform .2s ease;
  }

  .drawer-acc-btn.open .caret {
    transform: rotate(180deg);
  }

  .drawer-sub {
    display: none;
    flex-direction: column;
    padding-left: 14px;
  }

  .drawer-sub.open {
    display: flex;
  }

  .drawer-sub button {
    font-size: 14px;
    color: var(--muted-2);
  }

  /* ---------- Bottom sticky call bar (mobile) ---------- */
  .mobile-callbar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: var(--panel);
    border-top: 1px solid var(--line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }

  @media (max-width:640px) {
    .mobile-callbar {
      display: flex;
    }

    body {
      padding-bottom: 70px;
    }
  }

  .mobile-callbar a {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: var(--radius-m);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
  }

  .cb-call {
    background: var(--marigold);
    color: var(--marigold-ink);
  }

  .cb-dir {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }

  /* ---------- Sections ---------- */
  section.page {
    display: none;
    animation: fadein .35s ease;
  }

  section.page.active {
    display: block;
  }

  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(6px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    section.page {
      animation: none;
    }
  }

  .eyebrow {
    color: var(--marigold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-pad-sm {
    padding: 48px 0;
  }

  hr.rule {
    border: none;
    border-top: 1px solid var(--line);
    margin: 0;
  }

  /* ---------- Hero ---------- */
  .hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(9, 6, 3, 0.94) 0%, rgba(9, 6, 3, 0.80) 38%, rgb(9 6 3 / 23%) 66%, rgb(9 6 3 / 0%) 100%);
  }

  /* ---------- Hero rising-smoke effect (SVG turbulence warped) ---------- */
  .hero-smoke {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }

  .hero-smoke span {
    position: absolute;
    top: 70px;
    right: 181px;
    width: 95px;
    height: 46vh;
    min-height: 280px;
    border-radius: 50% 50% 50% 50% / 32% 32% 68% 68%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.65) 28%, rgba(255, 255, 255, 0.35) 55%, rgba(255, 255, 255, 0) 88%);
    filter: url(#smokeWarp) blur(3px);
    mix-blend-mode: screen;
    opacity: 0;
    transform-origin: 50% 100%;
    animation: heroSmokeRise 8s ease-in infinite
  }

  /* Three plumes rising off the food side of the hero (like steam off the biryani) */
  .hero-smoke span:nth-child(1) {
    left: 55%;
    height: 52vh;
    animation-duration: 8s;
    animation-delay: 0s;
  }

  .hero-smoke span:nth-child(2) {
    left: 88.5%;
    height: 42vh;
    top: 88px;
    width: 130px;
    animation-duration: 10s;
    animation-delay: 2.8s;
  }

  .hero-smoke span:nth-child(3) {
    left: 66.5%;
    height: 0;
    width: 89px;
    top: 43%;
    animation-duration: 9s;
    animation-delay: 5.2s;
  }

  @keyframes heroSmokeRise {
    0% {
      opacity: 0;
      transform: translateY(40%) translateX(0) scale(.7);
    }

    15% {
      opacity: .9;
    }

    35% {
      opacity: .75;
      transform: translateY(10%) translateX(5px) scale(.9);
    }

    55% {
      opacity: .6;
      transform: translateY(-20%) translateX(-5px) scale(1.1);
    }

    75% {
      opacity: .4;
      transform: translateY(-55%) translateX(5px) scale(1.3);
    }

    100% {
      opacity: 0;
      transform: translateY(-100%) translateX(-4px) scale(1.5);
    }
  }

  html[data-theme="light"] .hero-smoke span {
    background: linear-gradient(to top, rgba(90, 70, 50, 0.55) 0%, rgba(90, 70, 50, 0.3) 30%, rgba(90, 70, 50, 0.12) 58%, rgba(90, 70, 50, 0) 88%);
    mix-blend-mode: multiply;
  }

  /* Reduced motion: keep the smoke visible but frozen as static wisps */
  @media (prefers-reduced-motion: reduce) {
    .hero-smoke span {
      animation: none;
      opacity: .25;
      transform: translate(-15px, -30%) scaleY(1.05);
    }

    .hero-smoke span:nth-child(2) {
      opacity: .2;
      transform: translate(10px, -20%) scaleY(.95);
    }

    .hero-smoke span:nth-child(3) {
      opacity: .25;
      transform: translate(-25px, -45%) scaleY(1.1);
    }
  }

  .hero-section .wrap {
    position: relative;
    z-index: 2;
  }

  .hero-content {
    max-width: 500px;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 8px;
    color: var(--marigold);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .hero-eyebrow .ln {
    width: 30px;
    height: 1px;
    background: var(--marigold);
    opacity: .65;
  }

  .hero-eyebrow .dot {
    opacity: .8;
  }

  .hero h1 {
    margin: 0;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 5.2vw, 50px);
    line-height: 1.09;
    text-shadow: 0 2px 22px rgba(0, 0, 0, .45);
  }

  .hero h1 em {
    font-style: italic;
    color: var(--marigold);
  }

  .hero p.lead {
    margin: 9px 0 0;
    font-size: clamp(14px, 1.4vw, 14px);
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
    max-width: 44ch;
  }


  .home-area {
    height: 95vh;
    padding-top: 75px;
    padding-bottom: 60px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .hero-actions .btn i {
    font-size: 15px;
  }

  /* circular brand watermark, top-right */
  .hero-mark {
    position: absolute;
    top: 30px;
    right: 34px;
    width: clamp(96px, 12vw, 168px);
    height: auto;
    z-index: 1;
    opacity: .92;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .5));
  }

  /* bottom-right offer badge */
  .hero-offer {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 26px;
    background: rgba(12, 8, 4, 0.72);
    backdrop-filter: blur(4px);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-top-left-radius: 22px;
    text-decoration: none;
    color: var(--ink);
    transition: background .2s ease;
  }

  .hero-offer:hover {
    background: rgba(12, 8, 4, 0.90);
  }

  .hero-offer .offer-ic {
    font-size: 26px;
    color: var(--marigold);
  }

  .hero-offer .offer-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
  }

  .hero-offer .offer-num {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
  }

  .hero-offer .offer-lbl {
    font-size: 12.5px;
    color: var(--muted);
    letter-spacing: .02em;
  }

  .hero-offer .offer-arrow {
    color: var(--marigold);
    font-size: 18px;
    margin-left: 6px;
  }

  @media (max-width: 900px) {
    .hero-mark {
      top: 18px;
      right: 18px;
      opacity: .5;
    }

    .hero-smoke {
      display: none;
    }


  }

  @media (max-width: 640px) {
    .home-area {
      background-image: url(../assets/home-bg-m.jpg) !important;
      background-position: top;
      padding-top: 31px;
      padding-bottom: 324px;
    }

    .hero-overlay {
      background: linear-gradient(177deg, rgba(9, 6, 3, .86) 0%, rgb(9 6 3 / 25%) 55%, rgb(9 6 3 / 0%) 100%)
    }

    .hero-mark {
      display: none;
    }

    .hero-offer {
      left: 0;
      right: 0;
      justify-content: center;
      border-top-left-radius: 0;
      border-left: none;
      padding: 14px 16px;
    }

    /* Hero action buttons: icon-only on mobile, text shown as tap tooltip */
    .hero-actions {
      gap: 10px;
      margin-top: 15px;
    }

    .hero-actions .btn[data-tip] {
      flex: 0 0 auto;
      justify-content: center;
      width: 48px;
      height: 46px;
      padding: 0;
      position: relative;
    }

    .hero-actions .btn .btn-label {
      display: none;
    }

    .hero-actions .btn[data-tip]::after {
      content: attr(data-tip);
      display: none;
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: rgba(9, 6, 3, .94);
      color: #f3e9da;
      border: 1px solid rgba(243, 233, 218, .25);
      font-size: 12.5px;
      font-weight: 500;
      line-height: 1.35;
      padding: 7px 11px;
      border-radius: 8px;
      white-space: nowrap;
      pointer-events: none;
      z-index: 5;
    }

    .hero-actions .btn[data-tip]::before {
      content: "";
      display: none;
      position: absolute;
      bottom: calc(100% + 6px);
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 9px;
      height: 9px;
      background: rgba(9, 6, 3, .94);
      border-right: 1px solid rgba(243, 233, 218, .25);
      border-bottom: 1px solid rgba(243, 233, 218, .25);
      z-index: 5;
    }

    .hero-actions .btn[data-tip].show-tip::after,
    .hero-actions .btn[data-tip].show-tip::before {
      display: block;
    }

    /* Keep the last button's tooltip inside the viewport */
    .hero-actions .btn[data-tip]:last-child::after {
      left: auto;
      right: -12px;
      transform: none;
    }

    .hero-actions .btn[data-tip]:last-child::before {
      left: auto;
      right: 12px;
      transform: rotate(45deg);
    }

    .brand-logo {
      max-width: 144px;
    }
  }

  /* ---------- Category tiles (Home) ---------- */
  .tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  @media (max-width:900px) {
    .tiles {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .tile {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 26px 22px 22px;
    cursor: pointer;
    background:
      linear-gradient(160deg, rgba(227, 192, 119, 0.06), transparent 55%),
      var(--bg-2);
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }

  .tile::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--marigold), transparent 70%);
    opacity: 0;
    transition: opacity .25s ease;
  }

  .tile:hover {
    border-color: var(--marigold);
    transform: translateY(-4px);
    box-shadow: 0 14px 34px -18px rgba(227, 192, 119, 0.35);
  }

  .tile:hover::after {
    opacity: 1;
  }

  .tile-watermark {
    position: absolute;
    right: -14px;
    bottom: -18px;
    font-size: 96px;
    line-height: 1;
    color: var(--marigold);
    opacity: .07;
    transform: rotate(-8deg);
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
  }

  .tile:hover .tile-watermark {
    transform: rotate(0deg) scale(1.12);
    opacity: .13;
  }

  .tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--marigold), var(--chili-2));
    color: var(--marigold-ink);
    font-size: 20px;
    box-shadow: 0 6px 16px -8px rgba(227, 192, 119, 0.6);
    transition: transform .3s ease;
    position: relative;
  }

  .tile:hover .tile-icon {
    transform: scale(1.1) rotate(-6deg);
  }

  .tile h3 {
    font-size: 19px;
    margin-bottom: 6px;
    position: relative;
  }

  .tile p {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted-2);
    position: relative;
  }

  .tile-go {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--marigold);
    position: relative;
  }

  .tile-go i {
    transition: transform .25s ease;
    font-size: 11px;
  }

  @media (hover:hover) {
    .tile-go {
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .25s ease, transform .25s ease;
    }

    .tile:hover .tile-go {
      opacity: 1;
      transform: none;
    }

    .tile:hover .tile-go i {
      transform: translateX(4px);
    }
  }

  /* ---------- Signature dishes ---------- */
  .dish-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  @media (max-width:900px) {
    .dish-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width:520px) {
    .dish-row {
      grid-template-columns: 1fr;
    }
  }

  .dish-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    overflow: hidden;
    background: var(--bg-2);
  }

  .dish-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.85), rgba(227, 192, 119, 0.55)), var(--panel);
  }

  .dish-body {
    padding: 16px 16px 18px;
  }

  .dish-body .name {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 600;
  }

  .dish-body .price {
    color: var(--marigold);
    font-size: 14.5px;
    margin-top: 4px;
    font-weight: 600;
  }

  .dish-body .desc {
    font-size: 13px;
    color: var(--muted-2);
    margin-top: 6px;
  }

  /* ---------- Two col with rule ---------- */
  .split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
  }

  @media (max-width:880px) {
    .split {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  /* ---------- Menu page ---------- */
  .menu-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }

  .menu-cat-btn {
    background: var(--bg-2);
    border: 1px solid var(--line);
    color: var(--muted);
    padding: 9px 16px;
    border-radius: 20px;
    font-size: 13.5px;
    cursor: pointer;
  }

  .menu-cat-btn.active {
    background: var(--marigold);
    color: var(--marigold-ink);
    border-color: var(--marigold);
    font-weight: 600;
  }

  .menu-block {
    display: none;
  }

  .menu-block.active {
    display: block;
  }

  .menu-sub {
    margin-bottom: 36px;
  }

  .menu-sub h3 {
    font-size: 19px;
    margin-bottom: 14px;
    color: var(--marigold);
    font-weight: 600;
  }

  .menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 40px;
  }

  @media (max-width:700px) {
    .menu-items {
      grid-template-columns: 1fr;
    }
  }

  .menu-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14.5px;
  }

  .menu-item .iname {
    color: var(--ink);
  }

  .menu-item .iname .veg-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
  }

  .veg-dot.v {
    background: var(--olive);
  }

  .veg-dot.nv {
    background: var(--chili-2);
  }

  .menu-item .iprice {
    color: var(--muted);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }

  .menu-note {
    font-size: 12.5px;
    color: var(--muted-2);
    margin-top: 26px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  /* ---------- Offers page ---------- */
  .offer-card {
    border: 1px solid var(--marigold);
    border-radius: var(--radius-m);
    padding: 34px 32px;
    background:
      linear-gradient(120deg, rgba(227, 192, 119, 0.22), rgba(139, 90, 43, 0.1) 60%), var(--bg-2);
  }

  .offer-card h2 {
    font-size: 28px;
  }

  .offer-card .terms {
    margin-top: 22px;
    font-size: 13.5px;
    color: var(--muted-2);
    line-height: 1.7;
  }

  .countdown-pill {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--marigold);
    color: var(--marigold);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  /* ---------- About ---------- */
  .stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  @media (max-width:640px) {
    .stat-row {
      grid-template-columns: 1fr;
    }
  }

  .stat {
    border-left: 2px solid var(--marigold);
    padding-left: 16px;
  }

  .stat .n {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    color: var(--marigold);
    font-weight: 600;
  }

  .stat .l {
    font-size: 13px;
    color: var(--muted-2);
    margin-top: 3px;
  }

  /* ---------- About stats with icons ---------- */
  .stat-row--icons .stat {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    border-left: none;
    padding: 22px 18px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, var(--bg-2), transparent 70%);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .stat-row--icons .stat::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(var(--marigold), transparent);
    opacity: 0.7;
  }

  .stat-row--icons .stat:hover {
    transform: translateY(-5px);
    border-color: var(--marigold);
    box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.6);
  }

  .stat-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 17px;
    color: var(--marigold);
    background: var(--panel);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  }

  .stat-row--icons .stat:hover .stat-icon {
    background: var(--marigold);
    color: var(--marigold-ink);
    transform: scale(1.08) rotate(-6deg);
  }

  .stat-row--icons .stat-body {
    display: flex;
    flex-direction: column;
  }

  .stat-row--icons .stat .n {
    font-size: 22px;
  }

  .eyebrow i {
    color: var(--marigold);
    margin-right: 6px;
    font-size: 11px;
    vertical-align: 1px;
  }

  @media (max-width:640px) {
    .stat-row--icons .stat {
      padding: 18px 16px;
    }
  }

  /* ---------- Gallery ---------- */
  .gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  @media (max-width:900px) {
    .gal-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .gal-fig {
    position: relative;
    margin: 0;
    aspect-ratio: 4/3;
    border-radius: var(--radius-m);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
    cursor: zoom-in;
  }

  .gal-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
  }

  .gal-fig:hover img {
    transform: scale(1.06);
  }

  .gal-fig figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 12px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #F5ECDA;
    background: linear-gradient(to top, rgba(14, 11, 7, 0.85), transparent);
    transform: translateY(100%);
    transition: transform .35s ease;
    pointer-events: none;
  }

  .gal-fig:hover figcaption,
  .gal-fig:focus-within figcaption {
    transform: translateY(0);
  }

  .gal-zoom-hint {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(14, 11, 7, 0.6);
    color: var(--marigold);
    font-size: 12px;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
  }

  .gal-fig:hover .gal-zoom-hint {
    opacity: 1;
  }

  /* placeholder card for dishes awaiting photography */
  .gal-fig.gal-ph {
    cursor: default;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 6px;
    border-style: dashed;
    background:
      linear-gradient(150deg, rgba(169, 121, 64, 0.22), var(--panel));
    color: var(--muted-2);
    text-align: center;
    padding: 12px;
  }

  .gal-fig.gal-ph i {
    font-size: 20px;
    color: var(--marigold);
    opacity: .6;
  }

  .gal-fig.gal-ph span {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
  }

  .gal-fig.gal-ph em {
    font-style: normal;
    font-size: 11px;
  }

  .gal-note {
    margin-top: 26px;
    padding: 16px 18px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-m);
    font-size: 13.5px;
    color: var(--muted-2);
  }

  /* ---------- Lightbox (gallery zoom viewer) ---------- */
  .lb {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    background: rgba(10, 8, 5, 0.94);
  }

  .lb.open {
    display: block;
  }

  body.lb-lock {
    overflow: hidden;
  }

  .lb-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(to bottom, rgba(10, 8, 5, 0.8), transparent);
  }

  .lb-caption {
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lb-tools {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .lb-btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(227, 192, 119, 0.35);
    border-radius: 50%;
    background: rgba(25, 19, 9, 0.7);
    color: var(--marigold);
    font-size: 14px;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease;
  }

  .lb-btn:hover {
    background: var(--marigold);
    color: var(--marigold-ink);
  }

  .lb-btn:active {
    transform: scale(.92);
  }

  .lb-zoom-level {
    min-width: 52px;
    text-align: center;
    font-size: 12.5px;
    color: var(--muted);
  }

  .lb-stage {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    touch-action: none;
  }

  .lb-stage img {
    max-width: 88vw;
    max-height: 82vh;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform .18s ease-out;
    will-change: transform;
    cursor: grab;
  }

  .lb-stage img.lb-zoomed {
    transition: none;
    cursor: grab;
  }

  .lb-stage img.lb-panning {
    cursor: grabbing;
  }

  .lb-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 12px;
    color: var(--muted-2);
    white-space: nowrap;
  }

  .lb-hint kbd {
    font-family: inherit;
    border: 1px solid rgba(227, 192, 119, 0.3);
    border-radius: 3px;
    padding: 0 5px;
    font-size: 11px;
  }

  .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(227, 192, 119, 0.35);
    border-radius: 50%;
    background: rgba(25, 19, 9, 0.7);
    color: var(--marigold);
    font-size: 16px;
    cursor: pointer;
    transition: background .25s ease;
  }

  .lb-nav:hover {
    background: var(--marigold);
    color: var(--marigold-ink);
  }

  .lb-prev {
    left: 14px;
  }

  .lb-next {
    right: 14px;
  }

  @media (max-width:700px) {
    .lb-nav {
      display: none;
    }

    .lb-hint {
      white-space: normal;
      max-width: 90vw;
      text-align: center;
    }

    .lb-stage img {
      max-width: 96vw;
    }
  }

  /* ---------- Reviews ---------- */
  .rating-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    background: var(--bg-2);
  }

  .rating-chip .rc-score {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: var(--marigold);
  }

  .rating-chip .rc-stars {
    display: flex;
    gap: 3px;
    font-size: 11px;
    color: var(--marigold);
  }

  .rating-chip .rc-meta {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
  }

  .review-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 26px 22px 20px;
    background: linear-gradient(180deg, var(--bg-2), var(--panel));
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    animation: reviewIn .6s ease both;
  }

  .review-card:nth-child(2) { animation-delay: .10s; }
  .review-card:nth-child(3) { animation-delay: .18s; }
  .review-card:nth-child(4) { animation-delay: .26s; }

  @keyframes reviewIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }

  .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--marigold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
  }

  .review-card:hover {
    transform: translateY(-6px);
    border-color: var(--marigold);
    box-shadow: 0 22px 44px -26px rgba(0, 0, 0, .75);
  }

  .review-card:hover::before { transform: scaleX(1); }

  .q-mark {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 52px;
    line-height: 1;
    color: var(--marigold);
    opacity: .12;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
  }

  .review-card:hover .q-mark {
    opacity: .26;
    transform: rotate(-8deg) scale(1.06);
  }

  .review-card blockquote {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.75;
    font-style: italic;
    color: var(--muted);
  }

  .reviewer {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
  }

  .avatar {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 14px;
    color: var(--marigold);
    background: var(--bg-2);
    border: 1px solid var(--line);
    transition: background .3s ease, color .3s ease, transform .3s ease;
  }

  .review-card:hover .avatar {
    background: var(--marigold);
    color: var(--marigold-ink);
    transform: scale(1.06);
  }

  .who {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .who .nm {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
  }

  .who .sub {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11.5px;
    color: var(--muted-2);
  }

  .reviewer .when {
    margin-left: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-size: 11px;
    color: var(--muted-2);
  }

  /* ---------- Reviews slider ---------- */
  .review-slider { position: relative; }

  .review-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 2px 10px;
    cursor: grab;
  }

  .review-track::-webkit-scrollbar { display: none; }
  .review-track.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }

  .review-track .review-card {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
  }

  @media (max-width:1024px) {
    .review-track .review-card { flex: 0 0 calc((100% - 16px) / 2); }
  }

  @media (max-width:640px) {
    .review-track .review-card { flex: 0 0 82%; }
  }

  .slider-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
  }

  .slide-btn {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    background: var(--bg-2);
    color: var(--marigold);
    font-size: 13px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  }

  .slide-btn:hover:not(:disabled) {
    background: var(--marigold);
    color: var(--marigold-ink);
    border-color: var(--marigold);
  }

  .slide-btn:active:not(:disabled) { transform: scale(.94); }

  .slide-btn:disabled {
    opacity: .32;
    cursor: not-allowed;
  }

  .slide-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .slide-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid var(--marigold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, width .25s ease;
  }

  .slide-dot.active {
    width: 22px;
    border-radius: 6px;
    background: var(--marigold);
  }

  .stars {
    display: flex;
    gap: 4px;
    color: var(--marigold);
    font-size: 12px;
  }

  .review-note {
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-m);
    font-size: 13px;
    color: var(--muted-2);
  }

  .review-note i {
    color: var(--marigold);
    margin-right: 8px;
  }

  @media (prefers-reduced-motion: reduce) {
    .review-card {
      animation: none;
    }
  }

  /* ---------- Contact / Order ---------- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  @media (max-width:880px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }

  .info-line {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .info-line .k {
    width: 110px;
    color: var(--muted-2);
    font-size: 13px;
    flex-shrink: 0;
    padding-top: 2px;
  }

  .info-line .v {
    font-size: 15px;
  }

  .map-box {
    border-radius:15px;
    background: repeating-linear-gradient(0deg, rgba(243, 233, 218, 0.04) 0 1px, transparent 1px 34px),
      repeating-linear-gradient(90deg, rgba(243, 233, 218, 0.04) 0 1px, transparent 1px 34px), var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-2);
    font-size: 13px;
    text-align: center;
    overflow: hidden;
  }

  form.resv {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  form.resv label {
    font-size: 13px;
    color: var(--muted);
  }

  form.resv input,
  form.resv select,
  form.resv textarea {
    width: 100%;
    margin-top: 6px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 11px 12px;
    border-radius: var(--radius-m);
    font-size: 14.5px;
    font-family: inherit;
  }

  form.resv .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  @media (max-width:500px) {
    form.resv .row2 {
      grid-template-columns: 1fr;
    }
  }

  /* ---------- Blog ---------- */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  @media (max-width:880px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
  }

  .blog-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    overflow: hidden;
    background: var(--bg-2);
  }

  .blog-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(140deg, rgba(139, 90, 43, 0.75), rgba(227, 192, 119, 0.35)), var(--panel);
  }

  .blog-body {
    padding: 18px;
  }

  .blog-body h3 {
    font-size: 17px;
    line-height: 1.3;
  }

  .blog-body p {
    font-size: 13.5px;
    color: var(--muted-2);
    margin-top: 8px;
  }

  .blog-body .read {
    margin-top: 12px;
    font-size: 13px;
    color: var(--marigold);
    font-weight: 600;
    cursor: pointer;
  }

  /* ---------- Footer ---------- */
  footer {
    border-top: 1px solid var(--line);
    background: var(--bg-2);
    padding: 52px 0 28px;
    margin-top: 60px;
  }

  .foot-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 36px;
  }

  @media (max-width:800px) {
    .foot-grid {
      grid-template-columns: 1fr 1fr;
      row-gap: 28px;
    }
  }

  .foot-grid h4 {
    font-size: 13px;
    color: var(--marigold);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }

  .foot-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .foot-grid a,
  .foot-grid button,
  .foot-grid li span {
    display: inline-flex;
    align-items: center;
  }

  .foot-grid li i {
    width: 18px;
    margin-right: 7px;
    text-align: center;
    color: var(--marigold);
    font-size: 14px;
  }

  .foot-grid a,
  .foot-grid button {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    color: var(--muted);
    font-size: 13.5px;
    cursor: pointer;
    text-decoration: none;
  }

  .foot-grid a:hover,
  .foot-grid button:hover {
    color: var(--ink);
  }

  .foot-bottom {
    max-width: var(--maxw);
    margin: 40px auto 0;
    padding: 20px 24px 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: var(--muted-2);
  }

  .section-head {
    max-width: 640px;
    margin-bottom: 44px;
  }

  .section-head h2 {
    font-size: clamp(26px, 3.4vw, 36px);
  }

  .section-head p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 15.5px;
  }

  .center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* ---------- Page loader (shown on every page load) ---------- */
  .page-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #fffafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease, visibility .45s ease;
  }

  .page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .page-loader img {
    width: 160px;
    height: 160px;
    object-fit: contain;
  }

  .page-loader .pl-brand {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: #8d571f;
    letter-spacing: 0.04em;
  }

  .page-loader .pl-msg {
    font-size: 12.5px;
    color: #000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: plMsgPulse 1.6s ease-in-out infinite;
  }

  /* animated "..." dots after the loading message */
  .page-loader .pl-dots i {
    font-style: normal;
    display: inline-block;
    animation: plDotBounce 1.2s ease-in-out infinite;
  }

  .page-loader .pl-dots i:nth-child(2) {
    animation-delay: .18s;
  }

  .page-loader .pl-dots i:nth-child(3) {
    animation-delay: .36s;
  }

  @keyframes plMsgPulse {

    0%,
    100% {
      opacity: .55;
    }

    50% {
      opacity: 1;
      color: var(--marigold);
    }
  }

  @keyframes plDotBounce {

    0%,
    60%,
    100% {
      transform: translateY(0);
      opacity: .4;
    }

    30% {
      transform: translateY(-4px);
      opacity: 1;
    }
  }

  /* keep the motion tasteful for users who prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .page-loader .pl-msg {
      animation: none;
    }

    .page-loader .pl-dots i {
      animation: none;
      opacity: 1;
    }
  }