/**
 * Website Factory — Design System v3 (wf-* namespace)
 *
 * ALL selectors use wf-* classes. The theme owns ic-*. No collision possible.
 * Scoped under .wf-page which the page-wf.php template provides.
 *
 * Sections:
 *   0. Tokens & page shell
 *   1. Typography
 *   2. Buttons
 *   3. Hero
 *   4. Introduction / Audience cards
 *   5. Implications / Legal
 *   6. Process
 *   7. Comparison
 *   8. Trust
 *   9. Location
 *  10. FAQ
 *  11. CTA
 *  12. Responsive
 *  13. Accessibility
 *  14. Legacy compatibility (ic-* aliases for stored drafts — remove after re-render)
 */

/* ─────────────────────────────────────────────────────────────────────────────
   0. TOKENS & PAGE SHELL
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page {
    --c-forest:     #1E5C35;
    --c-sage:       #3D7A54;
    --c-ink:        #1C2420;
    --c-muted:      #5A6E67;
    --c-rule:       #D9D5CD;
    --c-off-white:  #F7F5F0;
    --c-green-tint: #EBF5EE;
    --c-gold:       #8B6914;
    --c-white:      #FFFFFF;
    --c-forest-10:  rgba(30,92,53,0.10);

    --content-width: 1200px;
    --gutter:        clamp(20px, 4vw, 40px);

    --font-heading: var(--wf-heading-font-family, 'Oswald', system-ui, sans-serif);
    --font-body:    var(--wf-body-font-family, 'Source Serif 4', Georgia, serif);

    --shadow-card:  0 2px 8px rgba(28,36,32,0.06), 0 0 0 1px rgba(28,36,32,0.04);
    --shadow-hover: 0 8px 32px rgba(28,36,32,0.12);
    --ease:         240ms ease;

    /* Diagnostic */
    --wf-components-loaded: 3;
}

.wf-page {
    width: 100vw;
    max-width: 100vw;
    margin-left:  calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.8;
    color: var(--c-ink);
    background: var(--c-white);
}

.wf-page *, .wf-page *::before, .wf-page *::after { box-sizing: inherit; }

/* Shared inner container */
.wf-page .wf-section__inner {
    width: min(calc(100% - 48px), var(--content-width));
    margin-inline: auto;
}

.wf-page .wf-section {
    padding-block: 96px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   1. TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page h1, .wf-page h2, .wf-page h3, .wf-page h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.75em;
}

.wf-page h1 { font-size: clamp(44px, 5.5vw, 78px); letter-spacing: -0.025em; line-height: 1.02; }
.wf-page h2 { font-size: clamp(30px, 3.8vw, 52px); letter-spacing: -0.015em; line-height: 1.10; }
.wf-page h3 { font-size: clamp(20px, 2.3vw, 28px); letter-spacing: -0.01em;  font-weight: 600; }

.wf-page p { margin: 0 0 1.4em; }
.wf-page p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────────────────────────────────
   2. BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
    border: 2px solid transparent;
}

.wf-page .wf-button--primary {
    background: var(--c-forest);
    color: var(--c-white);
    border-color: var(--c-forest);
}
.wf-page .wf-button--primary:hover {
    background: #164d2a;
    border-color: #164d2a;
    transform: translateY(-1px);
}

.wf-page .wf-button--secondary {
    background: transparent;
    color: var(--c-forest);
    border-color: var(--c-forest);
}
.wf-page .wf-button--secondary:hover {
    background: var(--c-forest);
    color: var(--c-white);
}

.wf-page .wf-button--ghost {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,0.6);
}
.wf-page .wf-button--ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--c-white);
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. HERO
   The theme has no .wf-hero selector. No collision. No !important needed.
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-hero {
    background: var(--c-white);
    color: var(--c-ink);
    overflow: hidden;
}

.wf-page .wf-hero__inner {
    width: min(calc(100% - 48px), var(--content-width));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    align-items: stretch;
    min-height: 680px;
}

.wf-page .wf-hero__copy {
    padding: 96px 48px 96px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.wf-page .wf-hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(44px, 5.5vw, 78px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.02;
    color: var(--c-ink);
    margin: 0 0 0.3em;
}

.wf-page .wf-hero__subheadline {
    font-size: clamp(17px, 1.8vw, 20px);
    color: var(--c-muted);
    line-height: 1.65;
    max-width: 48ch;
    margin: 0 0 32px;
}

.wf-page .wf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.wf-page .wf-hero__trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    border-top: 1px solid var(--c-rule);
    padding-top: 20px;
}

