/* ======================================================
   COUCHON BJJ — main.css
   Direction D · Futura (Leonard McGurr / Bronx graffiti)
   Identity-system logic: the tag is a logo.
   Single source of truth for all theme styles.
====================================================== */

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

/* ── Design Tokens ── */
:root {
  --bg:      #F8F8F6;
  --surface: #EEEEEC;
  --text:    #111111;
  --ink:     #000000;
  --white:   #FFFFFF;
  --accent:  #E03A1E;
  --muted:   #888888;
  --border:  #DDDDD8;
  --divider: #1A1A1A;

  --f-heading: 'Plus Jakarta Sans', sans-serif;
  --f-body:    'Source Serif 4', serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  --radius:   2px;
  --max-w:    1200px;
  --read-max: 640px;
  --gutter:   1.5rem;

  --xxxl: 6rem;
  --xxl:  4rem;
  --xl:   2.5rem;
  --lg:   1.5rem;
  --md:   1rem;
  --sm:   0.75rem;
  --xs:   0.5rem;
  --xxs:  0.25rem;
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 300;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography Scale ── */
.display {
  font-family: var(--f-heading);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-style: normal;
  color: var(--text);
}

.h1 {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-style: normal;
}

.h2 {
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-style: normal;
}

.h3 {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-style: normal;
}

.h4 {
  font-family: var(--f-heading);
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  font-style: normal;
}

.eyebrow {
  font-family: var(--f-heading);
  font-size: 0.6875rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
}

.body-italic {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 300;
  font-style: italic;
}

.body-roman {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 400;
  font-style: normal;
}

.caption {
  font-family: var(--f-body);
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 400;
  font-style: italic;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--xxxl) 0;
}

.section-header {
  margin-bottom: var(--xxl);
}

/* ── Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8125rem 1.625rem;
  border-radius: var(--radius);
  font-family: var(--f-heading);
  font-size: 0.875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: opacity 150ms ease;
  line-height: 1;
}
.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: currentColor;
}

.btn-inverted {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ── Tag ── */
.tag {
  display: inline-block;
  font-family: var(--f-heading);
  font-size: 0.625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}
.tag-accent { background: var(--accent); color: var(--white); }
.tag-ink    { background: var(--ink);    color: var(--white); }

/* ── Text link ── */
.text-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 120ms ease;
}
.text-link:hover { border-color: currentColor; }

/* ======================================================
   SITE HEADER
====================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--lg);
}
.header-mark {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 800;
  font-style: normal;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.025em;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--xl);
  list-style: none;
}

/* WordPress nav menu reset */
.header-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: var(--xl);
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav-wrap ul li { margin: 0; padding: 0; }

.header-nav a,
.header-nav-wrap ul li a {
  font-family: var(--f-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 120ms;
}
.header-nav a:hover,
.header-nav-wrap ul li a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .header-nav,
  .header-nav-wrap { display: none; }
}

/* ======================================================
   § 1 — HERO (HeroPanel)
====================================================== */
.hero {
  padding: var(--xxxl) 0;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-inner { width: 100%; }
.hero-eyebrow { margin-bottom: var(--lg); }
.hero-headline {
  max-width: 820px;
  margin-bottom: var(--xl);
  color: var(--ink);
}
.hero-divider {
  width: 2.5rem;
  height: 3px;
  background: var(--accent);
  margin-bottom: var(--xl);
}
.hero-sub {
  max-width: 380px;
  margin-bottom: var(--xl);
  color: var(--text);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--lg);
  flex-wrap: wrap;
}
.hero-gym-link {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 120ms;
}
.hero-gym-link:hover { border-color: var(--text); }

