@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --color-slate: #1F2937;
  --color-off-white: #F9F8F6;
  --color-white: #FFFFFF;
  --color-rust: #D4704F;
  --color-charcoal: #374151;
  --color-gray: #6B7280;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --fs-h1: 3.5rem; --fs-h2: 2.5rem; --fs-h3: 1.875rem; --fs-h4: 1.25rem;
  --fs-body: 1rem; --fs-small: 0.875rem;
  --lh-tight: 1.1; --lh-heading: 1.15; --lh-relaxed: 1.2; --lh-body: 1.6; --lh-compact: 1.5;
  --ls-tight: -0.02em; --ls-snug: -0.015em; --ls-normal: 0; --ls-loose: 0.01em;
  --max-width: 1100px; --content-width: 720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body); color: var(--color-slate); background: var(--color-white); letter-spacing: var(--ls-loose); }

h1,h2,h3,h4 { font-family: var(--font-heading); color: var(--color-slate); }
h1 { font-size: var(--fs-h1); font-weight: 500; line-height: var(--lh-tight); letter-spacing: var(--ls-tight); }
h2 { font-size: var(--fs-h2); font-weight: 600; line-height: var(--lh-heading); letter-spacing: var(--ls-snug); }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: var(--lh-relaxed); }
h4 { font-size: var(--fs-h4); font-weight: 500; line-height: 1.25; letter-spacing: 0.01em; }
p { margin-bottom: 1rem; } p:last-child { margin-bottom: 0; }
a { color: var(--color-rust); text-decoration: none; } a:hover { text-decoration: underline; }
small { font-size: var(--fs-small); line-height: var(--lh-compact); }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.content-narrow { max-width: var(--content-width); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }

/* Nav */
.site-header { background: var(--color-white); border-bottom: 1px solid rgba(55,65,81,0.12); position: sticky; top: 0; z-index: 100; }
.site-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; max-width: var(--max-width); margin: 0 auto; }
.site-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 500; color: var(--color-slate); text-decoration: none; line-height: 1; letter-spacing: 0; }
.site-logo:hover { text-decoration: none; }
.site-logo img { height: 52px; width: auto; display: block; flex-shrink: 0; }
.site-logo span { display: block; font-weight: 500 !important; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: var(--fs-small); font-weight: 500; color: var(--color-charcoal); letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--color-rust); }
.nav-cta { font-size: var(--fs-small) !important; padding: 8px 18px; background: var(--color-rust); color: var(--color-white) !important; border-radius: 4px; font-weight: 600 !important; text-transform: none !important; letter-spacing: 0 !important; }
.nav-cta:hover { background: #c4622a; color: var(--color-white) !important; text-decoration: none !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-right: -8px; color: var(--color-rust); }
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }

