:root{
  --cream:#f5f1e8;
  --cream-strong:#fffdf7;
  --ink:#1f2f38;
  --coffee:#2b5e64;
  --cocoa:#8a6946;
  --amber:#c89a44;
  --amber-soft:#e3c983;
  --coral:#b76145;
  --teal:#1f6d73;
  --sage:#76865a;
  --mist:#5b676d;
  --line:rgba(35,50,58,.14);
  --panel:rgba(255,252,245,.84);
  --panel-strong:rgba(255,253,248,.95);
  --shadow:0 24px 60px rgba(35,50,58,.15);
  --content:min(1380px, calc(100vw - 40px));
  --radius:30px;
}

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

html,
body{
  margin:0;
  padding:0;
  max-width:100%;
}

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  font-family:"Manrope",system-ui,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 9% 12%, rgba(240,96,54,.22), transparent 24%),
    radial-gradient(circle at 24% 82%, rgba(31,109,115,.20), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(244,196,72,.22), transparent 22%),
    radial-gradient(circle at 78% 82%, rgba(64,144,116,.18), transparent 26%),
    linear-gradient(180deg, #fff7e7 0%, #f3ead8 48%, #fff9ef 100%);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(227,201,131,.18), transparent 34%),
    radial-gradient(circle at 82% 80%, rgba(31,109,115,.10), transparent 36%);
  background-size:46px 46px, 46px 46px, auto, auto;
  mask-image:radial-gradient(circle at center, rgba(0,0,0,.95), transparent 90%);
  opacity:.72;
  animation:gridPulse 20s ease-in-out infinite alternate;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.16), transparent 32%, rgba(255,255,255,.1) 56%, transparent 78%),
    radial-gradient(circle at 10% 24%, rgba(183,97,69,.10), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(227,201,131,.12), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(31,109,115,.08), transparent 20%),
    linear-gradient(180deg, rgba(250,245,234,.52), rgba(250,245,234,.18) 50%, rgba(250,245,234,.4) 100%);
  opacity:.86;
  animation:ambientPan 28s ease-in-out infinite alternate;
}

a{
  color:inherit;
  text-decoration:none;
}

img,
video{
  display:block;
  max-width:100%;
}

.site-shell{
  position:relative;
  z-index:1;
  min-height:100vh;
}

.topbar{
  position:sticky;
  top:0;
  z-index:60;
  isolation:isolate;
  overflow:visible;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  width:var(--content);
  max-width:100%;
  margin:0 auto;
  padding:18px 0;
  backdrop-filter:blur(18px);
}

.topbar::before{
  content:"";
  position:absolute;
  inset:8px -18px;
  z-index:-1;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.9), rgba(255,232,190,.76) 34%, rgba(215,244,236,.76) 68%, rgba(255,255,255,.9)),
    radial-gradient(circle at 10% 16%, rgba(240,96,54,.22), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(31,109,115,.20), transparent 28%),
    rgba(252,249,241,.84);
  box-shadow:0 18px 36px rgba(35,50,58,.10);
  animation:topbarGlow 13s ease-in-out infinite alternate;
}

.topbar::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:9px;
  z-index:0;
  height:4px;
  border-radius:999px;
  pointer-events:none;
  background:linear-gradient(90deg, var(--coral), var(--amber), var(--teal), #6f8f44, var(--coral));
  background-size:240% 100%;
  box-shadow:0 0 20px rgba(200,154,68,.38);
  animation:colourRun 7s linear infinite;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  position:relative;
  z-index:2;
}

.brand-mark{
  width:74px;
  height:74px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:
    url("../uploads/WhatsApp%20Image%202025-10-13%20at%2017.14.04_5c75111f.jpg") center / cover no-repeat,
    linear-gradient(135deg,var(--teal),var(--amber-soft));
  color:transparent;
  font-size:0;
  line-height:0;
  box-shadow:0 18px 30px rgba(35,50,58,.16);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.68);
  animation:logoPulse 5.8s ease-in-out infinite;
}

.brand::after{
  content:"";
  position:absolute;
  width:84px;
  height:84px;
  left:-5px;
  top:50%;
  z-index:-1;
  border-radius:999px;
  background:conic-gradient(from 120deg, rgba(183,97,69,.32), rgba(227,201,131,.35), rgba(31,109,115,.32), rgba(183,97,69,.32));
  filter:blur(14px);
  transform:translateY(-50%);
  opacity:.72;
  animation:softSpin 12s linear infinite;
}

.brand-copy{
  display:grid;
  gap:2px;
}

.brand-copy strong{
  font-family:"Fraunces",serif;
  font-size:20px;
  line-height:1.05;
  color:transparent;
  background:linear-gradient(90deg, #20323a, #b76145, #2b5e64, #c89a44, #20323a);
  background-size:260% 100%;
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:brandTitleShift 9s ease-in-out infinite alternate;
}

.brand-copy span{
  color:var(--coffee);
  font-size:12px;
}

.nav-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
  z-index:3;
}

.topnav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  position:relative;
  z-index:3;
}

.topnav a{
  padding:9px 13px;
  border-radius:999px;
  color:var(--ink);
  font-size:14px;
  font-weight:700;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a.is-active{
  background:linear-gradient(135deg,var(--teal),var(--amber));
  color:var(--cream-strong);
  transform:translateY(-1px);
}

.topnav a.menu-shortcut{
  background:rgba(31,109,115,.1);
  border:1px solid rgba(31,109,115,.18);
}

.topnav a.menu-shortcut:hover,
.topnav a.menu-shortcut:focus-visible{
  border-color:transparent;
}

.topnav a.mobile-auth-link{
  display:none;
}

.nav-toggle{
  display:none;
  width:48px;
  height:48px;
  padding:0;
  border:1px solid var(--line);
  border-radius:14px;
  background:linear-gradient(135deg,var(--teal),var(--coral));
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:5px auto;
  background:var(--cream-strong);
  border-radius:999px;
}

.topbar-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
  position:relative;
  z-index:2;
}

