/* ============================================================
   Foodcrumbs — landing
   Editorial / agency-style. Inter (body) + Fraunces (display).
   Dark warm palette, asymmetric layouts, scroll reveals.
   ============================================================ */

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

:root {
  /* Warm dark palette — like firelight on linen. */
  --bg:        #0E0A07;
  --bg-2:      #15100B;
  --bg-3:      #1F1610;
  --ink:       #F4ECD8;
  --ink-soft:  #C8BCA1;
  --ink-mute:  #8B7E62;
  --line:      rgba(244, 236, 216, 0.08);
  --line-2:    rgba(244, 236, 216, 0.14);

  --accent:    #F26650;       /* coral */
  --accent-2:  #E89A53;       /* amber */
  --accent-3:  #D8536C;       /* berry */
  --accent-4:  #A98D5A;       /* mustard-tan */

  --serif: "Fraunces", "Iowan Old Style", "Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --shadow-1: 0 1px 2px rgba(0,0,0,0.30);
  --shadow-2: 0 24px 60px rgba(0,0,0,0.45), 0 8px 16px rgba(0,0,0,0.30);
  --max:    1240px;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: #1a0e08; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 36px; }
.container.narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--accent-2);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
}

.display, .display-2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  color: var(--ink);
}
.display { font-size: clamp(46px, 7vw, 96px); }
.display-2 { font-size: clamp(34px, 5vw, 64px); }
.display em, .display-2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-feature-settings: "ss01";
}

.paragraph {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 22px 0;
}

.lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 28px 0 36px;
  max-width: 620px;
  font-weight: 400;
}

.micro {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 20px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(14, 10, 7, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 30% 30%, #F8B07F 0%, var(--accent) 40%, var(--accent-3) 100%);
  box-shadow: 0 6px 18px rgba(242,102,80,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.brand-word { font-weight: 500; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #FF7A60 0%, var(--accent) 50%, #DC4F3F 100%);
  color: #FFF1EB;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 16px 32px rgba(242,102,80,0.32),
    0 4px 10px rgba(0,0,0,0.30);
}
.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 22px 44px rgba(242,102,80,0.40),
    0 6px 14px rgba(0,0,0,0.30);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: rgba(244,236,216,0.06);
  border-color: rgba(244,236,216,0.25);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 36px 100px;
  isolation: isolate;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(232,154,83,0.25), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(216,83,108,0.18), transparent 65%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 90%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.20;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='300' height='300' filter='url(%23n)' opacity='0.6'/></svg>");
}
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  right: -200px; top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,127,0.20), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  padding: 80px 0 40px;
  z-index: 2;
}
.hero h1 { margin: 0 0 0; }
.hero .lede { margin: 30px 0 36px; }

/* Phone stage — on the right, overlapping out-of-frame */
.hero-stage {
  position: absolute;
  right: -40px;
  top: 60px;
  bottom: 0;
  width: min(560px, 50vw);
  pointer-events: none;
  z-index: 1;
}

.phone {
  position: absolute;
  width: 320px;
}
.phone-front {
  right: 60px;
  top: 60px;
  z-index: 2;
  transform: rotate(-4deg) translateY(0);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1) 0.2s;
}
.phone-back {
  right: 280px;
  top: 220px;
  z-index: 1;
  transform: rotate(7deg) translateY(40px) scale(0.9);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1) 0.4s;
  opacity: 0.92;
}
.phone.reveal.is-revealed { /* once revealed, slight float */
  animation: float 9s ease-in-out infinite alternate;
}
.phone-back.is-revealed { animation-delay: -3s; }

@keyframes float {
  from { translate: 0 0; }
  to   { translate: 0 -10px; }
}

.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #1d1814 0%, #0a0707 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 0 2px rgba(0,0,0,0.4),
    0 40px 100px rgba(0,0,0,0.55),
    0 10px 20px rgba(0,0,0,0.40);
}
.phone-island {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #060403;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  background: #FBF6ED;
  color: #1a120c;
  overflow: hidden;
  font-family: var(--sans);
}
.status-bar {
  display: flex; justify-content: space-between;
  padding: 12px 22px 0;
  font-size: 13px; font-weight: 600;
  color: #1a120c;
}
.sb-icons::before { content: "•••• 􀙇"; opacity: 0.5; }
.screen-pad { padding: 38px 16px 16px; }

