:root {
    --ink: #171814;
    --ink-2: #25281e;
    --olive: #38451b;
    --olive-dark: #1e2711;
    --leaf: #abc700;
    --leaf-soft: #e6ef9e;
    --orange: #f47b18;
    --orange-dark: #a94305;
    --white: #fffdf8;
    --paper: #f5f3e8;
    --paper-warm: #fff3e2;
    --muted: #6b6f5d;
    --line: rgba(23, 24, 20, 0.14);
    --line-light: rgba(255, 253, 248, 0.18);
    --shadow: 0 28px 80px rgba(23, 24, 20, 0.22);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd,
figure,
blockquote {
    margin: 0;
}

.sr-only,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--ink);
    border-radius: 6px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    min-height: 88px;
    padding: 0.55rem 4vw;
    background: rgba(255, 253, 248, 0.95);
    border-bottom: 1px solid rgba(23, 24, 20, 0.1);
    backdrop-filter: blur(16px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 42px rgba(23, 24, 20, 0.09);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    color: var(--ink);
    text-decoration: none;
}

.brand img {
    width: 56px;
    height: 56px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
}

.brand span {
    display: grid;
    line-height: 1.05;
}

.brand strong {
    font-size: 1.1rem;
    font-weight: 900;
}

.brand small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.22rem;
}

.site-nav a {
    padding: 0.35rem 0.46rem;
    color: var(--ink);
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--ink);
    background: rgba(171, 199, 0, 0.18);
    border-color: rgba(171, 199, 0, 0.35);
    outline: none;
}

.menu-toggle {
    display: none;
    justify-self: end;
    width: 46px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.home-hero {
    position: relative;
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
    display: grid;
    align-content: end;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 8rem) 5vw 4.8rem;
    color: var(--white);
    background: var(--ink);
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.home-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(12, 14, 10, 0.92), rgba(12, 14, 10, 0.72) 43%, rgba(12, 14, 10, 0.16)),
        linear-gradient(180deg, rgba(12, 14, 10, 0.15), rgba(12, 14, 10, 0.76));
}

.home-hero::after {
    position: absolute;
    right: 5vw;
    bottom: 0;
    left: 5vw;
    height: 6px;
    content: "";
    background: linear-gradient(90deg, var(--leaf), var(--orange));
}

.home-hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
}

.eyebrow,
.section-label {
    color: var(--leaf);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 760px;
    margin-top: 0.65rem;
    font-size: clamp(2.85rem, 5.4vw, 5.15rem);
    line-height: 1;
    font-weight: 900;
}

.home-hero-content p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 1.1rem;
    color: rgba(255, 253, 248, 0.9);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.88rem 1.1rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.btn-primary {
    color: var(--ink);
    background: var(--leaf);
    border-color: var(--leaf);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #c4df17;
}

.btn-outline {
    color: var(--white);
    background: rgba(255, 253, 248, 0.08);
    border-color: rgba(255, 253, 248, 0.5);
}

.hero-signature {
    position: absolute;
    right: 5vw;
    bottom: 4.8rem;
    z-index: 1;
    display: grid;
    width: min(310px, 30vw);
    padding: 1rem;
    border-left: 5px solid var(--orange);
    background: rgba(23, 24, 20, 0.62);
    backdrop-filter: blur(10px);
}

.hero-signature span {
    color: var(--leaf);
    font-weight: 900;
}

.hero-signature strong {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.2;
}

.featured-calls {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: min(1160px, calc(100% - 10vw));
    margin: -4rem auto 0;
}

.feature-tile {
    min-height: 260px;
    display: grid;
    align-content: end;
    overflow: hidden;
    position: relative;
    padding: 1rem;
    color: var(--white);
    border-radius: var(--radius);
    background: var(--ink);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.feature-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.feature-tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(23, 24, 20, 0.12), rgba(23, 24, 20, 0.88));
}

.feature-tile:hover img,
.feature-tile:focus-visible img {
    transform: scale(1.05);
}

