/* ============================================================
   MATCHA CAFE — premium landing page
   Palette: sage moss green (#85906D) / near-black green + warm cream brass (#c69b6b)
   Type: Marcellus (display serif) + Jost (sans)
   ============================================================ */

:root {
  --bg: oklch(0.18 0.024 130);
  /* near-black, warm green undertone */
  --bg-deep: oklch(0.14 0.022 130);
  /* darker panel */
  --bg-soft: oklch(0.22 0.026 128);
  /* raised panel */
  --cream: oklch(0.94 0.020 88);
  /* primary text on dark */
  --cream-dim: oklch(0.81 0.018 92);
  /* secondary text */
  --muted: oklch(0.62 0.014 120);
  /* tertiary / captions */
  --matcha: #85906D;
  /* signature sage / moss */
  --matcha-rgb: 133, 144, 109;
  /* helper for alphas */
  --matcha-lo: #5F6850;
  /* deeper sage */
  --matcha-hi: #A3AC8A;
  /* lighter sage halo */
  --brass: #C69B6B;
  /* warm cream accent */
  --brass-rgb: 198, 155, 107;
  --line: oklch(0.40 0.018 125 / 0.55);
  --line-soft: oklch(0.55 0.018 125 / 0.22);

  --serif: "Marcellus", "Times New Roman", serif;
  --sans: "Jost", system-ui, sans-serif;

  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--matcha);
  color: var(--bg-deep);
}

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

/* ---------- FLOATING SOCIAL BAR (left edge) ---------- */
.float-social {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), filter 0.28s ease;
  position: relative;
}

.float-social-btn svg {
  width: 20px;
  height: 20px;
  flex: none;
  position: relative;
  z-index: 1;
}

.float-social-btn:hover {
  transform: translateX(4px);
  filter: brightness(1.15);
  box-shadow: 4px 0 20px -4px oklch(0.05 0 0 / 0.45);
}

.float-social-btn:active {
  transform: translateX(2px) scale(0.95);
}

/* Phone — matcha sage */
.float-social-phone {
  background: var(--matcha);
  border-radius: 0 10px 0 0;
}

.float-social-phone svg {
  stroke: #fff;
}

/* Facebook — deep muted blue, harmonious with dark theme */
.float-social-fb {
  background: #4A6741;
}

/* Instagram — earthy brass-green */
.float-social-ig {
  background: var(--matcha-lo);
  border-radius: 0 0 10px 0;
}

/* Stagger entrance */
.float-social-btn {
  animation: floatSlideIn 0.6s var(--ease) both;
}

.float-social-btn:nth-child(1) {
  animation-delay: 0.8s;
}

.float-social-btn:nth-child(2) {
  animation-delay: 0.92s;
}

.float-social-btn:nth-child(3) {
  animation-delay: 1.04s;
}

@keyframes floatSlideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile: smaller icons */
@media (max-width: 860px) {
  .float-social-btn {
    width: 40px;
    height: 40px;
  }

  .float-social-btn svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 480px) {
  .float-social {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    gap: 0;
  }

  .float-social-btn {
    flex: 1;
    height: 48px;
    border-radius: 0;
  }

  .float-social-phone {
    border-radius: 0;
  }

  .float-social-ig {
    border-radius: 0;
  }

  .float-social-btn {
    animation-name: floatSlideUp;
  }

  @keyframes floatSlideUp {
    from {
      opacity: 0;
      transform: translateY(100%);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ---------- shared layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

section {
  position: relative;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

.eyebrow.center::before {
  display: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(48px, 9vw, 132px);
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(34px, 5.2vw, 68px);
}

.h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

p.lead {
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--cream-dim);
  max-width: 56ch;
}

.italic {
  font-style: italic;
  color: var(--matcha);
}

/* ---------- buttons ---------- */
.btn {
  --c: var(--bg-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--c);
  background: var(--matcha);
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), background .4s var(--ease), color .4s var(--ease);
}

.btn {
  white-space: nowrap;
}

.btn .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  transition: transform .5s var(--ease);
  flex: none;
}

.btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn:hover .dot {
  transform: translateX(4px) scale(1.3);
}

.btn.ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}

