:root {
  --ink: #07110f;
  --ink-soft: #10201c;
  --cream: #f1d0a9;
  --cream-light: #f7ebdc;
  --paper: #f5efe5;
  --paper-deep: #e8ddcf;
  --sage: #819077;
  --white: #fffdf8;
  --muted: #7a827f;
  --line: rgba(241, 208, 169, 0.26);
  --line-dark: rgba(7, 17, 15, 0.16);
  --shadow: 0 28px 70px rgba(7, 17, 15, 0.2);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: min(1320px, calc(100% - 48px));
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--cream); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--cream-light);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  box-shadow: none;
}

.site-header {
  position: relative;
  z-index: 50;
  width: var(--container);
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand .smilepos-logo { display: block; width: auto; height: 42px; object-fit: contain; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  color: rgba(255, 253, 248, .76);
}
.site-nav a { position: relative; transition: color .25s ease; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-order-link { justify-self: end; }
.nav-toggle { display: none; }

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .menu-filter:focus-visible, .site-nav a:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}
.button--cream { background: var(--cream); color: var(--ink); }
.button--cream:hover { background: #f7dcc0; }
.button--outline { border-color: rgba(241, 208, 169, .72); color: var(--cream-light); background: transparent; }
.button--outline:hover { background: rgba(241, 208, 169, .08); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: var(--ink-soft); }

.hero {
  position: relative;
  min-height: 720px;
  width: var(--container);
  margin: 0 auto;
  padding: 104px 0 98px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: 40px;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at var(--hero-glow-x, 73%) var(--hero-glow-y, 50%), rgba(129, 144, 119, .18), transparent 35%),
    linear-gradient(90deg, rgba(7,17,15,.98) 0%, rgba(7,17,15,.9) 52%, rgba(7,17,15,.68) 100%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero__copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 18px;
  color: #b9a285;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .story-copy h2, .visit-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.03em;
}
.hero h1 { font-size: clamp(62px, 6.2vw, 104px); max-width: 720px; }
.hero h1 em { color: var(--cream); font-style: normal; }
.hero__intro {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, .68);
  font-size: 17px;
}
.hero__actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(241,208,169,.45);
  color: var(--cream-light);
  font-size: 14px;
  font-weight: 600;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link--dark { color: var(--ink); border-color: rgba(7,17,15,.3); }
.rating-row { margin-top: 54px; display: flex; align-items: center; gap: 10px; color: rgba(255,253,248,.7); font-size: 13px; }
.rating-row strong { color: var(--white); font-size: 15px; }
.stars { color: #db9c55; letter-spacing: .1em; }

.hero__visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
  perspective: 1100px;
  pointer-events: none;
}
.hero__halo { display: none; }
.food-orbit {
  --entry-delay: 0s;
  --entry-y: 0px;
  --entry-rotate: 0deg;
  --scroll-x: 0px;
  --scroll-y: 0px;
  --scroll-rotate: 0deg;
  --scroll-scale: 1;
  --pointer-x: 0px;
  --pointer-y: 0px;
  --pointer-rotate: 0deg;
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
  opacity: 1;
  transform:
    translate3d(
      calc(var(--scroll-x) + var(--pointer-x)),
      calc(var(--scroll-y) + var(--pointer-y)),
      0
    )
    rotate(calc(var(--scroll-rotate) + var(--pointer-rotate)))
    scale(var(--scroll-scale));
  transform-origin: center;
  will-change: transform, opacity;
}
.js .food-orbit { opacity: 0; }
.js .food-orbit.is-entering {
  animation: heroDishEnter 1.25s var(--ease) var(--entry-delay) both;
}
.js .food-orbit.has-entered {
  opacity: 1;
  animation: none;
  transition: transform .12s linear;
}
.food-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.055);
  will-change: transform;
}
.food-orbit.has-entered img { animation: none; }
.food-orbit--one {
  --entry-delay: .06s;
  --entry-y: -72px;
  --entry-rotate: 11deg;
  width: 250px;
  height: 250px;
  top: 3%;
  right: 5%;
  z-index: 3;
}
.food-orbit--two {
  --entry-delay: .18s;
  --entry-y: 48px;
  --entry-rotate: -8deg;
  width: 370px;
  height: 370px;
  left: 2%;
  bottom: 0;
  z-index: 2;
}
.food-orbit--three {
  --entry-delay: .31s;
  --entry-y: 96px;
  --entry-rotate: 12deg;
  width: 200px;
  height: 200px;
  right: -1%;
  bottom: 15%;
  z-index: 4;
}
.food-orbit--two.has-entered img,
.food-orbit--three.has-entered img { animation: none; }

.floating-leaf {
  --leaf-x: 0px;
  --leaf-y: 0px;
  --leaf-scroll-rotate: 0deg;
  --leaf-base-rotate: 0deg;
  --leaf-scale: 1;
  position: absolute;
  z-index: 1;
  width: 118px;
  opacity: .78;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.3));
  transform:
    translate3d(var(--leaf-x), var(--leaf-y), 0)
    rotate(calc(var(--leaf-base-rotate) + var(--leaf-scroll-rotate)))
    scale(var(--leaf-scale));
  transition: transform .14s linear;
  will-change: transform;
}
.floating-leaf--a {
  --leaf-base-rotate: 12deg;
  top: 31%;
  left: -5%;
}
.floating-leaf--b {
  --leaf-base-rotate: 155deg;
  --leaf-scale: .82;
  bottom: 3%;
  right: 7%;
}

@keyframes heroDishEnter {
  0% {
    opacity: 0;
    transform: translate3d(68vw, var(--entry-y), 0) rotate(var(--entry-rotate)) scale(.78);
  }
  68% {
    opacity: 1;
    transform: translate3d(-22px, 0, 0) rotate(-1.5deg) scale(1.025);
  }
  84% {
    opacity: 1;
    transform: translate3d(8px, 0, 0) rotate(.6deg) scale(.994);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

.scroll-cue {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,253,248,.45);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue i { width: 44px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--cream); transform: translateX(-100%); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 50% { transform: translateX(100%); } 100% { transform: translateX(100%); } }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0b1714; color: var(--cream); }
.marquee__track { width: max-content; display: flex; align-items: center; gap: 34px; padding: 18px 0; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 20px; }
.marquee i { color: #8d6a4d; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px max(24px, calc((100% - 1320px) / 2)); }
.menu-section { background: var(--paper); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  align-items: end;
  gap: 80px;
}
.section-heading h2, .story-copy h2, .visit-card h2 { font-size: clamp(52px, 5.3vw, 84px); }
.section-heading > p { margin: 0 0 8px; color: #5c6562; }
.menu-toolbar { margin-top: 58px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.menu-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.menu-filter {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: .2s ease;
}
.menu-filter:hover, .menu-filter.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.menu-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.menu-card {
  min-width: 0;
  background: #fffaf3;
  border: 1px solid rgba(7,17,15,.1);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.menu-card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px rgba(22, 35, 31, .12); }
.menu-card__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-soft); }
.menu-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.menu-card:hover .menu-card__image img { transform: scale(1.045); }
.menu-card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 10px;
  background: rgba(7,17,15,.84);
  color: var(--cream-light);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-card__body { padding: 24px; }
.menu-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.menu-card h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.12; }
.menu-card__price { font-family: var(--serif); font-size: 23px; color: #986c49; white-space: nowrap; }
.menu-card__description { min-height: 51px; margin: 12px 0 0; color: #6a716f; font-size: 14px; }
.menu-card__footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.menu-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.menu-tag { padding: 5px 8px; background: #efe4d5; color: #6b5847; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.menu-card__order { font-size: 12px; font-weight: 700; color: var(--ink); }
.menu-card__order span { display: inline-block; transition: transform .2s ease; }
.menu-card__order:hover span { transform: translate(3px, -3px); }
.menu-card.is-hidden { display: none; }

.menu-note { margin-top: 32px; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--ink); color: var(--white); }
.menu-note > div { display: flex; align-items: center; gap: 16px; }
.menu-note__icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); color: var(--cream); }
.menu-note p { margin: 0; color: rgba(255,253,248,.65); font-size: 14px; }
.menu-note strong { color: var(--white); }

