/* ========== TOKENS ========== */
:root {
  --brand: #5e3d72;            /* deep aubergine purple */
  --brand-light: #76528d;
  --brand-deep: #43285b;       /* very dark plum */
  --brand-dim: rgba(94,61,114,0.10);
  --brand-border: rgba(94,61,114,0.22);

  --accent: #6f8a58;            /* deep sage */
  --accent-light: #84a36b;
  --accent-dim: rgba(111,138,88,0.14);

  --fig: #7a4768;               /* warm plum (rare use) */

  --bg: #f5efe3;
  --bg-2: #ece4d2;
  --bg-3: #e3d8bf;
  --paper: #fbf7ec;
  --card: #ffffff;

  --text: #2a2620;
  --text-soft: #4a4339;
  --muted: #7a7060;
  --muted-2: #a89e8c;

  --border: rgba(42,38,32,0.12);
  --border-strong: rgba(42,38,32,0.22);
  --shadow-sm: 0 1px 2px rgba(42,38,32,0.06), 0 4px 14px rgba(42,38,32,0.06);
  --shadow-md: 0 8px 32px rgba(42,38,32,0.10), 0 2px 6px rgba(42,38,32,0.05);
  --shadow-lg: 0 24px 56px rgba(42,38,32,0.14);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --display: 'Young Serif', 'DM Serif Display', Georgia, serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* ========== GRAIN ========== */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.038;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ========== LOADER ========== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
#loader.fade-out { opacity: 0; pointer-events: none; }
.loader-mark {
  font-family: var(--display);
  font-size: 36px;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.loader-mark span { display: inline-block; animation: bobLeaf 1.6s ease-in-out infinite; }
.loader-mark span:nth-child(2) { animation-delay: 0.2s; }
@keyframes bobLeaf {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px) rotate(-3deg); }
}
#page { opacity: 0; transition: opacity 0.5s ease; }
#page.visible { opacity: 1; }