/* Buttons */
.btn-primary { display: inline-block; padding: 12px 30px; background: var(--color-rust); color: var(--color-white); font-family: var(--font-body); font-size: var(--fs-body); font-weight: 600; text-decoration: none; border-radius: 4px; border: none; cursor: pointer; transition: background 0.15s, box-shadow 0.15s; }
.btn-primary:hover { background: #c4622a; box-shadow: 0 2px 8px rgba(0,0,0,0.15); text-decoration: none; color: var(--color-white); }
.btn-primary:disabled { background: var(--color-gray); cursor: not-allowed; }
.btn-secondary { display: inline-block; padding: 11px 28px; background: transparent; color: var(--color-slate); font-family: var(--font-body); font-size: var(--fs-body); font-weight: 600; text-decoration: none; border-radius: 4px; border: 1.5px solid var(--color-charcoal); cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.btn-secondary:hover { border-color: var(--color-rust); color: var(--color-rust); text-decoration: none; }

/* Hero */
.hero { min-height: 560px; display: flex; align-items: center; background-color: var(--color-slate); background-size: cover; background-position: center; position: relative; }
.hero-overlay { position: absolute; inset: 0; background: rgba(31,41,55,0.65); }
.hero-content { position: relative; z-index: 1; color: var(--color-white); max-width: 680px; }
.hero-content h1 { color: var(--color-white); margin-bottom: 20px; }
.hero-content p { font-size: 1.125rem; opacity: 0.9; margin-bottom: 32px; max-width: 520px; }

/* Quiz */
.quiz-page { min-height: 100vh; background: var(--color-off-white); }
.quiz-hero { background: var(--color-slate); padding: 56px 24px 48px; text-align: center; color: var(--color-white); }
.quiz-hero h1 { color: var(--color-white); font-size: 2.5rem; margin-bottom: 10px; }
.quiz-hero p { color: rgba(255,255,255,0.82); font-size: 1.0625rem; }
.quiz-wrapper { max-width: 620px; margin: 0 auto; padding: 48px 24px; }
.quiz-progress-bar { width: 100%; height: 6px; background: rgba(0,0,0,0.1); border-radius: 3px; margin-bottom: 36px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--color-rust); border-radius: 3px; transition: width 0.3s ease; }
.quiz-question { display: none; }
.quiz-question.active { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.quiz-question h2 { font-size: 1.75rem; margin-bottom: 8px; }
.quiz-help { font-size: var(--fs-small); color: var(--color-gray); margin-bottom: 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.quiz-option { width: 100%; padding: 14px 20px; font-family: var(--font-body); font-size: var(--fs-body); color: var(--color-slate); background: var(--color-white); border: 1px solid rgba(55,65,81,0.25); border-radius: 4px; text-align: left; cursor: pointer; transition: border-color 0.15s, background 0.15s; line-height: 1.45; }
.quiz-option:hover { border-color: var(--color-rust); background: var(--color-off-white); }
.quiz-option.selected { border: 2px solid var(--color-rust); background: var(--color-off-white); font-weight: 500; }
details.quiz-expand { margin-bottom: 16px; border: 1px solid rgba(55,65,81,0.15); border-radius: 4px; overflow: hidden; }
details.quiz-expand summary { padding: 10px 16px; font-size: var(--fs-small); color: var(--color-rust); cursor: pointer; font-weight: 500; list-style: none; background: var(--color-white); user-select: none; }
details.quiz-expand summary::-webkit-details-marker { display: none; }
details.quiz-expand > div { padding: 16px; font-size: var(--fs-small); background: var(--color-off-white); color: var(--color-charcoal); }
details.quiz-expand > div p { margin-bottom: 8px; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(55,65,81,0.1); margin-top: 8px; }
.quiz-nav-back { background: none; border: none; color: var(--color-gray); font-family: var(--font-body); font-size: var(--fs-small); cursor: pointer; padding: 4px 0; transition: color 0.15s; }
.quiz-nav-back:hover { color: var(--color-rust); }
.quiz-nav-back:disabled { opacity: 0.3; cursor: default; }
.quiz-step { font-size: var(--fs-small); color: var(--color-gray); }

/* Result screen */
.quiz-result { display: none; }
.quiz-result.active { display: block; animation: fadeIn 0.25s ease; }
.result-heading { font-size: 2rem; margin-bottom: 8px; }
.result-sub { color: var(--color-gray); margin-bottom: 32px; font-size: var(--fs-small); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.spec-cell { background: var(--color-white); border: 1px solid rgba(55,65,81,0.15); border-radius: 4px; padding: 12px 16px; }
.spec-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-gray); margin-bottom: 4px; }
.spec-value { font-size: var(--fs-body); font-weight: 600; color: var(--color-slate); }
.email-cta-box { background: var(--color-slate); border-radius: 8px; padding: 32px; text-align: center; color: var(--color-white); }
.email-cta-box h3 { color: var(--color-white); font-size: var(--fs-h3); margin-bottom: 8px; }
.email-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.email-input-row { display: flex; gap: 10px; max-width: 440px; margin: 0 auto 12px; }
.email-input-row input { flex: 1; padding: 12px 16px; font-family: var(--font-body); font-size: var(--fs-body); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; background: rgba(255,255,255,0.1); color: var(--color-white); outline: none; }
.email-input-row input::placeholder { color: rgba(255,255,255,0.45); }
.email-input-row input:focus { border-color: var(--color-rust); }
.email-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.email-sent-msg { color: #6EE7B7; font-weight: 600; margin-top: 12px; display: none; }
.email-error-msg { color: #FCA5A5; font-size: var(--fs-small); margin-top: 8px; display: none; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { border: 1px solid rgba(55,65,81,0.12); border-radius: 6px; overflow: hidden; background: var(--color-white); transition: box-shadow 0.15s, transform 0.15s; }
.post-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.post-card-body { padding: 20px; }
.post-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-rust); margin-bottom: 8px; }
.post-header-meta .post-tag { margin-bottom: 0; }
.post-card-meta .post-tag { margin-bottom: 0; }
.post-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.post-card h3 a { color: var(--color-slate); text-decoration: none; }
.post-card h3 a:hover { color: var(--color-rust); }
.post-card p { font-size: var(--fs-small); color: var(--color-charcoal); }
.post-meta { font-size: 0.75rem; color: var(--color-gray); margin-top: 12px; }
.post-article { padding: 60px 0; }
.post-article h1 { font-size: 2.75rem; margin-bottom: 16px; }
.post-article .post-meta { margin-bottom: 40px; color: var(--color-gray); }
.post-article h2 { font-size: 1.75rem; margin: 40px 0 16px; }
.post-article h3 { font-size: 1.375rem; margin: 32px 0 12px; }
.post-article p, .post-article li { margin-bottom: 16px; }
.post-article ul, .post-article ol { margin: 0 0 20px 24px; }
.kit-price-note { font-size: 0.85rem; color: var(--color-slate); margin-top: -6px; }
.kit-compatibility-note { margin-top: 40px; }
.cta-box { background: var(--color-off-white); border-left: 4px solid var(--color-rust); border-radius: 0 6px 6px 0; padding: 24px 28px; margin: 40px 0; }
.cta-box h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cta-box p { margin-bottom: 16px; }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.product-card { border: 1px solid rgba(55,65,81,0.15); border-radius: 6px; background: var(--color-white); overflow: hidden; transition: box-shadow 0.15s; display: flex; flex-direction: column; position: relative; }
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.product-card-image { background: #f8f8f8; display: flex; align-items: center; justify-content: center; padding: 16px; }
.product-card-image img { max-width: 100%; max-height: 160px; object-fit: contain; }
.product-card.has-image { padding: 0; }
.product-card.has-image .product-card-body { padding: 16px 20px 20px; }
.product-card.has-image .product-card-badge { padding: 12px 20px 0; }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.badge-featured { font-size: 0.65rem; font-weight: 600; color: #b8860b; background: rgba(184,134,11,0.1); padding: 2px 8px; border-radius: 3px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.04em; display: inline-block; }
.product-name { font-size: var(--fs-body); font-weight: 600; margin-bottom: 6px; font-family: var(--font-body); }
.product-description { font-size: var(--fs-small); color: var(--color-charcoal); margin-bottom: 8px; }
.product-price { font-size: var(--fs-small); font-weight: 600; color: var(--color-slate); margin-bottom: 8px; }
.product-note { font-size: 0.75rem; color: var(--color-gray); font-style: italic; margin-bottom: 12px; }
.product-link { font-size: var(--fs-small); font-weight: 600; color: var(--color-rust); text-decoration: none; white-space: normal; }
.product-link:hover { text-decoration: underline; }

/* Capacity ribbon (diagonal, top-right corner of cards) */
.product-ribbon { position: absolute; top: 14px; right: -30px; background: var(--color-rust); color: #fff; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 36px; transform: rotate(45deg); z-index: 2; box-shadow: 0 1px 3px rgba(0,0,0,0.15); pointer-events: none; }

/* Capacity pill (inline, for list items) */
.product-cap-pill { font-size: 0.6rem; font-weight: 600; color: var(--color-rust); background: rgba(180,80,40,0.08); padding: 2px 8px; border-radius: 3px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.04em; }

/* Product grid: 3-column standard variant */
.product-grid--3col { grid-template-columns: repeat(3,1fr); }

/* Product list: compact browsable rows */
.product-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(55,65,81,0.15); border-radius: 6px; overflow: hidden; }
.product-list-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--color-white); border-bottom: 1px solid rgba(55,65,81,0.08); transition: background 0.15s; }
.product-list-item:last-child { border-bottom: none; }
.product-list-item:hover { background: rgba(55,65,81,0.02); }
.product-list-image { width: 64px; height: 64px; flex-shrink: 0; background: #f8f8f8; border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-list-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-list-image--empty { background: #f0f0f0; }
.product-list-body { flex: 1; min-width: 0; }
.product-list-header { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; margin-bottom: 2px; }
.product-list-name { font-size: var(--fs-small); font-weight: 600; margin: 0; font-family: var(--font-body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; flex-shrink: 1; }
.product-list-desc { font-size: 0.75rem; color: var(--color-gray); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-list-action { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.product-list-action .product-link { font-size: 0.75rem; padding: 8px 14px; max-width: 96px; text-align: center; line-height: 1.3; }
.product-list-price { font-size: var(--fs-small); font-weight: 600; color: var(--color-slate); white-space: nowrap; }
.badge-featured--small { font-size: 0.6rem; padding: 1px 6px; border-radius: 3px; white-space: nowrap; }

@media (max-width: 768px) {
  .product-grid--3col { grid-template-columns: repeat(2,1fr); }
  .product-list-item { flex-wrap: wrap; }
  .product-list-action { width: 100%; justify-content: space-between; padding-top: 8px; }
}
@media (max-width: 540px) {
  .product-grid--3col { grid-template-columns: 1fr; }
  .product-list-desc { white-space: normal; }
}

/* Homepage */
.home-hero { background: var(--color-slate) url('/assets/images/home-hero.jpg') center 30% / cover no-repeat; padding: 100px 24px 88px; text-align: center; }
.home-hero-inner { max-width: 680px; margin: 0 auto; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-white); margin-bottom: 20px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.home-hero h1 { color: var(--color-white); font-size: 3.75rem; margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.btn-hero { padding: 16px 40px; font-size: 1.0625rem; }
.hero-note { font-size: var(--fs-small); color: rgba(255,255,255,0.72); margin-top: 14px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.how-it-works { background: var(--color-off-white); }
.hiw-inner { max-width: var(--max-width); margin: 0 auto; padding: 72px 24px; text-align: center; }
.hiw-inner h2 { margin-bottom: 48px; }
.hiw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; text-align: left; }
.hiw-step { background: var(--color-white); border-radius: 8px; padding: 28px; }
.hiw-step-num { width: 36px; height: 36px; background: var(--color-rust); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; margin-bottom: 16px; font-family: var(--font-body); }
.hiw-step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.hiw-step p { font-size: var(--fs-small); color: var(--color-charcoal); margin: 0; }
.report-preview { background: var(--color-white); }
.report-preview-inner { max-width: var(--max-width); margin: 0 auto; padding: 72px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.report-preview-text h2 { margin-bottom: 16px; }
.report-preview-text p { color: var(--color-charcoal); margin-bottom: 20px; }
.report-features { list-style: none; margin: 0 0 28px; }
.report-features li { padding: 8px 0 8px 20px; position: relative; font-size: var(--fs-small); color: var(--color-charcoal); border-bottom: 1px solid rgba(55,65,81,0.08); }
.report-features li::before { content: '→'; position: absolute; left: 0; color: var(--color-rust); font-weight: 600; }
.spec-preview-card { background: var(--color-off-white); border-radius: 8px; padding: 28px; border: 1px solid rgba(55,65,81,0.1); }
.spec-preview-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-gray); margin-bottom: 16px; }
.spec-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.founder-note { background: var(--color-slate) url('/assets/images/founder-bg.jpg') center / cover no-repeat; position: relative; }
.founder-note::before { content: ''; position: absolute; inset: 0; background: rgba(19,28,40,0.88); }
.founder-note-inner { max-width: var(--content-width); margin: 0 auto; padding: 72px 24px; text-align: center; position: relative; z-index: 1; }
.founder-logo { width: 140px; height: 140px; display: block; margin: 0 auto 36px; }
.founder-note blockquote p { font-family: var(--font-heading); font-size: 1.375rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.55; margin-bottom: 24px; }
.founder-note blockquote cite { font-size: var(--fs-small); color: rgba(255,255,255,0.45); font-style: normal; }
.home-blog { background: var(--color-off-white); }
.home-blog-inner { max-width: var(--max-width); margin: 0 auto; padding: 72px 24px; }
.home-blog-inner h2 { margin-bottom: 36px; }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.post-grid-home { margin-bottom: 28px; }
.post-card { background: var(--color-white); border: 1px solid rgba(55,65,81,0.1); border-radius: 6px; padding: 24px; overflow: hidden; transition: box-shadow 0.15s, transform 0.15s; }
.post-card-img { margin: -24px -24px 20px -24px; aspect-ratio: 3/2; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); transform: translateY(-2px); }
.post-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-date { font-size: 0.75rem; color: var(--color-gray); }
.post-read-time { font-size: 0.75rem; color: var(--color-gray); }
.post-card-title { font-size: 1.25rem; margin-bottom: 10px; }
.post-card-title a { color: var(--color-slate); text-decoration: none; }
.post-card-title a:hover { color: var(--color-rust); }
.post-card-excerpt { font-size: var(--fs-small); color: var(--color-charcoal); margin-bottom: 16px; }
.post-read-more { font-size: var(--fs-small); font-weight: 600; color: var(--color-rust); text-decoration: none; }
.post-read-more:hover { text-decoration: underline; }
.btn-text { font-size: var(--fs-small); font-weight: 600; color: var(--color-rust); text-decoration: none; }
.btn-text:hover { text-decoration: underline; }
.home-cta { background: var(--color-rust); text-align: center; }
.home-cta-inner { max-width: var(--content-width); margin: 0 auto; padding: 72px 24px; }
.home-cta h2 { color: var(--color-white); margin-bottom: 12px; }
.home-cta p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.home-cta .btn-primary { background: var(--color-white); color: var(--color-rust); }
.home-cta .btn-primary:hover { background: var(--color-off-white); color: var(--color-rust); }

/* Blog hub */
.blog-hero { background: var(--color-slate); padding: 64px 24px; text-align: center; color: var(--color-white); }
.blog-hero h1 { color: var(--color-white); margin-bottom: 10px; }
.blog-hero p { color: rgba(255,255,255,0.72); font-size: 1.0625rem; }
.blog-main { max-width: var(--max-width); margin: 0 auto; padding: 56px 24px; }
.blog-cta-banner { background: var(--color-off-white); border-top: 1px solid rgba(55,65,81,0.1); }
.blog-cta-inner { max-width: var(--content-width); margin: 0 auto; padding: 56px 24px; text-align: center; }
.blog-cta-inner h2 { margin-bottom: 10px; }
.blog-cta-inner p { color: var(--color-charcoal); margin-bottom: 24px; }

/* Blog post */
.blog-post-page { background: var(--color-white); }
.post-main { max-width: var(--content-width); margin: 0 auto; padding: 56px 24px; }
.post-header { margin-bottom: 36px; }
.post-header-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.blog-post h1 { font-size: 2.5rem; margin-bottom: 16px; }
.post-standfirst { font-size: 1.125rem; color: var(--color-charcoal); line-height: 1.55; border-left: 3px solid var(--color-rust); padding-left: 18px; margin-top: 4px; }
.post-content h2 { font-size: 1.625rem; margin: 40px 0 14px; }
.post-content h3 { font-size: 1.25rem; margin: 28px 0 10px; }
.post-content p { margin-bottom: 18px; color: var(--color-charcoal); }
.post-content ul, .post-content ol { margin: 0 0 18px 24px; color: var(--color-charcoal); }
.post-content li { margin-bottom: 8px; }
.post-footer { margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(55,65,81,0.1); }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: 0.75rem; background: var(--color-off-white); color: var(--color-gray); padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.post-nav { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(55,65,81,0.1); }
.post-nav-link { font-size: var(--fs-small); font-weight: 600; color: var(--color-rust); text-decoration: none; }
.post-nav-link:hover { text-decoration: underline; }

/* Kit section visual navigation */
.kit-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(55,65,81,0.1); }
.kit-nav-card { display: flex; flex-direction: column; justify-content: flex-end; position: relative; border-radius: 8px; overflow: hidden; min-height: 150px; text-decoration: none; }
.kit-nav-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.kit-nav-card:hover img { transform: scale(1.04); }
.kit-nav-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 55%, transparent 100%); }
.kit-nav-body { position: relative; z-index: 1; padding: 16px 18px; }
.kit-nav-direction { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); margin-bottom: 4px; font-family: var(--font-body); }
.kit-nav-title { display: block; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.25; }
.kit-nav-card--next .kit-nav-body { text-align: right; }
@media (max-width: 540px) { .kit-nav { grid-template-columns: 1fr; } }

/* Product card (rendered by product-renderer.js) */
.product-card-badge { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.product-card { padding: 20px; }

/* Kit disclaimer */
.kit-disclaimer { background: var(--color-off-white); border: 1px solid rgba(55,65,81,0.1); border-radius: 4px; padding: 12px 16px; margin-top: 32px; margin-bottom: 32px; font-size: var(--fs-small); color: var(--color-gray); }
.kit-categories { margin-top: 0; }

/* Buying a Van hub */
.buying-guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-card { display: block; background: var(--color-white); border: 1px solid rgba(55,65,81,0.12); border-radius: 8px; padding: 0; text-decoration: none; color: var(--color-slate); transition: box-shadow 0.15s, transform 0.15s; overflow: hidden; }
.guide-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); text-decoration: none; }
.guide-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.guide-card-body { padding: 24px 28px 28px; }
.guide-card h2 { font-size: 1.25rem; margin-bottom: 10px; color: var(--color-slate); }
.guide-card p { font-size: var(--fs-small); color: var(--color-charcoal); margin-bottom: 16px; line-height: 1.6; }
.guide-card-link { font-size: var(--fs-small); font-weight: 600; color: var(--color-rust); }
.guide-card-featured { border-color: var(--color-rust); }
.guide-card-featured .guide-card-body { background: var(--color-off-white); }