.story-section { background: #d9e0d8; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); align-items: center; gap: clamp(50px, 8vw, 120px); }
.story-media { position: relative; }
.story-media > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.86) contrast(1.04); box-shadow: var(--shadow); }
.story-media::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid rgba(7,17,15,.24); z-index: 0; }
.story-media > * { position: relative; z-index: 1; }
.story-stamp { position: absolute; right: -30px; bottom: 42px; width: 150px; height: 150px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: var(--cream); color: var(--ink); box-shadow: 0 18px 40px rgba(7,17,15,.22); transform: rotate(7deg); }
.story-stamp span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.story-stamp strong { margin-top: 5px; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.story-copy > p:not(.eyebrow) { margin: 28px 0 0; max-width: 590px; color: #56605d; font-size: 17px; }




.quote-section { background: var(--cream); text-align: center; }
.quote-section .eyebrow { color: #795d43; }
.quote-section blockquote { max-width: 1050px; margin: 0 auto; font-family: var(--serif); font-size: clamp(42px, 5vw, 76px); line-height: 1.1; letter-spacing: -.025em; }
.quote-meta { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 14px; color: #6c5744; font-size: 13px; }

.visit-section { background: var(--ink); color: var(--white); }
.visit-card { padding: clamp(34px, 5vw, 72px); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(350px, .8fr); gap: 80px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.025), transparent 55%), var(--ink-soft); }
.visit-card h2 { max-width: 680px; }
.visit-card > div > p:not(.eyebrow) { max-width: 620px; margin: 24px 0 0; color: rgba(255,253,248,.62); }
.visit-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.visit-details { display: grid; gap: 22px; }
.visit-details > div { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.visit-details > div:last-child { border-bottom: 0; padding-bottom: 0; }
.visit-details span { color: var(--cream); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.visit-details p { margin: 8px 0 0; color: rgba(255,253,248,.72); }
.visit-details a:hover { color: var(--cream); }

.site-footer { padding: 64px max(24px, calc((100% - 1320px) / 2)) 26px; background: #050c0a; color: var(--white); }
.footer-brand { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer-brand p { max-width: 440px; margin: 0; color: rgba(255,253,248,.46); text-align: right; }
.footer-links { padding: 26px 0; display: flex; flex-wrap: wrap; gap: 28px; color: rgba(255,253,248,.68); font-size: 13px; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(241,208,169,.11); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,253,248,.38); font-size: 11px; }
.footer-bottom strong { color: rgba(241,208,169,.75); font-weight: 600; }

.mobile-order-bar { display: none; }
.noscript-message { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 100; padding: 14px; background: #fff4d4; color: #3b2d16; text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (hover: hover) and (pointer: fine) {
  .food-orbit.has-entered { transition: transform .16s cubic-bezier(.2,.75,.25,1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .js .food-orbit, .js .food-orbit.is-entering, .js .food-orbit.has-entered { opacity: 1; animation: none !important; transform: none; }
  .food-orbit img { animation: none !important; }
}

@media (max-width: 1100px) {
  :root { --container: min(100% - 48px, 980px); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: .95fr 1.05fr; min-height: 680px; }
  .hero h1 { font-size: clamp(58px, 7.6vw, 82px); }
  .hero__visual { min-height: 520px; }
  .food-orbit--one { width: 210px; height: 210px; }
  .food-orbit--two { width: 310px; height: 310px; }
  .food-orbit--three { width: 165px; height: 165px; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .story-section { gap: 70px; }

  .visit-card { gap: 50px; }
}

@media (max-width: 820px) {
  body { background: var(--ink); }
  :root { --container: calc(100% - 40px); }
  .site-header { min-height: 78px; grid-template-columns: 1fr auto; }
  .header-order-link { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle span { width: 18px; height: 1px; background: var(--cream-light); transition: transform .25s ease; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 28px;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid rgba(241,208,169,.12); font-size: 17px; }
  .hero { min-height: auto; padding: 74px 0 86px; grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { max-width: 680px; }
  .hero__visual { min-height: 500px; order: 2; }
  .hero__halo { width: 470px; height: 470px; }
  .food-orbit--two { left: 8%; }
  .scroll-cue { display: none; }
  .section { padding: 88px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .menu-toolbar { align-items: flex-start; flex-direction: column; }
  .menu-toolbar .button { width: 100%; }
  .story-section { grid-template-columns: 1fr; }
  .story-copy { padding-top: 18px; }

  .visit-card { grid-template-columns: 1fr; }
  .footer-brand { align-items: flex-start; flex-direction: column; }
  .footer-brand p { text-align: left; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-order-bar {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--cream);
    color: var(--ink);
    box-shadow: 0 16px 50px rgba(0,0,0,.34);
    font-size: 12px;
  }
  .mobile-order-bar strong { font-size: 14px; }
  .site-footer { padding-bottom: 104px; }
}

/* Mobile navigation must cover the complete viewport below the header. */
@media (max-width: 960px) {
  .site-nav {
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
  .mobile-order-bar { min-height: 64px; }
  .mobile-order-bar > span { font-size: .9rem; }
  .mobile-order-bar strong { font-size: 1.05rem; }
}

/* Full-width dark backdrop for the mobile dropdown. */
@media (max-width: 960px) {
  .site-nav {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    background: #101512 !important;
    box-shadow: 0 24px 44px rgba(0,0,0,.28);
  }
}

@media (max-width: 580px) {
  :root { --container: calc(100% - 32px); }
  .brand { font-size: 12px; letter-spacing: .1em; }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: clamp(50px, 16vw, 68px); }
  .hero__intro { font-size: 15px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero__actions .button { width: 100%; }
  .rating-row { margin-top: 36px; }
  .hero__visual { min-height: 400px; }
  .hero__halo { width: 340px; height: 340px; }
  .food-orbit--one { width: 154px; height: 154px; right: 2%; }
  .food-orbit--two { width: 246px; height: 246px; left: 0; bottom: 4%; }
  .food-orbit--three { width: 124px; height: 124px; right: -2%; bottom: 15%; }
  .floating-leaf { width: 80px; }
  .marquee span { font-size: 17px; }
  .section-heading h2, .story-copy h2, .visit-card h2 { font-size: clamp(46px, 14vw, 64px); }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-note { align-items: stretch; flex-direction: column; }
  .menu-note .button { width: 100%; }
  .story-media::before { inset: 14px -10px -14px 10px; }
  .story-stamp { width: 118px; height: 118px; right: -4px; bottom: 20px; }
  .story-stamp strong { font-size: 17px; }

  .quote-section blockquote { font-size: clamp(38px, 11vw, 52px); }
  .visit-card { padding: 28px 22px; }
  .visit-actions .button { width: 100%; }
  .footer-links { display: grid; grid-template-columns: repeat(2, 1fr); }
}


/* =========================================================
   2026 UX refresh — persistent navigation + editorial polish
   ========================================================= */
:root {
  --cream: #f2c27d;
  --cream-light: #fff3df;
  --paper: #f5f1e9;
  --paper-deep: #e9e1d5;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --header-height: 88px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

html { scroll-padding-top: calc(var(--header-height) + 20px); }
section[id] { scroll-margin-top: calc(var(--header-height) + 20px); }

.site-header {
  --scroll-progress: 0;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  min-height: var(--header-height);
  margin: 0;
  padding: 0 max(24px, calc((100% - 1320px) / 2));
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  border-bottom: 1px solid rgba(241, 208, 169, .14);
  background: linear-gradient(180deg, rgba(5, 12, 10, .68), rgba(5, 12, 10, .10));
  color: var(--white);
  transition:
    min-height .35s var(--ease),
    background-color .35s ease,
    backdrop-filter .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--cream), #e89162);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  transition: transform .08s linear;
}
.site-header.is-scrolled,
body.menu-open .site-header {
  min-height: 72px;
  border-color: rgba(241, 208, 169, .18);
  background: rgba(5, 12, 10, .88);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
}
.site-header .brand,
.site-header .site-nav,
.site-header .header-order-link,
.site-header .nav-toggle { transition: transform .35s var(--ease), opacity .25s ease; }
.site-header.is-scrolled .brand img { transform: scale(.9); }

.site-nav { justify-self: center; }
.site-nav a { padding: 10px 0; }
.site-nav a.is-active,
.site-nav a[aria-current="page"] { color: var(--white); }
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-order-link {
  min-height: 44px;
  padding-inline: 19px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(242, 194, 125, .16);
}

.button {
  border-radius: 999px;
  letter-spacing: .02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.button:hover { transform: translateY(-3px) scale(1.01); }

.hero {
  min-height: min(900px, 100svh);
  padding-top: calc(var(--header-height) + 88px);
  padding-bottom: 110px;
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(66px, 6.5vw, 112px);
  line-height: .9;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero__intro { max-width: 590px; font-size: 18px; line-height: 1.75; }
.eyebrow {
  width: max-content;
  padding: 7px 11px;
  border: 1px solid rgba(242, 194, 125, .22);
  border-radius: 999px;
  background: rgba(242, 194, 125, .06);
  letter-spacing: .14em;
}
.menu-section .eyebrow,
.story-section .eyebrow,
.quote-section .eyebrow { background: rgba(7,17,15,.035); border-color: rgba(7,17,15,.10); }

.menu-section {
  background:
    radial-gradient(circle at 86% 0%, rgba(242,194,125,.18), transparent 24%),
    var(--paper);
}
.menu-filter {
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
}
.menu-card {
  border-radius: var(--radius-md);
  border-color: rgba(7,17,15,.075);
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 12px 34px rgba(22,35,31,.045);
}
.menu-card__image { aspect-ratio: 5 / 4; }
.menu-card__badge,
.menu-tag { border-radius: 999px; }
.menu-note {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0c1b17, #07110f);
  box-shadow: 0 24px 60px rgba(7,17,15,.16);
}
.menu-note__icon { border-radius: 50%; }

.story-section {
  background:
    radial-gradient(circle at 0% 100%, rgba(242,194,125,.20), transparent 28%),
    #dfe4dc;
}
.story-media > img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(7,17,15,.18);
}
.story-media::before { display: none; }
.story-stamp {
  width: auto;
  height: auto;
  min-width: 154px;
  padding: 18px 22px;
  border-radius: 999px;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 243, 223, .90);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: rotate(0);
}

.quote-section {
  background:
    radial-gradient(circle at 50% -20%, rgba(255,255,255,.55), transparent 38%),
    var(--cream);
}
.quote-section blockquote { text-wrap: balance; }

.visit-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(242,194,125,.11), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 55%),
    var(--ink-soft);
  box-shadow: 0 34px 90px rgba(0,0,0,.22);
}

.reveal {
  transform: translateY(34px) scale(.992);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-visible { transform: translateY(0) scale(1); }

@media (min-width: 961px) and (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 24px;
  }
  .site-nav {
    display: flex;
    justify-self: center;
    gap: 20px;
  }
  .header-order-link { display: inline-flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 960px) {
  :root { --header-height: 76px; }
  .site-header {
    min-height: var(--header-height);
    padding-inline: 20px;
    grid-template-columns: 1fr auto;
    background: rgba(5, 12, 10, .78);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    backdrop-filter: blur(18px) saturate(130%);
  }
  .site-header.is-scrolled { min-height: 68px; }
  .header-order-link { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.035);
  }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 20px max(110px, env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 85% 10%, rgba(242,194,125,.12), transparent 25%),
      rgba(5,12,10,.98);
    transform: translateY(-115%);
    opacity: 0;
    visibility: hidden;
    transition: transform .42s var(--ease), opacity .28s ease, visibility .42s;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(241,208,169,.12);
    font-family: var(--serif);
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1;
    color: rgba(255,253,248,.72);
  }
  .site-nav a::after { display: none; }
  .site-nav a.is-active { color: var(--cream); }
  .hero {
    padding-top: calc(var(--header-height) + 62px);
    min-height: auto;
  }
}

@media (max-width: 580px) {
  .site-header { padding-inline: 16px; }
  .hero { padding-top: calc(var(--header-height) + 46px); }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .eyebrow { font-size: 10px; }
  .story-stamp { right: 14px; bottom: 14px; min-width: 132px; padding: 14px 17px; }
  .mobile-order-bar { border-radius: 999px; }
}


/* =========================================================
   Thai gallery + refined hero motion
   ========================================================= */

/* Entrance is a single smooth flow from the right—no bounce, sway, or automatic breathing. */
.js .food-orbit.is-entering {
  animation: heroDishEnter 1.15s cubic-bezier(.16, 1, .3, 1) var(--entry-delay) both;
}
.food-orbit--one,
.food-orbit--two,
.food-orbit--three {
  --entry-y: 0px;
  --entry-rotate: 0deg;
}
.food-orbit.has-entered img,
.food-orbit--two.has-entered img,
.food-orbit--three.has-entered img {
  animation: none;
}
@keyframes heroDishEnter {
  0% {
    opacity: 0;
    transform: translate3d(56vw, 0, 0) rotate(0deg) scale(.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

.gallery-section .section-heading > p {
  max-width: 560px;
}
.menu-card__body {
  padding: 24px 24px 26px;
}
.menu-card__body > h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
}
.menu-card__description {
  min-height: 0;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.quote-section {
  text-align: left;
}
.reviews-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.reviews-heading .eyebrow {
  margin-inline: auto;
}
.reviews-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.reviews-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  min-height: 310px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(7,17,15,.09);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 242, .72);
  box-shadow: 0 16px 44px rgba(7,17,15,.055);
}
.review-card .stars {
  font-size: 15px;
}
.review-card blockquote {
  max-width: none;
  margin: 26px 0 30px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.25vw, 35px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.review-card > p {
  margin: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: #6c5744;
  font-size: 12px;
}
.review-card strong {
  color: var(--ink);
  font-size: 13px;
}
.review-card span {
  text-align: right;
}
.story-copy .text-link {
  margin-top: 34px;
}

@media (max-width: 960px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .review-card {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  /* The mobile hero is intentionally text-first for faster loading and a cleaner first screen. */
  .hero__visual {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 84px;
  }
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 580px) {
  .reviews-heading {
    margin-bottom: 30px;
  }
  .review-card {
    padding: 25px 22px;
  }
  .review-card blockquote {
    font-size: 29px;
  }
  .review-card > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .review-card span {
    text-align: left;
  }
}

/* =========================================================
   Visit map + accessibility-widget spacing
   ========================================================= */
.visit-card {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}
.visit-map {
  position: relative;
  grid-column: 1 / -1;
  min-height: 410px;
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid rgba(242, 194, 125, .18);
  border-radius: calc(var(--radius-lg) - 8px);
  background: #16231f;
}
.visit-map iframe {
  width: 100%;
  height: 410px;
  display: block;
  border: 0;
  filter: saturate(.82) contrast(.96);
}
.visit-map__overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 82px;
  padding: 14px 14px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(5, 12, 10, .86);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.visit-map__overlay > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.visit-map__overlay > div > span {
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.visit-map__overlay strong {
  overflow: hidden;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.visit-map__overlay .button {
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .visit-card { grid-template-columns: 1fr; }
  .visit-map { min-height: 360px; }
  .visit-map iframe { height: 360px; }
}

@media (max-width: 820px) {
  /* Keep the order bar clear of the Sienna accessibility control at bottom-left. */
  .mobile-order-bar {
    left: 76px;
  }
  .visit-map__overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
  }
  .visit-map__overlay strong {
    white-space: normal;
  }
  .visit-map__overlay .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .mobile-order-bar {
    left: 70px;
    padding-inline: 14px;
  }
  .mobile-order-bar > span {
    display: none;
  }
  .mobile-order-bar strong {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   Pastel Thai sweets palette — supplied by client
   Ice #E7EDF7 · Powder #D4E4F2 · Sky #BAD1E6
   Blush #F7E9E4 · Peach #FBB9A8
   ========================================================= */
:root {
  --ice: #E7EDF7;
  --powder: #D4E4F2;
  --sky: #BAD1E6;
  --blush: #F7E9E4;
  --peach: #FBB9A8;
  --peach-deep: #F3A28E;
  --blue-deep: #7898B5;
  --ink: #4B5668;
  --ink-soft: #626E80;
  --cream: #FBB9A8;
  --cream-light: #FFF8F5;
  --paper: #FFFDFB;
  --paper-deep: #F7E9E4;
  --sage: #BAD1E6;
  --white: #FFFDFB;
  --muted: #748092;
  --line: rgba(75, 86, 104, .13);
  --line-dark: rgba(75, 86, 104, .16);
  --shadow: 0 24px 64px rgba(102, 122, 145, .16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

html { background: var(--ice); }
body,
.page-shell {
  background: var(--ice);
  color: var(--ink);
}
body {
  font-family: var(--sans);
  font-weight: 500;
}
::selection {
  background: var(--peach);
  color: var(--ink);
}

.brand {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .06em;
}
.brand img {
  filter: drop-shadow(0 6px 12px rgba(120, 152, 181, .16));
}

.site-header {
  color: var(--ink);
  border-color: rgba(75, 86, 104, .12);
  background: linear-gradient(180deg, rgba(255, 253, 251, .78), rgba(255, 253, 251, .20));
}
.site-header.is-scrolled,
.site-header.menu-active,
body.menu-open .site-header {
  border-color: rgba(75, 86, 104, .12);
  background: rgba(255, 253, 251, .90);
  box-shadow: 0 12px 36px rgba(112, 134, 157, .10);
}
.site-header::after {
  background: linear-gradient(90deg, var(--sky), var(--peach), var(--powder));
}
.site-nav { color: rgba(75, 86, 104, .76); }
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active { color: var(--ink); }
.site-nav a::after { background: var(--peach-deep); }
.nav-toggle span { background: var(--ink); }

.button {
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .015em;
  box-shadow: 0 10px 24px rgba(120, 152, 181, .10);
}
.button:hover { transform: translateY(-2px) scale(1.01); }
.button--cream {
  background: var(--peach);
  color: #554C56;
}
.button--cream:hover {
  background: var(--peach-deep);
  color: #493F49;
}
.button--dark {
  background: var(--sky);
  color: var(--ink);
}
.button--dark:hover {
  background: #A9C7E0;
  color: #3F4B5D;
}
.button--outline {
  border-color: rgba(75, 86, 104, .28);
  color: var(--ink);
  background: rgba(255, 253, 251, .38);
}
.button--outline:hover {
  border-color: var(--peach-deep);
  background: rgba(251, 185, 168, .18);
}
.button:focus-visible,
.text-link:focus-visible,
.menu-filter:focus-visible,
.site-nav a:focus-visible {
  outline-color: var(--peach-deep);
}

.hero {
  color: var(--ink);
  background: var(--ice);
}
.hero::before {
  background:
    radial-gradient(circle at var(--hero-glow-x, 76%) var(--hero-glow-y, 45%), rgba(251, 185, 168, .40), transparent 31%),
    radial-gradient(circle at 90% 12%, rgba(186, 209, 230, .82), transparent 33%),
    radial-gradient(circle at 8% 82%, rgba(247, 233, 228, .94), transparent 35%),
    linear-gradient(115deg, #FFFDFB 0%, var(--ice) 46%, var(--powder) 100%);
}
.eyebrow {
  color: #8B6A73;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .12em;
}
.hero h1,
.section-heading h2,
.story-copy h2,
.visit-card h2,
.reviews-heading h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.06;
  text-wrap: balance;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 5.8vw, 94px);
}
.hero h1 em {
  color: #C67876;
  font-style: normal;
}
.hero__intro { color: rgba(75, 86, 104, .78); }
.hero .text-link {
  color: var(--ink);
  border-color: rgba(75, 86, 104, .28);
}
.text-link--dark {
  color: var(--ink);
  border-color: rgba(75, 86, 104, .26);
}
.food-orbit {
  box-shadow: 0 26px 60px rgba(96, 120, 145, .20);
}
.floating-leaf {
  filter: sepia(.20) saturate(.72) hue-rotate(155deg) brightness(1.12);
  opacity: .62;
}

.marquee {
  border-color: rgba(75, 86, 104, .10);
  background: var(--peach);
  color: #5C5260;
}
.marquee span {
  font-family: var(--serif);
  font-weight: 600;
}
.marquee i { color: #FFFDFB; }

.menu-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(251, 185, 168, .28), transparent 24%),
    radial-gradient(circle at 94% 92%, rgba(186, 209, 230, .45), transparent 30%),
    linear-gradient(180deg, #FFFDFB 0%, var(--blush) 100%);
}
.menu-section .eyebrow,
.gallery-section .eyebrow,
.story-section .eyebrow,
.quote-section .eyebrow,
.reviews-heading .eyebrow {
  color: #7A6873;
  border-color: rgba(122, 104, 115, .12);
  background: rgba(255, 253, 251, .52);
}
.section-heading > p,
.gallery-section .section-heading > p,
.menu-card__description { color: var(--muted); }
.menu-filter {
  border-color: rgba(75, 86, 104, .14);
  border-radius: 999px;
  background: rgba(255, 253, 251, .72);
  color: var(--ink-soft);
}
.menu-filter:hover,
.menu-filter.is-active {
  border-color: var(--peach);
  background: var(--peach);
  color: #554C56;
}
.menu-card {
  overflow: hidden;
  border-color: rgba(120, 152, 181, .13);
  border-radius: 30px;
  background: rgba(255, 253, 251, .92);
  box-shadow: 0 16px 40px rgba(112, 134, 157, .10);
}
.menu-card:hover {
  box-shadow: 0 25px 54px rgba(112, 134, 157, .17);
}
.menu-card h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.02em;
}
.menu-card__image { border-radius: 24px; }
.menu-note {
  border: 1px solid rgba(120, 152, 181, .14);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--powder), var(--sky));
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(112, 134, 157, .12);
}
.menu-note p { color: rgba(75, 86, 104, .74); }
.menu-note__icon {
  color: #A46D73;
  border-color: rgba(164, 109, 115, .22);
  background: rgba(255, 253, 251, .50);
}

.story-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(251, 185, 168, .34), transparent 31%),
    linear-gradient(135deg, var(--powder), var(--blush));
  color: var(--ink);
}
.story-copy > p:not(.eyebrow) { color: rgba(75, 86, 104, .76); }
.story-copy .text-link--dark {
  color: var(--ink);
  border-color: rgba(75, 86, 104, .28);
}
.story-stamp {
  border: 6px solid rgba(255, 253, 251, .88);
  background: var(--peach);
  color: #5C5260;
  box-shadow: 0 18px 42px rgba(112, 134, 157, .16);
}
.story-stamp strong { font-family: var(--serif); }
.story-media > img {
  border-radius: 38px;
  box-shadow: 0 28px 64px rgba(112, 134, 157, .18);
}

.quote-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 253, 251, .65), transparent 34%),
    linear-gradient(180deg, var(--ice), var(--sky));
  color: var(--ink);
}
.review-card {
  border-color: rgba(120, 152, 181, .14);
  border-radius: 28px;
  background: rgba(255, 253, 251, .84);
  box-shadow: 0 16px 44px rgba(112, 134, 157, .11);
}
.review-card .stars { color: #D78A80; }
.review-card blockquote {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
}
.review-card > p { color: var(--muted); }
.review-card strong { color: var(--ink); }

.visit-section {
  background: var(--blush);
}
.visit-card {
  border-color: rgba(120, 152, 181, .18);
  border-radius: 38px;
  background:
    radial-gradient(circle at 91% 10%, rgba(251, 185, 168, .46), transparent 32%),
    linear-gradient(135deg, #FFFDFB 0%, var(--powder) 100%);
  color: var(--ink);
  box-shadow: 0 26px 68px rgba(112, 134, 157, .15);
}
.visit-card .eyebrow,
.visit-details span,
.visit-map__overlay > div > span { color: #9A6A72; }
.visit-card > div > p:not(.eyebrow),
.visit-details p { color: rgba(75, 86, 104, .76); }
.visit-details > div { border-color: rgba(75, 86, 104, .13); }
.visit-map {
  border-color: rgba(120, 152, 181, .20);
  border-radius: 28px;
  background: var(--sky);
}
.visit-map__overlay {
  border-color: rgba(120, 152, 181, .14);
  border-radius: 24px;
  background: rgba(255, 253, 251, .92);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(112, 134, 157, .14);
}

.site-footer {
  background: var(--sky);
  color: var(--ink);
}
.footer-brand,
.footer-bottom { border-color: rgba(75, 86, 104, .14); }
.footer-brand p,
.footer-bottom { color: rgba(75, 86, 104, .72); }
.footer-links a:hover,
.footer-bottom strong { color: #9A6A72; }

.mobile-order-bar {
  background: var(--peach);
  color: #554C56;
  border-color: rgba(75, 86, 104, .12);
  box-shadow: 0 12px 28px rgba(112, 134, 157, .18);
}

@media (max-width: 960px) {
  .site-nav {
    background:
      radial-gradient(circle at 84% 12%, rgba(251, 185, 168, .44), transparent 30%),
      linear-gradient(145deg, #FFFDFB, var(--ice));
    color: var(--ink);
  }
  .site-nav a { color: var(--ink); }
  .site-nav a.is-active { color: #A46D73; }
}

@media (max-width: 680px) {
  .hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .menu-card,
  .review-card { border-radius: 24px; }
  .visit-card { border-radius: 28px; }
}

/* =========================================================
   Pastel Thai & Sweet theme — client palette
   Ice Blue #E7EDF7 · Powder Blue #D4E4F2 · Soft Blue #BAD1E6
   Blush #F7E9E4 · Peach #FBB9A8
   ========================================================= */
:root {
  --ice-blue: #E7EDF7;
  --powder-blue: #D4E4F2;
  --soft-blue: #BAD1E6;
  --blush: #F7E9E4;
  --peach: #FBB9A8;
  --ink: #46586D;
  --ink-soft: #5A6C81;
  --cream: #FBB9A8;
  --cream-light: #FFF8F5;
  --paper: #F7E9E4;
  --paper-deep: #E7EDF7;
  --sage: #BAD1E6;
  --white: #FFFDFC;
  --muted: #6D7C8E;
  --line: rgba(70, 88, 109, .13);
  --line-dark: rgba(70, 88, 109, .15);
  --shadow: 0 26px 64px rgba(93, 120, 150, .18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
}

body,
.page-shell {
  color: var(--ink);
  background: var(--ice-blue);
}

::selection {
  color: var(--ink);
  background: var(--peach);
}

.site-header {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .10);
  background: rgba(255, 253, 252, .64);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  backdrop-filter: blur(20px) saturate(125%);
}
.site-header.is-scrolled,
body.menu-open .site-header {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .12);
  background: rgba(255, 253, 252, .92);
  box-shadow: 0 12px 34px rgba(98, 122, 148, .12);
}
.site-header::after {
  background: linear-gradient(90deg, var(--soft-blue), var(--peach), var(--powder-blue));
}
.brand {
  color: var(--ink);
  letter-spacing: .08em;
}
.site-nav { color: rgba(70, 88, 109, .72); }
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a::after { background: var(--peach); height: 3px; border-radius: 999px; }

.button {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 9px 22px rgba(91, 116, 142, .10);
}
.button--cream {
  color: #425367;
  background: var(--peach);
}
.button--cream:hover { color: #425367; background: #FFC8BA; }
.button--dark {
  color: #425367;
  background: var(--soft-blue);
}
.button--dark:hover { color: #425367; background: #C9DDF0; }
.button--outline {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .20);
  background: rgba(255, 253, 252, .48);
}
.button--outline:hover {
  color: var(--ink);
  border-color: var(--peach);
  background: rgba(251, 185, 168, .18);
}
.button:focus-visible,
.text-link:focus-visible,
.menu-filter:focus-visible,
.site-nav a:focus-visible { outline-color: #F29B89; }

.hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(255,255,255,.72), transparent 28%),
    radial-gradient(circle at 91% 19%, rgba(251,185,168,.48), transparent 27%),
    linear-gradient(135deg, var(--ice-blue) 0%, var(--powder-blue) 52%, var(--blush) 100%);
}
.hero::before {
  background:
    radial-gradient(circle at var(--hero-glow-x, 75%) var(--hero-glow-y, 48%), rgba(255,255,255,.70), transparent 28%),
    radial-gradient(circle at 96% 12%, rgba(251,185,168,.34), transparent 30%),
    linear-gradient(90deg, rgba(231,237,247,.96) 0%, rgba(212,228,242,.80) 52%, rgba(247,233,228,.45) 100%);
}
.hero .eyebrow {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .12);
  background: rgba(255, 253, 252, .56);
}
.hero h1 {
  color: var(--ink);
  letter-spacing: -.045em;
}
.hero h1 em { color: #E58F7F; }
.hero__intro { color: rgba(70, 88, 109, .78); }
.text-link {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .28);
}
.scroll-cue { color: rgba(70, 88, 109, .52); }
.scroll-cue i { background: rgba(70, 88, 109, .18); }
.scroll-cue i::after { background: var(--peach); }
.food-orbit {
  box-shadow: 0 28px 66px rgba(72, 102, 130, .22);
}
.food-orbit img { filter: saturate(.96) brightness(1.04); }
.floating-leaf {
  opacity: .48;
  filter: sepia(.18) saturate(.72) hue-rotate(165deg) brightness(1.12);
}

.marquee {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .10);
  background: var(--peach);
}
.marquee span { font-family: var(--serif); font-weight: 600; }
.marquee i { color: #FFFDFC; }

.menu-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(212,228,242,.72), transparent 26%),
    radial-gradient(circle at 92% 0%, rgba(251,185,168,.26), transparent 24%),
    var(--blush);
}
.menu-section .eyebrow,
.gallery-section .eyebrow,
.story-section .eyebrow,
.quote-section .eyebrow,
.reviews-heading .eyebrow {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .12);
  background: rgba(255, 253, 252, .58);
}
.section-heading > p,
.gallery-section .section-heading > p,
.menu-card__description { color: var(--muted); }
.menu-filter {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .12);
  background: rgba(255, 253, 252, .68);
  box-shadow: 0 7px 18px rgba(87, 111, 136, .06);
}
.menu-filter:hover,
.menu-filter.is-active {
  color: var(--ink);
  border-color: var(--soft-blue);
  background: var(--soft-blue);
}
.menu-grid { gap: 26px; }
.menu-card {
  overflow: hidden;
  border-color: rgba(70, 88, 109, .08);
  border-radius: 30px;
  background: rgba(255, 253, 252, .88);
  box-shadow: 0 15px 36px rgba(96, 121, 146, .09);
}
.menu-card:hover {
  transform: translateY(-7px) rotate(-.15deg);
  box-shadow: 0 28px 58px rgba(96, 121, 146, .16);
}
.menu-card__image { aspect-ratio: 4 / 3; background: var(--powder-blue); }
.menu-card__image::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 253, 252, .78);
  box-shadow: 0 8px 22px rgba(62, 88, 112, .10);
  pointer-events: none;
}
.menu-card__body { padding: 23px 24px 26px; }
.menu-card__body > h3,
.menu-card h3 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
}
.menu-card__description { min-height: 0; line-height: 1.7; }
.menu-note {
  color: var(--ink);
  background: linear-gradient(135deg, var(--powder-blue), var(--soft-blue));
  box-shadow: 0 22px 54px rgba(83, 112, 141, .15);
}
.menu-note p { color: rgba(70, 88, 109, .78); }
.menu-note__icon {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .14);
  background: rgba(255, 253, 252, .36);
}

.story-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(251,185,168,.35), transparent 28%),
    linear-gradient(135deg, var(--powder-blue), var(--ice-blue));
}
.story-copy > p:not(.eyebrow) { color: rgba(70, 88, 109, .78); }
.story-copy .text-link--dark {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .28);
}
.story-media > img {
  border-radius: 42px 42px 120px 42px;
  box-shadow: 0 30px 68px rgba(75, 105, 133, .18);
}
.story-stamp {
  color: var(--ink);
  background: rgba(255, 253, 252, .88);
  box-shadow: 0 16px 36px rgba(75, 105, 133, .14);
}
.story-stamp span { color: #D98272; }

.quote-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -15%, rgba(255,255,255,.70), transparent 38%),
    linear-gradient(180deg, var(--ice-blue), var(--blush));
}
.review-card {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .09);
  background: rgba(255, 253, 252, .80);
  box-shadow: 0 16px 40px rgba(92, 118, 144, .10);
}
.review-card:nth-child(2) { background: rgba(212, 228, 242, .72); }
.review-card:nth-child(3) { background: rgba(251, 185, 168, .26); }
.review-card .stars { color: #E58F7F; }
.review-card > p { color: var(--muted); }
.review-card strong { color: var(--ink); }

.visit-section {
  color: var(--ink);
  background: var(--peach);
}
.visit-card {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .10);
  background:
    radial-gradient(circle at 90% 8%, rgba(212,228,242,.72), transparent 30%),
    rgba(255, 253, 252, .90);
  box-shadow: 0 32px 78px rgba(127, 101, 105, .15);
}
.visit-card .eyebrow,
.visit-details span,
.visit-map__overlay > div > span { color: #D98272; }
.visit-card > div > p:not(.eyebrow),
.visit-details p { color: rgba(70, 88, 109, .78); }
.visit-details > div { border-color: rgba(70, 88, 109, .13); }
.visit-map { border-color: rgba(70, 88, 109, .12); background: var(--soft-blue); }
.visit-map iframe { filter: saturate(.70) contrast(.94) brightness(1.03); }
.visit-map__overlay {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .11);
  background: rgba(255, 253, 252, .91);
  box-shadow: 0 18px 40px rgba(73, 98, 121, .15);
}
.visit-map__overlay strong { color: var(--ink); }