/* ========== UTIL ========== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--brand);
  display: inline-block;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(36px, 4.8vw, 64px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--text-soft); line-height: 1.6; max-width: 56ch; }
em.ital { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  padding: 15px 26px;
  min-height: 46px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fbf7ec; }
.btn--primary:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(53,69,39,0.30); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn--ghost:hover { background: var(--text); color: var(--paper); border-color: var(--text); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn .arr { transition: transform 0.3s; }
.btn:hover .arr { transform: translateX(4px); }

/* ========== NAV — Split ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  transition: background 0.4s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245,239,227,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 32px;
  border-bottom-color: var(--border);
}
.nav__left, .nav__right { display: flex; align-items: center; gap: 26px; }
.nav__right { justify-content: flex-end; }
.nav a.nav-link {
  font-size: 13px; font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 6px 0;
}
.nav a.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a.nav-link:hover::after,
.nav a.nav-link.active::after { transform: scaleX(1); }
.nav a.nav-link.active { color: var(--brand-deep); }
.nav__logo {
  font-family: var(--display);
  font-size: 24px;
  color: var(--brand-deep);
  letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 8px;
}
.nav__logo .amp { color: var(--accent); font-style: italic; }
.nav__cta {
  font-size: 12px; font-weight: 600;
  background: var(--text); color: var(--paper);
  padding: 9px 18px; border-radius: var(--radius-pill);
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.nav__cta:hover { background: var(--brand-deep); transform: translateY(-1px); }
.nav__hours {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.nav__hours .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2da064;
  box-shadow: 0 0 0 4px rgba(45,160,100,0.18);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 4px rgba(45,160,100,0.18); } 50% { box-shadow: 0 0 0 8px rgba(45,160,100,0.05); } }
@media (max-width: 1040px) {
  .nav__hours { display: none; }
}
@media (max-width: 880px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__left { display: none; }
  .nav__right { gap: 12px; }
  .nav__right .nav-link { display: none; }
  .nav__logo { font-size: 22px; justify-self: start; }
}

/* ========== HERO — L7 Asymmetric Overlap (home) ========== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__copy { position: relative; z-index: 3; }
.hero__copy .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  padding: 0.06em 0.1em 0.14em 0;
  color: var(--brand-deep);
}
.hero h1 .ital {
  font-style: italic;
  font-family: 'DM Serif Display', var(--display);
  color: var(--accent);
  font-weight: 400;
}
.hero h1 .ampersand {
  display: inline-block;
  color: var(--accent);
  font-family: 'DM Serif Display', var(--display);
  font-style: italic;
  transform: translateY(0.04em);
}
.hero__sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-soft);
  max-width: 48ch;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 44px;
  display: flex; gap: 36px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero__meta b { color: var(--brand-deep); font-weight: 600; display: block; font-family: var(--display); font-size: 18px; letter-spacing: -0.01em; text-transform: none; margin-top: 4px; }

.hero__visual {
  position: relative;
  height: 580px;
}
.hero__img-main, .hero__img-sub {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-3);
}
.hero__img-main img, .hero__img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__img-main {
  top: 0; right: -40px;
  width: 88%;
  height: 100%;
}
.hero__img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(67,40,91,0.22) 100%);
  pointer-events: none;
}
.hero__img-sub {
  bottom: -30px;
  left: -50px;
  width: 44%;
  height: 220px;
  z-index: 4;
}
.hero__sticker {
  position: absolute;
  top: 32px; left: -36px;
  z-index: 5;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.25;
  padding: 16px;
  animation: spinSticker 14s linear infinite;
  box-shadow: 0 10px 26px rgba(111,138,88,0.34);
}
@keyframes spinSticker { to { transform: rotate(360deg); } }
.hero__sticker span { display: block; transform: rotate(-3deg); font-weight: 700; }
.hero__sticker small { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-top: 4px; opacity: 0.85; transform: rotate(-3deg); }

.leaf {
  position: absolute;
  pointer-events: none;
  color: var(--brand);
  opacity: 0.85;
}
.leaf--hero-1 { top: 8%; right: 40%; width: 80px; transform: rotate(-20deg); opacity: 0.18; }
.leaf--hero-2 { bottom: 4%; left: 38%; width: 60px; transform: rotate(40deg); opacity: 0.15; }

@media (max-width: 880px) {
  .hero { padding: 120px 0 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { height: 380px; margin-top: 12px; }
  .hero__img-main { right: 0; width: 92%; }
  .hero__img-sub { left: 0; width: 56%; bottom: -18px; }
  .hero__sticker { width: 92px; height: 92px; font-size: 11px; top: 18px; left: -10px; }
  .hero__meta { gap: 20px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 36px; }
  .hero__copy .eyebrow { font-size: 10.5px; letter-spacing: 0.18em; margin-bottom: 20px; }
  .hero__sub { font-size: 15.5px; margin-bottom: 28px; }
  .hero__meta { gap: 16px 22px; margin-top: 32px; font-size: 10px; }
  .hero__meta b { font-size: 16px; }
  .hero__visual { height: 340px; }
  .hero__img-sub { width: 60%; height: 170px; bottom: -14px; left: -10px; }
  .hero__sticker { width: 82px; height: 82px; font-size: 10px; padding: 12px; top: 12px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero__ctas .btn { width: 100%; }
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--paper);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--border);
}
.page-hero__chapter {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(140px, 22vw, 320px);
  color: var(--brand);
  opacity: 0.07;
  position: absolute;
  top: 60px;
  right: -20px;
  line-height: 0.8;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 920px; }
.page-hero h1 {
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: 0.96;
  margin: 18px 0 24px;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.page-hero__lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-soft);
  max-width: 60ch;
  line-height: 1.55;
}
.page-hero__crumb {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 28px;
  display: flex; gap: 10px; align-items: center;
}
.page-hero__crumb a { color: var(--brand); }
.page-hero__crumb span { color: var(--muted-2); }

@media (max-width: 700px) {
  .page-hero { padding: 110px 0 56px; }
  .page-hero__chapter {
    font-size: clamp(110px, 28vw, 160px);
    top: 40px;
    right: -10px;
  }
  .page-hero h1 { font-size: clamp(36px, 9vw, 56px); margin: 12px 0 16px; }
  .page-hero__lead { font-size: 15.5px; }
  .page-hero__crumb { margin-top: 22px; font-size: 10px; }
}

/* ========== TICKER ========== */
.ticker {
  background: var(--brand-deep);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 56px; }