.topbar-actions .ghost-btn.is-auth-entry{
  min-width:152px;
  background:rgba(255,255,255,.72);
}

.topbar-actions .ghost-btn.is-auth-entry.is-account{
  background:linear-gradient(135deg, rgba(31,109,115,.12), rgba(255,255,255,.84));
  border-color:rgba(31,109,115,.24);
}

.menu-shortcut-btn{
  box-shadow:0 20px 34px rgba(0,0,0,.2);
}

.solid-btn,
.ghost-btn,
.text-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  max-width:100%;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  font-weight:800;
  line-height:1.15;
  text-align:center;
  white-space:normal;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.solid-btn:hover,
.ghost-btn:hover,
.text-btn:hover{
  transform:translateY(-2px);
}

.solid-btn{
  background:linear-gradient(135deg,var(--teal),var(--amber));
  color:var(--cream-strong);
  box-shadow:0 18px 32px rgba(31,109,115,.18);
}

.ghost-btn{
  color:var(--ink);
  border:1px solid var(--line);
  background:rgba(255,255,255,.62);
}

.text-btn{
  color:var(--coffee);
  padding-left:0;
  padding-right:0;
  min-height:auto;
}

.large{
  min-height:54px;
  padding:0 24px;
}

main{
  padding:28px 0 84px;
}

.section-shell,
.hero{
  width:var(--content);
  max-width:100%;
  margin:0 auto;
}

.hero{
  display:grid;
  grid-template-columns:1fr;
  gap:34px;
  align-items:start;
}

.hero-copy,
.page-hero-copy{
  position:relative;
  z-index:1;
  width:100%;
  max-width:min(980px, 100%);
  margin:0 auto;
  padding:clamp(28px, 4vw, 42px);
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg, rgba(7,10,13,.92), rgba(16,23,29,.78));
  box-shadow:0 28px 64px rgba(11,15,19,.28);
  text-align:center;
}

.hero-copy::before,
.page-hero-copy::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(120deg, rgba(5,8,10,.94), rgba(9,15,20,.78) 38%, rgba(12,17,22,.54) 66%, rgba(5,8,10,.9)),
    url("../uploads/maya-art-dinner.png") center right / cover no-repeat;
  opacity:.98;
  transform:scale(1.02);
  animation:heroBackdropDrift 24s ease-in-out infinite alternate;
}

.hero-copy::after,
.page-hero-copy::after{
  content:"";
  position:absolute;
  inset:auto -6% -18% 36%;
  height:62%;
  z-index:0;
  border-radius:999px;
  background:radial-gradient(circle, rgba(31,109,115,.34), transparent 64%);
  filter:blur(12px);
  opacity:.82;
}

.hero-copy > *,
.page-hero-copy > *{
  position:relative;
  z-index:1;
}

.eyebrow{
  display:inline-flex;
  width:auto;
  max-width:100%;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.7);
  color:var(--coffee);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
  text-align:center;
  text-transform:uppercase;
}

.hero-copy .eyebrow,
.page-hero-copy .eyebrow{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#f2d08d;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.hero-copy h1,
.section-heading h2,
.page-hero-copy h1,
.cta-band h2,
.feature-card h3,
.story-card h3,
.detail-card h3,
.visit-card h3,
.article-card h3,
.event-card h3{
  margin:16px 0 12px;
  font-family:"Fraunces",serif;
  line-height:.98;
}

.hero-copy h1{
  font-size:clamp(36px, 4vw, 62px);
  max-width:52ch;
  margin-left:auto;
  margin-right:auto;
  color:#fff7ea;
  background-image:linear-gradient(92deg, #fff7ea 0%, #f1cb78 38%, #7be0d4 72%, #fff7ea 100%);
  background-size:180% 180%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:heroTitleShift 12s ease-in-out infinite alternate;
}

.page-hero-copy h1{
  font-size:clamp(32px, 3.6vw, 54px);
  max-width:52ch;
  margin-left:auto;
  margin-right:auto;
  color:#fff7ea;
  background-image:linear-gradient(92deg, #fff7ea 0%, #f1cb78 38%, #7be0d4 72%, #fff7ea 100%);
  background-size:180% 180%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:heroTitleShift 12s ease-in-out infinite alternate;
}

.hero-copy p,
.page-hero-copy p,
.feature-card p,
.story-card p,
.detail-card p,
.visit-card p,
.article-card p,
.event-card p,
.section-intro,
.list-clean li{
  color:var(--mist);
  font-size:16px;
  line-height:1.72;
}

.hero-copy p,
.page-hero-copy p{
  max-width:64ch;
  margin-left:auto;
  margin-right:auto;
  color:rgba(255,245,229,.84);
}

.hero-actions,
.hero-metrics,
.chip-row,
.visit-meta,
.link-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-copy .hero-actions,
.page-hero-copy .hero-actions,
.hero-copy .hero-metrics,
.page-hero-copy .hero-metrics{
  justify-content:center;
}

.hero-actions{
  margin-top:28px;
  max-width:100%;
}

.hero-copy .ghost-btn,
.page-hero-copy .ghost-btn{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.1);
  color:var(--cream-strong);
  box-shadow:0 18px 30px rgba(0,0,0,.18);
}

.hero-copy .solid-btn,
.page-hero-copy .solid-btn{
  box-shadow:0 20px 34px rgba(0,0,0,.22);
}

.hero-copy .menu-shortcut-btn,
.page-hero-copy .menu-shortcut-btn{
  min-width:170px;
}

.hero-route-actions{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  width:min(980px, 100%);
  margin-left:auto;
  margin-right:auto;
}

.route-action{
  width:100%;
  min-width:0;
  min-height:58px;
  padding:0 20px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  color:var(--cream-strong);
  box-shadow:0 18px 32px rgba(0,0,0,.22);
  overflow-wrap:anywhere;
}

.route-action:hover,
.route-action:focus-visible{
  background:linear-gradient(135deg, rgba(255,255,255,.22), rgba(227,201,131,.16));
}

.hero-metrics{
  margin-top:28px;
}

.hero-metrics div,
.chip-row span,
.visit-meta span{
  padding:13px 15px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.62);
}

.hero-copy .hero-metrics div,
.page-hero-copy .hero-metrics div{
  background:rgba(255,250,244,.92);
  border-color:rgba(255,255,255,.22);
  box-shadow:0 16px 30px rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}

.hero-metrics strong{
  display:block;
  font-size:18px;
  font-family:"Fraunces",serif;
}

.hero-copy .hero-metrics strong,
.page-hero-copy .hero-metrics strong{
  color:var(--ink);
}

.hero-metrics span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:var(--mist);
}