.btn.ghost:hover {
  background: var(--cream);
  color: var(--bg-deep);
  border-color: var(--cream);
}

/* ---------- image placeholder ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      oklch(0.30 0.03 150 / 0.55) 0 2px,
      transparent 2px 11px),
    linear-gradient(160deg, var(--bg-soft), var(--bg-deep));
  overflow: hidden;
}

.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  margin: auto;
  bottom: 14px;
  left: 14px;
  right: auto;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: oklch(0.14 0.02 150 / 0.7);
  padding: 5px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gut);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.solid {
  background: oklch(0.15 0.025 152 / 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  padding-block: 15px;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand .mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--matcha), var(--matcha-lo) 70%);
  box-shadow: inset 0 0 0 1px oklch(0.9 0.05 130 / 0.3);
  flex: none;
}

.brand.has-logo {
  gap: 0;
}

.brand .brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  border-radius: 12px;
  background-color: transparent;
  transition: height .4s var(--ease);
}

.nav.solid .brand .brand-logo {
  height: 44px;
}

footer .brand .brand-logo {
  height: 80px;
  max-width: 280px;
  border-radius: 16px;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--matcha);
  transition: width .4s var(--ease);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 13px !important;
  padding: 12px 22px;
}

/* Hamburger menu toggle (hidden ≥860px) */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: oklch(0.16 0.02 130 / 0.4);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.menu-toggle:hover {
  background: oklch(0.22 0.03 130 / 0.55);
  border-color: var(--matcha);
}

.menu-toggle .bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.6px;
  margin-left: -9px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}

.menu-toggle .bar:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle .bar:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle .bar:nth-child(3) {
  transform: translateY(6px);
}

.nav.menu-open .menu-toggle .bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.nav.menu-open .menu-toggle .bar:nth-child(2) {
  opacity: 0;
}

.nav.menu-open .menu-toggle .bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Close button inside the mobile drawer (hidden on desktop) */
.nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: oklch(0.16 0.02 130 / 0.5);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--cream);
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.nav-close:hover {
  background: oklch(0.22 0.03 130 / 0.7);
  border-color: var(--matcha);
  transform: rotate(90deg);
}

.nav-close svg {
  display: block;
}

/* Backdrop sits behind drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: oklch(0.05 0.005 130 / 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* language dropdown with flags */
.lang-dd {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: oklch(0.16 0.02 150 / 0.4);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 12px 7px 9px;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  backdrop-filter: blur(6px);
}

.lang-trigger:hover {
  background: oklch(0.22 0.03 150 / 0.55);
  border-color: var(--matcha);
}

.flag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  flex: none;
  box-shadow: 0 0 0 1px oklch(1 0 0 / 0.14);
}

.flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-cur {
  font-weight: 400;
}

.lang-trigger .chev {
  width: 12px;
  height: 12px;
  color: var(--cream-dim);
  transition: transform .35s var(--ease);
}

.lang-dd.open .lang-trigger .chev {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 184px;
  background: oklch(0.16 0.025 150 / 0.96);
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 6px;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 30px 70px -25px oklch(0.05 0 0 / 0.8);
  z-index: 120;
}

.lang-dd.open .lang-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.lang-menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 9px;
  cursor: pointer;
  color: var(--cream-dim);
  font-size: 14.5px;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.lang-menu li:hover {
  background: oklch(0.24 0.03 150 / 0.6);
  color: var(--cream);
}

.lang-menu li[aria-selected="true"] {
  color: var(--cream);
}

.lang-menu .flag {
  width: 27px;
  height: 18px;
}

.lang-menu .nm {
  flex: 1;
}

.lang-menu .check {
  color: var(--matcha);
  opacity: 0;
  font-size: 13px;
}

.lang-menu li[aria-selected="true"] .check {
  opacity: 1;
}