.site-footer {
  color: var(--ink);
  background: var(--soft-blue);
}
.footer-brand p,
.footer-links,
.footer-bottom { color: rgba(70, 88, 109, .72); }
.footer-brand,
.footer-bottom { border-color: rgba(70, 88, 109, .14); }
.footer-links a:hover,
.footer-bottom strong { color: #C96F61; }
.mobile-order-bar {
  color: var(--ink);
  border-color: rgba(70, 88, 109, .12);
  background: var(--peach);
  box-shadow: 0 14px 36px rgba(96, 111, 128, .20);
}

@media (max-width: 960px) {
  .site-header { background: rgba(255, 253, 252, .90); }
  .nav-toggle { background: var(--powder-blue); }
  .nav-toggle span { background: var(--ink); }
  .site-nav {
    color: var(--ink);
    background:
      radial-gradient(circle at 82% 11%, rgba(251,185,168,.38), transparent 28%),
      linear-gradient(180deg, var(--ice-blue), var(--blush));
  }
  .site-nav a {
    color: rgba(70, 88, 109, .74);
    border-color: rgba(70, 88, 109, .11);
  }
  .site-nav a.is-active { color: #D98272; }
}

/* Last cascade override: full-viewport dark dropdown backdrop. */
@media (max-width: 960px) {
  .site-nav {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    background: #101512 !important;
    box-shadow: 0 24px 44px rgba(0,0,0,.28);
  }
  .site-nav a { color: rgba(255,255,255,.82) !important; }
  .site-nav a.is-active { color: #fff !important; }
}

@media (max-width: 820px) {
  .hero {
    background:
      radial-gradient(circle at 92% 12%, rgba(251,185,168,.38), transparent 29%),
      linear-gradient(150deg, var(--ice-blue), var(--blush));
  }
  .hero__copy { max-width: 640px; }
}

@media (max-width: 580px) {
  .hero h1 { font-size: clamp(47px, 14vw, 65px); line-height: .96; }
  .section-heading h2,
  .story-copy h2,
  .visit-card h2 { line-height: 1.03; }
  .menu-card { border-radius: 24px; }
  .story-media > img { border-radius: 30px 30px 78px 30px; }
}


/* =========================================================
   Sweet Business Typography — Fraunces + Manrope
   Soft editorial character with clean, professional readability
   ========================================================= */
:root {
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

body {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -.006em;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.visit-card h2,
.reviews-heading h2,
.menu-card h3,
.story-stamp strong,
.review-card blockquote,
.marquee span {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60, "WONK" 0;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.visit-card h2,
.reviews-heading h2 {
  font-weight: 500;
  letter-spacing: -.042em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.025em;
}

.menu-card h3,
.story-stamp strong,
.marquee span {
  font-weight: 500;
  letter-spacing: -.018em;
}

.review-card blockquote {
  font-weight: 400;
  letter-spacing: -.022em;
}

.brand,
.button,
.site-nav,
.eyebrow,
.menu-filter,
.text-link,
.visit-details span,
.footer-links {
  font-family: var(--sans);
}

.brand {
  font-weight: 750;
  letter-spacing: .045em;
}

.button {
  font-weight: 700;
  letter-spacing: .012em;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: .125em;
}

/* =========================================================
   Sage Blush Palette — updated client palette
   Mint #C8DBCD · Mist #ACC4C0 · Sage #7E998D · Forest #6A7B67 · Blush #EFD3CD
   ========================================================= */
:root {
  --mint: #C8DBCD;
  --mist: #ACC4C0;
  --sage-green: #7E998D;
  --forest-green: #6A7B67;
  --blush-rose: #EFD3CD;
  --ink: #445248;
  --ink-soft: #5C6D61;
  --cream: #EFD3CD;
  --cream-light: #FFF9F7;
  --paper: #FAF8F5;
  --paper-deep: #F2ECE8;
  --sage: #7E998D;
  --white: #FFFEFC;
  --muted: #6A766F;
  --line: rgba(68, 82, 72, .13);
  --line-dark: rgba(68, 82, 72, .16);
  --shadow: 0 26px 64px rgba(85, 108, 91, .16);
}

body,
.page-shell {
  color: var(--ink);
  background: var(--paper);
}

::selection {
  color: var(--ink);
  background: var(--blush-rose);
}

.site-header {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .10);
  background: rgba(255, 254, 252, .74);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
}
.site-header.is-scrolled,
body.menu-open .site-header {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .12);
  background: rgba(255, 254, 252, .92);
  box-shadow: 0 12px 30px rgba(85, 108, 91, .10);
}
.site-header::after {
  background: linear-gradient(90deg, var(--mint), var(--sage-green), var(--blush-rose));
}
.brand,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}
.site-nav {
  color: rgba(68, 82, 72, .72);
}
.site-nav a::after {
  background: var(--forest-green);
}

.button {
  box-shadow: 0 9px 22px rgba(100, 121, 109, .09);
}
.button--cream {
  color: var(--ink);
  background: var(--blush-rose);
}
.button--cream:hover {
  color: var(--ink);
  background: #F4DFDA;
}
.button--dark {
  color: var(--white);
  background: var(--forest-green);
}
.button--dark:hover {
  color: var(--white);
  background: #74846F;
}
.button--outline {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .18);
  background: rgba(255, 254, 252, .56);
}
.button--outline:hover {
  color: var(--ink);
  border-color: var(--sage-green);
  background: rgba(200, 219, 205, .32);
}
.button:focus-visible,
.text-link:focus-visible,
.menu-filter:focus-visible,
.site-nav a:focus-visible {
  outline-color: var(--forest-green);
}

.hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 14%, rgba(255,255,255,.82), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(239,211,205,.58), transparent 28%),
    linear-gradient(135deg, var(--paper) 0%, var(--mint) 48%, var(--blush-rose) 100%);
}
.hero::before {
  background:
    radial-gradient(circle at var(--hero-glow-x, 74%) var(--hero-glow-y, 48%), rgba(255,255,255,.72), transparent 28%),
    radial-gradient(circle at 94% 14%, rgba(172,196,192,.34), transparent 26%),
    linear-gradient(90deg, rgba(250,248,245,.98) 0%, rgba(200,219,205,.76) 52%, rgba(239,211,205,.42) 100%);
}
.hero .eyebrow,
.menu-section .eyebrow,
.gallery-section .eyebrow,
.story-section .eyebrow,
.quote-section .eyebrow,
.reviews-heading .eyebrow {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .12);
  background: rgba(255, 254, 252, .62);
}
.hero h1,
.hero h1 em {
  color: var(--ink);
}
.hero h1 em {
  color: var(--forest-green);
}
.hero__intro,
.section-heading > p,
.gallery-section .section-heading > p,
.menu-card__description,
.story-copy > p:not(.eyebrow),
.review-card > p,
.visit-card > div > p:not(.eyebrow),
.visit-details p,
.footer-brand p,
.footer-links,
.footer-bottom {
  color: var(--muted);
}
.text-link,
.story-copy .text-link--dark {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .28);
}
.scroll-cue {
  color: rgba(68, 82, 72, .50);
}
.scroll-cue i {
  background: rgba(68, 82, 72, .16);
}
.scroll-cue i::after {
  background: var(--forest-green);
}
.food-orbit {
  box-shadow: 0 28px 66px rgba(91, 110, 100, .20);
}
.food-orbit img {
  filter: saturate(.98) brightness(1.03);
}
.floating-leaf {
  opacity: .44;
  filter: sepia(.16) saturate(.62) hue-rotate(150deg) brightness(1.05);
}