.hero-copy .hero-metrics span,
.page-hero-copy .hero-metrics span{
  color:#425760;
  font-size:14px;
  line-height:1.55;
}

.hero-metrics a{
  color:var(--teal);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:2px;
}

.hero-copy .hero-metrics a,
.page-hero-copy .hero-metrics a{
  color:#0f6670;
  text-decoration-thickness:2px;
}

.hero-stage,
.page-hero-stage{
  position:relative;
  isolation:isolate;
  --stage-shift-x:0px;
  --stage-shift-y:0px;
  min-height:620px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(227,201,131,.34), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(31,109,115,.16), transparent 28%),
    radial-gradient(circle at 44% 36%, rgba(183,97,69,.12), transparent 34%),
    linear-gradient(155deg, rgba(255,255,255,.88), rgba(245,236,221,.94));
  box-shadow:var(--shadow);
}

.hero-stage::before,
.page-hero-stage::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(rgba(31,47,56,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,47,56,.06) 1px, transparent 1px);
  background-size:56px 56px;
  opacity:.16;
}

.hero-stage::after,
.page-hero-stage::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(125deg, rgba(255,255,255,.12), transparent 30%, rgba(255,255,255,.1) 54%, transparent 72%),
    repeating-linear-gradient(140deg, rgba(255,255,255,.1) 0 1px, transparent 1px 28px);
  opacity:.58;
}

.page-hero{
  width:var(--content);
  max-width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
  align-items:start;
}

.page-hero-stage{
  min-height:480px;
}

.hero-stage,
.page-hero-stage{
  padding:36px;
}

.hero-stage[data-stage],
.page-hero-stage[data-stage]{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "spot photos"
    "order photos";
  gap:22px;
  align-items:stretch;
}

.hero-stage[data-stage] .stage-photo-wall,
.page-hero-stage[data-stage] .stage-photo-wall{
  grid-area:photos;
  position:relative;
  inset:auto;
  min-height:100%;
  transform:none;
}

.hero-stage[data-stage] .floating-card,
.page-hero-stage[data-stage] .floating-card{
  position:relative;
  top:auto;
  left:auto;
  right:auto;
  bottom:auto;
  width:auto;
  margin:0;
  transform:none;
}

.hero-stage[data-stage] .spotlight,
.page-hero-stage[data-stage] .spotlight{
  grid-area:spot;
}

.hero-stage[data-stage] .order-card,
.page-hero-stage[data-stage] .order-card{
  grid-area:order;
}

.hero-stage[data-stage].is-single-card,
.page-hero-stage[data-stage].is-single-card{
  grid-template-columns:minmax(0, .92fr) minmax(0, 1.08fr);
  grid-template-areas:"spot photos";
  align-items:center;
}

.hero-stage[data-stage].is-single-card .spotlight,
.page-hero-stage[data-stage].is-single-card .spotlight,
.hero-stage[data-stage].is-single-card .order-card,
.page-hero-stage[data-stage].is-single-card .order-card{
  align-self:center;
}

.hero-stage[data-stage].is-single-card .order-card,
.page-hero-stage[data-stage].is-single-card .order-card{
  grid-area:spot;
}

.hero-stage:not([data-stage]),
.page-hero-stage:not([data-stage]){
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(0, .85fr);
  gap:22px;
  align-items:start;
  min-height:0;
}

.hero-stage:not([data-stage]) .floating-card,
.page-hero-stage:not([data-stage]) .floating-card{
  position:relative;
  top:auto;
  left:auto;
  right:auto;
  bottom:auto;
  width:auto;
  margin:0;
  transform:none;
}

.hero-stage:not([data-stage]) .spotlight,
.page-hero-stage:not([data-stage]) .spotlight{
  grid-column:1;
}

.hero-stage:not([data-stage]) .order-card,
.page-hero-stage:not([data-stage]) .order-card{
  grid-column:2;
}

.floating-card,
.feature-card,
.story-card,
.detail-card,
.visit-card,
.article-card,
.event-card,
.cta-band,
.panel-card{
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow);
}

.floating-card{
  position:absolute;
  z-index:1;
  padding:24px;
  background:var(--panel);
  backdrop-filter:blur(14px);
  transition:transform .35s ease, box-shadow .35s ease;
  transform:translate3d(calc(var(--stage-shift-x) * -.12), calc(var(--stage-shift-y) * -.12), 0);
}

.stage-photo-wall{
  position:absolute;
  inset:34px 34px 34px 50%;
  z-index:0;
  pointer-events:none;
  display:grid;
  grid-template-columns:minmax(0, 1.12fr) minmax(0, .88fr);
  grid-template-rows:repeat(3, minmax(108px, 1fr));
  gap:16px;
  transform:translate3d(calc(var(--stage-shift-x) * .14), calc(var(--stage-shift-y) * .14), 0);
  transition:transform .45s ease;
}

.stage-photo-wall::before{
  display:none;
}

.stage-photo{
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.8);
  box-shadow:0 18px 34px rgba(35,50,58,.18);
  transform:none;
  animation:photoBob 14s ease-in-out infinite;
}

.stage-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.12), transparent 36%, rgba(31,47,56,.12));
}

.stage-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.03);
  filter:saturate(1.08) contrast(1.03);
}