/* ======================================================
   § 2 — AUTHORITY BLOCK (AuthorityBlock)
====================================================== */
.authority { background: var(--bg); }
.authority-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--xxl);
  align-items: start;
}
@media (max-width: 900px) {
  .authority-grid { grid-template-columns: 1fr; }
}
.authority-photo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--xl);
}
.authority-photo-note {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}
.authority-headline {
  margin-top: var(--lg);
  margin-bottom: var(--xl);
}
.authority-body {
  color: var(--text);
  max-width: var(--read-max);
}
.credibility-row {
  margin-top: var(--xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--xs) var(--md);
}
.credibility-item {
  font-family: var(--f-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.credibility-sep { color: var(--border); font-style: normal; }
.authority-tail { margin-top: var(--xl); }

/* ======================================================
   § 3 — THREE PROGRAMS (ProgramCard × 3)
====================================================== */
.programs { background: var(--surface); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg);
}
@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; }
}
.program-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--xl);
  display: flex;
  flex-direction: column;
  gap: var(--md);
}
.program-card-tag { margin-bottom: var(--xs); }
.program-card-title { margin-bottom: var(--sm); }
.program-card-body {
  flex: 1;
  color: var(--text);
  margin-bottom: var(--lg);
}

/* ======================================================
   § 4 — CURRICULUM SAMPLE (CurriculumRow × 4)
====================================================== */
.curriculum { background: var(--bg); }
.curriculum-list {
  border-top: 1px solid var(--divider);
  margin-bottom: var(--xl);
}
.curriculum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--lg);
  padding: var(--lg) 0;
  border-bottom: 1px solid var(--border);
}
.curriculum-row-left { min-width: 0; }
.curriculum-row-tag {
  font-family: var(--f-heading);
  font-size: 0.625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.375rem;
}
.curriculum-row-title {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
  color: var(--text);
}
.curriculum-row-meta {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ======================================================
   § 5 — INSTRUCTOR NOTE (InstructorNote)
====================================================== */
.instructor-note {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.instructor-note-inner {
  max-width: var(--read-max);
  margin: 0 auto;
  text-align: center;
}
.instructor-note-rule {
  width: 2rem;
  height: 2px;
  background: var(--border);
  margin: 0 auto var(--xl);
}
.instructor-note-text {
  font-family: var(--f-body);
  font-size: 1.1875rem;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--xl);
}
.instructor-note-sig {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

/* ======================================================
   § 6 — TWO VOICES (TestimonialBlock × 2)
====================================================== */
.testimonials { background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--xxl);
  margin-top: var(--xxl);
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: var(--xl); }
}
.testimonial-block {
  border-top: 2px solid var(--divider);
  padding-top: var(--lg);
}
.testimonial-quote {
  font-family: var(--f-body);
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--lg);
}
.testimonial-cite {
  font-family: var(--f-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ======================================================
   § 7 — PRICING (PriceTier × 2)
====================================================== */
.pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lg);
  max-width: 760px;
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-tier {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--xl);
  display: flex;
  flex-direction: column;
}
.price-tier.recommended { border: 2px solid var(--text); }
.price-tier-header {
  display: flex;
  align-items: center;
  gap: var(--sm);
  margin-bottom: var(--lg);
}
.recommended-badge {
  font-family: var(--f-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--white);
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius);
}
.price-amount {
  font-family: var(--f-body);
  font-size: 2rem;
  font-weight: 700;
  font-style: normal;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--xs);
}
.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.price-sub {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: var(--xl);
}
.price-features {
  list-style: none;
  margin-bottom: var(--xl);
  flex: 1;
}
.price-features li {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--sm);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '—';
  font-family: var(--f-heading);
  font-weight: 400;
  font-style: normal;
  color: var(--muted);
  flex-shrink: 0;
  font-size: 0.75rem;
}
.pricing-footnote {
  margin-top: var(--xl);
  max-width: 540px;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

/* ======================================================
   § 8 — FREE TRIAL BANNER (FreeTrialBanner)
====================================================== */
.free-trial {
  background: var(--accent);
  padding: var(--xxxl) 0;
}
.free-trial-inner { text-align: center; }
.free-trial .display {
  color: var(--white);
  margin-bottom: var(--xl);
}
.free-trial-body {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--xl);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================================================
   SITE FOOTER
====================================================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--xxl) 0 var(--xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--xxl);
  margin-bottom: var(--xxl);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--xl); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-mark {
  font-family: var(--f-heading);
  font-size: 1.125rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: var(--md);
}
.footer-tagline {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: var(--lg);
  max-width: 200px;
  line-height: 1.5;
}
.footer-col-heading {
  font-family: var(--f-heading);
  font-size: 0.625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--md);
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--xs);
}
.footer-nav a {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  text-decoration: none;
  transition: color 120ms;
}
.footer-nav a:hover { color: var(--accent); }