@media (max-width: 860px) {
  .nav {
    padding-block: 14px;
  }

  .nav.solid {
    padding-block: 12px;
  }

  .brand .brand-logo {
    height: 46px;
  }

  .nav.solid .brand .brand-logo {
    height: 40px;
  }

  /* Desktop CTA hides; mobile CTA inside drawer takes its place */
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    padding-top: clamp(82px, 14vw, 110px);
    height: 100svh;
    max-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: oklch(0.13 0.02 130 / 0.96);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    backdrop-filter: blur(20px) saturate(1.2);
    padding-inline: var(--gut);
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line-soft);
    z-index: 96;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
    overflow-y: auto;
  }

  .nav-close {
    display: inline-flex;
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 18px);
    right: var(--gut);
    z-index: 2;
  }

  .nav.menu-open .nav-links {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 18px 4px;
    font-size: 22px;
    font-family: var(--serif);
    color: var(--cream);
    letter-spacing: 0.01em;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }
}

/* =====================================================
   HERO — editorial photograph showcase
   ===================================================== */
.hero.hero-photo {
  display: block;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-photo-inner {
  position: relative;
  min-height: 94svh;
  padding: clamp(96px, 11vw, 130px) clamp(20px, 4vw, 56px) clamp(72px, 9vw, 110px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(var(--matcha-rgb), 0.10), transparent 70%),
    radial-gradient(60% 40% at 50% 100%, rgba(var(--brass-rgb), 0.06), transparent 70%);
}

.hero-photo .frame {
  position: relative;
  width: 100%;
  max-width: 1480px;
  aspect-ratio: 16/9;
  border-radius: 22px;
  overflow: hidden;
  background-color: var(--bg);
  box-shadow:
    0 70px 140px -50px oklch(0.05 0 0 / 0.85),
    0 0 0 1px oklch(0.95 0.01 100 / 0.06);
  transform: translateZ(0);
}

.hero-photo .frame.has-photo {
  animation: heroPhotoIn 1.7s var(--ease) both;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease), transform 1.7s var(--ease);
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

.hero-slider-nav {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid oklch(0.95 0.01 100 / 0.18);
  background: oklch(0.13 0.02 130 / 0.48);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}

.hero-slider-btn:hover {
  background: var(--cream);
  color: var(--bg-deep);
  border-color: var(--cream);
  transform: scale(1.05);
}

.hero-slider-btn:active {
  transform: scale(0.95);
}

.hero-photo .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.10 0.02 130 / 0.30) 0%, transparent 22%, transparent 65%, oklch(0.08 0.02 130 / 0.65) 100%);
  pointer-events: none;
  z-index: 3;
}

@keyframes heroPhotoIn {
  from {
    transform: scale(1.05);
    opacity: 0.35;
    filter: saturate(0.55) brightness(0.85);
  }

  to {
    transform: scale(1);
    opacity: 1;
    filter: none;
  }
}

@media (max-width: 720px) {
  .hero-photo .frame {
    aspect-ratio: 4/5;
  }
}

/* Subtle bracket-style corner ticks for the editorial frame */
.frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 4;
  pointer-events: none;
  border: 0 solid var(--cream);
  opacity: 0.55;
}

.frame-corner.tl {
  top: 14px;
  left: 14px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.frame-corner.tr {
  top: 14px;
  right: 14px;
  border-top-width: 1px;
  border-right-width: 1px;
}

.frame-corner.bl {
  bottom: 14px;
  left: 14px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.frame-corner.br {
  bottom: 14px;
  right: 14px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

/* Glass chips */
.hero-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 100px;
  background: oklch(0.13 0.02 130 / 0.48);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  backdrop-filter: blur(14px) saturate(1.25);
  border: 1px solid oklch(0.95 0.01 100 / 0.20);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 40px -16px oklch(0.05 0 0 / 0.55);
}

.hero-chip svg {
  color: var(--matcha);
  flex: none;
}

/* Chips now live inside the photo frame, so the fixed nav never overlaps them. */
.hero-chip-loc {
  top: clamp(22px, 3vw, 40px);
  left: clamp(22px, 3vw, 40px);
}

.hero-chip-open {
  bottom: clamp(22px, 3vw, 40px);
  right: clamp(22px, 3vw, 40px);
}

.hero-chip .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--matcha);
  box-shadow: 0 0 0 0 rgba(var(--matcha-rgb), 0.55);
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--matcha-rgb), 0.55);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(var(--matcha-rgb), 0);
    transform: scale(1.18);
  }
}

/* Scroll cue: pinned bottom-center, becomes a real anchor to the intro */
.hero-photo .scroll-cue {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-decoration: none;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--cream-dim);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue .track {
  width: 1px;
  height: 46px;
  background: var(--line);
  position: relative;
  overflow: hidden;
  order: 2;
}