.ticker__track .dot-sep { color: var(--accent); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ========== STORY ========== */
.story {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
.story__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__chapter {
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 240px);
  color: var(--brand);
  opacity: 0.08;
  position: absolute;
  top: 40px;
  left: 0;
  line-height: 0.85;
  pointer-events: none;
  font-style: italic;
}
.story h2 { margin-bottom: 28px; max-width: 18ch; position: relative; z-index: 2; }
.story h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.story p { color: var(--text-soft); font-size: 17px; line-height: 1.75; margin-bottom: 18px; max-width: 56ch; }
.story__sign {
  margin-top: 32px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--brand-deep);
}
.story__sign small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.story__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-3) center/cover no-repeat;
}
.story__photo-tag {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(251,247,236,0.92);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  display: flex; justify-content: space-between;
}
@media (max-width: 880px) {
  .story { padding: 80px 0; }
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__chapter { font-size: 140px; top: -20px; }
}

/* ========== TEASER (replaces inline menu on home) ========== */
.teaser {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.teaser__head { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; margin-bottom: 56px; }
.teaser__head h2 { max-width: 14ch; }
.teaser__head h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.teaser__note {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-align: right; max-width: 24ch;
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 20px;
  height: 520px;
}
.teaser-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3) center/cover no-repeat;
  transition: transform 0.45s var(--ease);
  display: flex;
  align-items: flex-end;
}
.teaser-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,38,32,0) 35%, rgba(42,38,32,0.85) 100%);
}
.teaser-card:hover { transform: translateY(-4px); }
.teaser-card__body {
  position: relative; z-index: 2;
  padding: 28px;
  color: #fff;
}
.teaser-card__kicker {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.teaser-card h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
}
.teaser-card p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; max-width: 28ch; }
.teaser-card__arr {
  position: absolute;
  top: 22px; right: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.teaser-card:hover .teaser-card__arr { transform: translate(3px, -3px); background: var(--accent); color: #fff; }
.teaser-card--tall { grid-row: span 2; }
@media (max-width: 880px) {
  .teaser { padding: 80px 0; }
  .teaser__head { grid-template-columns: 1fr; }
  .teaser__note { text-align: left; }
  .teaser-grid { grid-template-columns: 1fr; height: auto; gap: 14px; }
  .teaser-card { min-height: 280px; }
}

/* ========== COFFEE FEATURE ========== */
.coffee {
  background: var(--brand-deep);
  color: var(--paper);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.coffee__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.coffee__img {
  position: relative;
  background: var(--bg-3) center/cover no-repeat;
}
.coffee__img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(53,69,39,0.30), rgba(53,69,39,0));
}
.coffee__content {
  padding: 96px 8% 96px 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.coffee .eyebrow { color: #d8c89b; margin-bottom: 24px; }
.coffee .eyebrow::before { background: #d8c89b; }
.coffee h2 { color: var(--paper); margin-bottom: 24px; }
.coffee h2 em { color: var(--accent); font-style: italic; font-family: 'DM Serif Display', var(--display); }
.coffee__lead {
  color: rgba(251,247,236,0.78);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 44ch;
}
.coffee__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 40px;
}
.coffee__bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px;
  color: rgba(251,247,236,0.85);
}
.coffee__bullets svg { flex-shrink: 0; color: var(--accent); margin-top: 3px; }

@media (max-width: 880px) {
  .coffee__inner { grid-template-columns: 1fr; }
  .coffee__img { min-height: 280px; }
  .coffee__content { padding: 60px 32px; }
  .coffee__bullets { grid-template-columns: 1fr; }
}

/* ========== GALLERY ========== */
.gallery {
  padding: 120px 0;
  background: var(--paper);
}
.gallery__head {
  text-align: center;
  margin-bottom: 56px;
}
.gallery__head .eyebrow { justify-content: center; }
.gallery__head h2 { max-width: 14ch; margin: 16px auto 0; }
.gallery__head h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.g-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.g-item:hover { transform: translateY(-3px); }
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: attr(data-cap);
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(42,38,32,0.55);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.g-item:hover::after { opacity: 1; transform: translateY(0); }

.g-1 { grid-column: span 5; grid-row: span 3; }
.g-2 { grid-column: span 4; grid-row: span 2; }
.g-3 { grid-column: span 3; grid-row: span 2; }
.g-4 { grid-column: span 3; grid-row: span 2; }
.g-5 { grid-column: span 4; grid-row: span 3; }
.g-6 { grid-column: span 5; grid-row: span 2; }
.g-7 { grid-column: span 4; grid-row: span 2; }
.g-8 { grid-column: span 4; grid-row: span 2; }
.g-9 { grid-column: span 4; grid-row: span 2; }
@media (max-width: 900px) {
  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 110px; }
  .g-1, .g-5 { grid-column: span 6; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-6, .g-7, .g-8, .g-9 { grid-column: span 3; grid-row: span 2; }
}

/* ========== BEYOND BRUNCH ========== */
.beyond {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.beyond__head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.beyond__head h2 { max-width: 16ch; }
.beyond__head h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.beyond__head p { font-size: 16px; color: var(--text-soft); max-width: 46ch; }
.beyond-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.beyond-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
}
.beyond-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--brand-dim) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.beyond-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brand-border); }
.beyond-card:hover::before { opacity: 1; }
.beyond-card__num {
  font-family: var(--display);
  font-size: 90px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.18;
  position: absolute;
  top: 16px; right: 20px;
}
.beyond-card h3 { font-size: 26px; color: var(--brand-deep); margin-bottom: 16px; position: relative; }
.beyond-card p { font-size: 14.5px; color: var(--text-soft); line-height: 1.65; flex: 1; }
.beyond-card .meta {
  margin-top: 22px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 600;
}
.beyond-card .meta svg { color: var(--accent); }
.beyond-card ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.beyond-card ul li {
  font-size: 13.5px; color: var(--text-soft);
  display: flex; gap: 10px; align-items: flex-start;
}
.beyond-card ul li::before {
  content: ''; flex-shrink: 0; width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%; margin-top: 8px;
}
@media (max-width: 880px) {
  .beyond { padding: 80px 0; }
  .beyond__head { grid-template-columns: 1fr; }
  .beyond-grid { grid-template-columns: 1fr; }
}