/* WordPress footer menu reset */
.footer-nav-wrap ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--xs);
  margin: 0;
  padding: 0;
}
.footer-nav-wrap ul li { margin: 0; padding: 0; }
.footer-nav-wrap ul li a {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  text-decoration: none;
  transition: color 120ms;
}
.footer-nav-wrap ul li a:hover { color: var(--accent); }

.footer-address {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-top: var(--lg);
}
.footer-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: var(--lg);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--md);
}
.footer-legal {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: var(--lg);
}
.footer-social a {
  font-family: var(--f-heading);
  font-size: 0.625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 120ms;
}
.footer-social a:hover { color: var(--text); }

/* ── Interior page content ── */
.page-content {
  padding: var(--xxl) 0;
  max-width: var(--read-max);
}
.page-content h1,
.page-content h2,
.page-content h3 {
  font-family: var(--f-heading);
  font-style: normal;
  margin-bottom: var(--md);
  margin-top: var(--xl);
}
.page-content p { margin-bottom: var(--md); }
.page-content a { color: var(--accent); }

/* ── Spacing utilities ── */
.mt-sm  { margin-top: var(--sm);  }
.mt-md  { margin-top: var(--md);  }
.mt-lg  { margin-top: var(--lg);  }
.mt-xl  { margin-top: var(--xl);  }
.mt-xxl { margin-top: var(--xxl); }
.mb-sm  { margin-bottom: var(--sm);  }
.mb-md  { margin-bottom: var(--md);  }
.mb-lg  { margin-bottom: var(--lg);  }
.mb-xl  { margin-bottom: var(--xl);  }

/* =======================================================
   INTERIOR PAGES — new components (About, Blog, Shop, Contact)
   Added: 2026-04-29
   ======================================================= */

/* ── PageHero (shared across all interior pages) ── */
.page-hero { padding: var(--xxl) 0; border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 820px; }
.page-hero-headline { margin-top: var(--md); margin-bottom: var(--md); color: var(--ink); }
.page-hero-dek { max-width: 480px; color: var(--text); }

/* ── SectionCta (shared) ── */
.section-cta { background: var(--surface); border-top: 1px solid var(--border); }
.section-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--xl);
  flex-wrap: wrap;
}
.section-cta-text {
  font-family: var(--f-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-cta-sub {
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-top: var(--xs);
}

/* ── BioBlock (About page) ── */
.bio-section { background: var(--bg); }
.bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--xxl);
  align-items: start;
}
@media (max-width: 900px) { .bio-grid { grid-template-columns: 1fr; } }
.bio-block { max-width: var(--read-max); }
.bio-block p + p { margin-top: var(--lg); }
.bio-photo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--xl);
}
.bio-photo-note {
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}
.credibility-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--xs) var(--md);
  margin-top: var(--xl);
}
.credibility-item {
  font-family: var(--f-heading);
  font-size: .6875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}
.credibility-sep { color: var(--border); font-style: normal; }

/* ── PhilosophyCards (About page) ── */
.philosophy-section { background: var(--surface); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg);
  margin-top: var(--xxl);
}
@media (max-width: 768px) { .philosophy-grid { grid-template-columns: 1fr; } }
.philosophy-card { border-top: 2px solid var(--divider); padding-top: var(--lg); }
.philosophy-number { font-family: var(--f-mono); font-size: .75rem; color: var(--muted); margin-bottom: var(--sm); }
.philosophy-rule {
  font-family: var(--f-heading);
  font-size: 1.125rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: var(--md);
}
.philosophy-body {
  font-family: var(--f-body);
  font-size: .9375rem;
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
}

