/* ===================================================================
   Garnish Editorial — custom styles
   Extracted from homepage-v0.3.html. Targets className attributes on
   block patterns (e.g. .hero-bleed on a Group block). Typography for
   h1-h4 lives in theme.json.
   =================================================================== */

:root {
  --charcoal:    #2A2520;
  --charcoal-2:  #1F1B17;
  --linen:       #F5EFE3;
  --cream:       #FAF4E6;
  --paper:       #FFFBF1;
  --sage:        #748E73;
  --oxblood:     #5C1A1B;
  --oxblood-2:   #6B1E1E;
  --body:        #3D3832;
  --body-muted:  #6B6258;

  --display: "Playfair Display", "ivypresto-display", Georgia, serif;
  --body-font: "Lora", "freight-text-pro", Georgia, serif;

  --content-max: 1240px;
  --gutter: clamp(24px, 4vw, 64px);
}

* { box-sizing: border-box; }

html, body {
  background: var(--cream);
  color: var(--body);
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Paper-grain overlay — warm, subtle, fixed full-viewport */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.32 0 0 0 0 0.27 0 0 0 0 0.21 0 0 0 0.20 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background-color: var(--charcoal);
  background-image:
    repeating-linear-gradient(0deg,  rgba(245,239,227,0.060) 0, rgba(245,239,227,0.060) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(245,239,227,0.050) 0, rgba(245,239,227,0.050) 1px, transparent 1px, transparent 4px);
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.site-header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.site-logo img {
  display: block;
  height: 120px;
  width: auto;
}
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-family: var(--body-font);
  font-size: 14px;
  letter-spacing: 0.6px;
  color: rgba(245, 239, 227, 0.62);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--linen); }

/* ============================================================
   HERO — full-bleed image overlay
   ============================================================ */
.hero-bleed {
  position: relative;
  overflow: hidden;
  background-color: #1c1612;
  background-image: url("../images/hero-dining-room.jpeg");
  background-size: cover;
  background-position: center 38%;
}
.hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(20, 14, 10, 0.84) 0%,
      rgba(20, 14, 10, 0.68) 38%,
      rgba(20, 14, 10, 0.36) 68%,
      rgba(20, 14, 10, 0.46) 100%),
    linear-gradient(180deg,
      rgba(20, 14, 10, 0.18) 0%,
      rgba(20, 14, 10, 0.00) 35%,
      rgba(20, 14, 10, 0.00) 65%,
      rgba(20, 14, 10, 0.22) 100%);
  pointer-events: none;
}
.hero-bleed > * { position: relative; z-index: 1; }

.hero {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(88px, 11vw, 144px) var(--gutter) clamp(96px, 13vw, 168px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--linen);
  opacity: 0.78;
  letter-spacing: 0.2px;
  margin: 0 0 28px;
}
.hero-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--linen);
  margin: 0 0 36px;
  text-wrap: balance;
  max-width: 14ch;
}
.hero-supporting {
  font-family: var(--body-font);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.66;
  color: rgba(245, 239, 227, 0.88);
  max-width: 520px;
  margin: 0 0 44px;
}
.hero-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--linen);
  text-decoration: none;
  border-bottom: 1.5px solid var(--linen);
  padding-bottom: 4px;
  transition: gap 0.25s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-cta:hover { gap: 18px; color: #fff; border-color: #fff; }
.hero-cta .arrow { font-family: var(--display); font-style: italic; font-size: 22px; line-height: 1; }

/* Audit deliverable rendered on the right of the hero */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.hero-deliverable-back {
  position: absolute;
  width: 88%;
  max-width: 360px;
  aspect-ratio: 7 / 9;
  background: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.70' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.30 0 0 0 0 0.25 0 0 0 0 0.18 0 0 0 0.10 0'/></filter><rect width='200' height='200' filter='url(%23m)'/></svg>");
  border-top: 2px solid var(--oxblood);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03), 0 18px 38px -12px rgba(60, 40, 20, 0.22);
  transform: translate(28px, 24px) rotate(3.5deg);
  opacity: 0.92;
}
.hero-deliverable {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.70' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.30 0 0 0 0 0.25 0 0 0 0 0.18 0 0 0 0.12 0'/></filter><rect width='200' height='200' filter='url(%23m)'/></svg>");
  padding: 28px 32px 24px;
  border-top: 3px solid var(--oxblood);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.03),
    0 24px 56px -16px rgba(0, 0, 0, 0.55),
    0 56px 120px -36px rgba(0, 0, 0, 0.6);
  transform: rotate(-1.8deg);
  transform-origin: center center;
}

