/* ============================================================
   EFA Australia — Falcon user overrides
   Place in: assets/css/user.css  AND assets/css/user.min.css
   Loaded AFTER theme.min.css so these win.
   ============================================================ */

:root {
    /* ---------- EFA palette ---------- */
    --paddock-green: #2d4a2b;   /* Primary — agricultural, grounded */
    --deep-forest:   #1f3520;   /* Darkest — backgrounds, footers */
    --logo-green:    #40b028;   /* Logo green — accents, recycle icon */
    --logo-yellow:   #f0c020;   /* Logo yellow — sparingly, accent only */
    --warm-soil:     #8b5a3c;   /* Earth accent */
    --recycle-orange:#c8643a;   /* Door card 2 — extinguisher side */

    /* ---------- Purple Rain palette ---------- */
    --purple-rain:       #704090; /* Logo purple — primary for PR section */
    --purple-rain-dark:  #583078;
    --purple-rain-light: #8048a0;
    --pr-leaf-green:     #387020; /* PR logo leaf green */

    /* ---------- Neutrals ---------- */
    --cream:         #f5f1e8;
    --stone:         #e8e2d0;
    --ink:           #1a1a1a;
    --muted:         #6b6b6b;
}

/* ---------- Typography ---------- */
body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background-color: var(--cream);
    color: var(--ink);
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ---------- Brand colour overrides ---------- */
body.brand-efa a:not(.btn):not(.nav-link):not(.navbar-brand):not(.door-card) { color: var(--paddock-green); }
body.brand-purple_rain a:not(.btn):not(.nav-link):not(.navbar-brand) { color: var(--purple-rain); }

.btn-primary,
body.brand-efa .btn-primary {
    background-color: var(--paddock-green);
    border-color: var(--paddock-green);
}
.btn-primary:hover,
body.brand-efa .btn-primary:hover {
    background-color: var(--deep-forest);
    border-color: var(--deep-forest);
}
body.brand-purple_rain .btn-primary {
    background-color: var(--purple-rain);
    border-color: var(--purple-rain);
}
body.brand-purple_rain .btn-primary:hover {
    background-color: var(--purple-rain-light);
    border-color: var(--purple-rain-light);
}

/* ---------- Navbar ---------- */
.site-header .navbar { padding-top: 1rem; padding-bottom: 1rem; }
.navbar-brand .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
}
.brand-mark-efa { background: var(--paddock-green); }
.brand-mark-pr  { background: var(--purple-rain); }

.navbar-brand .brand-text {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    color: var(--ink);
}

.navbar-logo {
    height: 42px;
    width: auto;
    display: block;
}
.navbar-logo-pr {
    height: 44px;
}

