/* ==================================================================
   Café Olé — Demo
   Designed by Intellium Inc.
   Type: Fraunces (display) + Plus Jakarta Sans (body)
   Palette: NEUTRAL placeholder — TBC from owner meeting
   Playbook: references/playbooks/competitive-design-intelligence-template.md
   Stage 2 spec: research/cafe-ole-design-intelligence-perplexity.md
   Anti-bleed: Crossley & Sons (navy + copper + Cormorant) — must DIFFER
   ================================================================== */

:root {
  /* Placeholder palette — soft, neutral, warm. TBC from owner.
     Anti-bleed: avoids Crossley's navy + copper.                  */
  --cream:        #F5EDE0;
  --cream-soft:   #FAF6EE;
  --cream-warm:   #ECE0CC;
  --ink:          #1C1612;
  --ink-2:        #3D332B;
  --muted:        #7A6F62;
  --line:         #D9CDB7;
  --terracotta:   #B85C3C;          /* warm amber accent — replace with owner colour */
  --terracotta-d: #98442A;
  --sage:         #5C7553;          /* support accent */
  --whatsapp:     #25D366;          /* reserved — WA only */
  --whatsapp-d:   #128C7E;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease:     cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream); }
html { scroll-behavior: auto; /* Lenis handles smoothness */ }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv01", "kern";
}

/* Subtle paper grain across the whole site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 1000px; }

/* ── HEADER (sticky) ──────────────────────────────────── */

.hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hd.is-stuck {
  background: rgba(245, 237, 224, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(28, 22, 18, 0.06), 0 6px 28px -12px rgba(28, 22, 18, 0.12);
}
.hd__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hd__wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--cream);
  transition: color 0.4s var(--ease);
  /* Wonk axis for Fraunces — adds character distinct from Crossley */
  font-variation-settings: 'opsz' 100, 'SOFT' 50, 'WONK' 1;
}
.hd.is-stuck .hd__wordmark { color: var(--ink); }
.hd__wordmark em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}

.hd__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hd__nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s var(--ease);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}
.hd.is-stuck .hd__nav a { color: var(--ink); text-shadow: none; }
.hd__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease-out);
}
.hd__nav a:hover::after { transform: scaleX(1); transform-origin: left center; }

.hd__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--terracotta);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.hd__cta:hover {
  background: var(--terracotta-d);
  border-color: var(--terracotta-d);
}
.hd__cta svg { width: 11px; height: 11px; }

@media (max-width: 900px) {
  .hd__nav { display: none; }
}

/* ── BUTTONS ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all 0.4s var(--ease);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--terracotta-d);
  border-color: var(--terracotta-d);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn--ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--ink:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-d);
  border-color: var(--whatsapp-d);
  transform: translateY(-2px);
}
.btn svg { width: 14px; height: 14px; }

/* ── HERO ─────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(28, 22, 18, 0.15) 0%, rgba(28, 22, 18, 0.50) 60%, rgba(28, 22, 18, 0.78) 100%),
    url("assets/hero-placeholder.jpg") center / cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 80% 20%, rgba(184, 92, 60, 0.20) 0%, transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__since {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 26px;
  padding: 6px 14px;
  border: 1px solid rgba(184, 92, 60, 0.6);
  border-radius: 999px;
  background: rgba(28, 22, 18, 0.25);
  backdrop-filter: blur(4px);
}
.hero__h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 7.6vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 22px;
  max-width: 1100px;
  /* Fraunces wonk gives a friendly, hand-made character */
  font-variation-settings: 'opsz' 144, 'SOFT' 25, 'WONK' 1;
}
.hero__h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero__h1 .word span {
  display: inline-block;
  transform: translateY(105%);
  will-change: transform;
}
.hero__h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-family: var(--serif);
  font-weight: 400;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
  max-width: 760px;
}
.hero__open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
}
.hero__open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2bb673;
  animation: openPulse 2s var(--ease) infinite;
}
@keyframes openPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(43, 182, 115, 0); }
}
.hero__address {
  font-size: 14px;
  color: rgba(245, 237, 224, 0.78);
  letter-spacing: 0.02em;
}
.hero__address::before {
  content: "·";
  margin-right: 14px;
  color: var(--terracotta);
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent 0%, var(--terracotta) 50%, transparent 100%);
  animation: cueLine 2.4s var(--ease) infinite;
}
@keyframes cueLine {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1);   opacity: 1; transform-origin: top; }
}

/* ── QUICK INFO BAR ───────────────────────────────────── */

.qib {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  position: relative;
  z-index: 5;
}
.qib__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.qib__cell {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 18px;
  border-right: 1px solid rgba(245, 237, 224, 0.14);
}
.qib__cell:last-child { border-right: none; }
.qib__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--terracotta);
}
.qib__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
  margin-bottom: 4px;
}
.qib__value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.3;
  font-variation-settings: 'opsz' 12, 'SOFT' 50;
}
.qib__value a { color: var(--cream); transition: color 0.25s var(--ease); }
.qib__value a:hover { color: var(--terracotta); }

@media (max-width: 720px) {
  .qib__row { grid-template-columns: 1fr; gap: 18px; }
  .qib__cell { border-right: none; border-bottom: 1px solid rgba(245, 237, 224, 0.14); padding: 14px 0; }
  .qib__cell:last-child { border-bottom: none; }
}

/* ── SECTION CHROME ───────────────────────────────────── */