.deliv-masthead {
  padding-bottom: 12px;
  border-bottom: 0.75px solid rgba(58, 48, 38, 0.25);
  margin-bottom: 18px;
}
.deliv-dateline {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--body-muted);
}
.deliv-dateline strong { color: var(--oxblood); font-weight: 500; }
.deliv-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--oxblood);
  margin: 0 0 2px;
  line-height: 1.05;
}
.deliv-subtitle {
  font-family: var(--body-font);
  font-size: 12px;
  color: var(--body-muted);
  margin: 0 0 18px;
  letter-spacing: 0.3px;
}
.deliv-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px 0 16px;
  border-top: 0.75px solid rgba(58, 48, 38, 0.18);
  border-bottom: 0.75px solid rgba(58, 48, 38, 0.18);
}
.deliv-score-number {
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  line-height: 0.9;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.deliv-score-number small {
  font-size: 18px;
  color: var(--body-muted);
  font-weight: 400;
  margin-left: 3px;
}
.deliv-score-meta { font-family: var(--body-font); font-size: 11.5px; line-height: 1.5; color: var(--body); }
.deliv-score-meta-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 2px 0;
}
.deliv-score-meta-line + .deliv-score-meta-line { border-top: 0.5px dotted rgba(58, 48, 38, 0.2); }
.deliv-score-meta-line strong { font-weight: 500; color: var(--oxblood); }

.deliv-finding { padding: 12px 0 4px; }
.deliv-finding-tag-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.deliv-severity {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  line-height: 1.4;
  background: rgba(199, 133, 50, 0.20);
  color: #7A4B0F;
}
.deliv-category {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--body-muted);
}
.deliv-finding-body {
  font-family: var(--body-font);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}
.deliv-finding-body em { color: var(--oxblood); font-style: italic; }
.deliv-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1.25px solid var(--oxblood);
  text-align: center;
  font-family: var(--body-font);
  font-size: 11px;
  color: var(--body-muted);
  letter-spacing: 0.3px;
}
.deliv-footer .label { text-transform: uppercase; letter-spacing: 1.8px; font-size: 9px; display: block; margin-bottom: 3px; }
.deliv-footer .value { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--charcoal); letter-spacing: 0; }

/* ============================================================
   SECTION 2 — Editorial intro
   ============================================================ */
.editorial-preview {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--gutter) clamp(72px, 10vw, 120px);
}
.editorial-rule {
  width: 56px;
  height: 2px;
  background: var(--oxblood);
  margin: 0 0 28px;
}
.editorial-body {
  max-width: 640px;
  font-family: var(--body-font);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--body);
}
.editorial-body p { margin: 0 0 1.1em; }
.editorial-body p:last-child { margin-bottom: 0; }
.editorial-body em { color: var(--oxblood); font-style: italic; }

/* ============================================================
   SECTION 3 — Sample audit exhibit
   ============================================================ */
.section-intro {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(32px, 5vw, 56px);
  text-align: center;
  border-top: 1px solid rgba(60, 40, 20, 0.14);
}
.section-intro-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0 auto 24px;
  max-width: 18ch;
  letter-spacing: -0.008em;
  text-wrap: balance;
}
.section-intro-body {
  font-family: var(--body-font);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.7;
  color: var(--body);
  max-width: 580px;
  margin: 0 auto;
}

