/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #faf7f2;
  --cream-dark: #f0ebe1;
  --paper:      #e8e2d9;
  --ink:        #0f1117;
  --ink-mid:    #2d3142;
  --ink-light:  #5c6070;
  --ink-faint:  #9098a8;
  --red:        #e30613;
  --red-dark:   #b8000d;
  --gold:       #9a7a2e;
  --gold-light: #c9a84c;
  --border:     rgba(15,17,23,0.1);
  --border-strong: rgba(15,17,23,0.18);
  --max:        1180px;
  --r:          14px;
  --r-sm:       8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), 94vw);
  margin-inline: auto;
}

/* ── Typography ───────────────────────────────────────────── */
.serif {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem);   font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}

.accent-red  { color: var(--red); }
.accent-gold { color: var(--gold); }
.muted       { color: var(--ink-light); }

/* ── Header ───────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-shrink: 0;
}

.brand-project {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
}

.brand-150 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.1rem;
  align-items: center;
}

nav a {
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color 0.18s, background 0.18s;
}

nav a:hover  { color: var(--ink); background: var(--cream-dark); }
nav a.active { color: var(--red); font-weight: 600; }

/* ── Layout ───────────────────────────────────────────────── */
main { padding: 0 0 6rem; }

.section { margin-top: 3.5rem; }

/* ── Bento grid ───────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

/* ── Card ─────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(15,17,23,0.08);
  transform: translateY(-2px);
}

.card-cream {
  background: var(--cream-dark);
  border-color: var(--paper);
}

.card-ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.card-ink .muted { color: rgba(255,255,255,0.55); }
.card-ink h2, .card-ink h3 { color: #fff; }

.card-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red-dark);
}

.card-red h2, .card-red h3, .card-red .eyebrow { color: #fff; }
.card-red .eyebrow { opacity: 0.75; }

/* ── Hero section ─────────────────────────────────────────── */
.hero-wrap {
  padding: 5rem 0 0;
  border-bottom: 1px solid var(--border);
}

.hero-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 14ch;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-body {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 52ch;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  padding-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.72rem 1.5rem;
  border-radius: 7px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--cream-dark); }

/* ── Oversized stat numbers ───────────────────────────────── */
.giant-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--red);
  display: block;
}

.giant-num-ink {
  color: #fff;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.6rem;
  display: block;
}

.card-ink .stat-label { color: rgba(255,255,255,0.45); }

/* ── Rule strip ───────────────────────────────────────────── */
.rule-strip {
  border-top: 2px solid var(--ink);
  padding-top: 0.6rem;
  margin: 1.2rem 0;
}

.rule-strip-sm {
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { display: grid; gap: 0; }

.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.tl-item:last-child { border-bottom: none; }

.tl-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 0.2rem;
  line-height: 1.4;
}

.tl-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.tl-body p { color: var(--ink-light); font-size: 0.95rem; line-height: 1.75; margin: 0; }

.tl-item.upcoming { opacity: 0.45; }

/* ── Meal rows ────────────────────────────────────────────── */
.meal-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.meal-row:last-child { border-bottom: none; }

.meal-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 0.25rem;
}

.meal-row p { margin: 0; font-size: 0.95rem; color: var(--ink-mid); line-height: 1.75; }

/* ── Check list ───────────────────────────────────────────── */
.check-list { display: grid; gap: 0.85rem; }

.check-item {
  display: flex;
  gap: 0.8rem;
  font-size: 0.95rem;
  align-items: flex-start;
  color: var(--ink-mid);
}

.check-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ── Quote block ──────────────────────────────────────────── */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pull-quote em { font-style: italic; color: var(--red); }

/* ── Pill tags ────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--ink-light);
  transition: border-color 0.2s;
}

.pill:hover { border-color: var(--red); color: var(--red); }

.pill-red {
  border-color: var(--red);
  color: var(--red);
  background: rgba(227,6,19,0.05);
}

/* ── Report box ───────────────────────────────────────────── */
.report-box {
  background: var(--cream-dark);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-mid);
}

/* ── Page hero ────────────────────────────────────────────── */
.page-hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3.5rem;
}

.page-hero h1 { max-width: 14ch; }

.page-sub {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 52ch;
  margin-top: 1rem;
  line-height: 1.8;
}

/* ── Section divider ──────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ── Marquee tag strip ────────────────────────────────────── */
.tag-strip {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ── Grid helpers ─────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 2px solid var(--ink);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.footer-brand .fp  { font-family:'Inter',sans-serif; font-size:0.85rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink); }
.footer-brand .f150 { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--red); letter-spacing:-0.02em; }
.footer-copy { font-size:0.85rem; color:var(--ink-faint); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.3s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .tl-date { padding-top: 0; }
}

@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .header-inner { height: auto; padding: 0.8rem 0; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  nav a { font-size: 0.85rem; padding: 0.35rem 0.7rem; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  main { padding-bottom: 4rem; }
  .meal-row { grid-template-columns: 1fr; gap: 0.3rem; }
}