.marquee {
  color: var(--white);
  border-color: rgba(255,255,255,.08);
  background: var(--forest-green);
}
.marquee i {
  color: var(--blush-rose);
}

.menu-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(200,219,205,.62), transparent 24%),
    radial-gradient(circle at 92% 0%, rgba(239,211,205,.34), transparent 22%),
    var(--paper-deep);
}
.menu-filter {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .12);
  background: rgba(255, 254, 252, .72);
  box-shadow: 0 7px 18px rgba(98, 118, 106, .05);
}
.menu-filter:hover,
.menu-filter.is-active {
  color: var(--white);
  border-color: var(--sage-green);
  background: var(--sage-green);
}
.menu-card {
  border-color: rgba(68, 82, 72, .08);
  background: rgba(255, 254, 252, .90);
  box-shadow: 0 15px 36px rgba(96, 118, 105, .08);
}
.menu-card:hover {
  box-shadow: 0 28px 58px rgba(96, 118, 105, .14);
}
.menu-card__image {
  background: var(--mist);
}
.menu-card__image::after {
  background: rgba(255, 254, 252, .80);
  box-shadow: 0 8px 22px rgba(70, 87, 78, .10);
}
.menu-card__body > h3,
.menu-card h3,
.review-card strong,
.visit-map__overlay strong {
  color: var(--ink);
}
.menu-note {
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), var(--mist));
  box-shadow: 0 22px 54px rgba(86, 109, 96, .13);
}
.menu-note p {
  color: rgba(68, 82, 72, .76);
}
.menu-note__icon {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .14);
  background: rgba(255, 254, 252, .34);
}