/* ---------- Brand name block (next to logo) ---------- */
.brand-name-block {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-name-line-1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.brand-name-line-2 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

/* Hide tagline on very small screens to keep nav tidy */
@media (max-width: 575.98px) {
    .brand-name-line-2 { display: none; }
    .brand-name-line-1 { font-size: 1.05rem; }
}
.navbar .nav-link.active {
    font-weight: 600;
    color: var(--paddock-green) !important;
}
body.brand-purple_rain .navbar .nav-link.active {
    color: var(--purple-rain) !important;
}

.btn-enquire {
    background-color: var(--purple-rain);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
}
.btn-enquire:hover {
    background-color: var(--purple-rain-light);
    color: #fff;
}

/* ---------- Main ---------- */
.site-main {
    min-height: 60vh;
    padding: 0;
    background-color: var(--cream);
}

/* ============================================================
   HOMEPAGE SECTIONS — EFA "two doors"
   ============================================================ */

/* ---------- Eyebrow helper ---------- */
.eyebrow {
    color: var(--muted);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- 1. Centred hero ---------- */
.hero-centred {
    padding: 6rem 0 4rem;
}
.hero-headline {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.1;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}
.hero-subhead {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 60ch;
    line-height: 1.6;
}

/* ---------- 2. Two-door cards ---------- */
.two-doors {
    padding: 3rem 0 5rem;
}
.door-card {
    display: block;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-decoration: none !important;
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    position: relative;
    overflow: hidden;
}
.door-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.door-card-fertiliser {
    background: linear-gradient(135deg, var(--paddock-green) 0%, var(--deep-forest) 100%);
    color: #fff;
}
.door-card-recycling {
    background: linear-gradient(135deg, var(--recycle-orange) 0%, #a04e2c 100%);
    color: #fff;
}
.door-card .door-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.door-card .door-icon svg {
    color: #fff;
}
.door-card .door-title {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.door-card .door-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.door-card .door-cta {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
}
.door-card:hover .door-cta {
    border-bottom-color: #fff;
}

/* ---------- 3. Story-behind-it band (dark green) ---------- */
.story-band {
    background-color: var(--deep-forest);
    color: #fff;
    padding: 5rem 0;
}
.story-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
}
@media (max-width: 991.98px) {
    .story-logo { max-width: 240px; }
}
.story-headline {
    color: #fff;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.story-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 60ch;
    margin-bottom: 0;
}
.story-band .btn-light {
    background-color: #fff;
    color: var(--deep-forest);
    border-color: #fff;
    font-weight: 600;
}
.story-band .btn-light:hover {
    background-color: var(--cream);
    color: var(--deep-forest);
}

/* ---------- 4. Stats strip (cream band) ---------- */
.stats-strip {
    background-color: var(--stone);
    padding: 4rem 0;
}
.stat-item {
    padding: 1rem;
}
.stat-value {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1;
    color: var(--paddock-green);
    margin-bottom: 0.5rem;
}
.stat-value .stat-unit {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--muted);
    margin-left: 0.25rem;
}
.stat-label {
    font-size: 1rem;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--deep-forest);
    color: #d9d3c2;
    padding: 4rem 0 1.5rem;
    margin-top: 0;
}
.site-footer h4 {
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.site-footer p { color: #d9d3c2; }
.site-footer a {
    color: #d9d3c2 !important;
    text-decoration: none;
}
.site-footer a:hover { color: #fff !important; }
.site-footer ul li { margin-bottom: 0.4rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

/* ---------- Footer brand logos (small, side-by-side) ---------- */
.footer-brand-logos {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.footer-brand-logo {
    height: 32px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    opacity: 0.95;
}

/* ============================================================
   PURPLE RAIN HOMEPAGE SECTIONS
   ============================================================ */

/* ---------- Eyebrow variant for Purple Rain ---------- */
.eyebrow-pr {
    color: var(--purple-rain);
}
.eyebrow-light {
    color: rgba(255,255,255,0.7);
}

/* ---------- Section headlines (shared) ---------- */
.section-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.section-subhead {
    color: var(--muted);
    font-size: 1.125rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons (Purple Rain variants) ---------- */
.btn-outline-pr {
    background-color: transparent;
    color: var(--purple-rain);
    border: 2px solid var(--purple-rain);
    font-weight: 500;
}
.btn-outline-pr:hover {
    background-color: var(--purple-rain);
    color: #fff;
}

/* ---------- 1. Split hero ---------- */
.pr-hero {
    padding: 5rem 0 4rem;
}
.pr-hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.1;
}
.pr-hero-subhead {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.6;
}
.pr-hero-image .image-placeholder {
    background: linear-gradient(135deg, var(--stone) 0%, #d8cdb0 100%);
    border-radius: 12px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-family: 'Fraunces', Georgia, serif;
    text-align: center;
}
.placeholder-label small {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ---------- 2. Trust strip (dark green band) ---------- */
.pr-trust-strip {
    background-color: var(--deep-forest);
    color: #fff;
    padding: 3rem 0;
}
.pr-trust-strip .trust-value {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pr-trust-strip .trust-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}

/* ---------- 3. Products ---------- */
.pr-products {
    padding: 5rem 0;
}
.product-card {
    display: block;
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    text-decoration: none !important;
    color: var(--ink);
    border: 1px solid var(--stone);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    color: var(--ink);
}
.product-card-pellets:hover { border-color: var(--warm-soil); }
.product-card-liquids:hover { border-color: var(--purple-rain); }

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.product-card-pellets .product-icon {
    background-color: rgba(139, 90, 60, 0.12);
    color: var(--warm-soil);
}
.product-card-liquids .product-icon {
    background-color: rgba(112, 64, 144, 0.12);
    color: var(--purple-rain);
}
.product-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}
.product-text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.product-count {
    font-size: 0.875rem;
    color: var(--purple-rain);
    margin: 0 0 1rem;
}
.product-count strong {
    font-weight: 600;
}
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.product-tags li {
    background-color: var(--cream);
    border: 1px solid var(--stone);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.825rem;
    color: var(--ink);
}
.product-card-pellets .product-cta { color: var(--warm-soil); }
.product-card-liquids .product-cta { color: var(--purple-rain); }
.product-cta {
    font-weight: 600;
    font-size: 1rem;
}

/* ---------- Hero real image (replaces placeholder when present) ---------- */
.pr-hero-image .pr-hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    max-height: 520px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* ---------- Product card image headers ---------- */
.product-card {
    overflow: hidden; /* clip image corners to card radius */
    padding: 0; /* image goes flush; inner padding moved to body */
}
.product-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--cream);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}
.product-card:hover .product-card-image img {
    transform: scale(1.04);
}
/* restore inner padding inside card body since we removed it from the wrapper */
.product-card .product-icon,
.product-card .product-title,
.product-card .product-text,
.product-card .product-count,
.product-card .product-tags,
.product-card .product-cta {
    margin-left: 2rem;
    margin-right: 2rem;
}
.product-card .product-icon {
    margin-top: 1.75rem;
}
.product-card .product-cta {
    margin-bottom: 2rem;
    display: inline-block;
}

/* ---------- 3b. Application methods strip ---------- */
.pr-app-methods {
    background-color: #fff;
    padding: 4rem 0;
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
}
.app-method-tile {
    padding: 1.5rem 0.5rem;
    transition: transform 0.18s ease;
}
.app-method-tile:hover {
    transform: translateY(-4px);
}
.app-method-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(112, 64, 144, 0.08);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-rain);
    margin-bottom: 0.875rem;
}
.app-method-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}

/* ---------- 4. Circular story (cream band) ---------- */
.pr-circular-story {
    background-color: var(--stone);
    padding: 5rem 0;
}
.story-feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.story-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 320px;
    object-fit: cover;
}
.story-step .step-circle {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--purple-rain);
    border: 2px solid rgba(112, 64, 144, 0.18);
}
.story-step .step-title {
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.story-step .step-text {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ---------- 5. Use cases ---------- */
.pr-use-cases {
    padding: 5rem 0;
    background-color: var(--cream);
}
.use-case-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--stone);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.use-case-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(56, 112, 32, 0.10);
    color: var(--pr-leaf-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.use-case-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}
.use-case-text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- 6. Lab-verified band (dark forest) ---------- */
.pr-lab-band {
    background-color: var(--deep-forest);
    color: #fff;
    padding: 5rem 0;
}
.lab-headline {
    color: #fff;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.lab-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.075rem;
    line-height: 1.6;
}
.pr-lab-band .btn-light {
    background-color: #fff;
    color: var(--deep-forest);
    border-color: #fff;
    font-weight: 600;
}

.lab-analysis {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
}
.lab-analysis-title {
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.lab-analysis-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.lab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.lab-cell {
    background-color: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 1rem;
}
.lab-value {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
}
.lab-value .lab-unit {
    font-size: 0.5em;
    color: rgba(255,255,255,0.6);
    margin-left: 2px;
}
.lab-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}
.lab-footnote {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-bottom: 0;
    font-style: italic;
}

/* ---------- 7. Testimonial ---------- */
.pr-testimonial {
    padding: 5rem 0;
    background-color: var(--cream);
}
.testimonial-mark {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 6rem;
    color: var(--purple-rain);
    line-height: 1;
    margin-bottom: -1rem;
    opacity: 0.4;
}
.testimonial-quote {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 1.5rem;
    border-left: none;
    padding: 0;
}
.testimonial-attribution {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.testimonial-attribution strong {
    color: var(--ink);
}

/* ---------- 8. Contact band (purple) ---------- */
.pr-contact-band {
    background: linear-gradient(135deg, var(--purple-rain) 0%, var(--purple-rain-dark) 100%);
    color: #fff;
    padding: 5rem 0;
}
.contact-headline {
    color: #fff;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.contact-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.075rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.contact-detail {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}
.contact-detail strong {
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}
.contact-detail a {
    color: #fff !important;
    text-decoration: underline;
}

.contact-form-wrap {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    color: var(--ink);
}
.contact-form .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.35rem;
}
.contact-form .form-control,
.contact-form .form-select {
    border-color: var(--stone);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--purple-rain);
    box-shadow: 0 0 0 0.25rem rgba(112, 64, 144, 0.18);
}
.contact-form .btn-primary {
    background-color: var(--purple-rain);
    border-color: var(--purple-rain);
}
.contact-form .btn-primary:hover {
    background-color: var(--purple-rain-dark);
    border-color: var(--purple-rain-dark);
}

/* ============================================================
   OUR STORY PAGE
   ============================================================ */

.story-hero {
    padding: 6rem 0 4rem;
}
.story-hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.1;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}
.story-hero-subhead {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 56ch;
    line-height: 1.6;
}

