/* =========================================================
   NPF Mock Theme — design tokens
   Type: Alfa Slab One (display) + Oswald (body/UI)
   ========================================================= */
:root {
  /* Palette — warm dark, aged-oak-in-shadow, amber accent */
  --paper:   #1E1A15;   /* body bg — deep warm near-black */
  --paper-2: #282218;   /* raised surfaces — slightly lifted */
  --ink:     #F2ECE1;   /* primary text — warm cream */
  --ink-2:   #C8BFB0;   /* body prose — muted cream */
  --ink-3:   #8A8175;   /* tertiary — mid warm gray */
  --rule:    #3A3128;   /* hairlines */
  --amber:   #D18F55;   /* accent — brighter to carry on dark */
  --amber-2: #A86932;
  --on-dark: #F2ECE1;   /* always-light text for image overlays */
  --masthead-bg: 30, 26, 21;  /* rgb of --paper for rgba() */

  /* Type — three-way pairing:
     --slab:  Alfa Slab One — display only (headers, ratings, wordmark)
     --serif: Fraunces      — body prose, editorial reading
     --sans:  Oswald        — UI: nav, eyebrows, meta, uppercase labels */
  --slab:  "Alfa Slab One", "Rockwell", Georgia, serif;
  --serif: "Fraunces", "Tiempos Headline", Georgia, serif;
  --sans:  "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;

  /* Scale */
  --s-0: 0.75rem;
  --s-1: 0.875rem;
  --s-2: 1rem;
  --s-3: 1.125rem;
  --s-4: 1.375rem;
  --s-5: 1.875rem;
  --s-6: 2.625rem;
  --s-7: 3.75rem;
  --s-8: 5.5rem;
  --s-9: 8rem;
}

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

html { font-size: 17px; }
body {
  font-family: var(--serif);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 2rem; }

/* =========================================================
   Masthead
   ========================================================= */
.masthead {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
  position: sticky; top: 0; z-index: 10;
  background: rgba(var(--masthead-bg), 0.9);
  backdrop-filter: saturate(140%) blur(8px);
}
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.wordmark {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.wordmark .dot { color: var(--amber); margin: 0 0.15em; }
.nav {
  display: flex; gap: 2rem;
  font-size: var(--s-1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav a { color: var(--ink-2); transition: color 120ms; position: relative; padding: 0.25rem 0; }
.nav a:hover { color: var(--amber); }
.nav a.active { color: var(--ink); }
.nav a.active::after {
  content: "";
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 3px; background: var(--amber);
}

/* Utility */
.eyebrow {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--amber);
}
.meta-text {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 500;
}

/* =========================================================
   Homepage — 3-panel IA
   ========================================================= */

/* Hero strap */
.home-intro {
  padding: 4rem 0 2rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.home-intro .eyebrow { margin-bottom: 1rem; }
.home-intro h1 {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-7);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}
.home-intro h1 .dot { color: var(--amber); }
.home-intro p {
  margin-top: 1.25rem;
  font-size: var(--s-3);
  color: var(--ink-2);
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}

/* 3-panel IA grid — Proof + Taste top row, Escapades feature below */
.panels-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (max-width: 900px) { .panels-top { grid-template-columns: 1fr; } }

/* Escapades feature — horizontal, wider, magazine treatment */
.panel-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin-top: 1.5rem;
  background: var(--paper-2);
  min-height: 420px;
  transition: transform 200ms;
}
.panel-feature:hover { transform: translateY(-4px); }
@media (max-width: 900px) { .panel-feature { grid-template-columns: 1fr; } }

.panel-feature-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.panel-feature-image .fill {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1e2a32 0%, #3e5a6a 45%, #8ea0a8 85%, #c8b89a 100%);
}
.panel-feature-label {
  position: absolute;
  bottom: 1.75rem; left: 1.75rem;
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-7);
  color: var(--on-dark);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}
.panel-feature-body {
  padding: 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.panel-feature-eyebrow {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1rem;
}
.panel-feature-title {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-6);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: none;
  max-width: 20ch;
}
.panel-feature-excerpt {
  margin-top: 1.25rem;
  font-size: var(--s-2);
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 48ch;
  font-style: italic;
}
.panel-feature-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}
.panel-feature-sub {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 500;
}
.panel-feature-cta {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  font-weight: 500;
}
.panel-feature-cta::after { content: " →"; }

/* Keep old .panels selector for backward compat if reused elsewhere */
.panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (max-width: 900px) { .panels { grid-template-columns: 1fr; } }

.panel {
  display: flex; flex-direction: column;
  background: var(--paper-2);
  transition: transform 200ms;
}
.panel:hover { transform: translateY(-4px); }