.scroll-cue>span:not(.track) {
  order: 1;
}

.scroll-cue .track::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--matcha);
  animation: cue 2.4s var(--ease) infinite;
}

@keyframes cue {
  0% {
    transform: translateY(-100%);
  }

  60%,
  100% {
    transform: translateY(300%);
  }
}

/* Editorial intro right below the photo */
.hero-intro {
  background: var(--bg);
  padding: clamp(80px, 11vw, 150px) 0 clamp(60px, 8vw, 120px);
  position: relative;
}

.hero-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 540px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.55;
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: end;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.hero-intro-main .eyebrow {
  margin-bottom: 28px;
}

.hero-intro h1 {
  margin: 0;
}

.hero-intro h1 .l {
  display: block;
  overflow: hidden;
}

.hero-intro h1 .l span {
  display: block;
}

.hero-intro .lead {
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .hero-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .hero-chip {
    font-size: 10.5px;
    padding: 8px 12px;
    gap: 8px;
  }

  .hero-chip-loc {
    top: 16px;
    left: 16px;
  }

  .hero-chip-open {
    bottom: 16px;
    right: 16px;
  }

  .frame-corner {
    width: 16px;
    height: 16px;
  }
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  border-block: 1px solid var(--line-soft);
  padding-block: 26px;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-deep);
}

.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: scrollx 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 44px);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.marquee-track span::after {
  content: "✦";
  color: var(--matcha);
  font-size: 0.5em;
}

.marquee-track .dim {
  color: var(--muted);
}

@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.sec-head .l {
  max-width: 60ch;
}

.sec-head .eyebrow {
  margin-bottom: 22px;
}

.sec-pad {
  padding-block: clamp(90px, 13vw, 180px);
}

.idx {
  font-family: var(--serif);
  color: var(--matcha);
  font-size: 15px;
  letter-spacing: 0.1em;
}

/* =====================================================
   MENU
   ===================================================== */
.menu {
  background: var(--bg);
}

.cat+.cat {
  margin-top: clamp(60px, 8vw, 110px);
}

.cat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--line-soft);
}

.cat-idx {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--bg-deep);
  background: var(--matcha);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  flex: none;
}

.cat-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1;
}

.cat-count {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.subcat {
  margin-bottom: clamp(36px, 4vw, 56px);
}

.subcat:last-child {
  margin-bottom: 0;
}

.subcat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(20px, 2vw, 28px);
}

.subcat-line {
  flex: none;
  width: 22px;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
}

.subcat-title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.subcat-count {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.dish-note {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--cream-dim);
  font-style: italic;
  line-height: 1.45;
  max-width: 28ch;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
}

.dish {
  display: flex;
  flex-direction: column;
}

.dish-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

.dish-ph {
  position: absolute;
  inset: 0;
  transition: transform .9s var(--ease);
}

.dish:hover .dish-ph {
  transform: scale(1.07);
}

.dish-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, oklch(0.12 0.02 150 / 0.45), transparent 42%);
}

.dish:nth-child(3n+2) .dish-ph {
  filter: hue-rotate(-12deg) saturate(1.08);
}

.dish:nth-child(3n) .dish-ph {
  filter: brightness(1.07) hue-rotate(9deg);
}

.dish:nth-child(4n+1) .dish-ph {
  filter: hue-rotate(6deg);
}

.dish-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.dish:hover .dish-photo {
  transform: scale(1.07);
}

.dish-img.has-photo .dish-ph {
  display: none;
}

/* ---------- Customizer-uploaded section images ---------- */
.story-media .frame.has-photo {
  position: relative;
}

.loc-map.has-photo {
  background-color: var(--bg-deep);
}

.loc-map.has-map {
  background-color: var(--bg-deep);
}

.loc-map.has-map .pin {
  display: none;
}

.loc-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(0.95);
}

.loc-addr-link {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px dashed oklch(0.55 0.020 150 / 0.55);
  transition: color .25s var(--ease), border-color .25s var(--ease);
  display: inline-block;
}

.loc-addr-link:hover {
  color: var(--matcha);
  border-bottom-color: var(--matcha);
}