/* Checklist */
.checklist { list-style: none; margin: 0 0 20px; padding: 0; }
.checklist li { padding: 9px 0 9px 28px; position: relative; font-size: var(--fs-small); color: var(--color-charcoal); border-bottom: 1px solid rgba(55,65,81,0.07); line-height: 1.55; }
.checklist li::before { content: '☐'; position: absolute; left: 0; color: var(--color-rust); font-size: 1rem; top: 9px; }
@media (max-width: 768px) { .buying-guides-grid { grid-template-columns: 1fr; } }

/* =============================================
   SPEC SHEET (Phase 2)
   ============================================= */
.spec-page { background: var(--color-off-white); }
.spec-hero { background: var(--color-slate); padding: 56px 24px 48px; text-align: center; color: var(--color-white); }
.spec-hero h1 { color: var(--color-white); margin-bottom: 10px; font-size: 2.25rem; }
.spec-hero p { color: rgba(255,255,255,0.72); font-size: 1.0625rem; max-width: 560px; margin: 0 auto; }

.spec-wrapper { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }

/* Email inline (in submit area) */
.spec-email-inline { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.spec-email-label { font-size: 0.875rem; color: var(--color-gray); }
#spec-email-confirm { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
#spec-email-confirm strong { color: var(--color-slate); font-size: 0.9375rem; }
.spec-email-change-btn { font-size: 0.8125rem; color: var(--color-rust); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; }
#spec-email-input-wrap { display: flex; align-items: center; gap: 10px; flex: 1; }
#spec-email-input { flex: 1; min-width: 200px; padding: 9px 12px; border: 1px solid rgba(55,65,81,0.25); border-radius: 4px; font-size: 0.9375rem; font-family: var(--font-body); color: var(--color-slate); }
#spec-email-input:focus { outline: none; border-color: var(--color-rust); box-shadow: 0 0 0 2px rgba(212,112,79,0.15); }

/* Sections */
.spec-section { background: var(--color-white); border: 1px solid rgba(55,65,81,0.1); border-radius: 8px; padding: 28px; margin-bottom: 20px; }
.spec-section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.spec-section-icon { font-size: 1.5rem; }
.spec-section-title { font-size: 1.25rem; margin: 0; color: var(--color-slate); }
.spec-section-type { margin-left: auto; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-gray); background: var(--color-off-white); padding: 3px 8px; border-radius: 3px; white-space: nowrap; }
.spec-section-helper { font-size: 0.875rem; color: var(--color-gray); margin: 0 0 20px; line-height: 1.55; }