.feature-tile span,
.feature-tile p,
.feature-tile strong {
    position: relative;
    z-index: 1;
}

.feature-tile span {
    color: var(--leaf);
    font-size: 1.35rem;
    font-weight: 900;
}

.feature-tile p {
    margin-top: 0.5rem;
    color: rgba(255, 253, 248, 0.8);
}

.feature-tile strong {
    margin-top: 1rem;
    color: var(--white);
    font-size: 0.88rem;
    text-transform: uppercase;
}

.story-section,
.editorial-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    margin-top: 6rem;
}

.story-copy {
    display: grid;
    align-content: center;
    gap: 1.1rem;
    min-height: 680px;
    padding: 6rem 5vw;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(31, 40, 18, 0.99) 0%, rgba(56, 69, 27, 0.98) 56%, rgba(185, 79, 8, 0.82) 100%);
}

h2 {
    margin-top: 0.55rem;
    font-size: clamp(2.15rem, 4.2vw, 4rem);
    line-height: 1.06;
    font-weight: 900;
}

.story-copy p:not(.section-label),
.editorial-copy p,
.section-heading p:not(.section-label) {
    color: rgba(255, 253, 248, 0.82);
    font-size: 1.06rem;
}

.story-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.65rem;
}

.story-tags span {
    padding: 0.82rem 0.9rem;
    color: var(--white);
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-left: 5px solid var(--leaf);
    border-radius: 6px;
    background: rgba(255, 253, 248, 0.09);
    font-weight: 900;
}

.story-tags span:nth-child(even) {
    border-left-color: var(--orange);
}

.story-photo,
.editorial-image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--ink);
}

.story-photo img,
.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-photo::after,
.editorial-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(23, 24, 20, 0.02), rgba(23, 24, 20, 0.62));
}

.story-photo::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 10px;
    content: "";
    background: linear-gradient(180deg, var(--leaf), var(--orange));
}

.story-photo figcaption {
    position: absolute;
    right: 5vw;
    bottom: 2rem;
    left: 2rem;
    z-index: 1;
    max-width: 420px;
    padding-left: 1rem;
    color: var(--white);
    border-left: 5px solid var(--orange);
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.25;
}

.editorial-section {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    margin-top: 0;
    background: var(--paper);
}

.editorial-copy {
    display: grid;
    align-content: center;
    gap: 1.05rem;
    padding: 6rem 5vw;
}

.editorial-copy p {
    color: var(--ink-2);
}

.text-link {
    width: fit-content;
    margin-top: 0.8rem;
    color: var(--orange-dark);
    font-weight: 900;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--ink);
    outline: none;
}

.section {
    padding: 6.2rem 5vw;
}

.section-heading {
    width: min(960px, 100%);
    margin: 0 auto 2rem;
    text-align: center;
}

.roots-section {
    color: var(--white);
    background: var(--olive-dark);
}

.roots-carousel {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.carousel-stage {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms ease;
}

.carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.carousel-slide::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(23, 24, 20, 0.08), rgba(23, 24, 20, 0.9)),
        linear-gradient(90deg, rgba(23, 24, 20, 0.78), rgba(23, 24, 20, 0.06));
}

.carousel-card {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
}

.carousel-card span {
    color: var(--leaf);
    font-weight: 900;
    text-transform: uppercase;
}

.carousel-card h3 {
    margin-top: 0.45rem;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.02;
}

.carousel-card p {
    margin-top: 0.9rem;
    color: rgba(255, 253, 248, 0.82);
    font-size: 1.05rem;
}

.carousel-card a {
    display: inline-flex;
    margin-top: 1.2rem;
    padding: 0.72rem 0.9rem;
    color: var(--ink);
    border-radius: 6px;
    background: var(--leaf);
    font-weight: 900;
    text-decoration: none;
}

.carousel-nav {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}