/* ========== QUOTES ========== */
.quotes {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
.quotes__featured {
  max-width: 980px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
}
.quotes__featured::before {
  content: '\201C';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 200px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.18;
}
.quotes__featured blockquote {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  color: var(--brand-deep);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.quotes__featured cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.q-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.q-card__stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--accent); }
.q-card__stars svg { width: 14px; height: 14px; }
.q-card p {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 18px;
}
.q-card cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center; gap: 8px;
}
.q-card cite::before { content: '\2014'; color: var(--accent); }
@media (max-width: 880px) {
  .quotes { padding: 80px 0; }
  .quotes-grid { grid-template-columns: 1fr; }
  .quotes__featured::before { font-size: 140px; top: -60px; }
}

/* ========== VISIT ========== */
.visit {
  padding: 0;
  background: var(--brand-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.visit__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 620px;
}
.visit__content {
  padding: 96px 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.visit .eyebrow { color: #d8c89b; }
.visit .eyebrow::before { background: #d8c89b; }
.visit h2 { color: var(--paper); margin: 18px 0 22px; }
.visit h2 em { color: var(--accent); font-style: italic; font-family: 'DM Serif Display', var(--display); }
.visit__lead { color: rgba(251,247,236,0.78); font-size: 16.5px; line-height: 1.65; max-width: 44ch; margin-bottom: 40px; }
.hours { border-top: 1px solid rgba(251,247,236,0.18); margin-bottom: 36px; }
.hours__row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 14px 0;
  border-bottom: 1px solid rgba(251,247,236,0.10);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.hours__row span:first-child { color: rgba(251,247,236,0.65); }
.hours__row span:last-child { color: var(--paper); }
.hours__row.today { background: rgba(111,138,88,0.12); padding-left: 12px; padding-right: 12px; border-radius: 6px; }
.hours__row.today span:first-child { color: var(--accent); }
.hours__row.today span:last-child { color: var(--paper); font-weight: 600; }
.hours__note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,247,236,0.5); margin-top: 16px; }
.visit__addr { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; }
.visit__addr-row { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: rgba(251,247,236,0.92); }
.visit__addr-row svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.visit__map { background: #0d1a11; min-height: 100%; position: relative; }
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.18) brightness(0.92); }
@media (max-width: 880px) {
  .visit__inner { grid-template-columns: 1fr; }
  .visit__content { padding: 64px 32px; }
  .visit__map iframe { min-height: 320px; }
}

/* Centered variant — no map image */
.visit--center .visit__inner { grid-template-columns: 1fr; min-height: auto; }
.visit--center .visit__content {
  padding: 110px 32px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.visit--center .eyebrow { justify-content: center; }
.visit--center .visit__lead { margin-left: auto; margin-right: auto; }
.visit--center .hours { max-width: 520px; margin-left: auto; margin-right: auto; }
.visit--center .visit__addr { align-items: center; }
.visit--center .visit__addr-row { justify-content: center; text-align: left; }
.visit--center .visit__ctas { justify-content: center; }
@media (max-width: 880px) {
  .visit--center .visit__content { padding: 70px 28px; }
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--accent);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner::before { top: -120px; right: -80px; }
.cta-banner::after { bottom: -160px; left: -80px; width: 360px; height: 360px; }
.cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.cta-banner h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  color: #fff;
  font-family: var(--display);
  max-width: 22ch;
}
.cta-banner h3 em { font-style: italic; font-family: 'DM Serif Display', var(--display); }
.cta-banner .btn--ghost { background: #fff; color: var(--brand-deep); border-color: #fff; }
.cta-banner .btn--ghost:hover { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
@media (max-width: 800px) {
  .cta-banner__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ========== CONTACT ========== */
.contact {
  padding: 120px 0;
  background: var(--bg);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact .eyebrow { margin-bottom: 20px; }
.contact h2 { margin-bottom: 20px; max-width: 14ch; }
.contact h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.contact__lead { color: var(--text-soft); font-size: 16px; line-height: 1.65; margin-bottom: 32px; max-width: 46ch; }
.contact__channels { display: flex; flex-direction: column; gap: 14px; }
.contact__channel {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.contact__channel:hover { border-color: var(--brand-border); transform: translateX(4px); background: #fff; }
.contact__channel svg { color: var(--brand); flex-shrink: 0; }
.contact__channel-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 4px;
}
.contact__channel-val { font-size: 15px; color: var(--text); font-weight: 500; }
.contact__form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact__form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: span 2; }
.field label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-deep); font-weight: 600;
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  font-size: 16px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-dim);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.contact__form .btn { margin-top: 22px; width: 100%; justify-content: center; }
.contact__form-foot { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
.form-submit:disabled { opacity: 0.7; cursor: wait; transform: none; box-shadow: none; }
.form-status {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
  min-height: 1.4em;
  color: transparent;
  transition: color 0.3s;
}
.form-status.is-success { color: var(--brand); font-weight: 500; }
.form-status.is-error { color: #b8534f; font-weight: 500; }
@media (max-width: 880px) {
  .contact { padding: 80px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 28px; }
  .contact__form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
}

/* ========== FOOTER ========== */
.footer {
  background: #2a2620;
  color: rgba(251,247,236,0.7);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251,247,236,0.10);
}
.footer__brand h3 {
  font-family: var(--display);
  font-size: 36px;
  color: var(--paper);
  margin-bottom: 14px;
}
.footer__brand h3 .amp { color: var(--accent); font-style: italic; }
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 38ch; }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(251,247,236,0.7); transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }
.footer__socials { display: flex; gap: 12px; margin-top: 18px; }
.footer__socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(251,247,236,0.18);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.footer__socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom a { color: rgba(251,247,236,0.5); }
.footer__bottom a:hover { color: var(--accent); }
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ========== SCROLL TOP / MOBILE BAR ========== */
#toTop {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-deep);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 80;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
#toTop.visible { opacity: 1; pointer-events: auto; }
#toTop:hover { transform: translateY(-3px); }
@media (max-width: 700px) { #toTop { bottom: 80px; right: 16px; } }

.mobile-bar { display: none; }
@media (max-width: 700px) {
  .mobile-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--paper);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(42,38,32,0.10);
  }
  .mobile-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
  }
  .mobile-bar a.primary { background: var(--brand); color: var(--paper); }
  body { padding-bottom: 60px; }
}

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-blur { opacity: 0; filter: blur(8px); transform: translateY(12px); transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease; }
.reveal-blur.in { opacity: 1; filter: blur(0); transform: none; }
.reveal-clip { clip-path: inset(100% 0 0 0); transition: clip-path 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-clip.in { clip-path: inset(0 0 0 0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; }

/* ========== WORD SLAM ========== */
.ws-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.12em; }
.ws-inner { display: block; transform: translateY(110%); }
.ws-inner.up { transform: translateY(0); transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }

/* =====================================================
   PAGE-SPECIFIC: ABOUT
   ===================================================== */
.about-prose {
  padding: 100px 0;
  background: var(--paper);
}
.about-prose__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.about-prose__photo {
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  background: var(--bg-3) center/cover no-repeat;
}
.about-prose__photo--alt {
  margin-top: 36px;
  aspect-ratio: 5/4;
}
.about-prose__copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--brand-deep);
  margin-bottom: 22px;
  max-width: 18ch;
}
.about-prose__copy h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.about-prose__copy p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 58ch;
}
.about-prose__copy p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 4.2em;
  float: left;
  line-height: 0.95;
  padding: 0.05em 0.12em 0 0;
  color: var(--accent);
  font-style: italic;
}
.about-prose__pull {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  background: var(--bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
  color: var(--brand-deep);
}
.about-prose__pull em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }

@media (max-width: 880px) {
  .about-prose { padding: 60px 0; }
  .about-prose__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-prose__photo { position: static; }
}

/* Team */
.team {
  padding: 120px 0;
  background: var(--bg);
}
.team__head { text-align: center; margin-bottom: 56px; }
.team__head .eyebrow { justify-content: center; }
.team__head h2 { max-width: 18ch; margin: 16px auto 14px; }
.team__head p { color: var(--text-soft); max-width: 56ch; margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.team-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.team-card:hover { border-color: var(--brand-border); transform: translateY(-4px); background: #fff; }
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-dim);
  color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 28px;
  margin: 0 auto 14px;
}
.team-card h3 {
  font-size: 20px;
  color: var(--brand-deep);
  margin-bottom: 4px;
}
.team-card span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; } }

/* =====================================================
   PAGE-SPECIFIC: MENU
   ===================================================== */
.menu-info {
  padding: 70px 0 30px;
  background: var(--bg);
}
.menu-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.menu-info__card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.menu-info__card .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.menu-info__card h3 {
  font-size: 22px;
  line-height: 1.2;
  color: var(--brand-deep);
  margin-bottom: 4px;
}
.menu-info__card p { font-size: 13.5px; color: var(--muted); }
@media (max-width: 880px) { .menu-info__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .menu-info__grid { grid-template-columns: 1fr; } }