.exhibit-stage {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(56px, 8vw, 96px);
}
.exhibit {
  background: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.70' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.30 0 0 0 0 0.25 0 0 0 0 0.18 0 0 0 0.12 0'/></filter><rect width='200' height='200' filter='url(%23m)'/></svg>");
  padding: clamp(36px, 4vw, 56px) clamp(28px, 4vw, 64px);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.03),
    0 12px 32px -10px rgba(60, 40, 20, 0.22),
    0 36px 80px -28px rgba(60, 40, 20, 0.28);
  position: relative;
  border-top: 3px solid var(--oxblood);
}
.exhibit-masthead {
  padding-bottom: 18px;
  border-bottom: 0.75px solid rgba(58, 48, 38, 0.25);
  margin-bottom: 28px;
}
.exhibit-dateline {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--body-muted);
}
.exhibit-dateline strong { color: var(--oxblood); font-weight: 500; }
.exhibit-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 44px);
  color: var(--oxblood);
  margin: 0 0 6px;
  line-height: 1.05;
}
.exhibit-subtitle {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--body-muted);
  margin: 0 0 28px;
  letter-spacing: 0.3px;
}
.exhibit-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
  padding: 20px 0 24px;
  border-top: 0.75px solid rgba(58, 48, 38, 0.18);
  border-bottom: 0.75px solid rgba(58, 48, 38, 0.18);
}
.exhibit-score-number {
  font-family: var(--display);
  font-weight: 500;
  font-size: 72px;
  line-height: 0.9;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.exhibit-score-number small { font-size: 24px; color: var(--body-muted); font-weight: 400; margin-left: 4px; }
.exhibit-score-meta { font-family: var(--body-font); font-size: 14px; line-height: 1.55; color: var(--body); }
.exhibit-score-meta strong { font-weight: 500; color: var(--oxblood); }
.exhibit-score-meta-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 3px 0;
}
.exhibit-score-meta-line + .exhibit-score-meta-line { border-top: 0.5px dotted rgba(58, 48, 38, 0.2); }
.exhibit-verdict {
  font-family: var(--body-font);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 36px;
}
.exhibit-verdict em { color: var(--oxblood); font-style: italic; }
.findings-header {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--body-muted);
  margin: 0 0 16px;
}
.finding { padding: 18px 0; border-top: 0.75px solid rgba(58, 48, 38, 0.18); }
.finding:last-child { border-bottom: 0.75px solid rgba(58, 48, 38, 0.18); }
.finding-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.finding-severity {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  line-height: 1.4;
}
.severity-minor   { background: rgba(116, 142, 115, 0.18); color: #3F5A3F; }
.severity-major   { background: rgba(199, 133, 50, 0.20);  color: #7A4B0F; }
.severity-praise  { background: rgba(92, 26, 27, 0.10);    color: var(--oxblood); }
.finding-category {
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body-muted);
}
.finding-body {
  font-family: var(--body-font);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}
.finding-body em { color: var(--oxblood); font-style: italic; }
.finding-body strong { font-weight: 500; }
.callout {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.72em;
  color: var(--oxblood);
  vertical-align: super;
  margin-left: 1px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
}
.callout:hover { color: var(--oxblood-2); }
.exhibit-footer {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1.5px solid var(--oxblood);
  text-align: center;
  font-family: var(--body-font);
  font-size: 13px;
  color: var(--body-muted);
  letter-spacing: 0.3px;
}
.exhibit-footer .label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10.5px;
  display: block;
  margin-bottom: 6px;
}
.exhibit-footer .value {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--charcoal);
  letter-spacing: 0;
}

