/* ============================================
   SOVEREIGN — Hugo Theme CSS
   Sovereign Self Health
   ============================================ */

/* ============================================
   FONTS — Self-hosted
   ============================================ */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/barlow-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/barlow-condensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/barlow-condensed-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/barlow-condensed-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Share Tech Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/share-tech-mono-400.woff2') format('woff2');
}

/* ============================================
   VARIABLES
   ============================================ */
:root {
  --bg:            #f2f0eb;
  --bg-2:          #e8e4dc;
  --bg-3:          #ffffff;
  --text:          #1a1a1a;
  --text-muted:    #5a5a5a;
  --text-light:    #8a8a8a;
  --accent:        #8B0000;
  --accent-hover:  #6d0000;
  --border:        #d0ccc4;
  --border-light:  #e0dcd6;

  --font-head:     'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --font-mono:     'Share Tech Mono', monospace;

  --container:     1100px;
  --radius:        2px;

  --space-xs:      8px;
  --space-s:       16px;
  --space-m:       32px;
  --space-l:       64px;
  --space-xl:      96px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--accent-hover); }

ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--text);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(32px, 4vw, 60px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: 20px; }

p { color: var(--text-muted); line-height: 1.75; }

strong { color: var(--text); font-weight: 600; }

em { font-style: italic; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-m);
}

.narrow { max-width: 740px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

/* ============================================
   COMPONENTS
   ============================================ */

/* Section eyebrow / label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-s);
}

.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
}

/* Story / timeline label (no underline decoration) */
.story-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Section intro paragraph */
.section-intro {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: var(--space-l);
  line-height: 1.7;
}

/* Section rule divider */
.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Pull quote */
.pullquote {
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--bg-2);
}

.pullquote p {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none !important;
}

.btn-primary:hover { background: var(--accent-hover); color: #fff !important; }

.btn-ghost {
  display: inline-block;
  color: var(--text-muted) !important;
  padding: 14px 0;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none !important;
}

.btn-ghost:hover {
  color: var(--text) !important;
  border-color: var(--text);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-muted) !important;
  padding: 13px 30px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none !important;
  transition: all 0.2s;
  margin-top: 8px;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--text);
  color: var(--text) !important;
}

/* Symptom list */
.symptom-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: var(--space-m);
}

.symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
}

.symptom-list li::before {
  content: '//';
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Credential badges */
.cred-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-m);
}

.cred-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.site-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-m);
  height: 64px;
  max-width: var(--container);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.site-logo:hover { color: var(--text); }

.site-logo-bracket {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
}

.site-logo-text { color: var(--text); }

.site-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  list-style: none;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--accent-hover); color: #fff !important; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.2s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--space-m);
}

.mobile-nav .nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  list-style: none;
}

.mobile-nav .nav a {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.mobile-cta {
  display: inline-block;
  margin-top: var(--space-s);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: var(--space-xl) 0 var(--space-l);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-m);
}

.hero-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.hero-title { margin-bottom: var(--space-m); }
.hero-accent { color: var(--accent); }

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: var(--space-s);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  flex-wrap: wrap;
  margin-top: var(--space-l);
}

/* ============================================
   WHO THIS IS FOR
   ============================================ */
.for-section {
  padding: var(--space-l) 0;
}

.for-left h2 { margin-bottom: var(--space-m); }
.for-left p { margin-bottom: var(--space-s); }

/* ============================================
   KYLE SECTION
   ============================================ */
.kyle-section {
  padding: var(--space-l) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.kyle-left h2 { margin-bottom: 0; }

.kyle-stat {
  border-top: 1px solid var(--border);
  padding-top: var(--space-m);
  margin-top: var(--space-m);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.kyle-right p { margin-bottom: var(--space-s); }
.kyle-right .btn-primary { margin-top: var(--space-m); }

/* ============================================
   DRESS PROTOCOL
   ============================================ */
.dress-section {
  padding: var(--space-l) 0;
}

.dress-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-s);
  margin-top: var(--space-l);
}

.dress-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: var(--space-m);
  border-radius: var(--radius);
}

.dress-letter {
  display: block;
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.dress-card h3 { font-size: 18px; margin-bottom: var(--space-xs); }
.dress-card p { font-size: 14px; line-height: 1.6; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-section {
  padding: var(--space-l) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.table-wrap {
  overflow-x: auto;
  margin-top: var(--space-l);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-2);
}

.compare-table th.col-ssh { color: var(--accent); }

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  background: var(--bg-3);
}

.compare-table td.col-label {
  font-weight: 600;
  color: var(--text);
  background: var(--bg-2);
}

.compare-table td.col-ssh {
  color: var(--text);
  font-weight: 600;
}

.compare-table td.col-ssh::before {
  content: '✓ ';
  color: var(--accent);
  font-family: var(--font-mono);
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-section {
  padding: var(--space-l) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
  margin-top: var(--space-l);
  position: relative;
}

.process-steps-4 {
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  padding-top: var(--space-l);
}

.step-num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--bg);
  padding-right: var(--space-xs);
}

.process-step h3 { font-size: 22px; margin-bottom: var(--space-xs); }
.process-body { font-size: 15px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: var(--space-l) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  margin-bottom: var(--space-s);
}

.newsletter-title em {
  color: var(--accent);
  font-style: normal;
}

.newsletter-inner p {
  margin-bottom: var(--space-m);
  font-size: 17px;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-s);
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-3);
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  min-width: 0;
}

.newsletter-input::placeholder { color: var(--text-light); }

.newsletter-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-btn:hover { background: var(--accent-hover); }

.newsletter-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0 !important;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: var(--space-l) 0;
}

.faq-list {
  max-width: 800px;
  border-top: 1px solid var(--border);
  margin-top: var(--space-l);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-m) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  text-align: left;
  gap: var(--space-m);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-question::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: var(--space-m);
}