.story-section {
    padding: 4rem 0;
}
.story-section-headline {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--ink);
}
.story-section-headline-light {
    color: #fff;
}
.story-prose {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--ink);
}
.story-prose-light {
    color: rgba(255,255,255,0.88);
}

.story-band-dark {
    background-color: var(--deep-forest);
    color: #fff;
    padding: 5rem 0;
}

.story-values {
    background-color: var(--stone);
    padding: 5rem 0;
}
.value-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--stone);
}
.value-card-number {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.25rem;
    color: var(--paddock-green);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 0.55;
}
.value-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}
.value-card-text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.story-cta {
    padding: 5rem 0;
    background-color: var(--cream);
}
.story-cta-headline {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--ink);
}
.story-cta-text {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}
.story-cta .btn-outline-dark {
    border-color: var(--ink);
    color: var(--ink);
}
.story-cta .btn-outline-dark:hover {
    background-color: var(--ink);
    color: #fff;
}

/* ============================================================
   RECYCLING SERVICES PAGE
   ============================================================ */

.rec-what-we-collect {
    padding: 5rem 0;
}
.collect-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--stone);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.collect-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.collect-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(200, 100, 58, 0.10);
    color: var(--recycle-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.collect-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}
.collect-text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.rec-process {
    background-color: var(--deep-forest);
    color: #fff;
    padding: 5rem 0;
}
.process-step {
    text-align: left;
}
.process-number {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    color: var(--recycle-orange);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.process-title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.process-text {
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.rec-form-band {
    background: linear-gradient(135deg, var(--paddock-green) 0%, var(--deep-forest) 100%);
    color: #fff;
    padding: 5rem 0;
}
.rec-form-band .contact-headline {
    color: #fff;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.rec-form-band .contact-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.075rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.rec-form-band .contact-detail {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}
.rec-form-band .contact-detail strong {
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}
.rec-form-band .contact-detail a {
    color: #fff !important;
    text-decoration: underline;
}
.rec-form-band .contact-form .btn-primary {
    background-color: var(--recycle-orange);
    border-color: var(--recycle-orange);
}
.rec-form-band .contact-form .btn-primary:hover {
    background-color: #a04e2c;
    border-color: #a04e2c;
}
.rec-form-band .contact-form .form-control:focus,
.rec-form-band .contact-form .form-select:focus {
    border-color: var(--recycle-orange);
    box-shadow: 0 0 0 0.25rem rgba(200, 100, 58, 0.18);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-band {
    padding: 4rem 0 6rem;
    background-color: var(--cream);
}

.contact-details-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--stone);
}
.contact-details-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.contact-details-text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}
.contact-details-card .contact-detail {
    color: var(--ink);
    margin-bottom: 1rem;
}
.contact-details-card .contact-detail strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.contact-details-card .contact-detail a {
    color: var(--paddock-green) !important;
    text-decoration: none;
}
.contact-details-card .contact-detail a:hover {
    text-decoration: underline;
}
.contact-details-note {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.55;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-style: italic;
}

.contact-band .contact-form-wrap {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--stone);
    color: var(--ink);
}
.contact-band .contact-form .form-control:focus,
.contact-band .contact-form .form-select:focus {
    border-color: var(--paddock-green);
    box-shadow: 0 0 0 0.25rem rgba(45, 74, 43, 0.18);
}
.contact-band .contact-form .btn-primary {
    background-color: var(--paddock-green);
    border-color: var(--paddock-green);
}
.contact-band .contact-form .btn-primary:hover {
    background-color: var(--deep-forest);
    border-color: var(--deep-forest);
}