.carousel-nav > button,
.carousel-dots button {
    border: 1px solid var(--line-light);
    border-radius: 6px;
    background: rgba(255, 253, 248, 0.08);
    cursor: pointer;
}

.carousel-nav > button {
    width: 44px;
    height: 42px;
    color: var(--white);
    font-size: 1.1rem;
}

.carousel-nav > button:hover,
.carousel-nav > button:focus-visible {
    color: var(--ink);
    background: var(--leaf);
    outline: none;
}

.carousel-dots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.carousel-dots button {
    height: 8px;
    padding: 0;
}

.carousel-dots button.is-active {
    background: var(--leaf);
    border-color: var(--leaf);
}

.chapters-section {
    padding: 6.2rem 5vw;
    background: var(--paper-warm);
}

.chapters-section .section-heading p:not(.section-label) {
    color: var(--muted);
}

.chapter-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 1rem;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.chapter-tile {
    position: relative;
    display: grid;
    align-content: end;
    overflow: hidden;
    padding: 1rem;
    color: var(--white);
    border-radius: var(--radius);
    background: var(--ink);
    text-decoration: none;
}

.chapter-tile.is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.chapter-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.chapter-tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(23, 24, 20, 0.04), rgba(23, 24, 20, 0.86));
}

.chapter-tile:hover img,
.chapter-tile:focus-visible img {
    transform: scale(1.05);
}

.chapter-tile span,
.chapter-tile h3 {
    position: relative;
    z-index: 1;
}

.chapter-tile span {
    color: var(--leaf);
    font-weight: 900;
}

.chapter-tile h3 {
    max-width: 320px;
    margin-top: 0.2rem;
    font-size: 1.45rem;
    line-height: 1.14;
}

.voices-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 4rem;
    padding: 6.2rem 5vw;
    color: var(--white);
    background: var(--ink);
}

.voices-copy,
.voice-list {
    width: min(100%, 680px);
}

.voices-copy {
    justify-self: end;
}

.voice-list {
    display: grid;
    gap: 1rem;
}

.voice-list blockquote {
    padding: 1.2rem 1.3rem;
    border-left: 5px solid var(--orange);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.08);
}

.voice-list blockquote:nth-child(even) {
    border-left-color: var(--leaf);
}

.voice-list p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.25;
}

.voice-list cite {
    display: block;
    margin-top: 0.55rem;
    color: rgba(255, 253, 248, 0.7);
    font-style: normal;
}

.contact-cta {
    padding: 5.2rem 5vw;
    color: var(--white);
    background: var(--orange-dark);
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    width: min(1160px, 100%);
    margin: 0 auto;
}

.contact-shell .section-label {
    color: var(--white);
}

.contact-shell h2 {
    max-width: 820px;
    margin-top: 0.4rem;
    font-size: 2.5rem;
}

.site-footer {
    color: var(--white);
    background: #10110f;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.65fr) minmax(180px, 0.55fr);
    gap: 2rem;
    width: min(1160px, 100%);
    margin: 0 auto;
    padding: 3.2rem 5vw;
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-brand img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
}

.footer-brand strong {
    display: block;
    font-size: 1.25rem;
}

.footer-brand p,
.footer-contact,
.footer-links a,
.footer-bottom {
    color: rgba(255, 253, 248, 0.72);
}

.footer-contact,
.footer-links {
    display: grid;
    gap: 0.4rem;
    font-style: normal;
}

.footer-contact span {
    color: var(--leaf);
    font-weight: 900;
}

.footer-contact a,
.footer-links a {
    text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: min(1160px, 100%);
    margin: 0 auto;
    padding: 1rem 5vw 1.4rem;
    border-top: 1px solid rgba(255, 253, 248, 0.1);
    font-size: 0.92rem;
}

.floating-actions {
    position: fixed;
    right: 1rem;
    top: 50%;
    z-index: 90;
    display: grid;
    gap: 0.55rem;
    transform: translateY(-50%);
}