.panel-image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.panel-image .fill { position: absolute; inset: 0; }
.panel.proof .fill     { background: linear-gradient(135deg, #2b1f14 0%, #7a4f2a 60%, #b8763d 100%); }
.panel.taste .fill     { background: linear-gradient(135deg, #3a2010 0%, #8a3c22 55%, #c86a3a 100%); }
.panel.escapades .fill { background: linear-gradient(135deg, #1e2a32 0%, #3e5a6a 55%, #8ea0a8 100%); }

.panel-label {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  font-family: var(--slab);
  font-size: var(--s-6);
  color: var(--on-dark);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}
.panel-body {
  padding: 1.75rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.panel-tagline {
  font-size: var(--s-2);
  color: var(--ink-2);
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
}
.panel-items {
  border-top: 1px solid var(--rule);
  margin-top: 1.25rem;
  list-style: none;
  padding: 0;
}
.panel-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.panel-item:last-child { border-bottom: none; }
.panel-item-rating {
  font-family: var(--slab);
  font-size: var(--s-4);
  color: var(--ink);
  min-width: 2.5ch;
  line-height: 1;
}
.panel-item-rating.empty {
  color: var(--amber);
  font-size: var(--s-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--sans);
  font-weight: 500;
}
.panel-item-title {
  font-size: var(--s-1);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
}
.panel-item-sub {
  font-size: var(--s-0);
  color: var(--ink-3);
  margin-top: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.panel-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber);
  font-weight: 500;
}
.panel-cta::after { content: " →"; }

/* Lead story under panels (optional, smaller now) */
.section-label {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 5rem 0 2rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.75rem;
}
.section-label h2 {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-4);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section-label .more {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 500;
}
.section-label .more:hover { color: var(--amber); }

.list-compact { display: grid; gap: 0; }
.list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.list-item:first-child { border-top: 1px solid var(--rule); }
.list-rating {
  font-family: var(--slab);
  font-size: var(--s-5);
  font-weight: 500;
  color: var(--ink);
  min-width: 3ch;
  text-align: right;
  line-height: 1;
}
.list-rating.empty {
  color: var(--amber);
  font-size: var(--s-1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--sans);
  font-weight: 500;
}
.list-main .list-type {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.list-main .list-title {
  font-size: var(--s-3);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}
.list-date {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 500;
}

/* Footer */
.site-footer {
  margin-top: 6rem;
  padding: 3rem 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-3);
  font-size: var(--s-1);
  text-align: center;
}
.site-footer .wordmark { color: var(--ink); margin-bottom: 0.75rem; display: inline-block; font-size: var(--s-2); }

/* =========================================================
   Landing page — Proof / Taste (section-front)
   ========================================================= */
.landing-hero {
  padding: 6rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.landing-hero .eyebrow { margin-bottom: 1.5rem; }
.landing-hero h1 {
  font-family: var(--slab);
  font-weight: 400;
  font-size: 7rem;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}
.landing-hero .tagline {
  max-width: 55ch;
  margin: 1.5rem auto 0;
  font-size: var(--s-3);
  color: var(--ink-2);
  font-weight: 400;
  line-height: 1.55;
}

.sub-nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: var(--s-1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.sub-nav a { color: var(--ink-2); padding-bottom: 2px; border-bottom: 2px solid transparent; }
.sub-nav a:hover { color: var(--amber); }
.sub-nav a.active { color: var(--ink); border-bottom-color: var(--amber); }

/* Landing grid */
.landing-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin: 4rem 0;
}
@media (max-width: 900px) { .landing-grid { grid-template-columns: 1fr; } }

.card { display: block; }
.card-media {
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.card.card-lg .card-media { aspect-ratio: 3 / 2; }
.card-media-fill { position: absolute; inset: 0; }
.card-media-fill.bourbon  { background: linear-gradient(135deg, #3a2818 0%, #7a4f2a 100%); }
.card-media-fill.tequila  { background: linear-gradient(135deg, #3a4018 0%, #9a9a3a 100%); }
.card-media-fill.cocktail { background: linear-gradient(135deg, #402818 0%, #b85c3a 100%); }
.card-media-fill.beer     { background: linear-gradient(135deg, #4a3818 0%, #c8883a 100%); }
.card-media-fill.food     { background: linear-gradient(135deg, #4a2818 0%, #a85c3a 100%); }
.card-media-fill.rum      { background: linear-gradient(135deg, #2e1a12 0%, #5a2f22 100%); }
.card-media-fill.escapade { background: linear-gradient(135deg, #1e2a32 0%, #3e5a6a 100%); }

.card-type {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--on-dark);
  background: rgba(26,24,20,0.82);
  padding: 0.45rem 0.8rem;
  font-weight: 500;
}
.card-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}
.card-title {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-4);
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  text-transform: none;
  color: var(--ink);
}
.card.card-lg .card-title { font-size: var(--s-5); }
.card-excerpt {
  color: var(--ink-2);
  font-size: var(--s-2);
  line-height: 1.5;
  max-width: 48ch;
  font-weight: 400;
}
.card-date {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-top: 0.75rem;
  font-weight: 400;
}
.card-rating {
  font-family: var(--slab);
  font-size: var(--s-7);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.card.card-lg .card-rating { font-size: var(--s-8); }
.card-rating .denom {
  display: block;
  font-family: var(--sans);
  font-size: var(--s-0);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-top: 0.4rem;
}

/* =========================================================
   Review post page
   ========================================================= */
.post-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}
.post-hero-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2b1f14 0%, #5a3a1e 50%, #8e5525 100%);
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.55) 0%, transparent 70%);
}
.post-header {
  background: var(--paper);
  margin-top: -4rem;
  position: relative;
  padding: 3rem 0 2rem;
}
.post-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.post-eyebrow {
  font-size: var(--s-1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1rem;
}
.post-eyebrow .sep { color: var(--ink-3); margin: 0 0.6rem; }
.post-title {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-7);
  line-height: 1;
  letter-spacing: -0.005em;
  max-width: 18ch;
  text-transform: uppercase;
  color: var(--ink);
}
.post-rating-hero { text-align: center; }
.score-badge {
  display: inline-block;
  padding: 1.25rem 1.75rem;
  border: 2px solid var(--amber);
  background: var(--paper-2);
  min-width: 140px;
}
.score-badge-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.score-badge-num {
  font-family: var(--slab);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--ink);
}
.score-badge-denom {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin-top: 0.25rem;
}

.post-meta {
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  font-size: var(--s-1);
}
@media (max-width: 700px) { .post-meta { grid-template-columns: repeat(2, 1fr); } }
.post-meta dt {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-size: var(--s-0);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.post-meta dd {
  font-family: var(--slab);
  font-size: var(--s-3);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}

.post-body {
  max-width: 680px;
  margin: 4rem auto;
  padding: 0 2rem;
  font-size: var(--s-3);
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 400;
}
.post-body > * + * { margin-top: 1.5rem; }
.post-body .dropcap::first-letter {
  font-family: var(--slab);
  font-weight: 400;
  float: left;
  font-size: 5rem;
  line-height: 0.9;
  margin: 0.35rem 0.9rem 0 -0.1rem;
  color: var(--amber);
}
.post-body h2 {
  font-family: var(--slab);
  font-size: var(--s-5);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 3rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.post-body h2::before {
  content: "";
  display: block;
  width: 40px; height: 3px;
  background: var(--amber);
  margin-bottom: 1rem;
}

.sensory {
  max-width: 960px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 800px) { .sensory { grid-template-columns: 1fr; } }
.sensory-block h3 {
  font-family: var(--slab);
  font-size: var(--s-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.sensory-block h3::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 0.75rem;
  margin-bottom: 0.2em;
}
.sensory-block p {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: var(--s-2);
  font-weight: 400;
}

.flavors {
  max-width: 960px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--paper-2);
}
.flavors-label {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.45rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: var(--s-1);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.chip.primary {
  background: var(--amber);
  color: var(--on-dark);
  border-color: var(--amber);
  font-weight: 500;
}

.verdict {
  max-width: 780px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.verdict-label {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.verdict p {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-4);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
}

.gallery {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.gallery-item {
  background: var(--paper-2);
  aspect-ratio: 1;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 3/4; }
.gallery-item:nth-child(1) { background: linear-gradient(135deg, #2b1f14, #5a3a1e); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #3a2818, #7a4f2a); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #4a3020, #8a5830); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #1f1810, #3a2818); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #2e1f12, #5f3e22); }

/* =========================================================
   Escapade post — long-form prose, no rating
   ========================================================= */
.escapade-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  max-height: 70vh;
}
.escapade-hero-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1e2a32 0%, #3e5a6a 40%, #8ea0a8 80%, #c8b89a 100%);
}
.escapade-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.4) 0%, transparent 50%);
}

.escapade-title-block {
  max-width: 880px;
  margin: -3rem auto 0;
  padding: 3rem 2rem 2rem;
  background: var(--paper);
  position: relative;
  text-align: center;
}
.escapade-dateline {
  font-size: var(--s-1);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.escapade-dateline .sep { color: var(--ink-3); margin: 0 0.75rem; font-weight: 500; }
.escapade-title {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-7);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
  max-width: 18ch;
  margin: 0 auto;
}
.escapade-standfirst {
  max-width: 58ch;
  margin: 2rem auto 0;
  font-size: var(--s-3);
  color: var(--ink-2);
  font-weight: 400;
  line-height: 1.55;
  font-style: normal;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.escapade-body {
  max-width: 680px;
  margin: 3rem auto;
  padding: 0 2rem;
  font-size: var(--s-3);
  line-height: 1.8;
  color: var(--ink-2);
  font-weight: 400;
}
.escapade-body > * + * { margin-top: 1.5rem; }
.escapade-body .dropcap::first-letter {
  font-family: var(--slab);
  font-weight: 400;
  float: left;
  font-size: 5.5rem;
  line-height: 0.9;
  margin: 0.35rem 0.9rem 0 -0.1rem;
  color: var(--amber);
}
.escapade-body h2 {
  font-family: var(--slab);
  font-size: var(--s-4);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  text-align: center;
}
.escapade-body h2::before,
.escapade-body h2::after {
  content: "—";
  color: var(--amber);
  margin: 0 0.75em;
  font-weight: 500;
}

/* Pull quote */
.pullquote {
  max-width: 820px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pullquote p {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-5);
  line-height: 1.3;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}
.pullquote p::before { content: "“"; color: var(--amber); margin-right: 0.1em; }
.pullquote p::after { content: "”"; color: var(--amber); margin-left: 0.1em; }

/* Inline full-width image in prose */
.escapade-figure {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.escapade-figure-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #2a3642, #5e7a8a, #b0a088);
}
.escapade-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.escapade-figure figcaption {
  margin-top: 0.9rem;
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-align: center;
  font-weight: 500;
}

/* Escapade details footer (instead of meta dl) */
.escapade-details {
  max-width: 720px;
  margin: 5rem auto 2rem;
  padding: 2.5rem 2rem;
  background: var(--paper-2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 700px) { .escapade-details { grid-template-columns: 1fr; } }
.escapade-details dt {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.escapade-details dd {
  font-family: var(--slab);
  font-size: var(--s-3);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}

/* =========================================================
   About page
   ========================================================= */
.about-hero {
  padding: 6rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.about-hero .eyebrow { margin-bottom: 1.5rem; }
.about-hero h1 {
  font-family: var(--slab);
  font-weight: 400;
  font-size: 7rem;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}
.about-hero .tagline {
  max-width: 55ch;
  margin: 1.5rem auto 0;
  font-size: var(--s-3);
  color: var(--ink-2);
  font-weight: 400;
  line-height: 1.55;
  font-style: italic;
}

.about-main {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .about-main { grid-template-columns: 1fr; } }

.about-portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #2a1f18 0%, #5a3a1e 55%, #8a5525 100%);
  position: sticky;
  top: 100px;
}

.about-body {
  font-size: var(--s-3);
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 400;
}
.about-body > * + * { margin-top: 1.5rem; }
.about-body .dropcap::first-letter {
  font-family: var(--slab);
  font-weight: 400;
  float: left;
  font-size: 5rem;
  line-height: 0.9;
  margin: 0.35rem 0.9rem 0 -0.1rem;
  color: var(--amber);
}
.about-body h2 {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-5);
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 3rem;
  margin-bottom: 0.25rem;
}
.about-body h2::before {
  content: "";
  display: block;
  width: 40px; height: 3px;
  background: var(--amber);
  margin-bottom: 1rem;
}

/* Methodology grid */
.methodology {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 4rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.methodology-label {
  text-align: center;
  margin-bottom: 3rem;
}
.methodology-label .eyebrow { display: block; margin-bottom: 1rem; }
.methodology-label h2 {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-6);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 800px) { .methodology-grid { grid-template-columns: 1fr; } }
.methodology-item h3 {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-4);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
.methodology-item h3::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 0.75rem;
  margin-bottom: 0.2em;
}
.methodology-item p {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: var(--s-2);
  font-weight: 400;
}

/* Rating scale table */
.rating-scale {
  max-width: 860px;
  margin: 0 auto;
}
.rating-scale-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.rating-scale-row:first-child { border-top: 1px solid var(--rule); }
.rating-scale-range {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-5);
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.rating-scale-desc { color: var(--ink-2); font-size: var(--s-2); line-height: 1.5; }
.rating-scale-desc strong {
  font-family: var(--slab);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--amber);
  font-size: var(--s-1);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.2rem;
}

/* Contact strip */
.contact {
  max-width: 720px;
  margin: 5rem auto 4rem;
  padding: 0 2rem;
  text-align: center;
}
.contact-label {
  font-size: var(--s-0);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.contact p {
  font-family: var(--slab);
  font-weight: 400;
  font-size: var(--s-5);
  line-height: 1.3;
  color: var(--ink);
}
.contact .links {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: var(--s-1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.contact .links a { color: var(--ink-2); border-bottom: 2px solid transparent; padding-bottom: 2px; }
.contact .links a:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* =========================================================
   Ghost {{content}} integration — classes emitted by the
   Phase 13 n8n Ghost transform appear inside .post-body
   ========================================================= */

/* Legacy rating block — template now renders rating in post-header.
   Hide so existing posts don't double-up. New posts from updated
   transform won't emit this block at all. */
.post-body .npf-rating { display: none; }

/* n8n-emitted product details table — promote to our meta-dl look */
.post-body > table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--s-1);
}
.post-body > table td {
  padding: 0.75rem 1rem 0.75rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: baseline;
}
.post-body > table td:first-child {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--s-0);
  color: var(--ink-3);
  font-weight: 500;
  width: 30%;
  white-space: nowrap;
}

/* n8n-emitted h3 (Nose/Palate/Finish/Verdict headers) — reuse
   review h2 styling rule+eyebrow pattern */
.post-body h3 {
  font-family: var(--slab);
  font-size: var(--s-4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-body h3::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 0.75rem;
  margin-bottom: 0.2em;
}

/* n8n-emitted blockquote verdict */
.post-body blockquote {
  border-left: 3px solid var(--amber) !important;
  margin: 2.5rem 0;
  padding: 1rem 0 1rem 1.75rem !important;
  font-family: var(--slab);
  font-style: normal !important;
  font-size: var(--s-3) !important;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.45;
  background: transparent;
}

/* n8n-emitted gallery figures */
.post-body figure {
  margin: 2rem 0;
}
.post-body figure img {
  width: 100%;
  border-radius: 0 !important;
}
.post-body figure figcaption {
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: var(--s-0);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* n8n-emitted flavor chips (the inline-styled span row) — override
   the baked-in #f5f0eb light-theme backgrounds */
.post-body span[style*="border-radius:12px"] {
  background: var(--paper-2) !important;
  border: 1px solid var(--rule);
  color: var(--ink) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--s-0) !important;
  padding: 0.4rem 0.85rem !important;
  font-family: var(--sans);
}

/* n8n ul lists (ingredients) */
.post-body ul {
  padding-left: 1.5rem;
  margin: 1.25rem 0;
}
.post-body ul li {
  margin: 0.4rem 0;
  color: var(--ink-2);
}

/* ---------------------------------------------------------------- */
/* Koenig editor width classes — required by gscan. Applied by Ghost
   to images, galleries, embeds marked "wide" or "full" in the editor.
   Wide breaks out beyond the content column; full spans the viewport. */

.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-full {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-full img {
  width: 100%;
}

/* ---------------------------------------------------------------- */
/* Verdict — bold italic callout inside review bodies.
   Replaces the old blockquote presentation (theme owns styling now). */

.npf-verdict {
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1.75em 0;
  padding: 1.2em 1.25em;
  background: var(--paper-2);
  border-top: 1px solid var(--amber);
  border-bottom: 1px solid var(--amber);
  color: var(--ink);
  text-align: center;
  line-height: 1.55;
}

/* =========================================================
   Mobile overrides — keep oversized display type from
   overflowing narrow viewports. Desktop sizes unchanged.
   ========================================================= */
@media (max-width: 600px) {
  /* Masthead: let nav wrap under the wordmark, tighten gaps */
  .masthead-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
  }
  .nav {
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Home hero — stack "NOSE · PALATE · FINISH" onto three lines
     by making each amber dot its own block-level separator */
  .home-intro { padding: 2.5rem 1rem 1.5rem; }
  .home-intro h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .home-intro h1 .dot {
    display: block;
    font-size: 0.5em;
    line-height: 1;
    margin: 0.15em 0;
  }
  .home-intro p { font-size: 1rem; }

  /* Landing heroes — Proof / Taste / Escapades / About */
  .landing-hero h1 {
    font-size: clamp(2.25rem, 11vw, 4.5rem);
  }
  .landing-hero .tagline { font-size: 1rem; }

  /* About hero */
  .about-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.5rem);
  }
  .about-hero .tagline { font-size: 1rem; }

  /* Post / card big numerals can overflow too — rein them in */
  .card-rating { font-size: 3rem; }
  .panel-feature-title { font-size: 1.5rem; }
}