.discover-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 12px; }
.title-block .title { font-family: var(--serif); font-size: 26px; letter-spacing: -0.02em; font-weight: 500; }
.title-block .subtitle { font-size: 11px; color: #87766A; margin-top: 2px; }
.avatar-mini {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F26650, #E89A53);
  color: white;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.chips { display: flex; gap: 6px; padding: 4px 4px 14px; flex-wrap: wrap; }
.chip {
  font-size: 11px; font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  color: #6e5e4b;
  border: 1px solid rgba(0,0,0,0.04);
}
.chip-active {
  background: #1F1610;
  color: #F4ECD8;
  border-color: #1F1610;
}

.post {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  margin-bottom: 12px;
}
.post.post-stub { transform: scale(0.96); opacity: 0.84; }
.post-head { display: flex; gap: 9px; align-items: center; padding: 10px 12px; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.avatar-blue { background: linear-gradient(135deg, #4F86F0, #7044CC); }
.meta { line-height: 1.2; flex: 1; }
.meta .name { font-size: 12px; font-weight: 700; color: #1a120c; }
.meta .time { font-size: 10px; color: #87766A; }
.rating { color: #E2A33D; font-size: 11px; letter-spacing: 1px; }
.rating-4 { color: #E2A33D; }
.rating-5 { color: #E2A33D; }

.post-photo {
  position: relative;
  height: 168px;
  background-position: center;
  background-size: cover;
}
.p-italian {
  background:
    radial-gradient(circle at 30% 30%, #ffd09b 0%, transparent 50%),
    linear-gradient(135deg, #D94A4A 0%, #E18B58 100%);
}
.p-japanese {
  background:
    radial-gradient(circle at 70% 35%, #ffe4d6 0%, transparent 45%),
    linear-gradient(135deg, #F26B7E 0%, #FF9C72 100%);
}
.photo-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.post-body { padding: 10px 12px 8px; }
.post-body .dish { font-size: 12px; font-weight: 700; color: #1a120c; margin: 0 0 4px; }
.post-body .cap { font-size: 11px; color: #6e5e4b; margin: 0; line-height: 1.4; }
.post-foot {
  display: flex; gap: 12px;
  padding: 8px 12px 12px;
  font-size: 10px; color: #87766A;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.post-foot .like { color: var(--accent-3); font-weight: 700; }
.post-foot .save { color: var(--accent); font-weight: 700; }

/* MAP screen variant */
.phone-screen-map {
  background: #d5e3d6;
  position: relative;
  overflow: hidden;
}
.map-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 700px at 30% 30%, #e8efe6 0%, transparent 60%),
    linear-gradient(135deg, #d8e2d5 0%, #c4d0bf 100%);
}
.map-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 calc(15% - 1px), rgba(180,170,150,0.4) calc(15% - 1px) 15%, transparent 15% 100%),
    linear-gradient(115deg, transparent 0 calc(45% - 1px), rgba(180,170,150,0.3) calc(45% - 1px) 45%, transparent 45% 100%),
    linear-gradient(75deg, transparent 0 calc(30% - 1px), rgba(180,170,150,0.4) calc(30% - 1px) 30%, transparent 30% 100%),
    linear-gradient(75deg, transparent 0 calc(70% - 1px), rgba(180,170,150,0.25) calc(70% - 1px) 70%, transparent 70% 100%);
}
.pin {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  border: 2px solid white;
}
.pin span { font-size: 16px; }
.pin-1 { top: 20%; left: 18%; background: #F26650; color: white; }
.pin-2 { top: 30%; left: 60%; background: #4F86F0; color: white; }
.pin-3 { top: 55%; left: 30%; background: #E89A53; color: white; }
.pin-4 { top: 65%; left: 70%; background: #D8536C; color: white; }
.pin-5 { top: 80%; left: 40%; background: #A98D5A; color: white; }
.pin-mine {
  top: 45%; left: 48%;
  width: 56px; height: 56px;
  background: #1a120c;
  color: #F4ECD8;
  font-size: 10px;
  font-weight: 700;
}
.map-card {
  position: absolute;
  bottom: 24px; left: 16px; right: 16px;
  background: white;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  display: flex;
  gap: 12px;
  align-items: center;
}
.map-card-photo {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D94A4A 0%, #E18B58 100%);
}
.map-card-meta { flex: 1; }
.map-card-title { font-family: var(--serif); font-size: 18px; font-weight: 500; color: #1a120c; }
.map-card-sub { font-size: 11px; color: #87766A; margin: 2px 0 4px; }

/* ============================================================
   STORY
   ============================================================ */
.story {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.story .display-2 { margin-bottom: 30px; }
.story .paragraph { max-width: 720px; }

/* ============================================================
   CRAFT
   ============================================================ */
.craft {
  padding: 100px 0 60px;
  background: var(--bg-2);
}
.section-head {
  margin-bottom: 80px;
  max-width: 760px;
}
.section-head .display-2 { margin-top: 0; }

.craft-row {
  max-width: var(--max);
  margin: 0 auto 100px;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.craft-row-reverse .craft-text { order: 2; }
.craft-row-reverse .craft-art  { order: 1; }
.craft-text .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent-2);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 18px;
}
.craft-text h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.1;
}
.craft-text p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.craft-text ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.craft-text ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--ink-soft);
}
.craft-text ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* Craft art panels */
.craft-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.craft-card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  background: #FBF6ED;
  color: #1a120c;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-2);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.craft-card-head { display: flex; gap: 6px; margin-bottom: 22px; }
.craft-card-head .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
}
.craft-card-head .dot:first-child { background: #FF6058; }
.craft-card-head .dot:nth-child(2) { background: #FFBD30; }
.craft-card-head .dot:nth-child(3) { background: #28C840; }
.form-mock { display: flex; flex-direction: column; }
.form-mock .lbl {
  font-size: 11px; font-weight: 700;
  color: #87766A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 16px 0 8px;
}
.form-mock .lbl:first-child { margin-top: 0; }
.form-mock .inp {
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
  color: #1a120c;
  font-weight: 500;
}
.form-mock .inp-filled { background: rgba(242,102,80,0.10); color: #1a120c; border: 1px solid rgba(242,102,80,0.20); }
.stars-input {
  font-size: 24px;
  color: #E2A33D;
  letter-spacing: 4px;
  padding: 8px 0;
}
.form-btn {
  margin-top: 28px;
  padding: 14px;
  border: none;
  background: #1F1610;
  color: #F4ECD8;
  font-size: 15px; font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

/* Mini map */
.map-mini {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.05;
  background: #d5e3d6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-2);
}
.map-mini-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 30% 30%, #e8efe6, transparent 60%),
    linear-gradient(135deg, #d8e2d5, #c4d0bf);
}
.map-mini-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 calc(20% - 1px), rgba(160,150,130,0.4) calc(20% - 1px) 20%, transparent 20% 100%),
    linear-gradient(115deg, transparent 0 calc(50% - 1px), rgba(160,150,130,0.3) calc(50% - 1px) 50%, transparent 50% 100%),
    linear-gradient(75deg, transparent 0 calc(35% - 1px), rgba(160,150,130,0.4) calc(35% - 1px) 35%, transparent 35% 100%),
    linear-gradient(75deg, transparent 0 calc(80% - 1px), rgba(160,150,130,0.25) calc(80% - 1px) 80%, transparent 80% 100%);
}
.mini-pin {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
}
.mini-pin:hover { transform: scale(1.15); }
.mini-pin-1  { top: 18%; left: 22%; }
.mini-pin-2  { top: 30%; left: 65%; }
.mini-pin-3  { top: 48%; left: 30%; }
.mini-pin-4  { top: 60%; left: 70%; }
.mini-pin-5  { top: 75%; left: 38%; }
.mini-pin-6  { top: 25%; left: 45%; }
.mini-pin-7  { top: 80%; left: 60%; }
.mini-pin-here {
  top: 45%; left: 48%;
  width: 64px; height: 64px;
  background: #1a120c;
  color: #F4ECD8;
  font-size: 24px;
  font-weight: 700;
  border: 4px solid white;
}

/* Feed mock */
.feed-mock {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 380px;
}
.feed-post {
  background: #FBF6ED;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  color: #1a120c;
}
.fp-head {
  display: flex; gap: 10px; align-items: center;
  padding: 12px 14px;
}
.fp-meta { flex: 1; line-height: 1.2; }
.fp-name { font-size: 14px; font-weight: 700; }
.fp-rest { font-size: 12px; color: #87766A; margin-top: 2px; }
.fp-time { font-size: 12px; color: #A19B8C; }
.fp-photo { height: 180px; position: relative; }
.fp-actions {
  padding: 10px 14px 14px;
  font-size: 12px;
  color: #87766A;
  border-top: 1px solid rgba(0,0,0,0.04);
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community {
  padding: 120px 0;
  background:
    radial-gradient(800px 500px at 70% 30%, rgba(242,102,80,0.10), transparent 60%),
    var(--bg);
}
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}
.num-card {
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.num-big {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.num-big sup {
  font-size: 0.4em;
  color: var(--accent-2);
  font-weight: 400;
  vertical-align: 2.4em;
}
.num-lbl {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 12px;
}

.quote {
  margin: 80px auto 0;
  max-width: 820px;
  border-left: 2px solid var(--accent);
  padding: 12px 0 12px 32px;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 400;
}
.quote footer {
  font-size: 14px;
  color: var(--ink-mute);
  font-style: normal;
}
.quote footer span { color: var(--ink); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 120px 0;
  background: var(--bg-2);
}
.faq .section-head { margin-bottom: 60px; }
.qa {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  cursor: pointer;
}
.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
  list-style: none;
  color: var(--ink);
  padding: 4px 0;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-size: 28px;
  color: var(--accent-2);
  font-family: var(--sans);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.qa[open] summary::after { content: "−"; }
.qa p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}
.qa a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 160px 0;
  text-align: center;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(242,102,80,0.18), transparent 70%),
    radial-gradient(700px 500px at 50% 100%, rgba(216,83,108,0.15), transparent 70%),
    var(--bg);
}
.final-cta .display { margin: 0 auto 30px; max-width: 16ch; }
.final-cta .lede { margin: 0 auto 40px; }
.final-cta .cta-row { justify-content: center; }
.final-cta .micro { text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.foot-brand .brand-mark { margin-bottom: 14px; display: inline-block; }
.foot-brand .foot-title {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.foot-brand .foot-tag { color: var(--ink-mute); font-size: 14px; max-width: 280px; }
.foot-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 4px 0 18px;
  font-weight: 600;
}
.foot-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--ink); }
.newsletter-note { font-size: 14px; color: var(--ink-mute); margin: 0; }

.foot-bar {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-stage { width: 45vw; right: -90px; }
  .phone { width: 280px; }
}
@media (max-width: 920px) {
  .hero-stage { display: none; }
  .hero-inner { padding-top: 30px; }
  .nav-links { display: none; }
  .craft-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .craft-row-reverse .craft-text { order: 1; }
  .craft-row-reverse .craft-art { order: 2; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 50px 30px; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .nav-inner { padding: 0 22px; }
  .hero { padding: 30px 22px 60px; }
  .display { font-size: 44px; line-height: 1.05; }
  .display-2 { font-size: 32px; }
  .lede { font-size: 18px; }
  .btn { padding: 14px 22px; font-size: 15px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .craft-row { gap: 28px; }
  .craft-card { padding: 22px; }
  .numbers { grid-template-columns: 1fr 1fr; gap: 16px; }
  .num-big { font-size: 48px; }
  .quote { padding-left: 22px; }
  .qa summary { font-size: 20px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bar { flex-direction: column; gap: 8px; }
  .final-cta { padding: 100px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .phone { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