.shot-a{
  grid-column:1;
  grid-row:1 / span 3;
  width:auto;
  min-height:0;
  aspect-ratio:auto;
  animation-delay:-1.4s;
}

.shot-b{
  grid-column:2;
  grid-row:1;
  width:auto;
  aspect-ratio:4 / 3;
  animation-delay:-4.1s;
}

.shot-c{
  grid-column:2;
  grid-row:2;
  width:auto;
  aspect-ratio:4 / 3;
  animation-delay:-2.6s;
}

.shot-d{
  display:block;
  grid-column:2;
  grid-row:3;
  width:auto;
  aspect-ratio:4 / 3;
  animation-delay:-5.2s;
}

.spotlight{
  width:auto;
}

.order-card{
  width:auto;
}

.order-choice-stage{
  padding:34px;
}

.order-choice-stage .spotlight{
  display:grid;
  gap:16px;
  align-self:center;
  min-height:100%;
  padding:30px;
}

.order-choice-stage .stage-photo-wall{
  min-height:100%;
}

.route-chooser{
  display:grid;
  gap:12px;
  margin-top:8px;
}

.route-choice{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.84);
  box-shadow:0 14px 28px rgba(35,50,58,.10);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.route-choice:hover,
.route-choice:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(35,50,58,.14);
  border-color:rgba(31,109,115,.26);
}

.route-choice.primary{
  background:linear-gradient(135deg, rgba(31,109,115,.12), rgba(227,201,131,.24));
  border-color:rgba(31,109,115,.22);
}

.route-choice-copy{
  display:grid;
  gap:4px;
}

.route-choice-copy strong{
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1;
}

.route-choice-copy small{
  color:var(--mist);
  font-size:14px;
  line-height:1.55;
}

.route-choice-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  color:var(--coffee);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.mini-tag{
  display:inline-flex;
  width:max-content;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(31,109,115,.10);
  color:var(--coffee);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.floating-card h2{
  margin:14px 0 10px;
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1.04;
}

.floating-card p,
.floating-card li{
  color:var(--mist);
  line-height:1.66;
}

.floating-card ul{
  margin:14px 0 0;
  padding-left:18px;
}

.hero-orb{
  position:absolute;
  z-index:0;
  border-radius:999px;
  filter:blur(10px);
  animation:floaty 7s ease-in-out infinite;
}

.orb-a{
  top:-70px;
  right:-44px;
  width:280px;
  height:280px;
  background:radial-gradient(circle, rgba(227,201,131,.62), transparent 65%);
}

.orb-b{
  bottom:-72px;
  left:-64px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(31,109,115,.32), transparent 65%);
  animation-delay:-2s;
}

.section-shell{
  margin-top:34px;
}

.unity-marquee{
  overflow:hidden;
  padding:18px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow);
}

.unity-marquee-track{
  display:flex;
  gap:12px;
  width:max-content;
  animation:marqueeSlide 28s linear infinite;
}

.unity-marquee span{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(35,50,58,.14);
  background:linear-gradient(135deg, rgba(255,255,255,.82), rgba(227,201,131,.18));
  color:var(--coffee);
  white-space:nowrap;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
}

.section-heading{
  margin-bottom:18px;
}

.section-heading h2{
  font-size:25px;
  max-width:12ch;
}

.section-heading p{
  max-width:68ch;
  color:var(--mist);
  line-height:1.72;
}

.feature-strip,
.story-grid,
.detail-grid,
.article-grid,
.event-grid,
.media-grid,
.menu-grid{
  display:grid;
  gap:16px;
}

.feature-strip{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.food-note-shell{
  position:relative;
  display:grid;
  grid-template-columns:minmax(320px, .92fr) minmax(0, 1fr);
  align-items:center;
  gap:28px;
  overflow:hidden;
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:
    radial-gradient(circle at 14% 20%, rgba(183,97,69,.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(31,109,115,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,237,202,.68) 48%, rgba(221,245,238,.62));
  box-shadow:var(--shadow);
}

.food-note-shell::before{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.64);
  pointer-events:none;
  background:linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 48%, transparent 72%);
  background-size:220% 100%;
  animation:shineAcross 10s ease-in-out infinite;
}

.food-note-shell > *{
  position:relative;
  z-index:1;
}

.food-note-shell.compact{
  grid-template-columns:minmax(220px, .56fr) minmax(0, 1fr);
  padding:22px;
}

.food-note-picture{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.16fr) minmax(150px, .84fr);
  grid-template-areas:
    "main top"
    "main bottom";
  gap:14px;
  align-items:stretch;
  min-height:0;
}

.food-note-shell.compact .food-note-picture{
  grid-template-columns:minmax(0, 1fr) minmax(132px, .74fr);
}

.food-note-photo{
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.68);
  background:var(--panel-strong);
  box-shadow:0 24px 50px rgba(35,50,58,.16);
}

.food-note-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.food-note-photo.main{
  grid-area:main;
  min-height:324px;
  --photo-tilt:-2deg;
  transform:rotate(var(--photo-tilt));
  animation:photoBob 12s ease-in-out infinite;
}

.food-note-photo.small{
  width:auto;
  min-width:0;
  aspect-ratio:auto;
}

.food-note-photo.top{
  grid-area:top;
  min-height:154px;
  --photo-tilt:3deg;
  transform:rotate(var(--photo-tilt));
  animation:photoBob 10s ease-in-out infinite -.8s;
}

.food-note-photo.bottom{
  grid-area:bottom;
  min-height:154px;
  --photo-tilt:-4deg;
  transform:rotate(var(--photo-tilt));
  animation:photoBob 11s ease-in-out infinite -2s;
}

.food-note-copy{
  display:grid;
  gap:12px;
}

.food-note-copy h2{
  margin:0;
  max-width:12ch;
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1;
  color:var(--ink);
}

.food-note-shell.compact .food-note-copy h2{
  max-width:16ch;
  font-size:25px;
}