.menu-board {
  padding: 80px 0 100px;
  background: var(--bg);
}
.menu-board__head { text-align: center; margin-bottom: 56px; }
.menu-board__head .eyebrow { justify-content: center; }
.menu-board__head h2 { max-width: 18ch; margin: 16px auto 14px; }
.menu-board__head h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.menu-board__head p { color: var(--text-soft); max-width: 50ch; margin: 0 auto; }

.menu-board__nav {
  display: flex; gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 50px;
}
.menu-tab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--text-soft);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.menu-tab:hover { transform: translateY(-2px); }
.menu-tab.active { background: var(--brand-deep); color: var(--paper); border-color: var(--brand-deep); }

.menu-board__panel {
  display: none;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.menu-board__panel.active { display: block; }
.menu-board__panel img {
  width: 100%; height: auto;
  border-radius: var(--radius-sm);
  display: block;
}
.menu-board__caption {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.menu-board__caption .right { color: var(--accent); font-weight: 600; }

.menu-board__foot {
  text-align: center;
  margin-top: 56px;
  display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

/* ========== LOOKBOOK (gallery — owner's photos) ========== */
.lookbook {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
.lookbook__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.lookbook__head h2 {
  max-width: 16ch;
}
.lookbook__head h2 em {
  font-style: italic;
  color: var(--accent);
  font-family: 'DM Serif Display', var(--display);
}
.lookbook__head p {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 46ch;
  line-height: 1.65;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 340px;
  gap: 14px;
  grid-auto-flow: dense;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  isolation: isolate;
}
.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}
.lookbook-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lookbook-item:hover img {
  transform: scale(1.05);
}
.lookbook-item__num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(251,247,236,0.92);
  color: var(--brand-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.lookbook-item:hover .lookbook-item__num { opacity: 1; }
.lookbook-item__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 32px 16px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(67,40,91,0.78) 100%);
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.lookbook-item__cap small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-bottom: 4px;
}
.lookbook-item:hover .lookbook-item__cap {
  opacity: 1;
  transform: translateY(0);
}

/* Wide (landscape) anchor cells */
.lookbook-item--wide { grid-column: span 2; }
/* Tall (portrait feature) anchor cell — spans 2 rows */
.lookbook-item--tall { grid-row: span 2; }

.lookbook__foot {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.lookbook__foot p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 40ch;
}
.lookbook__foot p a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 960px) {
  .lookbook { padding: 80px 0; }
  .lookbook__head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 10px;
  }
  .lookbook-item--wide { grid-column: span 2; }
  .lookbook-item--tall { grid-row: span 2; }
  .lookbook-item__cap { font-size: 14px; padding: 24px 14px 14px; }
}
@media (max-width: 480px) {
  .lookbook-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .lookbook-item,
  .lookbook-item--wide,
  .lookbook-item--tall { grid-column: span 1; grid-row: span 1; }
}
/* Touch devices: show captions by default (no hover state) */
@media (hover: none) {
  .lookbook-item__cap { opacity: 1; transform: translateY(0); }
}