.story-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(239,211,205,.36), transparent 28%),
    linear-gradient(135deg, var(--mist), var(--mint));
}
.story-media > img {
  box-shadow: 0 30px 68px rgba(87, 108, 95, .16);
}
.story-stamp {
  color: var(--ink);
  background: rgba(255, 254, 252, .90);
  box-shadow: 0 16px 36px rgba(87, 108, 95, .12);
}
.story-stamp span,
.visit-card .eyebrow,
.visit-details span,
.visit-map__overlay > div > span,
.footer-links a:hover,
.footer-bottom strong {
  color: var(--forest-green);
}

.quote-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -15%, rgba(255,255,255,.70), transparent 38%),
    linear-gradient(180deg, var(--paper), var(--blush-rose));
}
.review-card {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .09);
  background: rgba(255, 254, 252, .84);
  box-shadow: 0 16px 40px rgba(92, 112, 100, .08);
}
.review-card:nth-child(2) {
  background: rgba(172, 196, 192, .32);
}
.review-card:nth-child(3) {
  background: rgba(200, 219, 205, .48);
}
.review-card .stars {
  color: var(--forest-green);
}

.visit-section {
  color: var(--white);
  background: var(--forest-green);
}
.visit-card {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 90% 8%, rgba(172,196,192,.52), transparent 30%),
    rgba(255, 254, 252, .94);
  box-shadow: 0 32px 78px rgba(51, 68, 57, .18);
}
.visit-details > div,
.footer-brand,
.footer-bottom {
  border-color: rgba(68, 82, 72, .14);
}
.visit-map {
  border-color: rgba(68, 82, 72, .12);
  background: var(--mist);
}
.visit-map iframe {
  filter: saturate(.72) contrast(.95) brightness(1.02);
}
.visit-map__overlay {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .11);
  background: rgba(255, 254, 252, .92);
  box-shadow: 0 18px 40px rgba(72, 90, 79, .14);
}