.loc-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.loc-map-cta:hover {
  background: rgba(var(--matcha-rgb), 0.14);
  border-color: var(--matcha);
  color: var(--matcha);
}

.loc-map-cta svg {
  stroke: currentColor;
  flex: none;
}

.review .who .av.has-photo {
  background-color: var(--bg-deep);
}

.dish-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
}

.dish-name {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.2;
  color: var(--cream);
  transition: color .35s var(--ease);
}

.dish:hover .dish-name {
  color: var(--matcha);
}

.dish-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.dish-price {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--cream);
  white-space: nowrap;
}

.dish-price small {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--sans);
}

.dish-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.dish-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.dish-temp {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

@media (max-width: 1000px) {
  .dish-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  .dish-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   MENUS — standalone /menu/ page header
   ===================================================== */
.page-menu {
  background: var(--bg);
}

.page-menu-head {
  padding: clamp(140px, 17vw, 220px) 0 clamp(48px, 6vw, 80px);
  position: relative;
}

.page-menu-head::after {
  content: "";
  position: absolute;
  left: var(--gut);
  right: var(--gut);
  bottom: 0;
  height: 1px;
  background: var(--line-soft);
}

.page-menu-head .eyebrow {
  margin-bottom: 22px;
}

.page-menu-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.012em;
  font-size: clamp(48px, 8vw, 108px);
  margin: 0 0 26px;
  color: var(--cream);
}

.page-menu-head .lead {
  margin: 0;
  max-width: 60ch;
}

.page-menu-body {
  padding-block: clamp(60px, 8vw, 110px) clamp(90px, 13vw, 180px);
}

/* =====================================================
   MENU — sidebar tabs (Drinks / Food)
   ===================================================== */
.menu-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(36px, 4vw, 72px);
  align-items: start;
}

.menu-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-tab {
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 20px 20px;
  text-align: left;
  cursor: pointer;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}

.menu-tab .t-idx {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  font-family: var(--serif);
  font-size: 13px;
  flex: none;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

.menu-tab .t-label {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
  color: var(--cream);
  transition: color .35s var(--ease);
}

.menu-tab .t-count {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.menu-tab:hover {
  border-color: var(--matcha);
  color: var(--cream);
  transform: translateY(-1px);
}

.menu-tab:hover .t-idx {
  border-color: var(--matcha);
  color: var(--matcha);
}

.menu-tab.active {
  background: var(--matcha);
  border-color: var(--matcha);
  color: var(--bg-deep);
}

.menu-tab.active .t-idx {
  background: var(--bg-deep);
  color: var(--matcha);
  border-color: var(--bg-deep);
}

.menu-tab.active .t-label {
  color: var(--bg-deep);
}

.menu-tab.active .t-count {
  color: var(--bg-deep);
  opacity: 0.7;
}

.menu-panels .cat {
  display: none;
}

.menu-panels .cat.is-active {
  display: block;
}

.menu-panels .cat+.cat {
  margin-top: 0;
}

/* The sidebar tab already shows the category label/index, so suppress the
   duplicate inline heading inside the panel. */
.menu-panels .cat-head {
  display: none;
}

@media (max-width: 900px) {
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-side {
    position: static;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .menu-side::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    flex: 1 0 auto;
    min-width: 150px;
    padding: 14px 16px;
  }

  .menu-tab .t-label {
    font-size: 18px;
  }

  .menu-tab .t-count {
    display: none;
  }
}

/* =====================================================
   CATERING / EVENTS
   ===================================================== */
.catering {
  background: var(--bg-deep);
}

.catering-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.catering-media {
  position: relative;
}

.catering-media .frame {
  aspect-ratio: 5/6;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.catering-media .frame.has-photo {
  box-shadow: 0 40px 80px -30px oklch(0.05 0 0 / 0.7);
}

.catering-media .badge {
  position: absolute;
  left: -22px;
  bottom: -22px;
  padding: 16px 22px;
  border-radius: 14px;
  background: var(--matcha);
  color: var(--bg-deep);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 24px 60px -20px rgba(var(--matcha-rgb), 0.45);
}

.catering-media .badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-deep);
}

.catering-copy .h2 {
  margin: 22px 0 24px;
}

.catering-copy>p.lead {
  margin-bottom: 28px;
}

.catering-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.catering-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 4px 18px 0;
  border-top: 1px solid var(--line-soft);
}