/* Items */
.spec-items { display: flex; flex-direction: column; gap: 10px; }
.spec-item { border: 1px solid rgba(55,65,81,0.1); border-radius: 6px; transition: border-color 0.15s, background 0.15s; }
.spec-item:has(input:checked) { border-color: var(--color-rust); background: #FFF8F6; }
.spec-item-label { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; cursor: pointer; }
.spec-item-label input { display: none; }
.spec-item-check { width: 18px; height: 18px; border: 2px solid rgba(55,65,81,0.25); border-radius: 3px; flex-shrink: 0; margin-top: 2px; position: relative; transition: border-color 0.15s, background 0.15s; }
.spec-section[data-type="single-choice"] .spec-item-check,
input[type="radio"] ~ .spec-item-check { border-radius: 50%; }
.spec-item-label:has(input:checked) .spec-item-check { background: var(--color-rust); border-color: var(--color-rust); }
.spec-item-label:has(input:checked) .spec-item-check::after { content: ''; display: block; width: 10px; height: 7px; border-left: 2px solid white; border-bottom: 2px solid white; transform: rotate(-45deg) translate(1px, -1px); position: absolute; top: 3px; left: 2px; }
.spec-item-text { flex: 1; }
.spec-item-name { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--color-slate); margin-bottom: 3px; }
.spec-item-helper { display: block; font-size: 0.8125rem; color: var(--color-gray); line-height: 1.5; }