.wf-page .wf-hero__trust li {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.wf-page .wf-hero__trust li::before {
    content: '✓ ';
    color: var(--c-forest);
}

/* Image column */
.wf-page .wf-hero__image {
    position: relative;
    overflow: hidden;
    background: var(--c-forest);
    min-height: 680px;
}

.wf-page .wf-hero__image img,
.wf-page .wf-hero__real-image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Branded placeholder when no image */
.wf-page .wf-hero__image-slot {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1E5C35 0%, #0F2B1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-page .wf-hero__image-overlay {
    text-align: center;
    padding: 32px;
}

.wf-page .wf-hero__stat-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.wf-page .wf-hero__stat {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: var(--c-white);
    line-height: 1;
    letter-spacing: -0.02em;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 16px 28px;
    border-radius: 4px;
}

/* Centred variant */
.wf-page .wf-hero--centered .wf-hero__inner {
    grid-template-columns: 1fr;
    max-width: 760px;
    text-align: center;
    min-height: auto;
    padding-block: 96px;
}
.wf-page .wf-hero--centered .wf-hero__actions { justify-content: center; }
.wf-page .wf-hero--centered .wf-hero__trust  { justify-content: center; }
.wf-page .wf-hero--centered .wf-hero__image  { display: none; }

/* ─────────────────────────────────────────────────────────────────────────────
   4. INTRODUCTION / AUDIENCE CARDS
   Surface: off-white
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-section--introduction {
    background: var(--c-off-white);
}

.wf-page .wf-audience__lead {
    font-size: 19px;
    color: var(--c-muted);
    max-width: 60ch;
    margin-bottom: 40px;
}

.wf-page .wf-audience__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wf-page .wf-audience__card {
    background: var(--c-white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    transition: all var(--ease);
    border-top: 3px solid transparent;
}
.wf-page .wf-audience__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--c-forest);
}

.wf-page .wf-audience__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--c-forest-10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    transition: all var(--ease);
}
.wf-page .wf-audience__card:hover .wf-audience__card-icon {
    background: var(--c-forest);
    color: var(--c-white);
}

.wf-page .wf-audience__card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-ink);
    display: block;
    margin-bottom: 8px;
}

.wf-page .wf-audience__card-desc {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. IMPLICATIONS / LEGAL
   Surface: white
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-section--urgency {
    background: var(--c-white);
}

.wf-page .wf-implications__diagram {
    margin: 0 0 40px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.wf-page .wf-implications__diagram-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.wf-page .wf-implications__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.wf-page .wf-implications__card {
    background: var(--c-off-white);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--ease);
}
.wf-page .wf-implications__card:hover {
    background: var(--c-white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.wf-page .wf-implications__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--c-forest-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.wf-page .wf-implications__card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-ink);
    margin: 0;
}

.wf-page .wf-implications__card-desc {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.6;
    margin: 0;
}

.wf-page .wf-implications__prose {
    margin-top: 48px;
    max-width: 720px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. PROCESS
   Surface: deep green (inverted)
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-section--process {
    background: var(--c-forest);
    color: var(--c-white);
}
.wf-page .wf-section--process h2,
.wf-page .wf-section--process p { color: var(--c-white); }
.wf-page .wf-section--process h2 { text-align: center; }

.wf-page .wf-process__infographic {
    margin-bottom: 48px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 21/9;
}
.wf-page .wf-process__infographic-img {
    width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.9;
}

.wf-page .wf-process__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf-page .wf-process--horizontal .wf-process__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
}
.wf-page .wf-process--horizontal .wf-process__list::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

.wf-page .wf-process--vertical .wf-process__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 720px;
    margin-inline: auto;
}

.wf-page .wf-process--horizontal .wf-process__step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.wf-page .wf-process--vertical .wf-process__step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
}

.wf-page .wf-process--horizontal .wf-process__marker {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.wf-page .wf-process--vertical .wf-process__marker {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wf-page .wf-process__marker span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-white);
}

.wf-page .wf-process__label {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--c-white);
    display: block;
    margin-bottom: 8px;
}

.wf-page .wf-process__body {
    font-size: 15px;
    color: rgba(255,255,255,0.80);
    line-height: 1.65;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. COMPARISON
   Surface: off-white
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-section--comparison {
    background: var(--c-off-white);
}

.wf-page .wf-comparison__visual {
    margin: 0 0 40px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.wf-page .wf-comparison__visual-img {
    width: 100%; height: 100%; object-fit: contain; display: block;
    background: var(--c-off-white);
}

.wf-page .wf-comparison__grid {
    display: grid;
    gap: 24px;
}
.wf-page .wf-comparison--cols-3 .wf-comparison__grid { grid-template-columns: repeat(3, 1fr); }
.wf-page .wf-comparison--cols-2 .wf-comparison__grid { grid-template-columns: repeat(2, 1fr); }

.wf-page .wf-comparison__card {
    background: var(--c-white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--ease);
}
.wf-page .wf-comparison__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.wf-page .wf-comparison__card-icon {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--c-forest);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--c-forest-10);
    border-radius: 4px;
    align-self: flex-start;
}

.wf-page .wf-comparison__option {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--c-ink);
    margin: 0;
}

.wf-page .wf-comparison__desc {
    font-size: 15px;
    color: var(--c-ink);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.wf-page .wf-comparison__suitable {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--c-rule);
}
.wf-page .wf-comparison__suitable-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-gold);
    display: block;
    margin-bottom: 4px;
}
.wf-page .wf-comparison__suitable-text {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.5;
}

.wf-page .wf-comparison__cta { text-align: center; margin-top: 40px; }

/* Table variant */
.wf-page .wf-comparison__table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}
.wf-page .wf-comparison__table {
    width: 100%; border-collapse: collapse; background: var(--c-white);
}
.wf-page .wf-comparison__table th,
.wf-page .wf-comparison__table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--c-rule);
    font-size: 15px;
}
.wf-page .wf-comparison__table th {
    font-family: var(--font-heading);
    font-weight: 700;
    background: var(--c-off-white);
    width: 28%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. TRUST
   Surface: white
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-section--trust {
    background: var(--c-white);
}
.wf-page .wf-section--trust h2 { text-align: center; }

.wf-page .wf-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.wf-page .wf-trust__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 32px 24px;
    background: var(--c-off-white);
    border-radius: 16px;
    transition: all var(--ease);
}
.wf-page .wf-trust__item:hover {
    background: var(--c-white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.wf-page .wf-trust__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--c-forest-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all var(--ease);
}
.wf-page .wf-trust__item:hover .wf-trust__icon {
    background: var(--c-forest);
    color: var(--c-white);
}

.wf-page .wf-trust__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--c-ink);
}