.faq-answer p { font-size: 16px; line-height: 1.75; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--space-xl) 0;
  text-align: center;
}

.final-cta h2 { margin-bottom: var(--space-s); }

.final-cta p {
  font-size: 18px;
  margin-bottom: var(--space-l);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: var(--space-l) 0;
  background: var(--bg);
}

.page-hero-title { margin-bottom: var(--space-m); }

.page-hero-sub {
  font-size: 18px;
  max-width: 640px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-s);
}

/* ============================================
   GENERIC PAGE SECTION PADDING
   ============================================ */
.page-section { padding: var(--space-l) 0; }

/* ============================================
   STATS GRID (about page)
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: var(--space-l) 0;
  border: 1px solid var(--border);
}

.stat-item {
  padding: 28px 24px;
  background: var(--bg-3);
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item .stat-num {
  font-size: 64px;
  display: block;
}

.stat-item .stat-label {
  display: block;
  line-height: 1.4;
}

/* ============================================
   SERVICE CARDS (work with me)
   ============================================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
  margin-top: var(--space-l);
}

.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: 36px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card-featured { border-top-color: var(--accent); }

.card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.card-price {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.card-price strong {
  color: var(--text);
  font-size: 28px;
}

.card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.card-includes {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.card-includes li::before {
  content: '//';
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 12px;
  background: var(--bg);
  border-left: 2px solid var(--border);
}

/* ============================================
   INCLUDES GRID (work with me)
   ============================================ */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: var(--space-l);
  border: 1px solid var(--border);
}

.include-item {
  padding: 28px 24px;
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.include-item:nth-child(3n) { border-right: none; }
.include-item:nth-last-child(-n+3) { border-bottom: none; }

.include-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.include-item h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.include-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CAPACITY BOX (work with me)
   ============================================ */
.capacity-box {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  margin-top: var(--space-l);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}

.capacity-box h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.capacity-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 640px;
}

/* ============================================
   POST FEED (article list)
   ============================================ */
.post-feed-section { padding: var(--space-l) 0; }

.post-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

.post-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-m);
}

.post-card-content { flex: 1; display: flex; flex-direction: column; }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-bottom: var(--space-xs);
}

.post-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.post-card-read-time {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.post-card-link { text-decoration: none; }

.post-card-title {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: var(--space-xs);
  transition: color 0.2s;
}

.post-card-link:hover .post-card-title { color: var(--accent); }

.post-card-excerpt {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: var(--space-s);
  flex: 1;
}

.post-card-cta {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
}

/* ============================================
   SINGLE POST
   ============================================ */
.post-header {
  padding: var(--space-l) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.post-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: var(--space-s);
}

.post-title { margin-bottom: var(--space-s); }

.post-excerpt {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: var(--space-m);
  line-height: 1.6;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.post-content-wrap { padding: var(--space-l) 0; }

.post-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 720px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--text);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.post-content p { margin-bottom: 1.5em; }
.post-content strong { color: var(--text); }

.post-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.post-content a:hover { border-color: var(--accent); }

.post-content ul,
.post-content ol {
  margin-bottom: 1.5em;
  padding-left: var(--space-m);
}

.post-content ul li {
  list-style: none;
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.post-content ul li::before {
  content: '//';
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 4px;
}

.post-content ol li {
  list-style: decimal;
  margin-bottom: 8px;
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: var(--space-s) var(--space-m);
  margin: var(--space-m) 0;
  background: var(--bg-2);
}

.post-content blockquote p {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  font-style: normal;
  margin-bottom: 0;
}

.post-content pre {
  background: var(--text);
  color: var(--bg);
  padding: var(--space-m);
  border-radius: var(--radius);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  margin-bottom: 1.5em;
}

.post-content code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--accent);
}

.post-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-l) 0;
}

.post-content img {
  border-radius: var(--radius);
  margin: var(--space-m) 0;
}

/* Post tags */
.post-tags {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.post-tags-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.post-tag-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.post-tag-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.post-subscribe {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-l) 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-foot {
  border-top: 1px solid var(--border);
  padding: var(--space-l) 0;
}

.site-foot-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-m);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-l);
  align-items: start;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.foot-logo-text { color: var(--text-muted); }

.foot-nav .nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  list-style: none;
}

.foot-nav .nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.foot-nav .nav a:hover { color: var(--accent); }

.foot-right { text-align: right; }

.foot-location {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.foot-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  max-width: 400px;
  line-height: 1.5;
  margin-bottom: var(--space-xs);
  margin-left: auto;
}

.foot-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.section-raised {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inset {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-accent {
  background: var(--accent);
  border-top: none;
  border-bottom: none;
}

.section-accent h2,
.section-accent p {
  color: rgba(255,255,255,0.9);
}

.section-accent .btn-primary {
  background: #fff;
  color: var(--accent) !important;
}

.section-accent .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

.section-dark {
  background: #111;
  padding: var(--space-l) 0;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
  color: rgba(255,255,255,0.8);
}

.section-dark .section-label { color: var(--accent); }
.section-dark strong { color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .dress-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }

  .site-head-inner { padding: 0 var(--space-s); }
  .site-nav, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero { padding: var(--space-l) 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .dress-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps-4 { grid-template-columns: 1fr; }
  .post-feed { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .includes-grid { grid-template-columns: 1fr; }
  .include-item { border-right: none; }

  .site-foot-inner { grid-template-columns: 1fr; gap: var(--space-m); }
  .foot-right { text-align: left; }
  .foot-disclaimer { margin-left: 0; }

  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }

  .capacity-box { padding: 24px; }
}

@media (max-width: 480px) {
  .dress-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; text-align: center; padding: 14px; }
}