/* ============================================================
   PURPLE RAIN PRODUCT LISTING
   ============================================================ */

.products-grid-section {
    padding: 4rem 0;
}

.product-listing-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--stone);
    height: 100%;
    text-decoration: none !important;
    color: var(--ink);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.product-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    border-color: var(--purple-rain);
    color: var(--ink);
}

.product-listing-image {
    background-color: #faf7ef;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-listing-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-listing-default-logo {
    max-width: 50% !important;
    max-height: 60% !important;
    opacity: 0.65;
}
.product-listing-placeholder {
    color: rgba(112, 64, 144, 0.35);
}

.product-listing-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-listing-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: var(--ink);
    line-height: 1.25;
}
.product-listing-tagline {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.product-listing-npks {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.85rem;
    color: var(--purple-rain);
    background-color: rgba(112, 64, 144, 0.08);
    border-radius: 4px;
    padding: 0.35rem 0.6rem;
    margin-bottom: 0.6rem;
    display: inline-block;
}
.product-listing-pack {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.product-listing-cta {
    color: var(--purple-rain);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    border-top: 1px solid var(--stone);
    padding-top: 1rem;
}

/* ============================================================
   PURPLE RAIN PRODUCT DETAIL PAGE
   ============================================================ */

.product-detail-hero {
    padding: 3rem 0 2rem;
}

.product-breadcrumb {
    font-size: 0.875rem;
    color: var(--muted);
}
.product-breadcrumb a {
    color: var(--purple-rain);
    text-decoration: none;
}
.product-breadcrumb a:hover { text-decoration: underline; }
.product-breadcrumb .sep {
    margin: 0 0.4rem;
    color: var(--stone);
}

/* ---------- Image area (left column) ---------- */
.product-detail-image {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid var(--stone);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
    padding: 1rem;
}
.product-detail-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-detail-default-logo {
    max-width: 50% !important;
    max-height: 70% !important;
    opacity: 0.65;
}

/* ---------- NPKS box ---------- */
.npks-box {
    background-color: var(--deep-forest);
    color: #fff;
    padding: 1.25rem;
    border-radius: 12px;
}
.npks-label {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.npks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    text-align: center;
}
.npks-cell {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 0.75rem 0.25rem;
}
.npks-value {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.65rem;
    color: #fff;
    line-height: 1;
}
.npks-value .npks-unit {
    font-size: 0.45em;
    color: rgba(255, 255, 255, 0.55);
}
.npks-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.25rem;
}
.npks-fullname {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
    letter-spacing: 0.02em;
}

.product-detail-name {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    line-height: 1.15;
    margin-bottom: 0.4rem;
    color: var(--ink);
}
.product-detail-tagline {
    color: var(--purple-rain);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.product-detail-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-quick-specs,
.spec-list {
    margin: 0 0 1rem;
    padding: 0;
}
.spec-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--stone);
    margin: 0;
}
.spec-row:last-child { border-bottom: 0; }
.spec-key {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 600;
    margin: 0;
}
.spec-val {
    color: var(--ink);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.spec-section {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid var(--stone);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.spec-section-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--stone);
    color: var(--ink);
}
.spec-prose {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink);
}