.catering-list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.catering-list .num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--matcha);
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.catering-list .t {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--cream);
  line-height: 1.3;
  display: block;
}

.catering-list .d {
  color: var(--cream-dim);
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: 4px;
  display: block;
}

.catering-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.catering-mail {
  font-size: 14px;
  color: var(--cream-dim);
}

.catering-mail a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px dashed rgba(var(--matcha-rgb), 0.55);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.catering-mail a:hover {
  color: var(--matcha);
  border-color: var(--matcha);
}

@media (max-width: 900px) {
  .catering-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .catering-media .frame {
    aspect-ratio: 4/3;
  }

  .catering-media .badge {
    left: 14px;
    bottom: -18px;
  }
}

/* =====================================================
   STORY
   ===================================================== */
.story {
  background: var(--bg-deep);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}

.story-media {
  position: relative;
}

.story-media .frame {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
}

.story-media .badge {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--serif);
  box-shadow: 0 30px 80px -30px oklch(0.05 0 0 / 0.7);
}

.story-media .badge .n {
  font-size: 44px;
  color: var(--matcha);
  line-height: 1;
}

.story-media .badge .t {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 6px;
  font-family: var(--sans);
}

.story-copy .h2 {
  margin: 22px 0 28px;
}

.story-copy p {
  color: var(--cream-dim);
  margin-bottom: 20px;
}

.story-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--matcha);
  margin-top: 14px;
}

.story-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.story-stats .st .num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--cream);
  line-height: 1;
}

.story-stats .st .lab {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
}

@media (max-width: 820px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .story-media .badge {
    right: 16px;
    bottom: -28px;
    width: 132px;
    height: 132px;
  }
}

/* =====================================================
   SIGNATURE DRINKS — masonry columns, photos keep natural ratio
   ===================================================== */
.signature {
  background: var(--bg-deep);
}

.sig-gallery {
  column-count: 3;
  column-gap: clamp(10px, 1.2vw, 18px);
}

.sig-tile {
  position: relative;
  display: block;
  margin: 0 0 clamp(10px, 1.2vw, 18px);
  break-inside: avoid;
  overflow: hidden;
  border-radius: clamp(12px, 1.4vw, 20px);
  background: var(--bg);
  box-shadow: 0 18px 40px oklch(0.08 0.02 130 / 0.18);
}

.sig-tile img,
.sig-tile video {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.sig-tile:hover img,
.sig-tile:hover video {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.sig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(170deg, transparent 55%, oklch(0.08 0.02 130 / 0.32) 100%);
  z-index: 1;
}

.sig-tile.ph {
  aspect-ratio: 4 / 3;
}

.sig-tile.ph::after {
  display: none;
}

.sig-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: oklch(0.13 0.02 150 / 0.65);
  backdrop-filter: blur(6px);
  display: grid;
  place-content: center;
  color: var(--cream);
  border: 1px solid oklch(0.95 0.01 90 / 0.18);
}

@media (max-width: 900px) {
  .sig-gallery {
    column-count: 2;
  }
}

@media (max-width: 520px) {
  .sig-gallery {
    column-count: 1;
  }
}

/* =====================================================
   VIBE GALLERY — masonry columns, photos keep natural ratio
   ===================================================== */
.vibe {
  background: var(--bg);
}

.vibe-gallery {
  column-count: 3;
  column-gap: clamp(10px, 1.2vw, 18px);
}

.vibe-tile {
  position: relative;
  display: block;
  margin: 0 0 clamp(10px, 1.2vw, 18px);
  break-inside: avoid;
  overflow: hidden;
  border-radius: clamp(12px, 1.4vw, 20px);
  background: var(--bg-deep);
}

.vibe-tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.vibe-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.vibe-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(170deg, transparent 55%, oklch(0.08 0.02 130 / 0.32) 100%);
  z-index: 1;
}

.vibe-tile.ph {
  aspect-ratio: 4 / 3;
}

.vibe-tile.ph::after {
  display: none;
}