.editor-notes {
  max-width: 640px;
  margin: 48px auto 0;
  padding: 32px clamp(24px, 4vw, 48px);
  border-left: 2px solid var(--oxblood);
  background: rgba(255, 251, 241, 0.45);
}
.editor-notes-header {
  font-family: var(--body-font);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--body-muted);
  margin: 0 0 20px;
}
.editor-notes ol { list-style: none; margin: 0; padding: 0; counter-reset: notes; }
.editor-notes li {
  counter-increment: notes;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 0.5px dotted rgba(60, 40, 20, 0.2);
}
.editor-notes li:first-child { border-top: none; padding-top: 4px; }
.editor-notes li::before {
  content: counter(notes);
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--oxblood);
  line-height: 1;
}
.editor-notes li p {
  margin: 0;
  font-family: var(--body-font);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

/* ============================================================
   SECTIONS 4, 6, 7 — Essay, Pricing, Closing
   ============================================================ */
.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
}
.section-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0 0 28px;
  letter-spacing: -0.008em;
  text-wrap: balance;
}
.prose {
  font-family: var(--body-font);
  font-size: clamp(17px, 1.3vw, 19.5px);
  line-height: 1.75;
  color: var(--body);
}
.prose p { margin: 0 0 1.1em; }
.prose p:last-child { margin-bottom: 0; }
.prose em { color: var(--oxblood); font-style: italic; }

.cta {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1.5px solid var(--oxblood);
  padding-bottom: 4px;
  transition: color 0.2s ease, gap 0.25s ease;
}
.cta:hover { color: var(--oxblood-2); gap: 18px; }
.cta .arrow { font-family: var(--display); font-style: italic; font-size: 22px; line-height: 1; }

.section-essay {
  max-width: 720px;
  border-top: 1px solid rgba(60, 40, 20, 0.14);
}
.section-essay .section-headline { max-width: 18ch; margin-bottom: 32px; }

.section-pricing { max-width: 1080px; }
.section-pricing .section-headline { text-align: center; margin: 0 auto 48px; max-width: 16ch; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin: 0 auto;
  max-width: 880px;
}
.pricing-card {
  background: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.70' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.30 0 0 0 0 0.25 0 0 0 0 0.18 0 0 0 0.12 0'/></filter><rect width='200' height='200' filter='url(%23m)'/></svg>");
  padding: clamp(32px, 4vw, 44px);
  border-top: 3px solid var(--oxblood);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.03),
    0 10px 28px -12px rgba(60, 40, 20, 0.18),
    0 24px 56px -28px rgba(60, 40, 20, 0.22);
  display: flex;
  flex-direction: column;
}
.pricing-tier-name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--oxblood);
  margin: 0 0 18px;
  line-height: 1.05;
}
.pricing-amount {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 56px);
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.pricing-amount small {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--body-muted);
  font-style: italic;
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0.2px;
}
.pricing-blurb {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 18px 0 24px;
  padding-top: 18px;
  border-top: 0.5px dotted rgba(60, 40, 20, 0.28);
}
.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-family: var(--body-font);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
}
.pricing-features li { padding: 7px 0; border-top: 0.5px dotted rgba(60, 40, 20, 0.22); }
.pricing-features li:first-child { border-top: 0.5px solid rgba(60, 40, 20, 0.18); }
.pricing-card .cta { margin-top: auto; }
.pricing-note {
  max-width: 560px;
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--body-font);
  font-style: italic;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--body);
}
.pricing-note-rule {
  display: block;
  width: 56px;
  height: 1.5px;
  background: var(--oxblood);
  margin: 0 auto 24px;
}
.pricing-note-attribution {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--oxblood);
  letter-spacing: 0.3px;
}