/* ── Timeline (About page) ── */
.timeline-section { background: var(--bg); }
.timeline { border-top: 1px solid var(--divider); margin-top: var(--xxl); }
.timeline-item {
  display: flex;
  gap: var(--xxl);
  padding: var(--lg) 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (max-width: 600px) { .timeline-item { flex-direction: column; gap: var(--xs); } }
.timeline-year { font-family: var(--f-mono); font-size: .875rem; color: var(--muted); flex-shrink: 0; min-width: 60px; }
.timeline-desc { font-family: var(--f-body); font-size: 1rem; font-weight: 300; font-style: italic; color: var(--text); line-height: 1.5; }
.timeline-desc strong { font-style: normal; font-weight: 600; }

/* ── Blog Archive ── */
.blog-archive-section { background: var(--bg); }

/* FeaturedPostCard */
.featured-post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--xxl);
  margin-bottom: var(--xxl);
}
.featured-post-meta {
  display: flex;
  align-items: center;
  gap: var(--lg);
  margin-bottom: var(--lg);
}
.featured-post-title { color: var(--ink); margin-bottom: var(--md); }
.featured-post-excerpt {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: var(--xl);
}

/* PostList / PostRow */
.post-list { border-top: 1px solid var(--divider); }
.post-row {
  display: flex;
  align-items: baseline;
  gap: var(--xl);
  padding: var(--lg) 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 120ms;
}
.post-row:hover { opacity: .7; }
.post-row-meta {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 160px;
  line-height: 1.4;
}
.post-row-title {
  font-family: var(--f-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -.01em;
  color: var(--ink);
  flex: 1;
}
.post-row-read-time {
  font-family: var(--f-mono);
  font-size: .6875rem;
  color: var(--muted);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .post-row { flex-direction: column; gap: var(--xs); }
  .post-row-read-time { display: none; }
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sm);
  margin-top: var(--xxl);
}
.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-family: var(--f-heading);
  font-size: .75rem;
  font-weight: 700;
  font-style: normal;
  color: var(--text);
  text-decoration: none;
  transition: border-color 120ms, background 120ms;
}
.pagination-item:hover { border-color: var(--ink); }
.pagination-item.current { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pagination-ellipsis {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--muted);
  padding: 0 var(--xs);
}

/* ── Blog Single ── */
.blog-single-section { background: var(--bg); }

/* ArticleHeader */
.article-header { max-width: var(--read-max); margin-bottom: var(--xxl); }
.article-meta {
  display: flex;
  align-items: center;
  gap: var(--lg);
  margin-bottom: var(--lg);
}
.article-title { color: var(--ink); margin-bottom: var(--md); }
.article-dek {
  font-family: var(--f-body);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* ArticleBody */
.article-body { max-width: var(--read-max); }
.article-body p { margin-bottom: var(--lg); }
.article-body p + h2,
.article-body p + h3 { margin-top: var(--xl); }

/* PullQuote */
.pull-quote {
  border-left: 3px solid var(--ink);
  padding: var(--lg) var(--xl);
  margin: var(--xxl) 0;
}
.pull-quote-text {
  font-family: var(--f-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.2;
}
.pull-quote-attr {
  font-family: var(--f-mono);
  font-size: .6875rem;
  color: var(--muted);
  margin-top: var(--md);
}

/* FigureBlock */
.figure-block { margin: var(--xxl) 0; }
.figure-img-placeholder {
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.figure-caption {
  font-family: var(--f-body);
  font-size: .875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-top: var(--sm);
  padding-left: var(--xs);
}

/* AuthorCard */
.author-card {
  display: flex;
  align-items: flex-start;
  gap: var(--lg);
  padding: var(--xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: var(--xxl) 0;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-name {
  font-family: var(--f-heading);
  font-size: .875rem;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
  margin-bottom: var(--xxs);
}
.author-bio {
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* RelatedPosts */
.related-posts-section { background: var(--surface); }
.related-heading {
  font-family: var(--f-heading);
  font-size: .625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--xl);
}

/* ── Shop Catalogue ── */
.shop-catalogue-section { background: var(--bg); }

/* ShopHeader */
.shop-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--xxl);
  align-items: end;
  padding-bottom: var(--xxl);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--xxl);
}
@media (max-width: 768px) { .shop-header-grid { grid-template-columns: 1fr; } }
.shop-header-desc {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  max-width: 400px;
}

/* ShopFeatured */
.shop-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--xxl);
  align-items: stretch;
  margin-bottom: var(--xxl);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .shop-featured { grid-template-columns: 1fr; } }