.site-footer {
  color: var(--white);
  background: #5E6F5B;
}
.footer-brand p,
.footer-links,
.footer-bottom {
  color: rgba(255, 254, 252, .72);
}
.footer-brand,
.footer-bottom {
  border-color: rgba(255, 254, 252, .12);
}
.mobile-order-bar {
  color: var(--ink);
  border-color: rgba(68, 82, 72, .12);
  background: var(--blush-rose);
  box-shadow: 0 14px 36px rgba(76, 96, 84, .18);
}

@media (max-width: 960px) {
  .site-header {
    background: rgba(255, 254, 252, .92);
  }
  .nav-toggle {
    background: var(--mint);
  }
  .nav-toggle span {
    background: var(--ink);
  }
  .site-nav {
    color: var(--ink);
    background:
      radial-gradient(circle at 82% 11%, rgba(239,211,205,.42), transparent 28%),
      linear-gradient(180deg, var(--paper), var(--mint));
  }
  .site-nav a {
    color: rgba(68, 82, 72, .76);
    border-color: rgba(68, 82, 72, .11);
  }
  .site-nav a.is-active {
    color: var(--forest-green);
  }
}

@media (max-width: 820px) {
  .hero {
    background:
      radial-gradient(circle at 92% 12%, rgba(239,211,205,.42), transparent 29%),
      linear-gradient(150deg, var(--paper), var(--mint));
  }
}