.food-note-copy p{
  max-width:62ch;
  margin:0;
  color:var(--mist);
  font-size:16px;
  line-height:1.72;
}

.story-grid{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.detail-grid{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.article-grid{
  grid-template-columns:1.1fr .9fr;
}

.event-grid{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.media-grid{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.gallery-interview{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
  align-items:center;
  gap:22px;
  padding:26px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  background:
    radial-gradient(circle at 12% 18%, rgba(183,97,69,.18), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(31,109,115,.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,234,196,.62) 45%, rgba(222,247,239,.58));
}

.gallery-interview::before{
  content:"";
  position:absolute;
  inset:14px;
  z-index:0;
  border-radius:24px;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.62);
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent),
    radial-gradient(circle at 22% 78%, rgba(244,196,72,.20), transparent 24%);
  background-size:220% 100%, auto;
  animation:shineAcross 9s ease-in-out infinite;
}

.gallery-interview > *{
  position:relative;
  z-index:1;
}

.gallery-interview-copy{
  display:grid;
  gap:14px;
}

.gallery-interview-copy h2{
  margin:0;
  max-width:11ch;
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1;
  color:var(--ink);
}

.gallery-interview-copy p{
  margin:0;
  color:var(--mist);
  line-height:1.72;
}

.gallery-video-frame{
  --photo-tilt:1deg;
  box-shadow:0 26px 60px rgba(35,50,58,.22);
  transform:rotate(var(--photo-tilt));
  animation:photoBob 11s ease-in-out infinite;
}

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

.feature-card,
.story-card,
.detail-card,
.visit-card,
.article-card,
.event-card,
.menu-card{
  padding:24px;
}

.card-visual{
  position:relative;
  margin:0 0 18px;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:var(--panel-strong);
  aspect-ratio:1.12/1;
  box-shadow:0 14px 28px rgba(35,50,58,.10);
}

.card-visual::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(155deg, rgba(31,109,115,.12), transparent 42%, rgba(227,201,131,.18) 100%),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.24), transparent 26%);
  mix-blend-mode:multiply;
  opacity:.9;
}

.card-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
}

.art-visual img{
  filter:saturate(.94) contrast(1.04) brightness(1.02);
}

.feature-card.accent,
.story-card.accent,
.detail-card.accent,
.article-card.accent,
.cta-band{
  background:
    linear-gradient(145deg, rgba(31,109,115,.08), rgba(255,255,255,.78)),
    radial-gradient(circle at top right, rgba(227,201,131,.16), transparent 32%);
}

.feature-card h3,
.story-card h3,
.detail-card h3,
.visit-card h3,
.article-card h3,
.event-card h3{
  font-size:25px;
}

.feature-card span,
.story-card span,
.detail-card span,
.article-card span{
  color:var(--coffee);
}

.list-clean{
  display:grid;
  gap:10px;
  margin:0;
  padding-left:18px;
}

.list-clean li{
  margin:0;
}

.callout-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  font-weight:800;
  color:var(--coffee);
}

.map-layout{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:18px;
}

.map-frame{
  min-height:460px;
  overflow:hidden;
  border-radius:30px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:saturate(.92) contrast(1.05);
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px;
}

.cta-band h2{
  font-size:25px;
  max-width:12ch;
}

.filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.filter-btn{
  padding:9px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.62);
  color:var(--mist);
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.filter-btn.active{
  background:linear-gradient(135deg,var(--coral),var(--amber));
  color:var(--cream-strong);
}

.media-card,
.event-card,
.menu-card{
  overflow:hidden;
}

.media-visual,
.event-visual{
  aspect-ratio:16/10;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:var(--panel-strong);
}

.media-visual img,
.media-visual video,
.event-visual img,
.event-visual video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.media-copy,
.event-copy{
  display:grid;
  gap:8px;
  margin-top:16px;
}

.narrow-shell{
  width:min(760px, var(--content));
  margin:0 auto;
}

.form-card,
.prose-card,
.status-card{
  padding:24px;
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow);
}

.form-card.compact,
.status-card.compact{
  max-width:520px;
  margin:0 auto;
}

.form-title{
  margin:0 0 8px;
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1.02;
}

.form-subtitle,
.helper-text,
.prose-card p,
.prose-card li{
  color:var(--mist);
  line-height:1.72;
  font-size:15px;
}

.form-stack{
  display:grid;
  gap:14px;
}

.field-grid{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.field{
  display:grid;
  gap:6px;
}

.field.full{
  grid-column:1 / -1;
}

.field label{
  color:var(--coffee);
  font-size:13px;
  font-weight:700;
}

.field input,
.field select,
.field textarea{
  width:100%;
  padding:12px 13px;
  border-radius:14px;
  border:1px solid rgba(35,50,58,.18);
  background:rgba(255,255,255,.88);
  color:var(--ink);
  font:inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:rgba(31,109,115,.55);
  box-shadow:0 0 0 1px rgba(31,109,115,.25);
}

.field textarea{
  min-height:120px;
  resize:vertical;
}

.notice-box{
  margin-bottom:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
}

.notice-box.success{
  border-color:rgba(34,197,94,.45);
  background:rgba(34,197,94,.12);
  color:#235638;
}

.notice-box.error{
  border-color:rgba(248,113,113,.5);
  background:rgba(248,113,113,.12);
  color:#7b2323;
}

.notice-box.info{
  border-color:rgba(255,215,150,.35);
  background:rgba(255,255,255,.05);
  color:var(--mist);
}

.notice-box ul{
  margin:8px 0 0;
  padding-left:18px;
}

.helper-links{
  display:grid;
  gap:8px;
  margin-top:14px;
}

.helper-links a,
.helper-text a,
.prose-card a{
  color:var(--coffee);
}

body.has-modal-open{
  overflow:hidden;
}

.careers-modal{
  position:fixed;
  inset:0;
  z-index:120;
  display:grid;
  place-items:center;
  padding:18px;
  background:rgba(16,23,29,.52);
  backdrop-filter:blur(10px);
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}

.careers-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.careers-modal-panel{
  width:min(1220px, 100%);
  height:min(92vh, 920px);
  display:grid;
  grid-template-rows:auto 1fr;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(140deg, rgba(255,255,255,.94), rgba(255,244,222,.92) 48%, rgba(230,247,241,.92)),
    rgba(255,255,255,.9);
  box-shadow:0 36px 90px rgba(11,15,19,.34);
}

.careers-modal-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px 16px;
  border-bottom:1px solid rgba(35,50,58,.1);
  background:linear-gradient(135deg, rgba(255,255,255,.9), rgba(249,240,221,.78));
}