.shop-featured-img {
  background: var(--surface);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-featured-card {
  padding: var(--xxl) var(--xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shop-featured-tag { margin-bottom: var(--md); }
.shop-featured-title { color: var(--ink); margin-bottom: var(--md); }
.shop-featured-desc {
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: var(--xl);
  flex: 1;
}
.shop-price-display {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--xs);
}
.shop-price-note {
  font-family: var(--f-body);
  font-size: .8125rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: var(--lg);
}
.btn-full { width: 100%; justify-content: center; }

/* GearSection */
.gear-section { background: var(--surface); }
.gear-placeholder {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: var(--xxl);
  text-align: center;
  margin-top: var(--xxl);
}
.gear-placeholder-label {
  font-family: var(--f-body);
  font-size: .875rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-top: var(--sm);
}

/* ── Shop Single ── */
.shop-single-section { background: var(--bg); }

/* ProductDetail */
.product-detail-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: var(--xxl);
  align-items: start;
}
@media (max-width: 900px) { .product-detail-grid { grid-template-columns: 1fr; } }
.product-gallery {
  position: sticky;
  top: 80px;
}
.product-gallery-main {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--xs);
  margin-top: var(--sm);
}
.product-gallery-thumb {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.product-info { padding-top: var(--sm); }
.product-eyebrow { margin-bottom: var(--sm); }
.product-title { color: var(--ink); margin-bottom: var(--md); }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--md);
  margin-bottom: var(--xl);
  padding-bottom: var(--xl);
  border-bottom: 1px solid var(--border);
}
.product-price {
  font-family: var(--f-heading);
  font-size: 2.25rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -.03em;
  color: var(--ink);
}
.product-price-period {
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
}
.product-features { list-style: none; margin-bottom: var(--xl); }
.product-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sm);
  padding: var(--sm) 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
}
.product-feature::before {
  content: '—';
  font-family: var(--f-heading);
  font-size: .6875rem;
  font-style: normal;
  color: var(--muted);
  flex-shrink: 0;
  padding-top: .2em;
}
.product-trial-note {
  font-family: var(--f-body);
  font-size: .875rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  margin-top: var(--md);
}
.product-alt-price {
  text-align: center;
  margin-top: var(--xs);
  font-family: var(--f-body);
  font-size: .875rem;
  font-style: italic;
  color: var(--muted);
}
.product-alt-link {
  color: inherit;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  padding-bottom: 1px;
  transition: border-color 120ms;
}
.product-alt-link:hover { border-color: currentColor; }

/* ── Contact ── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--xxl);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ContactForm */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--lg); }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-field { margin-bottom: var(--lg); }
.form-label {
  display: block;
  font-family: var(--f-heading);
  font-size: .6875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--xs);
}
.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  transition: border-color 150ms ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--ink); }
.form-textarea { min-height: 160px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit { width: 100%; justify-content: center; }

/* LocationBlock */
.location-block {
  padding: var(--xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.location-section { margin-bottom: var(--xl); }
.location-section:last-child { margin-bottom: 0; }
.location-heading {
  font-family: var(--f-heading);
  font-size: .625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sm);
}
.location-body {
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
}
.location-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 120ms;
}
.location-link:hover { border-color: currentColor; }
.location-divider { border: none; border-top: 1px solid var(--border); margin: var(--xl) 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-body);
  font-size: .875rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  padding: .3125rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-style: normal; font-weight: 400; }
.location-social { display: flex; gap: var(--lg); }
.location-social a {
  font-family: var(--f-heading);
  font-size: .625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 120ms;
}
.location-social a:hover { color: var(--text); }

/* MapPlaceholder */
.map-section { padding: 0; }
.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    var(--border) 20px,
    var(--border) 21px
  );
}
.map-placeholder-label {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--lg) var(--xl);
}
.map-address {
  font-family: var(--f-heading);
  font-size: 1.125rem;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
  margin-top: var(--xs);
}