.section { padding: 120px 0; position: relative; }
.section--cream     { background: var(--cream); }
.section--cream-soft { background: var(--cream-soft); }
.section--ink       { background: var(--ink); color: var(--cream); }
.section--cream-warm { background: var(--cream-warm); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.section__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.section--ink .section__kicker { color: var(--terracotta); }

.section__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 900px;
  font-variation-settings: 'opsz' 72, 'SOFT' 35, 'WONK' 1;
}
.section--ink .section__h2 { color: var(--cream); }
.section__h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.section__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
}
.section--ink .section__lead { color: rgba(245, 237, 224, 0.72); }

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section__head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
}

/* ── MENU MODULE (day-part tabs) ──────────────────────── */

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu__tab {
  padding: 11px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.35s var(--ease);
}
.menu__tab:hover { color: var(--ink); border-color: var(--ink); }
.menu__tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.menu__panel { display: none; }
.menu__panel.is-active { display: block; }
.menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 64px;
  max-width: 1000px;
  margin: 0 auto;
}
.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}
.menu__item-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}
.menu__item-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.menu__item-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--terracotta-d);
  white-space: nowrap;
}

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

/* ── ALL-DAY BREAKFAST BANNER ─────────────────────────── */

.banner {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.banner__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  max-width: 920px;
  margin: 0 auto;
  font-variation-settings: 'opsz' 72, 'SOFT' 30, 'WONK' 1;
}
.banner__h2 em {
  font-style: italic;
  color: var(--terracotta);
}

/* ── HERITAGE / STORY ─────────────────────────────────── */

.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.story__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(28, 22, 18, 0.45);
}
.story__photo img { width: 100%; height: 100%; object-fit: cover; }
.story__copy { max-width: 520px; }
.story__body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.story__body p:last-child { margin-bottom: 0; }
.story__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--terracotta-d);
  margin: 32px 0 0;
  padding: 22px 0 0 26px;
  border-left: 1px solid var(--terracotta);
  max-width: 520px;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: 44px; }
  .story__photo { max-width: 460px; margin: 0 auto; aspect-ratio: 4 / 3; }
}

/* ── REVIEWS (curated, NO aggregate star) ─────────────── */

.regulars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  padding: 36px 30px;
  background: rgba(245, 237, 224, 0.04);
  border: 1px solid rgba(184, 92, 60, 0.18);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
}
.quote:hover {
  background: rgba(184, 92, 60, 0.06);
  border-color: var(--terracotta);
}
.quote__dish {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 600;
}
.quote__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 26px;
  flex: 1;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}
.quote__by {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
  padding-top: 20px;
  border-top: 1px solid rgba(184, 92, 60, 0.18);
}
.quote__by strong { color: var(--cream); font-weight: 600; }

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

/* ── VISIT (single Somerset Mall block) ───────────────── */

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.visit__photo {
  aspect-ratio: 5 / 6;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(28, 22, 18, 0.45);
}
.visit__photo img { width: 100%; height: 100%; object-fit: cover; }
.visit__kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
}
.visit__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 28px;
  font-variation-settings: 'opsz' 72, 'SOFT' 30, 'WONK' 1;
}
.visit__h2 em { font-style: italic; color: var(--terracotta); }
.visit__address {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 32px;
  padding-left: 22px;
  border-left: 1px solid var(--terracotta);
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}
.visit__address strong { font-weight: 500; }
.visit__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 28px;
  margin-bottom: 32px;
  font-size: 15px;
}
.visit__hours dt {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.visit__hours dd { color: var(--muted); }
.visit__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; gap: 40px; }
  .visit__photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4 / 3; }
}

/* ── FAQ ──────────────────────────────────────────────── */

.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}
.faq__q .icon {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s var(--ease);
  color: var(--terracotta);
}
.faq__item[open] .faq__q .icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
}

/* ── STICKY MOBILE CTA BAR ────────────────────────────── */

.smcb {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid rgba(184, 92, 60, 0.4);
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.smcb.is-in { transform: translateY(0); }
.smcb__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.smcb__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(245, 237, 224, 0.12);
  transition: all 0.3s var(--ease);
  min-height: 56px;
}
.smcb__btn svg { width: 18px; height: 18px; }
.smcb__btn--call { color: var(--terracotta); border-color: rgba(184, 92, 60, 0.4); }
.smcb__btn--wa { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.smcb__btn--dir { color: var(--cream); }

@media (max-width: 900px) {
  .smcb { display: block; }
  /* nudge footer so it isn't hidden behind the bar */
  .ft { padding-bottom: 100px; }
}

/* ── FOOTER ───────────────────────────────────────────── */

.ft {
  background: #0F0B08;
  color: rgba(245, 237, 224, 0.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.ft__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.ft__brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 72, 'SOFT' 30, 'WONK' 1;
}
.ft__brand em { font-style: italic; color: var(--terracotta); }
.ft__about {
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 360px;
  color: rgba(245, 237, 224, 0.72);
}
.ft__socials { display: flex; gap: 10px; }
.ft__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 224, 0.2);
  color: var(--cream);
  transition: all 0.3s var(--ease);
}
.ft__socials a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
.ft__socials svg { width: 14px; height: 14px; }

.ft__col h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 16px;
  font-variation-settings: 'opsz' 36, 'SOFT' 50;
}
.ft__col a, .ft__col p {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 237, 224, 0.72);
  line-height: 1.7;
  transition: color 0.25s var(--ease);
}
.ft__col a:hover { color: var(--terracotta); }
.ft__col strong { color: var(--cream); font-weight: 500; }

.ft__bottom {
  border-top: 1px solid rgba(245, 237, 224, 0.10);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(245, 237, 224, 0.5);
}
.ft__credit {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(245, 237, 224, 0.6);
}
.ft__credit a { color: var(--terracotta); }
.ft__credit a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .ft__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .ft__top { grid-template-columns: 1fr; }
  .ft__bottom { flex-direction: column; }
}

/* ── REVEAL ────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: 0.56s; }