/* ========== BOX CARDS (menu page) ========== */
.boxes {
  padding: 90px 0 100px;
  background: var(--bg);
}
.boxes__head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.boxes__head h2 { max-width: 16ch; }
.boxes__head h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.boxes__head p { font-size: 16px; color: var(--text-soft); max-width: 50ch; }
.boxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.box-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  min-height: 320px;
}
.box-card:hover { transform: translateY(-6px); border-color: var(--brand-border); box-shadow: var(--shadow-md); }
.box-card:hover .box-card__media img { transform: scale(1.04); }
.box-card__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.box-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.box-card__num {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(251,247,236,0.92);
  color: var(--brand-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.box-card__body {
  padding: 26px 28px 28px;
  display: flex; flex-direction: column;
}
.box-card__body h3 {
  font-size: 24px;
  color: var(--brand-deep);
  margin-bottom: 10px;
  line-height: 1.18;
}
.box-card__desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.box-card__contents {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
  flex: 1;
}
.box-card__prices {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
}
.box-price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: var(--brand-dim);
  color: var(--brand-deep);
  border: 1px solid var(--brand-border);
  white-space: nowrap;
}
.box-price--accent {
  background: var(--accent-dim);
  color: #3f4f24;
  border-color: rgba(111,138,88,0.32);
}
@media (max-width: 1080px) {
  .boxes-grid { grid-template-columns: 1fr; gap: 22px; }
  .box-card { min-height: 280px; }
}
@media (max-width: 640px) {
  .boxes { padding: 60px 0 80px; }
  .boxes__head { grid-template-columns: 1fr; }
  .box-card { grid-template-columns: 1fr; min-height: 0; }
  .box-card__media { aspect-ratio: 4/3; }
  .box-card__body { padding: 22px 22px 24px; }
}

/* =====================================================
   PAGE-SPECIFIC: VENUE
   ===================================================== */
.offer {
  padding: 120px 0;
  background: var(--bg);
}
.offer__head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.offer__head h2 { max-width: 16ch; }
.offer__head h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.offer__head p { font-size: 16px; color: var(--text-soft); max-width: 46ch; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.offer-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, background 0.4s;
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--brand-border); background: #fff; }
.offer-card__icon {
  width: 46px; height: 46px;
  background: var(--brand-dim);
  color: var(--brand-deep);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.offer-card h3 { font-size: 20px; color: var(--brand-deep); margin-bottom: 8px; }
.offer-card p { font-size: 14px; color: var(--text-soft); line-height: 1.55; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .offer-grid { grid-template-columns: 1fr; } .offer__head { grid-template-columns: 1fr; } }

.capacity {
  padding: 0;
  background: var(--brand-deep);
  color: var(--paper);
  overflow: hidden;
}
.capacity__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 560px;
}
.capacity__img {
  background: var(--bg-3) center/cover no-repeat;
  position: relative;
}
.capacity__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(53,69,39,0.2), transparent);
}
.capacity__content {
  padding: 96px 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.capacity .eyebrow { color: #d8c89b; margin-bottom: 22px; }
.capacity .eyebrow::before { background: #d8c89b; }
.capacity h2 { color: var(--paper); margin-bottom: 26px; }
.capacity h2 em { color: var(--accent); font-style: italic; font-family: 'DM Serif Display', var(--display); }
.capacity__lead { color: rgba(251,247,236,0.8); font-size: 17px; line-height: 1.65; max-width: 50ch; margin-bottom: 40px; }
.capacity__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 38px;
}
.capacity__stat {
  border: 1px solid rgba(251,247,236,0.20);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: rgba(251,247,236,0.04);
}
.capacity__stat-num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.95;
  color: var(--accent);
}
.capacity__stat-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251,247,236,0.7);
  margin-top: 8px;
}
@media (max-width: 880px) {
  .capacity__inner { grid-template-columns: 1fr; }
  .capacity__img { min-height: 260px; }
  .capacity__content { padding: 60px 32px; }
}