.product-detail-content {
    padding: 1rem 0 4rem;
    background-color: var(--cream);
}

.ideal-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.ideal-tag {
    background-color: rgba(112, 64, 144, 0.08);
    color: var(--purple-rain);
    border: 1px solid rgba(112, 64, 144, 0.15);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.aus-made-card {
    background: linear-gradient(135deg, rgba(64, 176, 40, 0.10), rgba(240, 192, 32, 0.08));
    border: 1px solid rgba(64, 176, 40, 0.20);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.aus-made-icon { font-size: 2rem; line-height: 1; }
.aus-made-text { font-size: 0.9rem; color: var(--ink); line-height: 1.5; }

.product-gallery-section {
    padding: 3rem 0;
    background-color: #fff;
}
.gallery-figure {
    margin: 0;
    background-color: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--stone);
}
.gallery-figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.gallery-figure figcaption {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}

/* Success toast shown at top of product page after modal submission */
.modal-success-toast {
    padding: 1.5rem 0;
    background-color: rgba(64, 176, 40, 0.08);
    border-bottom: 1px solid rgba(64, 176, 40, 0.20);
}
.modal-success-toast .alert {
    border-radius: 10px;
    border: 1px solid rgba(64, 176, 40, 0.30);
    background-color: #fff;
    color: #1f4d1f;
    padding: 1.25rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.modal-success-toast .alert strong {
    color: var(--paddock-green);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

/* ============================================================
   EFA — Image-aware hero sections (background image support)
   ============================================================ */

/* When .has-bg-image is added to .story-hero or .hero-centred,
   it gets a darkened background image and white text. */
.story-hero.has-bg-image,
.hero-centred.has-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 7rem 0 6rem;
    color: #fff;
}
.story-hero.has-bg-image::before,
.hero-centred.has-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31,53,32,0.55) 0%, rgba(31,53,32,0.75) 100%);
    z-index: 0;
}
.story-hero.has-bg-image > .container,
.hero-centred.has-bg-image > .container {
    position: relative;
    z-index: 1;
}
.story-hero.has-bg-image .eyebrow,
.hero-centred.has-bg-image .eyebrow {
    color: rgba(255,255,255,0.85);
}
.story-hero.has-bg-image .story-hero-headline,
.hero-centred.has-bg-image .hero-headline {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.story-hero.has-bg-image .story-hero-subhead,
.hero-centred.has-bg-image .hero-subhead {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ============================================================
   EFA — Door cards with images
   ============================================================ */
.door-card-with-image {
    padding: 0 !important; /* image goes flush, body has its own padding */
    overflow: hidden;
}
.door-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.door-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.door-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.door-card-with-image:hover .door-card-image img {
    transform: scale(1.04);
}
.door-card-body {
    padding: 2.5rem 2rem;
}
.door-card-with-image .door-card-body {
    padding-top: 1.75rem;
}

/* ============================================================
   EFA — Story band image (replaces logo when set)
   ============================================================ */
.story-band-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    max-width: 380px;
    margin: 0 auto;
}
.story-band-image img {
    width: 100%;
    height: auto;
    display: block;
}
@media (min-width: 992px) {
    .story-band-image { margin: 0; }
}

/* ============================================================
   EFA — Feature image inside story sections
   (Used by our-story origin + how, recycling service area)
   ============================================================ */
.story-section .story-feature-image,
.story-band-dark .story-feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.story-section .story-feature-image img,
.story-band-dark .story-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}
.story-band-dark .story-feature-image {
    box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}

