@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --bg: #eef1f5;
    --bg-warm: #e4e9ef;
    --surface: #ffffff;
    --text: #1e2a36;
    --text-soft: #4a5c6e;
    --accent: #c45c3e;
    --accent-hover: #a84a32;
    --accent-soft: #f5ebe7;
    --slate: #2d4a6f;
    --slate-light: #3d6288;
    --line: #cdd5df;
    --line-soft: #dde3ea;
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --max-width: 820px;
    --wide-width: 1040px;
    --section-spacing: 72px;
    --radius: 8px;
    --radius-lg: 14px;
}

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

html { scroll-behavior: smooth; }

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

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

a {
    color: var(--slate);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 9999;
    width: 0;
    transition: width 0.1s linear;
}

/* ── Hero (vertical, centered) ── */
.hero-section {
    text-align: center;
    padding: 88px 24px 64px;
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin: 0 auto 20px;
    max-width: 680px;
}

.hero-section .subtitle {
    font-size: 1.12rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0 auto 14px;
    max-width: 540px;
}

.hero-meta {
    font-size: 0.84rem;
    color: var(--text-soft);
    margin-bottom: 36px;
}

.hero-image {
    max-width: 580px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(45, 74, 111, 0.16);
    line-height: 0;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ── Editorial body ── */
.editorial-content {
    padding: var(--section-spacing) 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.editorial-content p {
    margin-bottom: 24px;
    font-size: 1.04rem;
    color: #334155;
}

.editorial-content p strong {
    color: var(--text);
    font-weight: 600;
}

.editorial-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 400;
    margin: 52px 0 20px;
    color: var(--slate);
    line-height: 1.25;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-soft);
}

.editorial-content h3 {
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text);
}

.editorial-content ul {
    margin: 0 0 24px 20px;
    color: #334155;
}

.editorial-content ul li {
    margin-bottom: 8px;
    font-size: 1.02rem;
}

/* Pull quote / highlight */
.highlight-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 5px solid var(--accent);
    padding: 24px 28px;
    margin: 36px 0;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(45, 74, 111, 0.06);
}

.highlight-box p {
    margin-bottom: 0 !important;
    font-size: 1.02rem;
    color: var(--text);
}

.highlight-box i {
    color: var(--accent);
    margin-right: 6px;
}

/* Inline images */
.inline-image {
    margin: 44px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(45, 74, 111, 0.08);
}

.inline-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.inline-image figcaption {
    font-size: 0.82rem;
    color: var(--text-soft);
    padding: 10px 16px;
    background: var(--bg-warm);
    font-style: normal;
}

/* Specs — card grid */
.specs-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.spec-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(45, 74, 111, 0.06);
}

.spec-item .spec-value {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 4px;
    color: var(--slate);
}

.spec-item .spec-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
}

/* CTA — centered vertical */
.cta-block {
    margin: 48px 0;
    padding: 40px 32px;
    background: var(--accent-soft);
    border: 1px solid rgba(196, 92, 62, 0.25);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-block-text { margin-bottom: 20px; }

.cta-block h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 6px;
    font-weight: 400;
}

.cta-block p {
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* Journal entries */
.journal-block {
    margin: 28px 0;
    padding: 24px 0 24px 20px;
    border-left: 3px solid var(--slate-light);
}

.journal-block h3 {
    margin-top: 0;
    color: var(--slate);
}

.journal-block p:last-child { margin-bottom: 0; }

.section-note {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-style: italic;
    margin-bottom: 20px;
}

.footnote {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.55;
    margin: -8px 0 36px;
}

/* Testimonials — single column */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 28px 0;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
}

.testimonial-card.full-width {
    grid-column: unset;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.96rem;
    color: #334155;
    margin-bottom: 14px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-soft);
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 36px 0;
    font-size: 0.93rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}

.comparison-table th {
    background: var(--slate);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.comparison-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--line-soft);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:nth-child(even) td { background: var(--bg); }

.comparison-table .check { color: #2a7a52; font-weight: 600; }
.comparison-table .cross { color: #b44; }

/* Info panel */
.info-panel {
    margin: 44px 0;
    padding: 28px 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.info-panel .info-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.info-panel h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-panel .info-quote {
    margin: 16px 0;
    padding: 14px 18px;
    background: var(--bg);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-soft);
    font-style: italic;
}

/* FAQ — vertical list */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0 36px;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 24px 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.faq-item p {
    margin-bottom: 0 !important;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.disclaimer-inline {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-top: 40px;
    font-size: 0.86rem;
    color: var(--text-soft);
    line-height: 1.65;
}

.disclaimer-inline p {
    margin-bottom: 8px !important;
    font-size: 0.86rem !important;
}

.disclaimer-inline p:last-child { margin-bottom: 0 !important; }

/* Footer */
footer {
    background: var(--slate);
    color: rgba(255, 255, 255, 0.75);
    padding: 52px 24px 28px;
    margin-top: var(--section-spacing);
}

.footer-content {
    max-width: var(--wide-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer-col a:hover { color: var(--accent-soft); }

.footer-links { list-style: none; }

.footer-links li a {
    display: block;
    padding: 2px 0;
}

.footer-bottom {
    max-width: var(--wide-width);
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    max-width: var(--wide-width);
    margin: 16px auto 0;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.65;
    text-align: center;
}

/* Cookie bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    z-index: 200;
    padding: 14px 20px;
}

.cookie-inner {
    max-width: var(--wide-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookie-inner p {
    margin: 0;
    font-size: 0.86rem;
    flex: 1;
    min-width: 220px;
    color: var(--text);
}

.cookie-actions { display: flex; gap: 8px; }

.btn-cookie {
    padding: 9px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.84rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-accept {
    background: var(--accent);
    color: #fff;
}

.btn-decline {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--line);
}

/* Legal pages */
.legal-wrap { padding-top: 48px; }

.back-link {
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.back-link a {
    text-decoration: none;
    font-weight: 600;
    color: var(--slate);
}

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

.legal-page { padding: 0 0 60px; }

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--slate);
    font-weight: 400;
}

.legal-page h2 {
    font-size: 1.15rem;
    margin: 28px 0 10px;
    color: var(--text);
    border: none;
    padding: 0;
}

.legal-page p {
    margin-bottom: 14px;
    color: #334155;
    font-size: 0.95rem;
}

.legal-page ul {
    margin: 10px 0 18px 20px;
    font-size: 0.95rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .hero-section { padding: 64px 20px 48px; }
    .specs-strip { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .hero-section h1 { font-size: 1.95rem; }
    .specs-strip { grid-template-columns: 1fr 1fr; }
    .cta-btn { padding: 13px 26px; font-size: 0.88rem; }
}
