/* ==========================================================================
   Kopi & Crumbs, premium neighbourhood cafe
   ========================================================================== */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, picture { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; }

/* ---- Fonts ---- */
@font-face { font-family: "Gabarito"; src: url("assets/fonts/gabarito-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Gabarito"; src: url("assets/fonts/gabarito-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Gabarito"; src: url("assets/fonts/gabarito-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Gabarito"; src: url("assets/fonts/gabarito-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Gabarito"; src: url("assets/fonts/gabarito-latin-900-normal.woff2") format("woff2"); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: "DMSans"; src: url("assets/fonts/dm-sans-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "DMSans"; src: url("assets/fonts/dm-sans-latin-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "DMSans"; src: url("assets/fonts/dm-sans-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "DMSans"; src: url("assets/fonts/dm-sans-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "DMSans"; src: url("assets/fonts/dm-sans-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

/* ---- Tokens ---- */
:root {
  --bg: #FBF5E9;
  --surface: #FFFDF7;
  --story-bg: #F6E8DB;
  --ink: #2B1D12;
  --ink-soft: #4E3B2B;
  --muted: #7A6A58;
  --olive: #55603F;
  --olive-tint: rgba(85, 96, 63, .1);
  --terracotta: #C25733;
  --terracotta-deep: #A5431F;
  --terracotta-tint: rgba(194, 87, 51, .12);
  --line: rgba(43, 29, 18, .12);
  --line-soft: rgba(43, 29, 18, .07);
  --dark: #2B1D12;
  --on-dark: #FBF5E9;
  --on-dark-soft: rgba(251, 245, 233, .68);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1260px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22, .8, .32, 1);
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: "DMSans", -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
@media (min-width: 640px) { body { font-size: 18px; } }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: "Gabarito", "Arial Black", sans-serif;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.02;
}
p { max-width: 62ch; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}
main { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: "DMSans", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--on-dark); }
.eyebrow.on-dark::before { background: var(--terracotta); }

section { position: relative; padding: clamp(64px, 9vw, 112px) 0; }
section[id] { scroll-margin-top: 96px; }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-top: .5rem; }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Links & focus ---- */
a { text-decoration: none; }
.text-link {
  color: var(--terracotta-deep);
  font-weight: 700;
  border-bottom: 1.5px solid rgba(165, 67, 31, .35);
  padding-bottom: .1em;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.text-link:hover { border-color: var(--terracotta-deep); color: var(--dark); }

:focus-visible {
  outline: 3px solid var(--terracotta-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  padding: 1rem 1.5rem;
  z-index: 3000;
  border-radius: 0 0 12px 0;
}
.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 1.05rem 2rem;
  border-radius: 999px;
  font-family: "DMSans", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--terracotta-deep);
  color: #fff;
  box-shadow: 0 14px 28px -16px rgba(165, 67, 31, .65);
}
.btn-primary:hover { background: #8c3b19; transform: translateY(-3px); box-shadow: 0 18px 32px -14px rgba(165, 67, 31, .7); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); transform: translateY(-3px); }
.btn-outline.on-dark { color: var(--on-dark); }
.btn-outline.on-dark:hover { background: var(--on-dark); color: var(--dark); }
.btn-sm { padding: .7rem 1.3rem; font-size: .82rem; }
.btn-ghost {
  background: transparent;
  color: var(--terracotta-deep);
  padding: .4rem 0;
  border-radius: 0;
  font-size: .95rem;
}
.btn-ghost:hover { color: var(--dark); transform: translateX(3px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 22px 0;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 245, 233, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(43, 29, 18, .3);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -.02em;
  color: var(--ink);
}
.wordmark .amp { color: var(--terracotta); }
.primary-nav ul { display: flex; gap: clamp(20px, 3vw, 40px); }
.primary-nav a {
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .02em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--terracotta-deep);
  transition: right .3s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
  flex-shrink: 0;
}
.nav-toggle .bars {
  position: relative;
  width: 20px;
  height: 14px;
}
.nav-toggle .bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(43, 29, 18, .38);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }

.mobile-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(84vw, 380px);
  background: var(--bg);
  z-index: 850;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: -20px 0 40px -20px rgba(43, 29, 18, .3);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
body.nav-open .mobile-panel { transform: translateX(0); }
.mobile-panel ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-panel a {
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -.02em;
  display: block;
  padding: 10px 0;
  color: var(--ink);
}
.mobile-panel .btn { align-self: flex-start; }
.btn-primary, .mobile-panel .btn-primary { color: #fff; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: clamp(140px, 20vw, 200px);
  padding-bottom: clamp(48px, 7vw, 80px);
  overflow: visible;
}
.hero-stage { position: relative; }

.hero-headline-panel {
  position: relative;
  z-index: 4;
  max-width: 640px;
  padding: 0 clamp(24px, 4vw, 40px) 64px 0;
}
.hero .eyebrow { opacity: 0; }
.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.6rem);
  margin-top: 18px;
}
.hero h1 span { display: block; opacity: 0; }
.hero-lede {
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 46ch;
  opacity: 0;
}
.hero-ctas {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
}

.hero-visual {
  position: relative;
  margin-top: -34px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: scale(1.05);
  box-shadow: 0 40px 70px -40px rgba(43, 29, 18, .45);
}
.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2000 / 1250;
}

.hero-badge {
  position: absolute;
  right: clamp(16px, 4vw, 44px);
  bottom: clamp(16px, 4vw, 40px);
  z-index: 5;
  background: var(--terracotta-deep);
  color: #fff;
  border-radius: 999px;
  padding: 18px 22px;
  transform: rotate(-9deg);
  text-align: center;
  box-shadow: 0 18px 32px -14px rgba(43, 29, 18, .55);
  border: 3px solid var(--bg);
  opacity: 0;
}
.hero-badge .line1 {
  display: block;
  font-family: "Gabarito", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
}
.hero-badge .line2 {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  margin-top: 2px;
  color: #fff;
}

/* hero load animation */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}
.hero .eyebrow { animation: heroUp .8s var(--ease) .1s forwards; }
.hero h1 span:nth-child(1) { animation: heroUp .8s var(--ease) .22s forwards; }
.hero h1 span:nth-child(2) { animation: heroUp .8s var(--ease) .34s forwards; }
.hero h1 span:nth-child(3) { animation: heroUp .8s var(--ease) .46s forwards; }
.hero-lede { animation: heroUp .8s var(--ease) .6s forwards; }
.hero-ctas { animation: heroUp .8s var(--ease) .74s forwards; }
.hero-visual { animation: heroScaleIn 1.1s var(--ease) .3s forwards; }
.hero-badge { animation: heroUp .7s var(--ease) 1.05s forwards; }

@media (min-width: 860px) {
  .hero-stage { display: block; }
  .hero-headline-panel {
    position: absolute;
    top: -8px;
    left: 0;
    padding-bottom: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: linear-gradient(180deg,
      rgba(251, 245, 233, 0) 0%,
      rgba(251, 245, 233, 0) 38%,
      rgba(251, 245, 233, .6) 54%,
      rgba(251, 245, 233, .93) 72%,
      var(--bg) 100%);
  }
  .hero-headline-panel::after {
    content: "";
    position: absolute;
    inset: 60% 0 0 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .hero-visual { margin-top: 214px; width: 92%; margin-left: auto; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 0;
}
.marquee-viewport { display: flex; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee:hover .marquee-viewport { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.marquee-item {
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.3vw, 1.5rem);
  color: var(--ink-soft);
  white-space: nowrap;
  padding: 0 1.25rem;
}
.marquee-dot { color: var(--terracotta-deep); font-size: 1.1rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Signature dishes
   ========================================================================== */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.dish {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  box-shadow: 0 26px 46px -34px rgba(43, 29, 18, .4);
}
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dish:hover img { transform: scale(1.045); }
.dish-1 { grid-column: 1 / span 6; aspect-ratio: 3 / 4; }
.dish-2 { grid-column: 7 / span 6; aspect-ratio: 3 / 4; margin-top: clamp(28px, 6vw, 72px); }
.dish-3 { grid-column: 1 / span 12; aspect-ratio: 4 / 2.1; margin-top: clamp(-24px, -2vw, -8px); }
.dish-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(0deg, rgba(43, 29, 18, .82) 0%, rgba(43, 29, 18, 0) 78%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.dish-caption h3 {
  font-family: "Gabarito", sans-serif;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.02em;
}
.dish-caption p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
  margin-top: 4px;
  max-width: 32ch;
}
.dish-caption .price {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  padding: .3rem .8rem;
  background: rgba(251, 245, 233, .16);
  border: 1px solid rgba(251, 245, 233, .4);
  border-radius: 999px;
  font-size: .85rem;
}

@media (max-width: 760px) {
  .dish-1, .dish-2, .dish-3 { grid-column: 1 / -1; margin-top: 0; }
  .dish-1, .dish-2 { aspect-ratio: 3 / 4; }
  .dish-3 { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Coffee split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.split-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.split-media { box-shadow: 0 30px 60px -36px rgba(43, 29, 18, .4); border-radius: var(--radius-lg); }
.coffee .split-media { aspect-ratio: 1100 / 1400; }
.coffee .split-media img { aspect-ratio: 1100 / 1400; }
.split-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: .6rem; }
.split-copy p { margin-top: 1.1rem; color: var(--ink-soft); }
.split-copy p + p { margin-top: .9rem; }

.stat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.stat-chips li {
  font-size: .85rem;
  font-weight: 700;
  color: var(--olive);
  background: var(--olive-tint);
  border: 1px solid rgba(85, 96, 63, .22);
  padding: .55rem 1rem;
  border-radius: 999px;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-copy { order: 2; }
  .split-media { order: 1; }
}

/* ==========================================================================
   Story band
   ========================================================================== */
.story {
  background: var(--story-bg);
}
.story .split { grid-template-columns: 1fr .85fr; }
.story .split-media { aspect-ratio: 1400 / 1050; }
.story .split-media img { aspect-ratio: 1400 / 1050; }
.story-signature {
  margin-top: 28px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--terracotta-deep);
}
@media (max-width: 860px) {
  .story .split-copy { order: 1; }
  .story .split-media { order: 2; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.1fr;
  gap: clamp(20px, 3vw, 28px);
  align-items: start;
}
.gallery-col-b { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 28px); }
.gallery-col-c { margin-top: clamp(0px, 8vw, 68px); }
.gallery-figure { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 22px 40px -30px rgba(43, 29, 18, .4); }
.gallery-figure img { width: 100%; height: auto; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-figure:hover img { transform: scale(1.045); }
.gallery-figure figcaption {
  padding: 12px 4px 0;
  font-size: .82rem;
  color: var(--muted);
}
.gal-1 img { aspect-ratio: 900 / 1100; }
.gal-2 img { aspect-ratio: 1200 / 900; }
.gal-3 img { aspect-ratio: 900 / 1100; }
.gal-4 img { aspect-ratio: 1200 / 900; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-col-c { margin-top: 0; grid-column: 1 / -1; }
  .gallery-col-c .gallery-figure { max-width: 60%; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-col-c .gallery-figure { max-width: 100%; }
}

/* ==========================================================================
   Menu preview
   ========================================================================== */
.menu-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 30px 60px -40px rgba(43, 29, 18, .4);
  border: 1px solid var(--line-soft);
}
.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.menu-columns h3 {
  font-family: "DMSans", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.menu-row { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; }
.menu-row .name { font-weight: 600; color: var(--ink); font-size: .98rem; }
.menu-row .leader { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-4px); }
.menu-row .price { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink-soft); font-size: .95rem; }
.menu-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.menu-note p { color: var(--muted); font-size: .88rem; max-width: 42ch; }

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

/* ==========================================================================
   Community
   ========================================================================== */
.community { background: var(--bg); }
.pull-quote {
  max-width: 900px;
  font-family: "Gabarito", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.2;
}
.pull-quote footer {
  margin-top: 22px;
  font-family: "DMSans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--terracotta-deep);
}
.pull-quote footer span { color: var(--muted); font-weight: 500; }

.quote-row {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 32px);
}
.mini-quote {
  border-top: 3px solid var(--terracotta);
  padding-top: 20px;
}
.mini-quote p { color: var(--ink-soft); font-size: .98rem; }
.mini-quote figcaption {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mini-quote .name { font-weight: 700; color: var(--ink); font-size: .92rem; }
.mini-quote .rating { font-size: .8rem; color: var(--muted); font-weight: 600; }

@media (max-width: 760px) {
  .quote-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Location
   ========================================================================== */
.location .split { grid-template-columns: .85fr 1fr; }
.location .split-media { aspect-ratio: 1600 / 900; }
.location .split-media img { aspect-ratio: 1600 / 900; }
.location h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-top: .4rem; }
.visit-detail { margin-top: 24px; }
.visit-detail dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
}
.visit-detail dt:first-child { margin-top: 0; }
.visit-detail dd { margin-top: 6px; font-size: 1.05rem; color: var(--ink-soft); }
.visit-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 860px) {
  .location .split-copy { order: 1; }
  .location .split-media { order: 2; }
}

/* ==========================================================================
   Instagram strip
   ========================================================================== */
.instagram { padding-top: 0; padding-bottom: clamp(64px, 9vw, 112px); }
.instagram-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.instagram-head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: .3rem; }
.instagram-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.instagram-strip a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.instagram-strip img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform .5s var(--ease); }
.instagram-strip a:hover img { transform: scale(1.08); }

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: var(--on-dark-soft);
  padding: clamp(56px, 8vw, 88px) 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(32px, 5vw, 48px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid rgba(251, 245, 233, .14);
}
.footer-brand .wordmark { color: var(--on-dark); }
.footer-brand p { margin-top: 16px; color: var(--on-dark-soft); max-width: 32ch; font-size: .95rem; }
.footer-col h3 {
  font-family: "DMSans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: .95rem; color: var(--on-dark-soft); }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .82rem;
  color: rgba(251, 245, 233, .5);
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-group.in-view .reveal { opacity: 1; transform: translateY(0); }
.reveal-group.in-view .reveal:nth-child(1) { transition-delay: .04s; }
.reveal-group.in-view .reveal:nth-child(2) { transition-delay: .12s; }
.reveal-group.in-view .reveal:nth-child(3) { transition-delay: .2s; }
.reveal-group.in-view .reveal:nth-child(4) { transition-delay: .28s; }
.reveal-group.in-view .reveal:nth-child(5) { transition-delay: .36s; }
.reveal-group.in-view .reveal:nth-child(6) { transition-delay: .44s; }

/* ==========================================================================
   Motion & accessibility
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .marquee-viewport { animation: none !important; }
  .hero .eyebrow, .hero h1 span, .hero-lede, .hero-ctas, .hero-visual, .hero-badge,
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 819px) {
  .primary-nav, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}