.catering {
  padding: 120px 0;
  background: var(--paper);
}
.catering__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.catering h2 { margin-bottom: 22px; max-width: 14ch; }
.catering h2 em { font-style: italic; color: var(--accent); font-family: 'DM Serif Display', var(--display); }
.catering p { font-size: 16.5px; color: var(--text-soft); line-height: 1.7; margin-bottom: 18px; max-width: 54ch; }
.catering__bullets { list-style: none; margin: 28px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.catering__bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--text-soft);
}
.catering__bullets li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.catering__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 1;
}
.catering__photos > div {
  border-radius: var(--radius-sm);
  background: var(--bg-3) center/cover no-repeat;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.catering__photos > div:first-child {
  grid-row: span 2;
}
@media (max-width: 880px) {
  .catering { padding: 80px 0; }
  .catering__inner { grid-template-columns: 1fr; gap: 40px; }
  .catering__bullets { grid-template-columns: 1fr; }
}

/* Fig & Thyme Package — what's inside detail band */
.package-detail {
  padding: 100px 0;
  background: var(--paper);
}
.package-detail__head {
  text-align: center;
  margin-bottom: 48px;
}
.package-detail__head .eyebrow { justify-content: center; }
.package-detail__head h2 {
  max-width: 22ch;
  margin: 14px auto 0;
}
.package-detail__head h2 em {
  font-style: italic;
  color: var(--accent);
  font-family: 'DM Serif Display', var(--display);
}
.package-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.package-detail__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  display: flex;
  flex-direction: column;
}
.package-detail__card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
  background: var(--card);
}
.package-detail__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.22;
  margin-bottom: 14px;
}
.package-detail__card h3 {
  font-size: 22px;
  color: var(--brand-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.package-detail__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package-detail__card ul li {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.package-detail__card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}
.package-detail__card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
.package-detail__card--note {
  background: var(--brand-deep);
  color: var(--paper);
  border-color: var(--brand-deep);
}
.package-detail__card--note .package-detail__num {
  color: var(--accent);
  opacity: 0.85;
}
.package-detail__card--note h3 {
  color: var(--paper);
  border-bottom-color: rgba(251,247,236,0.18);
}
.package-detail__card--note p {
  color: rgba(251,247,236,0.85);
}
.package-detail__card--note:hover {
  transform: translateY(-4px);
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}
@media (max-width: 900px) {
  .package-detail { padding: 70px 0; }
  .package-detail__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .package-detail__grid { grid-template-columns: 1fr; }
}

/* Salads — compact add-on side section */
.salads {
  padding: 100px 0;
  background: var(--bg);
}
.salads__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.salads__head { margin-bottom: 28px; }
.salads__head h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--brand-deep);
  margin: 14px 0 16px;
  max-width: 18ch;
}
.salads__head h2 em {
  font-style: italic;
  color: var(--accent);
  font-family: 'DM Serif Display', var(--display);
}
.salads__head p {
  font-size: 15.5px;
  color: var(--text-soft);
  max-width: 50ch;
  line-height: 1.6;
}
.salads__list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--border);
}
.salads__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: padding-left 0.3s var(--ease);
}
.salads__list li:hover { padding-left: 8px; }
.salads__list .salads__name {
  font-family: var(--display);
  font-size: 19px;
  color: var(--brand-deep);
  line-height: 1.3;
  flex: 1;
}
.salads__list .salads__name small {
  display: block;
  font-family: var(--body);
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 4px;
  line-height: 1.5;
}
.salads__list .salads__price {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.salads__foot {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.salads__photos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.salads__photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.salads__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.salads__photo-cap {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(251,247,236,0.92);
  color: var(--brand-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
  .salads { padding: 70px 0; }
  .salads__inner { grid-template-columns: 1fr; gap: 32px; }
  .salads__photos { flex-direction: row; }
  .salads__photo { flex: 1; aspect-ratio: 4/5; }
}
@media (max-width: 540px) {
  .salads__photos { flex-direction: column; }
}

/* Quick-info FAQ-ish band */
.quick-info {
  padding: 90px 0;
  background: var(--bg);
}
.quick-info__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
}
.qi {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.qi__q {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.qi__a {
  font-family: var(--display);
  font-size: 20px;
  color: var(--brand-deep);
  line-height: 1.3;
}
.qi__a small {
  display: block;
  margin-top: 6px;
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 700px) { .quick-info__inner { grid-template-columns: 1fr; } }