@media (max-width: 900px) {
  .vibe-gallery {
    column-count: 2;
  }
}

@media (max-width: 520px) {
  .vibe-gallery {
    column-count: 1;
  }
}

/* =====================================================
   PROCESS
   ===================================================== */
.process {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}

.step {
  background: var(--bg);
  padding: 46px clamp(22px, 2vw, 34px) 52px;
  position: relative;
  transition: background .5s var(--ease);
}

.step:hover {
  background: var(--bg-soft);
}

.step .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--matcha);
  letter-spacing: 0.1em;
}

.step .ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 30px 0 28px;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  position: relative;
}

.step .ring .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--matcha);
  transition: transform .6s var(--ease);
}

.step:hover .ring .dot {
  transform: scale(2.2);
}

.step .ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--matcha);
  clip-path: inset(0 50% 0 0);
  opacity: 0;
  transition: opacity .5s;
}

.step:hover .ring::before {
  opacity: 0.6;
}

.step h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.step p {
  color: var(--muted);
  font-size: 14.5px;
}

.step .temp {
  position: absolute;
  top: 46px;
  right: clamp(22px, 2vw, 34px);
  font-family: var(--serif);
  font-size: 13px;
  color: var(--cream-dim);
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews {
  background: var(--bg-deep);
  overflow: hidden;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .6s var(--ease), border-color .5s;
}

.review:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}

.review .stars {
  color: var(--brass);
  letter-spacing: 4px;
  font-size: 15px;
}

.review .quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--cream);
}

.review .who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.review .who .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.review .who .nm {
  font-size: 15px;
  color: var(--cream);
}

.review .who .rl {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 880px) {
  .review-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* =====================================================
   LOCATION
   ===================================================== */
.location {
  background: var(--bg);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}

.loc-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}

.loc-map .pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  rotate: 45deg;
  background: var(--matcha);
  box-shadow: 0 0 0 8px rgba(var(--matcha-rgb), 0.22), 0 10px 30px oklch(0.1 0 0 / 0.5);
}

.loc-map .pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--bg-deep);
  border-radius: 50%;
  rotate: -45deg;
}

.loc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours {
  margin-top: 8px;
  border-top: 1px solid var(--line-soft);
}

.hours .row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.hours .row .d {
  color: var(--cream-dim);
}

.hours .row .h {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 17px;
}

.hours .row.today .d {
  color: var(--matcha);
}

.hours .row.today .d::before {
  content: "● ";
  font-size: 0.7em;
}

.loc-detail {
  display: flex;
  gap: 38px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.loc-detail .b .k {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.loc-detail .b .v {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--cream);
}

@media (max-width: 820px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }

  .loc-map {
    min-height: 300px;
  }
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  background: var(--bg);
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--bg);
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.faq-item:hover {
  border-color: var(--line);
}

.faq-item details {
  width: 100%;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--cream);
  transition: color .25s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--matcha);
}

.faq-q {
  flex: 1;
}

.faq-ic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.faq-ic::before,
.faq-ic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--cream-dim);
  transition: transform .35s var(--ease), background .25s var(--ease);
}

.faq-ic::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-ic::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item details[open] .faq-ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item details[open] .faq-ic::before {
  background: var(--matcha);
}

.faq-item details[open] summary {
  color: var(--matcha);
}

.faq-a {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--cream-dim);
  line-height: 1.65;
  font-size: clamp(14px, 1.3vw, 16px);
  max-width: 70ch;
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 18px 20px;
    gap: 16px;
  }

  .faq-a {
    padding: 0 20px 20px;
  }
}

/* =====================================================
   CONTACT / INQUIRY FORM
   ===================================================== */
.contact {
  background: var(--bg-deep);
  position: relative;
}

.contact .panel {
  background:
    radial-gradient(120% 130% at 85% 0%, oklch(0.26 0.05 142 / 0.5), transparent 55%),
    var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.contact .panel .h2 {
  margin: 20px 0 22px;
}

.contact form {
  display: grid;
  gap: 18px;
}

.contact-mail {
  margin-top: 22px;
  font-size: 14px;
  color: var(--cream-dim);
}

.contact-mail a {
  color: var(--matcha);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--matcha-rgb), 0.4);
  margin-left: 6px;
  transition: border-color .25s var(--ease);
}