.careers-modal-copy{
  display:grid;
  gap:6px;
}

.careers-modal-copy strong{
  font-family:"Fraunces",serif;
  font-size:28px;
  line-height:1;
}

.careers-modal-copy p{
  margin:0;
  max-width:64ch;
  color:var(--mist);
  line-height:1.6;
}

.careers-modal-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.careers-modal-close{
  width:48px;
  min-width:48px;
  min-height:48px;
  padding:0;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.84);
  color:var(--ink);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.careers-modal-frame-wrap{
  position:relative;
  min-height:0;
  background:linear-gradient(180deg, rgba(250,246,237,.72), rgba(243,234,216,.88));
}

.careers-modal-frame{
  width:100%;
  height:100%;
  border:0;
  background:#fff9ef;
}

.badge-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.badge-cloud span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  color:var(--coffee);
  font-size:12px;
  font-weight:800;
}

.badge-cloud span:nth-child(3n){
  background:rgba(31,109,115,.12);
}

.badge-cloud span:nth-child(3n + 1){
  background:rgba(183,97,69,.08);
}

.badge-cloud span:nth-child(3n + 2){
  background:rgba(227,201,131,.20);
}

.embed-frame{
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
}

.embed-frame iframe{
  width:100%;
  height:100%;
  border:0;
}

.flipdish-panel{
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.74);
  box-shadow:var(--shadow);
}

.flipdish-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:24px;
}

.flipdish-head h2{
  margin:14px 0 10px;
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1;
}

.flipdish-head p{
  max-width:64ch;
  color:var(--mist);
  line-height:1.72;
}

.flipdish-frame{
  min-height:74vh;
  padding:18px;
  border-top:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.1)),
    radial-gradient(circle at top right, rgba(227,201,131,.18), transparent 34%);
}

.route-embed-panel{
  background:rgba(255,255,255,.62);
}

.route-embed-panel .flipdish-frame{
  padding:16px;
  border-top:0;
}

.route-detail-wrap{
  padding:0 24px 24px;
}

#flipdish-menu{
  width:100%;
  min-height:70vh;
}

#flipdish-menu[data-theme="light"],
#flipdish-menu[data-theme="light"] .fd-page,
#flipdish-menu[data-theme="light"] .fd-content__main,
#flipdish-menu[data-theme="light"] span,
#flipdish-menu[data-theme="light"] small,
#flipdish-menu[data-theme="light"] li{
  color:var(--ink) !important;
}

#flipdish-menu[data-theme="light"] .fd-text,
#flipdish-menu[data-theme="light"] .MuiTypography-root,
#flipdish-menu[data-theme="light"] .fd-link,
#flipdish-menu[data-theme="light"] label,
#flipdish-menu[data-theme="light"] p,
#flipdish-menu[data-theme="light"] h1,
#flipdish-menu[data-theme="light"] h2,
#flipdish-menu[data-theme="light"] h3,
#flipdish-menu[data-theme="light"] h4{
  color:var(--ink) !important;
}

#flipdish-menu[data-theme="light"] input,
#flipdish-menu[data-theme="light"] textarea{
  color:var(--ink) !important;
}

#flipdish-menu[data-theme="light"] input::placeholder,
#flipdish-menu[data-theme="light"] textarea::placeholder{
  color:rgba(28,24,20,.56) !important;
}

.direct-embed-panel{
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow);
}

.direct-embed-head{
  display:grid;
  gap:10px;
  padding:24px;
}

.direct-embed-head h2{
  margin:0;
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1;
}

.direct-embed-head p{
  max-width:70ch;
  margin:0;
  color:var(--mist);
  line-height:1.72;
}

.direct-embed-frame{
  height:min(860px, 82vh);
  min-height:680px;
  border-top:1px solid var(--line);
  background:#170a07;
}

.direct-embed-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.orderomancy-shell{
  margin-top:24px;
}

.orderomancy-frame{
  height:calc(100vh - 150px);
  min-height:760px;
}

.review-list{
  display:grid;
  gap:14px;
}

.reviews-page .page-hero-stage{
  min-height:360px;
}

.review-form-card,
.review-list-card{
  background:
    radial-gradient(circle at 12% 12%, rgba(183,97,69,.10), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(31,109,115,.10), transparent 30%),
    rgba(255,255,255,.76);
}

.review-score{
  display:grid;
  gap:8px;
}

.review-score strong{
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1;
  color:transparent;
  background:linear-gradient(120deg, var(--coral), var(--amber), var(--teal));
  background-size:200% 100%;
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:brandTitleShift 8s ease-in-out infinite alternate;
}

.review-score span{
  color:var(--mist);
  font-weight:800;
}

.review-entry{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,245,224,.74)),
    radial-gradient(circle at top right, rgba(31,109,115,.10), transparent 36%);
  box-shadow:0 14px 28px rgba(35,50,58,.08);
}

.review-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.review-name{
  font-family:"Fraunces",serif;
  font-size:25px;
}

.review-stars{
  color:var(--coffee);
  font-size:18px;
  letter-spacing:.08em;
}

.review-date{
  color:var(--mist);
  font-size:12px;
  margin-top:6px;
}

.review-trap{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.account-lines{
  display:grid;
  gap:10px;
}

.account-line{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--mist);
}

.account-line strong{
  color:var(--coffee);
}