.wf-page .wf-trust__desc {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.6;
    margin: 0;
}

.wf-page .wf-trust__prose {
    margin-top: 40px;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    font-size: 15px;
    color: var(--c-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. LOCATION
   Surface: green-tint — image LEFT, copy RIGHT
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-section--location {
    background: var(--c-green-tint);
}

.wf-page .wf-location__grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 48px;
    align-items: start;
}

.wf-page .wf-location__aside {
    order: -1;
}

.wf-page .wf-location__image-slot,
.wf-page .wf-location__image-slot--real {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative;
    background: var(--c-forest);
}

.wf-page .wf-location__real-image {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.wf-page .wf-location__copy h2 { margin-bottom: 16px; }

.wf-page .wf-location__factors {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wf-page .wf-location__factor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(30,92,53,0.08);
    border-radius: 8px;
}

.wf-page .wf-location__factor-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-forest);
    flex-shrink: 0;
}

.wf-page .wf-location__factor-label {
    font-size: 15px;
    color: var(--c-ink);
    font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. FAQ
   Surface: off-white
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-section--faqs {
    background: var(--c-off-white);
}

.wf-page .wf-faq__list {
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wf-page .wf-faq__item {
    background: var(--c-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.wf-page .wf-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    gap: 20px;
    list-style: none;
    transition: background var(--ease);
}
.wf-page .wf-faq__question::-webkit-details-marker { display: none; }

.wf-page .wf-faq__item[open] > .wf-faq__question {
    background: var(--c-green-tint);
}

.wf-page .wf-faq__question-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.3;
}

.wf-page .wf-faq__chevron {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--c-forest-10);
    flex-shrink: 0;
    position: relative;
    transition: all var(--ease);
}
.wf-page .wf-faq__chevron::after {
    content: '';
    display: block;
    width: 8px; height: 8px;
    border-right: 2px solid var(--c-forest);
    border-bottom: 2px solid var(--c-forest);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    transition: transform var(--ease);
}
.wf-page .wf-faq__item[open] .wf-faq__chevron {
    background: var(--c-forest);
}
.wf-page .wf-faq__item[open] .wf-faq__chevron::after {
    border-color: var(--c-white);
    transform: translate(-50%, -40%) rotate(-135deg);
}

.wf-page .wf-faq__answer {
    padding: 0 28px 24px;
    font-size: 16px;
    color: var(--c-muted);
    line-height: 1.75;
}
.wf-page .wf-faq__answer p { max-width: none; margin: 0 0 0.8em; }

/* ─────────────────────────────────────────────────────────────────────────────
   11. CTA
   Surface: deep green (inverted)
   ───────────────────────────────────────────────────────────────────────────── */

.wf-page .wf-cta,
.wf-page .wf-cta--v2 {
    background: var(--c-forest);
    padding: 0;
}

.wf-page .wf-cta__inner {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
    padding-block: 80px;
}

.wf-page .wf-cta__headline {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: -0.015em;
    margin-bottom: 16px;
}

.wf-page .wf-cta__body {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    max-width: none;
}

.wf-page .wf-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   12. RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .wf-page .wf-trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .wf-page .wf-audience__cards  { grid-template-columns: 1fr; }
    .wf-page .wf-implications__grid { grid-template-columns: 1fr; }
    .wf-page .wf-comparison--cols-3 .wf-comparison__grid { grid-template-columns: repeat(2, 1fr); }
    .wf-page .wf-process--horizontal .wf-process__list { grid-template-columns: repeat(2, 1fr); }
    .wf-page .wf-process--horizontal .wf-process__list::before { display: none; }
    .wf-page .wf-location__grid { grid-template-columns: 1fr; }
    .wf-page .wf-location__aside { order: 0; }
    .wf-page .wf-location__image-slot,
    .wf-page .wf-location__image-slot--real { aspect-ratio: 16/9; }
}