.floating-action {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: var(--white);
    border: 1px solid rgba(255, 253, 248, 0.28);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(23, 24, 20, 0.24);
    text-decoration: none;
    transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.floating-action:hover,
.floating-action:focus-visible {
    transform: translateX(-3px);
    filter: brightness(1.08);
    box-shadow: 0 18px 42px rgba(23, 24, 20, 0.3);
    outline: none;
}

.floating-action svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.floating-top {
    color: var(--ink);
    background: var(--leaf);
}

.floating-whatsapp {
    background: #1fa463;
}

.floating-instagram {
    background: var(--orange-dark);
}

.js-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.js-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1280px) {
    .site-header {
        min-height: 70px;
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        display: none;
        height: calc(100vh - 70px);
        height: calc(100svh - 70px);
        padding: 1rem 5vw 2rem;
        background: var(--white);
        border-top: 1px solid var(--line);
        overflow-y: auto;
    }

    .site-nav.is-open {
        display: grid;
        align-content: start;
        gap: 0;
    }

    .site-nav a {
        padding: 0.95rem 0.2rem;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        font-size: 1.08rem;
        white-space: normal;
    }

    .hero-signature {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(360px, 100%);
        margin-top: 2rem;
    }

    .featured-calls,
    .story-section,
    .editorial-section,
    .voices-section,
    .contact-shell,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .featured-calls {
        margin-top: 1rem;
    }

    .story-section,
    .editorial-section {
        margin-top: 0;
    }

    .story-copy,
    .story-photo,
    .editorial-image {
        min-height: 520px;
    }

    .voices-copy {
        justify-self: start;
    }

    .chapter-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .brand span {
        display: none;
    }

    .home-hero {
        min-height: auto;
        padding: 5rem 5vw 3.5rem;
    }

    .home-hero-content p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .featured-calls,
    .story-tags,
    .chapter-mosaic,
    .carousel-dots {
        grid-template-columns: 1fr;
    }

    .feature-tile {
        min-height: 230px;
    }

    .story-copy,
    .editorial-copy,
    .section,
    .chapters-section,
    .voices-section {
        padding: 4.2rem 5vw;
    }

    .story-copy {
        min-height: auto;
    }

    .story-photo,
    .editorial-image {
        min-height: 380px;
    }

    .story-photo figcaption {
        right: 5vw;
        bottom: 1.25rem;
        left: 5vw;
        font-size: 1rem;
    }

    .carousel-stage {
        min-height: 560px;
    }

    .carousel-slide {
        padding: 1rem;
    }

    .chapter-mosaic {
        grid-auto-rows: 230px;
    }

    .chapter-tile.is-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-shell h2 {
        font-size: 2.05rem;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-bottom {
        display: grid;
    }

    .floating-actions {
        right: 0.75rem;
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .floating-action {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 72px;
        padding: 0.55rem 1rem;
        gap: 0.75rem;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .menu-toggle {
        width: 44px;
        height: 40px;
    }

    .site-nav {
        top: 72px;
        width: 100%;
        height: calc(100vh - 72px);
        height: calc(100svh - 72px);
        padding: 0.7rem 1.1rem 1.4rem;
        justify-content: stretch;
        justify-items: stretch;
    }

    .site-nav.is-open {
        grid-template-columns: 1fr;
        justify-content: stretch;
        justify-items: stretch;
        width: 100%;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 50px;
        padding: 0.8rem 0.2rem;
        font-size: 1rem;
        line-height: 1.25;
        text-align: left;
    }

    .home-hero {
        min-height: calc(100svh - 72px);
        padding: 4.4rem 1.15rem 2.7rem;
    }

    .home-hero::before {
        background:
            linear-gradient(90deg, rgba(12, 14, 10, 0.92), rgba(12, 14, 10, 0.72)),
            linear-gradient(180deg, rgba(12, 14, 10, 0.14), rgba(12, 14, 10, 0.84));
    }

    .home-hero::after {
        right: 1.15rem;
        left: 1.15rem;
    }

    .eyebrow,
    .section-label {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .home-hero h1 {
        max-width: 11ch;
        font-size: clamp(2.35rem, 12vw, 3.18rem);
        line-height: 1.02;
    }

    .home-hero-content p:not(.eyebrow) {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-actions {
        gap: 0.65rem;
        margin-top: 1.45rem;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.82rem 0.95rem;
    }

    .hero-signature {
        width: 100%;
        margin-top: 1.35rem;
        padding: 0.85rem 0.95rem;
    }

    .featured-calls {
        width: calc(100% - 2rem);
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .feature-tile {
        min-height: 220px;
        padding: 1rem;
    }

    .feature-tile span {
        font-size: 1.18rem;
    }

    .feature-tile p {
        font-size: 0.94rem;
        line-height: 1.45;
    }

    .story-section,
    .editorial-section {
        grid-template-columns: 1fr;
    }

    .story-copy,
    .editorial-copy,
    .section,
    .chapters-section,
    .voices-section {
        padding: 3.5rem 1.15rem;
    }

    h2,
    .contact-shell h2 {
        font-size: clamp(1.95rem, 8.6vw, 2.55rem);
        line-height: 1.08;
    }

    .section-heading {
        margin-bottom: 1.45rem;
        text-align: left;
    }

    .story-copy {
        gap: 0.95rem;
    }

    .story-copy p:not(.section-label),
    .editorial-copy p,
    .section-heading p:not(.section-label) {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .story-tags {
        gap: 0.55rem;
    }

    .story-tags span {
        padding: 0.72rem 0.78rem;
        font-size: 0.92rem;
    }

    .story-photo,
    .editorial-image {
        min-height: 340px;
    }

    .story-photo::before {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: 6px;
        background: linear-gradient(90deg, var(--leaf), var(--orange));
    }

    .story-photo figcaption {
        right: 1.15rem;
        bottom: 1rem;
        left: 1.15rem;
        max-width: none;
        font-size: 0.95rem;
    }

    .editorial-copy {
        gap: 0.9rem;
    }

    .roots-section {
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .carousel-stage {
        min-height: 510px;
    }

    .carousel-card h3 {
        font-size: clamp(1.9rem, 8vw, 2.25rem);
        line-height: 1.06;
    }

    .carousel-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .carousel-nav {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 0.55rem;
    }

    .carousel-dots {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .chapter-mosaic {
        width: 100%;
        grid-auto-rows: 205px;
        gap: 0.75rem;
    }

    .chapter-tile {
        padding: 0.85rem;
    }

    .chapter-tile h3 {
        font-size: 1.2rem;
    }

    .voices-section {
        gap: 1.5rem;
    }

    .voice-list blockquote {
        padding: 1rem;
    }

    .voice-list p {
        font-size: 1.05rem;
    }

    .contact-cta {
        padding: 3.4rem 1.15rem;
    }

    .contact-shell {
        gap: 1.3rem;
    }

    .footer-inner {
        padding: 2.5rem 1.15rem;
        gap: 1.5rem;
    }

    .footer-bottom {
        padding: 1rem 1.15rem 5rem;
    }

    .floating-actions {
        right: 0.75rem;
        bottom: 0.75rem;
        gap: 0.45rem;
    }

    .floating-action {
        width: 44px;
        height: 44px;
    }

    .floating-action svg {
        width: 21px;
        height: 21px;
    }
}

@media (max-width: 420px) {
    .site-nav a {
        font-size: 0.95rem;
    }

    .home-hero {
        padding-top: 3.8rem;
    }

    .home-hero h1 {
        font-size: clamp(2.15rem, 11.5vw, 2.75rem);
    }

    .featured-calls {
        width: calc(100% - 1.5rem);
    }

    .story-copy,
    .editorial-copy,
    .section,
    .chapters-section,
    .voices-section {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