.contact-mail a:hover {
  border-bottom-color: var(--matcha);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label,
.field .lab {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  transition: border-color .3s, background .3s;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--matcha);
  background: var(--bg);
}

.field.invalid input,
.field.invalid textarea {
  border-color: oklch(0.62 0.16 25);
}

.contact .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.form-error {
  font-size: 13px;
  color: oklch(0.65 0.16 25);
  text-align: center;
  margin-top: -4px;
  min-height: 1em;
}

.contact .btn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.form-ok {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.form-ok.show {
  display: block;
}

.form-ok .ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--matcha);
  display: grid;
  place-content: center;
  margin: 0 auto 20px;
  color: var(--matcha);
  font-size: 28px;
}

@media (max-width: 820px) {
  .contact .panel {
    grid-template-columns: 1fr;
  }

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

/* =====================================================
   INSTAGRAM
   ===================================================== */
.instagram {
  background: var(--bg);
}

.ig-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.ig-follow {
  font-size: 13px !important;
}

.ig-follow svg {
  width: 17px;
  height: 17px;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border: 1px solid var(--line-soft);
}

.ig-ph {
  position: absolute;
  inset: 0;
  transition: transform .9s var(--ease);
}

.ig-tile:hover .ig-ph {
  transform: scale(1.09);
}

.ig-tile:nth-child(3n+2) .ig-ph {
  filter: hue-rotate(-14deg) saturate(1.1);
}

.ig-tile:nth-child(3n) .ig-ph {
  filter: brightness(1.08) hue-rotate(10deg);
}

.ig-over {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  z-index: 2;
  background: oklch(0.13 0.02 150 / 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.ig-tile:hover .ig-over {
  opacity: 1;
}

.ig-over svg {
  width: 28px;
  height: 28px;
  color: var(--cream);
}

.ig-over .ig-cap {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.ig-badge {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: oklch(0.13 0.02 150 / 0.6);
  backdrop-filter: blur(4px);
  display: grid;
  place-content: center;
  color: var(--cream);
  z-index: 2;
}

.ig-badge svg {
  width: 12px;
  height: 12px;
}

.ig-reel {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: oklch(0.13 0.02 150 / 0.6);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 100px;
}

.ig-live {
  display: none;
}

.ig-live iframe {
  width: 100%;
  border: 0;
  min-height: 420px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(60px, 8vw, 100px) 36px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.foot-brand .brand {
  font-size: 28px;
  margin-bottom: 20px;
}

.foot-brand p {
  color: var(--muted);
  max-width: 34ch;
}

.foot-col h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.foot-col a,
.foot-col p {
  display: block;
  color: var(--cream-dim);
  text-decoration: none;
  margin-bottom: 13px;
  font-size: 15px;
  transition: color .3s;
}

.foot-col a:hover {
  color: var(--matcha);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  color: var(--cream-dim);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: all .3s var(--ease);
}

.socials a:hover {
  background: var(--matcha);
  color: var(--bg-deep);
  border-color: var(--matcha);
  transform: translateY(-3px);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: clamp(50px, 7vw, 80px);
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 520px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   MENU BOARDS (page-menu image view)
   ===================================================== */
.menu-boards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 20px;
}
.menu-board-link {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 50px oklch(0.05 0 0 / 0.35);
  background: var(--bg-deep);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.menu-board-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.menu-board-link:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 30px 60px oklch(0.05 0 0 / 0.55);
}
.menu-board-link:hover .menu-board-img {
  transform: scale(1.02);
}
.zoom-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: oklch(0.13 0.02 130 / 0.72);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid oklch(0.95 0.01 100 / 0.15);
  z-index: 2;
}
.menu-board-link:hover .zoom-badge {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .menu-boards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: .08s;
}

.reveal.d2 {
  transition-delay: .16s;
}

.reveal.d3 {
  transition-delay: .24s;
}

.reveal.d4 {
  transition-delay: .32s;
}

.lines .l span {
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
  display: block;
}

.lines.in .l span {
  transform: none;
}

.lines.in .l:nth-child(2) span {
  transition-delay: .12s;
}

.lines.in .l:nth-child(3) span {
  transition-delay: .24s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .lines .l span {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}