@media (max-width: 900px) {
    .wf-page .wf-hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .wf-page .wf-hero__copy {
        padding: 64px 0;
    }
    .wf-page .wf-hero__image {
        min-height: clamp(300px, 55vw, 480px);
    }
}

@media (max-width: 600px) {
    .wf-page .wf-section { padding-block: 64px; }
    .wf-page .wf-hero__headline { font-size: clamp(36px, 9vw, 48px); }
    .wf-page .wf-hero__actions  { flex-direction: column; align-items: stretch; }
    .wf-page .wf-cta__actions   { flex-direction: column; align-items: stretch; }
    .wf-page .wf-comparison--cols-3 .wf-comparison__grid,
    .wf-page .wf-comparison--cols-2 .wf-comparison__grid { grid-template-columns: 1fr; }
    .wf-page .wf-process--horizontal .wf-process__list { grid-template-columns: 1fr; }
    .wf-page .wf-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .wf-page .wf-audience__cards { grid-template-columns: 1fr; }
    .wf-page .wf-faq__list { max-width: 100%; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   13. ACCESSIBILITY
   ───────────────────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .wf-page *, .wf-page *::before, .wf-page *::after {
        transition-duration: 0.01ms !important;
        animation-duration:  0.01ms !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   14. LEGACY COMPATIBILITY
   Aliases for stored ic-* drafts. Remove after re-rendering all drafts.
   ───────────────────────────────────────────────────────────────────────────── */

/* Hero */
.wf-page .ic-hero { background: var(--c-white); color: var(--c-ink); overflow: hidden; }
.wf-page .ic-hero__inner { width: min(calc(100% - 48px), var(--content-width)); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr); align-items: stretch; min-height: 680px; }
.wf-page .ic-hero__copy { padding: 96px 48px 96px 0; display: flex; flex-direction: column; justify-content: center; }
.wf-page .ic-hero__headline { font-family: var(--font-heading); font-size: clamp(44px, 5.5vw, 78px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; color: var(--c-ink); margin: 0 0 0.3em; }
.wf-page .ic-hero__subheadline { font-size: clamp(17px, 1.8vw, 20px); color: var(--c-muted); line-height: 1.65; margin: 0 0 32px; }
.wf-page .ic-hero__image { position: relative; overflow: hidden; background: var(--c-forest); min-height: 680px; }
.wf-page .ic-hero__image img, .wf-page .ic-hero__real-image { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.wf-page .ic-hero__image-slot { position: absolute; inset: 0; background: linear-gradient(160deg, #1E5C35 0%, #0F2B1A 100%); display: flex; align-items: center; justify-content: center; }
.wf-page .ic-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.wf-page .ic-hero__trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 20px; border-top: 1px solid var(--c-rule); padding-top: 20px; }
.wf-page .ic-btn { display: inline-flex; align-items: center; justify-content: center; height: 52px; padding: 0 28px; border-radius: 8px; font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border: 2px solid transparent; }
.wf-page .ic-btn--primary { background: var(--c-forest); color: var(--c-white); border-color: var(--c-forest); }
.wf-page .ic-btn--secondary { background: transparent; color: var(--c-forest); border-color: var(--c-forest); }
.wf-page .ic-btn--ghost { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.6); }
/* Section */
.wf-page .ic-section { padding-block: 96px; }
.wf-page .ic-section--introduction { background: var(--c-off-white); }
.wf-page .ic-section--urgency { background: var(--c-white); }
.wf-page .ic-section--process { background: var(--c-forest); color: var(--c-white); }
.wf-page .ic-section--comparison { background: var(--c-off-white); }
.wf-page .ic-section--trust { background: var(--c-white); }
.wf-page .ic-section--location { background: var(--c-green-tint); }
.wf-page .ic-section--faqs { background: var(--c-off-white); }
.wf-page .ic-cta--v2 { background: var(--c-forest); padding: 0; }
.wf-page .ic-section__inner { width: min(calc(100% - 48px), var(--content-width)); margin-inline: auto; }