.pill-nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.pill-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.68);
  color:var(--mist);
  font-size:13px;
  font-weight:700;
}

.pill-nav a.active{
  background:linear-gradient(135deg,var(--coral),var(--amber));
  color:var(--cream-strong);
}

.menu-card{
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  gap:18px;
  align-items:start;
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow);
}

.menu-card-visual{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:var(--panel-strong);
  aspect-ratio:1/1;
}

.menu-card-visual::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(155deg, rgba(31,109,115,.10), transparent 42%, rgba(227,201,131,.22) 100%),
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.26), transparent 24%);
  mix-blend-mode:multiply;
  opacity:.88;
}

.menu-card-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.03);
  filter:saturate(.78) contrast(1.06) brightness(1.03) sepia(.12);
}

.menu-card-copy{
  display:grid;
  gap:10px;
}

.menu-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.menu-card-title{
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1.06;
}

.menu-price{
  color:var(--coffee);
  font-size:20px;
  font-weight:800;
  white-space:nowrap;
}

.menu-card-copy p{
  margin:0;
  color:var(--mist);
  line-height:1.7;
}

.media-tag,
.event-tag{
  color:var(--coffee);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.media-title{
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1.06;
}

.event-status{
  display:inline-flex;
  width:max-content;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  color:var(--coffee);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.quote-line{
  font-family:"Fraunces",serif;
  font-size:25px;
  line-height:1.08;
}

.site-footer{
  width:var(--content);
  max-width:100%;
  margin:0 auto;
  padding:0 0 28px;
}

.site-footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:22px;
  border-radius:24px;
  border:1px solid var(--line);
  color:var(--mist);
  font-size:13px;
  background:rgba(255,255,255,.72);
}

.site-footer strong{
  color:var(--ink);
}

.footer-signature{
  color:var(--coffee);
  font-weight:800;
  text-decoration:none;
}

.footer-signature:hover,
.footer-signature:focus-visible{
  color:var(--teal);
}

.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.from-left{
  transform:translate3d(-48px, 0, 0);
}

.reveal.from-right{
  transform:translate3d(48px, 0, 0);
}

.reveal.from-top{
  transform:translate3d(0, -34px, 0);
}

.reveal.is-live{
  opacity:1;
  transform:translate3d(0, 0, 0);
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

@keyframes floaty{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-18px,0)}
}

@keyframes ambientPan{
  0%{transform:translate3d(0,0,0) scale(1)}
  100%{transform:translate3d(0,-18px,0) scale(1.02)}
}

@keyframes gridPulse{
  0%{transform:translate3d(0,0,0)}
  100%{transform:translate3d(10px,-8px,0)}
}

@keyframes photoBob{
  0%,100%{transform:translate3d(0,0,0) rotate(var(--photo-tilt, 0deg))}
  50%{transform:translate3d(0,-8px,0) rotate(var(--photo-tilt, 0deg))}
}

@keyframes marqueeSlide{
  0%{transform:translate3d(0,0,0)}
  100%{transform:translate3d(-50%,0,0)}
}

@keyframes heroBackdropDrift{
  0%{background-position:center right, center right}
  100%{background-position:center right, 68% 42%}
}

@keyframes heroTitleShift{
  0%{background-position:0% 50%}
  100%{background-position:100% 50%}
}

@keyframes topbarGlow{
  0%{filter:saturate(1) brightness(1)}
  100%{filter:saturate(1.18) brightness(1.03)}
}

@keyframes colourRun{
  0%{background-position:0% 50%}
  100%{background-position:240% 50%}
}

@keyframes logoPulse{
  0%,100%{transform:translate3d(0,0,0) scale(1); box-shadow:0 18px 30px rgba(35,50,58,.16)}
  50%{transform:translate3d(0,-2px,0) scale(1.035); box-shadow:0 22px 42px rgba(183,97,69,.22)}
}

@keyframes softSpin{
  0%{transform:translateY(-50%) rotate(0deg)}
  100%{transform:translateY(-50%) rotate(360deg)}
}

@keyframes brandTitleShift{
  0%{background-position:0% 50%}
  100%{background-position:100% 50%}
}

@keyframes shineAcross{
  0%,100%{background-position:-120% 50%, center}
  50%{background-position:120% 50%, center}
}

@media (max-width:1160px){
  .feature-strip,
  .food-note-shell,
  .story-grid,
  .detail-grid,
  .article-grid,
  .event-grid,
  .media-grid,
  .menu-grid,
  .map-layout,
  .gallery-interview{
    grid-template-columns:1fr;
  }

  .food-note-picture,
  .food-note-shell.compact .food-note-picture{
    min-height:0;
  }

  .hero-stage{
    min-height:540px;
  }

  .cta-band{
    display:grid;
  }

  .hero-stage[data-stage],
  .page-hero-stage[data-stage],
  .hero-stage:not([data-stage]),
  .page-hero-stage:not([data-stage]){
    grid-template-columns:1fr;
  }

  .hero-stage[data-stage],
  .page-hero-stage[data-stage]{
    grid-template-areas:
      "photos"
      "spot"
      "order";
  }

  .hero-stage:not([data-stage]),
  .page-hero-stage:not([data-stage]){
    grid-template-areas:
      "spot"
      "order";
  }

  .hero-stage[data-stage] .stage-photo-wall,
  .page-hero-stage[data-stage] .stage-photo-wall{
    min-height:420px;
  }

  .order-choice-stage{
    padding:24px;
  }

  .hero-stage:not([data-stage]) .spotlight,
  .page-hero-stage:not([data-stage]) .spotlight,
  .hero-stage:not([data-stage]) .order-card,
  .page-hero-stage:not([data-stage]) .order-card{
    grid-column:auto;
  }
}