/* Submit area */
.spec-submit-area { text-align: center; padding: 40px 0 0; }
.btn-large { padding: 16px 36px; font-size: 1rem; }
.spec-submit-note { font-size: 0.875rem; color: var(--color-gray); margin-top: 12px; }
.spec-sent-msg { color: #16a34a; font-size: 1rem; font-weight: 600; margin-top: 16px; }
.spec-error-msg { color: #dc2626; font-size: 0.875rem; margin-top: 12px; }
.spec-load-error { color: #dc2626; font-size: 0.9375rem; text-align: center; padding: 40px; }

/* Spec sheet CTA on quiz result page */
.spec-sheet-cta-box { margin-top: 28px; padding: 24px 28px; background: var(--color-off-white); border: 1px solid rgba(55,65,81,0.1); border-radius: 8px; border-left: 3px solid var(--color-rust); text-align: left; }
.spec-sheet-cta-box h3 { margin: 0 0 6px; font-size: 1.125rem; color: var(--color-slate); }
.spec-sheet-cta-box p { color: var(--color-charcoal); font-size: 0.9375rem; margin-bottom: 16px; }

/* Also add expand body styling for quiz */
.quiz-expand-body p { margin-bottom: 12px; }
.quiz-expand-body p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer { background: var(--color-slate); color: rgba(255,255,255,0.7); padding: 44px 0; font-size: var(--fs-small); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 500; color: var(--color-white); letter-spacing: 0; }
.footer-brand img { height: 36px; width: auto; display: block; flex-shrink: 0; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--color-white); }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 28px; padding-top: 20px; }
.footer-legal-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.7rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.15s; letter-spacing: 0.02em; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* Policy pages */
.policy-page { background: var(--color-off-white); }
.policy-hero { background: var(--color-slate); padding: 56px 24px 48px; text-align: center; color: var(--color-white); }
.policy-hero h1 { color: var(--color-white); font-size: 2.25rem; margin-bottom: 8px; }
.policy-hero p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }
.policy-body { max-width: 720px; margin: 0 auto; padding: 60px 24px 80px; }
.policy-body h2 { font-size: 1.25rem; margin: 40px 0 12px; color: var(--color-slate); }
.policy-body h2:first-child { margin-top: 0; }
.policy-body p { font-size: 0.9375rem; color: var(--color-charcoal); line-height: 1.7; margin-bottom: 1rem; }
.policy-body ul { margin: 0 0 1rem 1.25rem; }
.policy-body li { font-size: 0.9375rem; color: var(--color-charcoal); line-height: 1.7; margin-bottom: 0.4rem; }
.policy-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.875rem; }
.policy-body th { text-align: left; padding: 8px 12px; background: var(--color-slate); color: var(--color-white); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.policy-body td { padding: 9px 12px; border-bottom: 1px solid rgba(55,65,81,0.1); color: var(--color-charcoal); vertical-align: top; }
.policy-body tr:last-child td { border-bottom: none; }
.policy-body tr:nth-child(even) td { background: rgba(55,65,81,0.03); }
.not-found-body {
  min-height: calc(100vh - 77px);
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 24px 112px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.not-found-body h1 {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.not-found-body > p {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}
.not-found-body > p:last-child { margin-bottom: 0; }
.not-found-body .btn-primary { margin: 0 auto; }

.policy-note { background: var(--color-white); border: 1px solid rgba(55,65,81,0.1); border-radius: 4px; padding: 20px 24px; margin-bottom: 1.5rem; }
.policy-note p { margin: 0; font-size: 0.875rem; }

/* Try a Campervan */
.try-page { background: var(--color-white); }
.try-hero { min-height: 510px; display: flex; align-items: center; position: relative; background: var(--color-slate) url('/assets/images/try-buy-hero.jpg') center 50% / cover no-repeat; }
.try-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,41,55,0.88) 0%, rgba(31,41,55,0.68) 55%, rgba(31,41,55,0.42) 100%); }
.try-hero-content { position: relative; z-index: 1; color: var(--color-white); }
.try-hero-content h1 { color: var(--color-white); font-size: clamp(2.7rem, 6vw, 4.5rem); margin-bottom: 18px; }
.try-hero-content > p:not(.try-eyebrow) { max-width: 610px; color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 28px; }
.try-eyebrow { color: var(--color-rust); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 12px; }
.try-intro { background: var(--color-white); text-align: center; }
.try-intro h2, .try-section-heading h2 { margin-bottom: 18px; }
.try-section-heading { max-width: 700px; margin: 0 auto 38px; text-align: center; }
.try-section-heading > p:last-child { color: var(--color-gray); }
.try-builder { background: var(--color-off-white); scroll-margin-top: 80px; }
.try-profile-note { max-width: 760px; margin: 0 auto 24px; padding: 16px 18px; background: #fff7ed; border-left: 4px solid var(--color-rust); border-radius: 4px; font-size: 0.9rem; }
.try-profile-note strong, .try-profile-note span { display: block; }
.try-profile-note span { margin-top: 3px; color: var(--color-charcoal); }
.try-form { max-width: 760px; margin: 0 auto; }
.try-question { border: 0; padding: 0; margin: 0 0 30px; }
.try-question legend { width: 100%; font-family: var(--font-heading); font-size: 1.45rem; font-weight: 600; line-height: 1.3; margin-bottom: 14px; color: var(--color-slate); }
.try-question legend span { display: inline-grid; place-items: center; width: 28px; height: 28px; margin-right: 8px; border-radius: 50%; background: var(--color-rust); color: var(--color-white); font-family: var(--font-body); font-size: 0.75rem; vertical-align: 3px; }
.try-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.try-options label { position: relative; cursor: pointer; }
.try-options input { position: absolute; opacity: 0; pointer-events: none; }
.try-options label span { display: flex; align-items: center; min-height: 58px; padding: 13px 16px; background: var(--color-white); border: 1px solid rgba(55,65,81,0.22); border-radius: 4px; transition: border-color 0.15s, background 0.15s, box-shadow 0.15s; }
.try-options label:hover span { border-color: var(--color-rust); }
.try-options input:checked + span { border: 2px solid var(--color-rust); background: #fff7ed; box-shadow: 0 1px 4px rgba(31,41,55,0.08); font-weight: 600; }
.try-options input:focus-visible + span { outline: 2px solid var(--color-rust); outline-offset: 2px; }
.try-form-error { margin: -8px 0 18px; padding: 12px 16px; border-radius: 4px; background: #fef2f2; color: #991b1b; font-size: 0.9rem; }
.try-result { max-width: 760px; margin: 0 auto; padding: 34px; background: var(--color-white); border: 1px solid rgba(55,65,81,0.14); border-top: 4px solid var(--color-rust); border-radius: 6px; box-shadow: 0 6px 24px rgba(31,41,55,0.08); }
.try-result h2 { font-size: 2rem; margin-bottom: 20px; }
.try-result ul { margin: 0 0 22px 22px; }
.try-result li { margin-bottom: 9px; }
.try-result > p:not(.try-eyebrow) { color: var(--color-charcoal); margin-bottom: 24px; }
.try-checklist-grid, .try-partner-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.try-checklist-grid article, .try-partner-card { padding: 26px; border: 1px solid rgba(55,65,81,0.12); border-radius: 6px; background: var(--color-white); }
.try-checklist-grid h3, .try-partner-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.try-partner-card p { color: var(--color-charcoal); font-size: 0.94rem; }
.try-checklist { background: var(--color-off-white); }
.try-checklist-grid article { border-top: 3px solid var(--color-rust); }
.try-checklist-grid ul { margin-left: 18px; color: var(--color-charcoal); }
.try-checklist-grid li { margin-bottom: 8px; }
.try-partners { background: var(--color-slate); color: var(--color-white); }
.try-partners .try-section-heading h2, .try-partner-card h3 { color: var(--color-white); }
.try-partners .try-section-heading > p:last-child { color: rgba(255,255,255,0.7); }
.try-partner-grid { max-width: 820px; margin: 0 auto 26px; }
.try-partner-card { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.16); }
.try-partner-card p { color: rgba(255,255,255,0.75); }
.try-partner-status { display: inline-block; margin-bottom: 16px; padding: 4px 9px; border-radius: 999px; background: rgba(212,112,79,0.18); color: #f0a78f; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.try-partner-link { color: var(--color-white); border-color: rgba(255,255,255,0.55); }
.try-partner-link:hover { color: #f0a78f; border-color: #f0a78f; }
.try-disclosure { max-width: 820px; margin: 0 auto; color: rgba(255,255,255,0.68); font-size: 0.82rem; }
.try-debrief { text-align: center; }
.try-debrief h2 { margin-bottom: 18px; }
.try-debrief-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }

/* Responsive */
@media (max-width: 1024px) {
  .card-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .report-preview-inner { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.78rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-white); border-bottom: 1px solid rgba(55,65,81,0.12); padding: 8px 24px 20px; gap: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
  .nav-links li { border-bottom: 1px solid rgba(55,65,81,0.06); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
  .nav-links.open { display: flex; }
  .site-header { position: relative; }
  .site-nav { position: relative; }
  .nav-toggle.open .icon-hamburger { display: none; }
  .nav-toggle.open .icon-close { display: block; }
}
@media (max-width: 768px) {
  :root { --fs-h1: 2.5rem; --fs-h2: 2rem; --fs-h3: 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-white); border-bottom: 1px solid rgba(55,65,81,0.12); padding: 8px 24px 20px; gap: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
  .nav-links li { border-bottom: 1px solid rgba(55,65,81,0.06); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
  .nav-links.open { display: flex; }
  .site-header { position: relative; }
  .site-nav { position: relative; }
  .nav-toggle.open .icon-hamburger { display: none; }
  .nav-toggle.open .icon-close { display: block; }
  .spec-grid { grid-template-columns: 1fr; }
  .email-input-row { flex-direction: column; }
  .card-grid, .blog-grid, .product-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .spec-preview-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 2.75rem; }
  .try-hero { min-height: 520px; background-image: url('/assets/images/try-buy-hero-mobile.jpg'); background-position: center 48%; }
  .try-hero-overlay { background: linear-gradient(90deg, rgba(31,41,55,0.9) 0%, rgba(31,41,55,0.67) 68%, rgba(31,41,55,0.38) 100%); }
  .try-options, .try-checklist-grid, .try-partner-grid { grid-template-columns: 1fr; }
  .try-debrief-actions { flex-direction: column; align-items: stretch; }
  .try-debrief-actions a { text-align: center; }
  section { padding: 48px 0; }
}
@media (max-width: 640px) { .footer-inner { flex-direction: column; text-align: center; } .footer-links { flex-wrap: wrap; justify-content: center; } }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--color-rust); outline-offset: 2px; }