.section-close { max-width: 720px; text-align: center; }
.section-close .section-headline {
  font-size: clamp(44px, 5.4vw, 72px);
  max-width: 12ch;
  margin: 0 auto 28px;
  line-height: 1.06;
}
.section-close .prose { max-width: 480px; margin: 0 auto 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-rule {
  height: 1px;
  background: var(--oxblood);
  opacity: 0.7;
  max-width: var(--content-max);
  margin: 0 auto;
}
.site-footer {
  background-color: var(--charcoal);
  background-image:
    repeating-linear-gradient(0deg,  rgba(245,239,227,0.060) 0, rgba(245,239,227,0.060) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(245,239,227,0.050) 0, rgba(245,239,227,0.050) 1px, transparent 1px, transparent 4px);
  color: var(--linen);
  border-top: 1px solid rgba(0,0,0,0.3);
}
.site-footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px var(--gutter) 56px;
  text-align: center;
}
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--linen);
  margin: 0 0 28px;
  letter-spacing: 0.3px;
}
.footer-contact-wrapper {
  margin: 0 0 32px;
  line-height: 1;
}
.footer-contact {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 28px 12px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--linen);
  text-decoration: none;
  border: 1px solid rgba(245, 239, 227, 0.45);
  border-radius: 1px;
  letter-spacing: 0.2px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, gap 0.25s ease;
}
.footer-contact:hover {
  color: var(--cream);
  border-color: var(--linen);
  background-color: rgba(245, 239, 227, 0.04);
  gap: 16px;
}
.footer-contact .arrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-social a {
  font-family: var(--body-font);
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.62);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.footer-social a:hover { color: var(--linen); }
.footer-social .ext {
  font-size: 11px;
  letter-spacing: 0;
  position: relative;
  top: -1px;
}

.footer-meta {
  font-family: var(--body-font);
  font-size: 13px;
  color: rgba(245, 239, 227, 0.55);
  margin: 0;
  letter-spacing: 0.4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 96px;
    text-align: left;
  }
  .hero-stage { order: -1; min-height: 460px; }
  .hero-deliverable { max-width: 340px; }
  .hero-deliverable-back { max-width: 300px; }
  .hero-headline { max-width: none; }
  .site-logo img { height: 100px; }
  .hero-bleed::after {
    background: linear-gradient(180deg, rgba(20,14,10,0.72) 0%, rgba(20,14,10,0.55) 100%);
  }
}
@media (max-width: 700px) {
  .pricing-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-header-inner { flex-direction: column; gap: 18px; padding: 22px var(--gutter); }
  .site-nav { gap: 22px; }
  .site-logo img { height: 84px; }
  .hero-deliverable { max-width: 300px; padding: 24px 26px 20px; }
  .hero-deliverable-back { max-width: 260px; }
  .deliv-title { font-size: 26px; }
  .deliv-score-number { font-size: 48px; }
}

/* ============================================================
   SINGLE POST — Menu Matters article (single.html)
   ============================================================ */
.single-post {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(72px, 10vw, 120px);
}
.single-post-header {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.single-post-date {
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-muted);
  margin: 0 0 18px;
}
.single-post-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: -0.011em;
  text-wrap: balance;
}
.single-post-featured {
  margin: 0 auto clamp(40px, 5vw, 72px);
  max-width: 880px;
  border-top: 2px solid var(--oxblood);
}
.single-post-featured img {
  display: block;
  width: 100%;
  height: auto;
}
.single-post-body {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--body-font);
  font-size: clamp(18px, 1.3vw, 20px);
  line-height: 1.75;
  color: var(--body);
}
.single-post-body p,
.single-post-body ul,
.single-post-body ol,
.single-post-body blockquote,
.single-post-body figure,
.single-post-body h2,
.single-post-body h3 {
  margin-left: auto;
  margin-right: auto;
}
.single-post-body p { margin: 0 0 1.2em; }
.single-post-body em { color: var(--oxblood); font-style: italic; }
.single-post-body a {
  color: var(--oxblood);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.single-post-body a:hover { color: var(--oxblood-2); }
.single-post-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  color: var(--charcoal);
  margin: 1.8em 0 0.6em;
  letter-spacing: -0.006em;
}
.single-post-body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
  color: var(--charcoal);
  margin: 1.6em 0 0.5em;
}
.single-post-body blockquote {
  margin: 1.5em 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--oxblood);
  font-style: italic;
  color: var(--body);
}
.single-post-body ul,
.single-post-body ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.single-post-body li { margin: 0 0 0.4em; }
.single-post-body figure { margin: 1.8em 0; }
.single-post-body figure img { display: block; width: 100%; height: auto; }
.single-post-body figcaption {
  font-family: var(--body-font);
  font-style: italic;
  font-size: 14px;
  color: var(--body-muted);
  margin-top: 8px;
  text-align: center;
}
.single-post-footer {
  max-width: 680px;
  margin: clamp(56px, 7vw, 88px) auto 0;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(60, 40, 20, 0.14);
  text-align: center;
}
.single-post-back {
  margin: 0;
  font-family: var(--body-font);
  font-style: italic;
  font-size: 15px;
  color: var(--oxblood);
  letter-spacing: 0.3px;
}
.single-post-back a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 2px;
  transition: gap 0.25s ease, color 0.2s ease;
}
.single-post-back a:hover { color: var(--oxblood-2); gap: 16px; }
.single-post-back .arrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1;
}