@media (max-width:960px){
  .topbar{
    align-items:flex-start;
    padding:14px 0;
  }

  .topbar::before{
    inset:6px -10px;
  }

  .nav-wrap{
    position:relative;
    display:block;
  }

  .nav-toggle{
    display:block;
  }

  .topnav{
    position:absolute;
    top:calc(100% + 12px);
    right:0;
    z-index:24;
    min-width:260px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    border:1px solid var(--line);
    border-radius:18px;
    background:rgba(252,249,241,.96);
    box-shadow:var(--shadow);
  }

  .topnav.is-open{
    display:flex;
  }

  .topnav a{
    width:100%;
    text-align:center;
  }

  .topnav a.mobile-auth-link{
    display:block;
    margin-top:4px;
    background:rgba(31,109,115,.1);
    border:1px solid rgba(31,109,115,.18);
    color:var(--teal);
    font-weight:900;
  }

  .topnav a.mobile-auth-link.is-account{
    background:linear-gradient(135deg,var(--teal),var(--amber));
    border-color:transparent;
    color:var(--cream-strong);
  }

  .topbar-actions{
    display:none;
  }

  .hero-copy h1{
    font-size:clamp(32px, 5vw, 48px);
    max-width:52ch;
  }

  .page-hero-copy h1{
    font-size:clamp(28px, 4.8vw, 42px);
    max-width:52ch;
  }

  .hero-route-actions{
    grid-template-columns:1fr;
    width:100%;
    gap:10px;
  }

  .hero-stage[data-stage],
  .page-hero-stage[data-stage]{
    min-height:auto;
    padding-top:240px;
  }

  .hero-stage:not([data-stage]),
  .page-hero-stage:not([data-stage]){
    min-height:0;
    padding-top:18px;
  }

  .hero-stage[data-stage] .stage-photo-wall,
  .page-hero-stage[data-stage] .stage-photo-wall{
    inset:14px 14px auto 14px;
    display:block;
    height:190px;
    transform:none;
  }

  .hero-stage[data-stage] .shot-a,
  .page-hero-stage[data-stage] .shot-a{
    display:block;
    min-height:190px;
    height:190px;
  }

  .hero-stage[data-stage] .shot-b,
  .hero-stage[data-stage] .shot-c,
  .hero-stage[data-stage] .shot-d,
  .page-hero-stage[data-stage] .shot-b,
  .page-hero-stage[data-stage] .shot-c,
  .page-hero-stage[data-stage] .shot-d{
    display:none;
  }

  .floating-card{
    position:relative;
    inset:auto;
    width:auto;
    margin:16px;
  }

  .route-choice{
    grid-template-columns:1fr;
    justify-items:start;
  }

  .route-choice-copy strong{
    font-size:25px;
  }

  .careers-modal{
    padding:14px;
  }

  .careers-modal-panel{
    height:min(94vh, 960px);
  }
}

@media (max-width:720px){
  :root{
    --content:min(100vw - 24px, 100%);
  }

  main{
    padding-top:18px;
    padding-bottom:60px;
  }

  .hero-metrics div,
  .chip-row span,
  .visit-meta span{
    width:100%;
  }

  .hero-actions .solid-btn,
  .hero-actions .ghost-btn,
  .cta-band .solid-btn,
  .cta-band .ghost-btn,
  .topbar-actions .solid-btn{
    width:100%;
  }

  .food-note-picture{
    grid-template-columns:1fr;
    grid-template-areas:
      "main"
      "top"
      "bottom";
  }

  .food-note-photo.main,
  .food-note-photo.top,
  .food-note-photo.bottom{
    min-height:190px;
  }

  .careers-modal{
    padding:8px;
  }

  .careers-modal-header{
    display:grid;
    justify-content:stretch;
    padding:16px 16px 14px;
  }

  .careers-modal-copy strong{
    font-size:25px;
  }

  .careers-modal-actions{
    width:100%;
  }

  .careers-modal-actions .ghost-btn{
    width:100%;
  }

  .feature-card,
  .story-card,
  .detail-card,
  .visit-card,
  .article-card,
  .event-card,
  .menu-card,
  .cta-band,
  .panel-card,
  .form-card,
  .prose-card,
  .status-card{
    padding:18px;
    border-radius:22px;
  }

  .spotlight,
  .order-card{
    margin:14px;
  }

  .hero-stage[data-stage] .stage-photo-wall,
  .page-hero-stage[data-stage] .stage-photo-wall{
    inset:12px 10px auto 10px;
    height:176px;
  }

  .hero-copy,
  .page-hero-copy{
    padding:22px 18px;
    border-radius:26px;
  }

  .direct-embed-head{
    padding:18px;
  }

  .direct-embed-frame{
    height:78vh;
    min-height:620px;
  }

  .floating-card h2,
  .feature-card h3,
  .story-card h3,
  .detail-card h3,
  .visit-card h3,
  .article-card h3,
  .event-card h3,
  .media-title,
  .quote-line,
  .menu-card-title{
    font-size:25px;
  }

  .menu-card{
    grid-template-columns:1fr;
  }

  .menu-card-visual{
    aspect-ratio:16/10;
  }

  .unity-marquee{
    padding:14px;
  }

  .unity-marquee span{
    min-height:40px;
    padding:0 14px;
    font-size:12px;
  }

  .flipdish-head,
  .flipdish-frame{
    padding:18px;
  }

  .field-grid{
    grid-template-columns:1fr;
  }
}

.section-heading h2,
.floating-card h2,
.food-note-copy h2,
.gallery-interview-copy h2,
.cta-band h2,
.flipdish-head h2,
.direct-embed-head h2,
.feature-card h3,
.story-card h3,
.detail-card h3,
.visit-card h3,
.article-card h3,
.event-card h3,
.form-title,
.route-choice-copy strong,
.review-score strong,
.review-name,
.menu-card-title,
.media-title,
.quote-line{
  font-size:25px;
}

.hero-copy h1{
  font-size:clamp(36px, 4vw, 62px);
}

.page-hero-copy h1{
  font-size:clamp(32px, 3.6vw, 54px);
}

@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }

  .reveal,
  .reveal.from-left,
  .reveal.from-right,
  .reveal.from-top{
    opacity:1;
    transform:none;
  }
}