/* =========================================================
   Full-bleed Hero background fix
   Keep hero content constrained while the color spans the viewport.
   ========================================================= */
.hero {
  background: transparent !important;
  overflow: visible;
}

.hero::before {
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
  border-radius: 0;
}

@media (max-width: 820px) {
  .hero {
    background: transparent !important;
  }

  .hero::before {
    width: 100vw;
  }
}

/* Remove decorative circle from the bottom-right corner of gallery images. */
.menu-card__image::after {
  content: none;
  display: none;
}

/* Final mobile navigation guard: keep the backdrop flush to every edge. */
@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    min-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
  .mobile-order-bar { min-height: 64px; }
  .mobile-order-bar > span { font-size: .9rem; }
  .mobile-order-bar strong { font-size: 1.05rem; }
}

/* Keep this last so older palette rules cannot constrain the dropdown. */
@media (max-width: 960px) {
  .site-nav {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    background: #101512 !important;
    box-shadow: 0 24px 44px rgba(0,0,0,.28);
  }
  .site-nav a { color: rgba(255,255,255,.82) !important; }
  .site-nav a.is-active { color: #fff !important; }
}

/* Siamese restaurant identity */
.brand { gap: 10px; }
.brand .smilepos-logo { width: 56px; height: 56px; flex-shrink: 0; }
.brand-name { display: block; font-family: var(--serif); font-size: 23px; line-height: 1.1; letter-spacing: 0; }
.brand-name span { display: block; margin-top: 4px; font-family: var(--sans); font-size: 11px; letter-spacing: .12em; }
.hero h1 { font-size: clamp(48px, 5.4vw, 84px); }
.hero h1 em { display: block; margin-top: 20px; font-size: .56em; line-height: 1.14; }
@media (max-width: 600px) {
  .brand .smilepos-logo { width: 42px; height: 42px; }
  .brand-name { font-size: 19px; }
  .hero h1 { font-size: clamp(44px, 12vw, 65px); }
}

/* Client V17 palette: exact navy, gold and ivory source colors. */
:root {
  --ink: #18395c; --ink-soft: #27567f; --gold: #e1b65b; --gold-light: #f3dfad;
  --cream: #f1ede2; --cream-light: #fbf8f1; --paper: #fbf8f1; --paper-deep: #f1ede2;
  --muted: #687684; --mint: #dbe8f2; --mist: #dbe8f2; --sage: #2f5f85;
  --sage-green: #2f5f85; --forest-green: #18395c; --blush-rose: #e1b65b;
  --line: #18395c26; --line-dark: #18395c33; --shadow: 0 24px 60px #102f4b20;
}
.site-header, .site-header.is-scrolled, body.menu-open .site-header { color: #fff; background: #18395cf5; border-color: #ffffff29; box-shadow: 0 8px 30px #102f4b20; }
.site-header::after { background: var(--gold); }
.site-header .brand, .site-nav, .site-nav a, .site-nav a:hover, .site-nav a.is-active { color: #fff; }
.brand-name span { color: var(--gold-light); }
.site-nav a::after { background: var(--gold); }
.button--cream, .mobile-order-bar { background: var(--gold); color: var(--ink); }
.button--cream:hover { background: #ebc675; color: var(--ink); }
.button--dark { background: #2f5f85; }
.button--dark:hover { background: #244f70; }
.button--outline { color: var(--ink); border-color: #18395c55; background: transparent; }
.button--outline:hover { background: #dbe8f2; border-color: var(--ink); }
.hero { color: #fff; }
.hero::before { background: radial-gradient(ellipse at 80% 40%, #27567f 0%, #18395c 60%, #102f4b 100%); opacity: 1; }
.hero h1 { color: #fff; }
.hero h1 em { color: var(--gold-light); }
.hero .eyebrow { color: var(--gold-light); background: #ffffff0d; border-color: #f3dfad55; }
.hero__intro { color: #ffffffd6; }
.hero .text-link, .scroll-cue { color: #fff; border-color: #ffffff70; }
.hero .button--outline { color: #fff; border-color: #ffffff99; background: transparent; }
.hero .button--outline:hover { background: #ffffff18; }
.hero__halo { background: transparent; }
.floating-leaf { filter: sepia(1) saturate(.8); opacity: .3; }
.food-orbit { box-shadow: 0 24px 60px #04142655; }
.marquee { background: #102f4b; color: var(--gold-light); }
.marquee i { color: var(--gold); }
.gallery-section { background: var(--ink); color: #fff; }
.gallery-section .section-heading h2 { color: #fff; }
.gallery-section .section-heading > p { color: #ffffffb8; }
.gallery-section .eyebrow { color: var(--gold-light); background: transparent; border-color: #f3dfad55; }
.menu-toolbar { display: block; }
.menu-filters { flex-wrap: wrap; overflow: visible; }
.menu-filter { color: #fff; background: #ffffff0d; border-color: #ffffff40; box-shadow: none; }
.menu-filter:hover, .menu-filter.is-active { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); }
.full-menu { display: grid; gap: 28px; }
.menu-category-section { padding: clamp(22px, 4vw, 44px); background: #fbf8f1; color: #293b4d; border-radius: 12px; border: 1px solid #f3dfad66; }
.menu-category-section.is-hidden { display: none; }
.menu-category-section > header { display: flex; justify-content: space-between; align-items: end; gap: 20px; border-bottom: 1px solid #18395c28; padding-bottom: 20px; margin-bottom: 12px; }
.menu-category-section header span { color: #486f90; font-size: 13px; }
.menu-category-section h3 { color: var(--ink); font-family: Georgia, serif; font-size: clamp(28px, 4vw, 42px); font-weight: 400; margin: 5px 0 0; }
.menu-category-section small { color: #687684; white-space: nowrap; }
.category-note { margin: 20px 0; padding: 12px 16px; color: #293b4d; background: #f3dfad40; border-left: 3px solid var(--gold); font-size: 14px; line-height: 1.7; }
.restaurant-menu-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.restaurant-menu-item { padding: 20px 0; border-bottom: 1px solid #18395c1c; }
.restaurant-menu-item h4 { color: var(--ink); font-family: Georgia, serif; font-size: 21px; font-weight: 400; line-height: 1.35; margin: 0; }
.restaurant-menu-item p { color: #687684; margin: 9px 0 0; font-size: 14px; line-height: 1.7; }
.menu-spicy { display: inline-block; color: #8a421c; background: #e1b65b30; font: 11px var(--sans); border-radius: 4px; padding: 3px 6px; vertical-align: middle; }
.menu-note { background: #27567f; color: #fff; box-shadow: none; }
.menu-note p { color: #ffffffd6; }
.menu-note__icon { color: var(--gold-light); background: transparent; border-color: #f3dfad55; }
.story-section { background: #f1ede2; }
.story-section .eyebrow, .quote-section .eyebrow { color: #486f90; background: transparent; border-color: #18395c28; }
.story-stamp { background: var(--gold-light); }
.story-stamp span { color: var(--ink); }
.quote-section { background: #fbf8f1; }
.review-card, .review-card:nth-child(2), .review-card:nth-child(3) { background: #fffef9; border-color: #dce1e5; box-shadow: 0 16px 40px #203e5812; }
.review-card h3 { color: var(--ink); }
.visit-section { background: #dbe8f2; }
.visit-card { background: #fbf8f1; box-shadow: 0 24px 60px #102f4b20; }
.visit-card > div > p:not(.eyebrow), .visit-details p { color: #293b4d; }
.visit-map__overlay { background: #fbf8f1f5; border-color: #18395c28; }
.site-footer { background: #102f4b; }
.site-footer .brand { color: #fff; }
.footer-bottom strong, .footer-links a:hover { color: var(--gold-light); }
@media (max-width: 960px) {
  .site-nav { background: #18395c !important; }
  .nav-toggle { background: var(--gold-light); }
  .nav-toggle span { background: var(--ink); }
}
@media (max-width: 600px) {
  .restaurant-menu-items { grid-template-columns: 1fr; }
  .menu-filter { padding: 10px 13px; font-size: 12px; }
  .menu-category-section > header { align-items: start; }
}

/* Full-width dining-room cover and featured dishes from client V17. */
.hero.restaurant-hero {
  display: flex; align-items: center; position: relative; isolation: isolate;
  width: 100%; max-width: none; margin: 0; padding: 110px clamp(24px, 6.3vw, 100px) 140px;
  min-height: 760px; height: 92vh; overflow: hidden; color: #fff;
}
.hero.restaurant-hero::before, .hero.restaurant-hero::after { content: none; }
.restaurant-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2; }
.restaurant-hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,#0f2d4ae3 0%,#1b466a99 48%,#2b567738 100%),linear-gradient(transparent 55%,#0d28437a); }
.restaurant-hero__content { width: min(730px, 100%); }
.restaurant-hero .eyebrow { display: block; border: 0; border-radius: 0; background: none; padding: 0; margin: 0 0 22px; color: #f3dfad; font-size: 11px; letter-spacing: .24em; }
.hero.restaurant-hero h1 { color: #fff; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(58px, 6.4vw, 100px); line-height: .98; letter-spacing: -.045em; max-width: 740px; margin: 0; }
.restaurant-hero__intro { max-width: 490px; color: #ffffffd6; margin: 26px 0 0; font-size: 17px; line-height: 1.75; }
.restaurant-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.restaurant-hero__foot { position: absolute; bottom: 0; left: 0; width: 100%; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; padding: 25px 24px; border-top: 1px solid #ffffff38; color: #ffffffc7; text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.featured-section { padding: 100px clamp(24px,6vw,96px); background: linear-gradient(180deg,#fbf8f1,#f6f3e9); }
.featured-section .section-heading { max-width: 1320px; margin: 0 auto 45px; }
.featured-section .eyebrow { color: #486f90; }
.featured-section h2 { color: #18395c; }
.dish-grid { max-width: 1320px; margin: auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.dish-card { border: 1px solid #dce1e5; border-radius: 10px; overflow: hidden; background: #fffef9; box-shadow: 0 18px 60px #203e5812; }
.dish-image-wrap { aspect-ratio: 1.32; position: relative; overflow: hidden; }
.dish-image-wrap img { object-fit: cover; }
.dish-body { padding: 25px 25px 30px; }
.dish-body .dish-thai { color: #486f90; font-size: 12px; letter-spacing: .13em; }
.dish-title-row h3 { color: #18395c; font: 400 27px Georgia,serif; margin: 8px 0 11px; }
.dish-body p { color: #687684; font-size: 14px; line-height: 1.65; margin: 0; }
@media(max-width: 820px) {
  .hero.restaurant-hero { min-height: 680px; height: auto; padding-top: 85px; padding-bottom: 130px; }
  .hero.restaurant-hero h1 { font-size: clamp(49px, 8.5vw, 72px); }
  .restaurant-hero__shade { background: linear-gradient(90deg,#0f2d4ae8,#1b466aaa),linear-gradient(transparent,#0d284380); }
  .dish-grid { grid-template-columns: 1fr; max-width: 540px; }
  .featured-section { padding-top: 65px; padding-bottom: 65px; }
}
@media(max-width: 480px) {
  .hero.restaurant-hero { min-height: 710px; padding: 65px 24px 145px; }
  .hero.restaurant-hero h1 { font-size: clamp(42px, 11.8vw, 56px); }
  .restaurant-hero__intro { font-size: 15px; }
  .restaurant-hero__foot { grid-template-columns: 1fr; gap: 10px; font-size: 9px; padding: 20px 24px; }
}