/* ============================================================
   BLOG ARCHIVE — Menu Matters listing (home.html)
   ============================================================ */
.blog-archive {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--gutter) clamp(72px, 10vw, 120px);
}
.blog-archive-header {
  max-width: 760px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  text-align: center;
}
.blog-archive-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.011em;
  color: var(--charcoal);
  margin: 0 0 18px;
  text-wrap: balance;
}
.blog-archive-desc {
  font-family: var(--body-font);
  font-style: italic;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--body-muted);
  margin: 0;
}

.post-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px) clamp(28px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-grid > li { list-style: none; }

.post-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.post-card .wp-block-post-featured-image {
  margin: 0 0 4px;
  overflow: hidden;
  border-top: 2px solid var(--oxblood);
}
.post-card .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card .wp-block-post-featured-image a:hover img { transform: scale(1.02); }

.post-card-date {
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--body-muted);
  margin: 0;
}
.post-card-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.post-card-title a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}
.post-card-title a:hover { color: var(--oxblood); }
.post-card-excerpt {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}
.post-card-excerpt .wp-block-post-excerpt__more-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--oxblood);
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.post-card-excerpt .wp-block-post-excerpt__more-link:hover { color: var(--oxblood-2); }

.post-pagination {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(60, 40, 20, 0.14);
  gap: 18px !important;
  align-items: center;
}
.post-pagination .wp-block-query-pagination-previous,
.post-pagination .wp-block-query-pagination-next {
  font-family: var(--body-font);
  font-style: italic;
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 2px;
}
.post-pagination .wp-block-query-pagination-numbers {
  font-family: var(--display);
  font-size: 17px;
  color: var(--body);
}
.post-pagination .wp-block-query-pagination-numbers .page-numbers {
  margin: 0 6px;
  text-decoration: none;
  color: var(--body-muted);
}
.post-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  color: var(--oxblood);
  font-style: italic;
  font-weight: 500;
}

/* Two-column grid on tablet, single on phone */
@media (max-width: 1024px) {
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 56px); }
}

/* ============================================================
   PLUGIN INTEGRATION — garnish-free-audit
   The plugin's stylesheet uses --text / --text-light / --charcoal
   and Adobe Fonts (freight-text-pro, ivypresto-display) we don't
   load. Alias the vars and force the new font stack so the plugin's
   audit forms and results inherit the editorial palette and type.
   ============================================================ */
:root {
  --text: var(--body);
  --text-light: var(--body-muted);
}

.gfa-container,
.gfa-container * {
  font-family: var(--body-font) !important;
}
.gfa-container h1,
.gfa-container h2,
.gfa-container h3,
.gfa-container h4,
.gfa-form-header h2 {
  font-family: var(--display) !important;
  color: var(--charcoal) !important;
}
.gfa-container a { color: var(--oxblood); }
.gfa-container a:hover { color: var(--oxblood-2); }