/* ============================================================
   EFA — Recycling: "what we collect" cards with image headers
   ============================================================ */
.collect-card-with-image {
    padding: 0 !important;
    overflow: hidden;
}
.collect-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--cream);
}
.collect-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.collect-card-with-image:hover .collect-card-image img {
    transform: scale(1.04);
}
.collect-card-body {
    padding: 1.75rem 1.5rem 2rem;
}
/* When a card has no image, the icon needs space at the top */
.collect-card:not(.collect-card-with-image) .collect-card-body {
    padding: 0;
}

/* ============================================================
   Purple Rain inner pages — How it's made / For your paddock / About
   ============================================================ */

/* ----- Ingredient cards (how-its-made) ----- */
.ingredient-card {
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.ingredient-icon {
    width: 56px;
    height: 56px;
    background: rgba(112, 64, 144, 0.08);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-rain);
    margin-bottom: 1rem;
}
.ingredient-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--ink);
}
.ingredient-text {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ----- Process steps (used here AND on recycling-services already) ----- */
.process-step .process-number {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--purple-rain);
    line-height: 1;
    margin-bottom: 0.6rem;
}

/* ----- Paddock recommendation cards (for-your-paddock) ----- */
.paddock-card {
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.75rem;
    height: 100%;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.paddock-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.paddock-card-tag {
    display: inline-block;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    color: #fff;
    margin-bottom: 0.85rem;
}
.paddock-card-prf60  .paddock-card-tag { background: #4a7028; }
.paddock-card-prf80  .paddock-card-tag { background: #5e3a9e; }
.paddock-card-prf100 .paddock-card-tag { background: #2d4a7e; }
.paddock-card-prf120 .paddock-card-tag { background: #8e2d54; }
.paddock-card-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}
.paddock-card-text {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}
.paddock-card-rate {
    font-family: ui-monospace, monospace;
    font-size: 0.85rem;
    color: var(--purple-rain);
    font-weight: 600;
    margin: 0;
    padding-top: 0.6rem;
    border-top: 1px solid var(--stone);
}

/* ----- Mixing tier tiles (for-your-paddock dark band) ----- */
.mixing-tier {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
}
.mixing-tier-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.mixing-tier-rate {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.mixing-tier-per {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* ----- Value cards on dark band variant (about page) ----- */
.value-card-light {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    height: 100%;
}
.value-card-light .value-card-number {
    color: var(--purple-rain-light, #b88be8);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.value-card-light .value-card-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}
.value-card-light .value-card-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

/* ----- Assurance icon tiles (about page) ----- */
.assurance-tile {
    padding: 1rem 0.5rem;
}
.assurance-icon {
    width: 64px;
    height: 64px;
    background: rgba(112, 64, 144, 0.08);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-rain);
    margin-bottom: 0.875rem;
}
.assurance-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}

/* Light eyebrow on dark bands */
.eyebrow-light {
    color: rgba(255,255,255,0.8) !important;
}

/* Section subhead helper */
.section-subhead {
    color: var(--muted);
    max-width: 60ch;
    line-height: 1.6;
}

/* ============================================================
   NEWS PAGES (listing + single post)
   ============================================================ */

/* ---------- Listing band ---------- */
.news-band {
    padding: 4rem 0 5rem;
    background-color: var(--cream);
}

/* ---------- Cards ---------- */
.news-card {
    background: #fff;
    border: 1px solid rgba(45, 74, 43, 0.12);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(31, 53, 32, 0.12);
}
.news-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}
.news-card-image {
    aspect-ratio: 3 / 2;
    background-color: #e9e2cf;
    overflow: hidden;
}
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-card-image-placeholder {
    background: linear-gradient(135deg, #e9e2cf 0%, #d4c9a8 100%);
}
.news-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.news-card-date {
    color: var(--muted, #6b6b6b);
    font-size: 0.825rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}
.news-card-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.65rem;
    line-height: 1.3;
}
.news-card-excerpt {
    color: var(--ink);
    opacity: 0.78;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.news-card-readmore {
    color: var(--paddock-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

/* ---------- Single post ---------- */
.news-back-link {
    color: inherit !important;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.news-back-link:hover {
    opacity: 0.85;
}
.news-post-excerpt {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--paddock-green);
    margin-bottom: 2.5rem;
    font-weight: 500;
}
.news-post-body p {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.news-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 74, 43, 0.15);
}

/* ---------- More from the news strip ---------- */
.news-more-band {
    padding: 3.5rem 0 5rem;
    background-color: #faf7ef;
    border-top: 1px solid rgba(45, 74, 43, 0.08);
}
.news-more-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2rem;
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */

.testimonials-band {
    padding: 4rem 0 5rem;
    background-color: var(--cream);
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(45, 74, 43, 0.12);
    border-radius: 10px;
    padding: 2rem 2rem 1.75rem;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-mark {
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--paddock-green);
    opacity: 0.18;
    user-select: none;
    pointer-events: none;
}

.testimonial-quote {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
    margin: 0 0 1.75rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-attribution {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(45, 74, 43, 0.12);
    padding-top: 1.25rem;
}

.testimonial-photo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e9e2cf;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(31, 53, 32, 0.1);
}
.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-attribution-text {
    flex-grow: 1;
    min-width: 0;
}

.testimonial-property {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.3;
}
.testimonial-name {
    color: var(--ink);
    opacity: 0.75;
    font-size: 0.875rem;
    line-height: 1.3;
}
.testimonial-region {
    color: var(--muted, #6b6b6b);
    font-size: 0.825rem;
    line-height: 1.3;
    margin-top: 0.15rem;
}
.testimonial-products {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.15rem 0.6rem;
    background-color: rgba(45, 74, 43, 0.08);
    color: var(--paddock-green);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ---------- CTA band ---------- */
.testimonials-cta-band {
    background-color: var(--deep-forest);
    color: #fff;
    padding: 4rem 0;
}
.testimonials-cta-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}
.testimonials-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}
