/* ==========================================================================
   Parallax Starter - Free HTML CSS Template
   
TemplateMo 612 Parallax Starter

https://templatemo.com/tm-612-parallax-starter

   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Alegreya', serif;
    --paper: #efe8dc;
    --paper-deep: #e5dcc7;
    --forest: #687b6e;
    --forest-deep: #46584b;
    --stone: #d9d0bf;
    --ink: #1d261f;
    --ink-soft: rgba(29, 38, 31, 0.8);
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --charcoal: #171a1a;
    --charcoal-deep: #0f1111;
    --nav-bg: #171a1a;
    --nav-bg-scrolled: #0f1111;
    --footer-bg: #111213;
    --transition-smooth: 0.35s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
    background: linear-gradient(180deg, #f5f0e7 0%, #e9e0d3 100%);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Navigation --- */
#templatemo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

#templatemo-nav.scrolled {
    background: var(--nav-bg-scrolled);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    position: relative;
    z-index: 2;
}

.logo-image {
    display: block;
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.8px;
    color: rgba(255,255,255,0.78);
    transition: color var(--transition-smooth), opacity var(--transition-smooth);
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-smooth);
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 60px 0 70px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    background: transparent;
}

#vision {
    position: relative;
    overflow: visible;
}

#gallery {
    margin-top: -10px;
}

#welcome {
    position: relative;
    z-index: 1;
}

/* Parallax Background Image Layer
   Height is 200% and starts at top: -50% to give
   maximum room for large vertical translations */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: auto;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

/* Dark Overlay */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.parallax-overlay.overlay-dark {
    background: transparent;
}

.parallax-overlay.overlay-medium {
    background: transparent;
}

/* Content Layer */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    width: 100%;
    padding: 70px 30px;
    text-align: center;
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title {
    font-weight: 400;
    letter-spacing: 12px;
}

.hero-barren-bg {
    background-color: #687b6e;
    background-image: url('images/blueberry barren view.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 16 / 9;
    transform: none !important;
}

.hero-overlay {
    background: transparent;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding-top: 130px;
    padding-bottom: 130px;
}

.hero-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(48vw, 420px);
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.hero-logo-image {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.18));
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 4px;
    color: var(--white-70);
    margin-bottom: 40px;
}

.caps {
    text-transform: uppercase;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

/* --- Hero Button --- */
.btn-scroll {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    border: 1px solid var(--white-40);
    padding: 14px 45px;
    transition: all var(--transition-smooth);
}

.btn-scroll:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- About Columns --- */
.unsplash-credit {
    font-size: 14px;
    color: var(--white-40);
    margin-top: 25px;
    letter-spacing: 1px;
}

.unsplash-credit a {
    color: var(--white-70);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-col {
    background: transparent;
    padding: 0;
    border: none;
}

.vision-hero-content {
    max-width: 100%;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.vision-layout {
    width: min(1180px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(220px, 330px);
    align-items: center;
    gap: 30px;
}

.vision-copy-box {
    max-width: 760px;
    padding: 22px 24px;
    background: transparent;
    border: none;
    text-align: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-left: 0;
    position: relative;
    z-index: 3;
}

.solo-copy-box {
    max-width: 900px;
    padding: 0 80px;
}

.vision-copy-box p {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--ink-soft);
    margin: 0;
    font-weight: 400;
}

.story-section,
.vision-slider-section,
.vision-story-section {
    min-height: 100vh;
}

.story-content,
.vision-slider-content,
.vision-story-content {
    width: min(1200px, 100%);
    padding: 110px 30px;
}

.cream-reveal-section {
    position: relative;
    min-height: 170vh;
    background: #efe8dc;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.cream-reveal-stage {
    position: sticky;
    top: 110px;
    width: min(1280px, 92vw);
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 360px);
    gap: 30px;
    align-items: center;
    margin: 40px auto;
    z-index: 2;
}

.cream-reveal-visual {
    position: relative;
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(45, 48, 40, 0.08);
    background: #efe8dc;
    z-index: 1;
}

.cream-reveal-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}

.cream-reveal-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(76%, 620px);
    height: min(82%, 700px);
    transform: translate(-50%, -50%);
    border: 1px solid rgba(43, 49, 45, 0.14);
    background: transparent;
    box-shadow: 0 0 0 9999px rgba(239, 232, 220, 0.98);
    z-index: 3;
    pointer-events: none;
}

.cream-reveal-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.04);
    z-index: 1;
}

.cream-reveal-copy {
    background: rgba(239, 232, 220, 0.96);
    color: var(--ink);
    padding: 28px 24px;
    border: 1px solid rgba(43, 49, 45, 0.1);
    position: relative;
    z-index: 3;
    box-shadow: 0 18px 42px rgba(0,0,0,0.08);
}

.cream-reveal-copy .eyebrow {
    color: rgba(43, 49, 45, 0.7);
    margin-bottom: 10px;
}

.cream-reveal-copy h3 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: 1px;
    color: #2b312d;
    margin-bottom: 14px;
    font-weight: 400;
}

.cream-reveal-copy p:last-child {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    color: rgba(43, 49, 45, 0.9);
}

.story-copy-box {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: left;
    padding: 34px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-copy-box p {
    font-family: var(--font-body);
    font-size: 14pt;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.97);
    font-weight: 500;
}

.story-copy-box p:first-of-type {
    font-size: 14pt;
    line-height: 1.55;
}

.slider-text-box {
    text-align: left;
    max-width: 360px;
    padding: 18px 0;
}

.slider-text-box p {
    font-size: 19px;
    line-height: 1.5;
    text-align: left;
}

.vision-detail-section {
    min-height: 100vh;
}

.vision-detail-content {
    width: min(1320px, 92vw);
    padding: 110px 40px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 42px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

.reverse-layout {
    grid-template-columns: 1.12fr 0.88fr;
}

.feature-layout {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
    max-width: 1280px;
}

.feature-visual {
    order: 1;
}

.feature-copy {
    order: 2;
    max-width: 420px;
    background: rgba(28, 39, 31, 0.18);
    padding: 26px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.detail-copy {
    text-align: left;
    max-width: 540px;
}

.detail-copy h3 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: 1.1px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 18px;
    max-width: 540px;
}

.detail-copy p {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.55;
    color: var(--ink-soft);
}

.detail-visual {
    width: 100%;
}

.detail-image {
    width: 100%;
    height: min(68vh, 560px);
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.feature-image {
    height: min(76vh, 700px);
    object-position: center center;
}

.vision-story-grid {
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.story-panel {
    position: relative;
    z-index: 2;
}

.text-panel {
    text-align: left;
    max-width: 640px;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
}

.text-panel h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 22px;
    color: var(--ink);
}

.text-panel p {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.story-image-stack {
    position: relative;
    width: min(100%, 660px);
    margin-left: auto;
}

.story-image {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.main-image {
    height: 540px;
}

.secondary-image {
    position: absolute;
    right: -22px;
    bottom: -26px;
    width: 52%;
    height: 260px;
    border: 8px solid rgba(255,255,255,0.7);
}

.compare-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    background: transparent;
    width: 100%;
    text-align: center;
}

.image-slider-container {
    position: relative;
    width: min(100%, 980px);
    max-width: 980px;
    max-height: 842px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #687b6e;
    margin: 0 auto;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
    user-select: none;
}

.image-after {
    z-index: 1;
}

.image-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    -webkit-clip-path: inset(0 50% 0 0);
}

.slider-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

.slider-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7), rgba(255,255,255,0.95));
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 12px rgba(255,255,255,0.18);
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
    border-radius: 999px;
}

.slider-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.slider-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-left: 2px solid rgba(255,255,255,0.85);
    border-bottom: 2px solid rgba(255,255,255,0.85);
    transform: translate(-50%, -50%) rotate(45deg);
}

.about-thumb {
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

.about-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-top-left {
    float: left;
    margin: 0 20px 15px 0;
}

.about-thumb-wide {
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 2 / 1;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-thumb-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-col p {
    font-size: 16px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-col p:last-child {
    margin-bottom: 0;
}

.about-col a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
}

.service-icon {
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: var(--white);
}

.service-item p {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white-70);
    line-height: 1.9;
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid var(--white-20);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--white-70);
}

/* --- Contact Form --- */
.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-20);
    padding: 16px 20px;
    outline: none;
    transition: border-color var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white-40);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--white-70);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white-40);
    padding: 16px 45px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- Footer --- */
#templatemo-footer {
    background: var(--footer-bg);
    padding: 28px 20px 34px;
    color: var(--white-70);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    width: 180px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo {
    display: block;
    width: 100%;
    max-width: 150px;
    height: auto;
    opacity: 0.96;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    margin-left: auto;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

#templatemo-footer a {
    color: var(--white-70);
    transition: color var(--transition-smooth);
}

#templatemo-footer a:hover {
    color: var(--white);
}

@media (max-width: 700px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand,
    .footer-copy {
        width: auto;
        min-width: 0;
        margin-left: 0;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 18px;
    }
}

/* --- Merch Page --- */
.shop-page-body {
    background: linear-gradient(180deg, #f3efe8 0%, #ebe3d7 100%);
    color: var(--ink);
}

.shop-page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 30px 80px;
}

.shop-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    min-height: 70vh;
    padding-bottom: 60px;
}

.shop-hero-copy {
    max-width: 620px;
}

.shop-hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(46px, 6vw, 92px);
    line-height: 0.92;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 14px 0 18px;
    color: var(--ink);
}

.shop-hero-copy p {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.shop-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.btn-light {
    background: transparent;
    border-color: rgba(29, 38, 31, 0.25);
    color: var(--ink);
}

.btn-light:hover {
    background: var(--ink);
    color: var(--white);
}

.shop-hero-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid rgba(29, 38, 31, 0.08);
    background: #d9d0bf;
    box-shadow: 0 28px 60px rgba(20, 26, 21, 0.12);
}

.shop-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.editorial-block {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(29, 38, 31, 0.14);
}

.editorial-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: 1.8px;
    margin: 12px 0 18px;
    color: var(--ink);
}

.editorial-block p {
    max-width: 760px;
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.text-dark {
    color: var(--ink) !important;
}

.shop-grid-wrap {
    padding-top: 48px;
}

.shop-grid-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.shop-grid-header h3 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: 1px;
    color: var(--ink);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.product-card {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(29, 38, 31, 0.1);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(20, 26, 21, 0.08);
}

.product-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #d9d0bf;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 8px;
}

.product-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(29, 38, 31, 0.7);
    margin-bottom: 8px;
}

.product-meta h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 0.8px;
    color: var(--ink);
}

.product-meta p {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--ink);
}

.product-link {
    display: inline-block;
    margin: 0 18px 18px;
    padding: 10px 14px;
    border: 1px solid rgba(29, 38, 31, 0.2);
    color: var(--ink);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
}

.alt-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: end;
}

.shop-cta {
    margin-top: 40px;
    padding: 52px 24px;
    border: 1px solid rgba(29, 38, 31, 0.14);
    text-align: center;
    background: rgba(255,255,255,0.12);
}

.shop-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: 1.2px;
    margin: 12px 0 20px;
    color: var(--ink);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--forest);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        padding: 100px 30px 60px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Disable parallax on mobile — static bg */
    .parallax-bg {
        top: 0;
        height: 100%;
    }

    .section-title {
        letter-spacing: 4px;
    }

    .hero-title {
        letter-spacing: 6px;
    }

    .section-subtitle {
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-cols {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .btn-submit {
        align-self: stretch;
    }
}

/* --- Main editorial type scale --- */
.story-copy-box p,
.cream-reveal-copy p,
.vision-copy-box p,
.detail-copy p,
.text-panel p,
.content-block p,
.about-col p,
.product-meta p,
.mission-copy p,
.mission-copy li {
    font-size: 14pt;
}

.cream-reveal-copy h3,
.detail-copy h3,
.text-panel h2 {
    font-size: 24pt;
}

/* --- Unified typography --- */
body,
p,
li,
input,
textarea,
button {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-links a,
.btn-scroll,
.product-tag,
.product-link,
.eyebrow,
.section-title,
.section-subtitle {
    font-family: var(--font-heading);
}

p,
.story-copy-box p,
.cream-reveal-copy p,
.vision-copy-box p,
.detail-copy p,
.text-panel p,
.vision-feature-copy > p:last-child,
.vision-page-intro > p:last-child,
.shop-hero-copy p,
.editorial-block p {
    font-size: 14pt;
    line-height: 1.55;
}

h2,
h3,
.vision-feature-copy h2,
.cream-reveal-copy h3,
.detail-copy h3,
.text-panel h2,
.editorial-block h2,
.shop-grid-header h3,
.shop-cta h2 {
    font-size: 24pt;
    line-height: 1.12;
    letter-spacing: 0.5px;
}

h1,
.vision-page-intro h1,
.shop-hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 0.9;
    letter-spacing: 1px;
}

.nav-links a,
.btn-scroll,
.product-tag,
.product-link,
.eyebrow {
    font-size: 12px;
    line-height: 1.2;
}

.story-copy-box p + p {
    font-size: 14pt;
}

/* --- Dedicated Vision page --- */
.vision-page-body {
    background: linear-gradient(180deg, #f3efe8 0%, #e8dfd2 100%);
    color: var(--ink);
}

.vision-page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 150px 30px 90px;
}

.vision-page-intro {
    max-width: 760px;
    padding: 10px 0 110px;
}

.vision-page-intro h1,
.vision-page-close h2 {
    font-family: var(--font-heading);
    font-size: clamp(46px, 5vw, 60px);
    line-height: 0.92;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin: 14px 0 22px;
    font-weight: 700;
}

.mission-page-body {
    background: linear-gradient(180deg, #f3efe8 0%, #e8dfd2 100%);
    color: var(--ink);
}

.mission-page-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 150px 30px 90px;
}

.mission-page-intro {
    padding: 10px 0 90px;
    border-bottom: 1px solid rgba(29, 38, 31, 0.16);
}

.mission-page-intro h1 {
    font-family: var(--font-heading);
    font-size: clamp(46px, 7vw, 88px);
    line-height: 0.94;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin: 14px 0 20px;
}

.mission-page-intro > p:last-child {
    font-family: var(--font-body);
    font-size: 14pt;
    line-height: 1.55;
    color: var(--ink-soft);
}

.mission-copy {
    padding: 72px 0 30px;
}

.mission-copy p,
.mission-copy li {
    font-family: var(--font-body);
    font-size: 14pt;
    line-height: 1.55;
    color: #000;
}

.mission-copy p {
    margin-bottom: 28px;
}

.mission-copy ul {
    margin: 0 0 30px 28px;
    padding: 0;
}

.mission-copy li {
    padding-left: 8px;
    margin-bottom: 18px;
}

.mission-copy strong {
    font-weight: 700;
}

.mission-page-close {
    padding-top: 36px;
    border-top: 1px solid rgba(29, 38, 31, 0.16);
}

/* --- Standalone editorial pages --- */
.editorial-page-body {
    background: linear-gradient(180deg, #f3efe8 0%, #e8dfd2 100%);
    color: #000;
}

.editorial-page-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 150px 30px 90px;
}

.editorial-page-intro {
    max-width: 760px;
    padding: 10px 0 90px;
    border-bottom: 1px solid rgba(29, 38, 31, 0.16);
}

.editorial-page-intro h1 {
    font-family: var(--font-heading);
    font-size: clamp(46px, 7vw, 88px);
    line-height: 0.94;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    margin: 14px 0 10px;
}

.editorial-page-intro .eyebrow.text-dark {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.35vw, 18px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 18px;
}

.editorial-page-intro > p:last-child {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.35vw, 18px);
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #000;
    margin: 0;
    text-transform: none;
}

.editorial-page-intro a {
    color: #252525;
    text-decoration: none;
    cursor: default;
}

.editorial-copy-column a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.editorial-copy-column {
    max-width: 760px;
    padding: 72px 0 30px;
}

.about-page-shell .editorial-copy-column {
    padding-top: 20px;
}

.about-page-shell .editorial-page-intro {
    padding-bottom: 20px;
}

.faq-page-shell .editorial-page-intro {
    padding-bottom: 40px;
}

.owner-page-shell .editorial-page-intro {
    padding-bottom: 40px;
}

.owner-page-shell .editorial-copy-column {
    padding-top: 40px;
}

.editorial-copy-column p,
.faq-item p {
    font-family: var(--font-body);
    font-size: 14pt;
    line-height: 1.55;
    color: #000;
    margin-bottom: 28px;
}

.editorial-page-close {
    padding-top: 36px;
    border-top: 1px solid rgba(29, 38, 31, 0.16);
}

.faq-list {
    padding: 30px 0 36px;
}

.faq-item {
    border-bottom: 1px solid rgba(29, 38, 31, 0.16);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 30px 0 16px;
    background: transparent;
    border: 0;
    font-family: var(--font-heading);
    font-size: 24pt;
    line-height: 1.12;
    color: #000;
    text-align: left;
    cursor: pointer;
}

.faq-plus {
    font-size: 28px;
    line-height: 1;
    color: #000;
    transition: transform var(--transition-smooth);
}

.faq-question[aria-expanded="true"] .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.2s ease;
}

.faq-answer p {
    max-width: 700px;
    padding: 0 0 24px;
    margin: 0;
}

.faq-answer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    opacity: 1;
}

.editorial-contact-form {
    display: flex;
    flex-direction: column;
    max-width: 760px;
    gap: 10px;
    padding-top: 72px;
}

.editorial-contact-form label {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-top: 18px;
}

.editorial-contact-form input,
.editorial-contact-form textarea {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(29, 38, 31, 0.35);
    border-radius: 0;
    background: transparent;
    color: #000;
    font-family: var(--font-body);
    font-size: 14pt;
    outline: none;
}

.editorial-contact-form textarea {
    resize: vertical;
}

.editorial-contact-form .btn-scroll {
    align-self: flex-start;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .editorial-page-shell {
        padding: 120px 24px 70px;
    }

    .editorial-page-intro {
        padding-bottom: 58px;
    }

    .editorial-copy-column,
    .editorial-contact-form {
        padding-top: 48px;
    }
}

/* --- Shared Our Mission visual baseline --- */
.home-page-body,
.vision-page-body,
.shop-page-body,
.mission-page-body {
    background: linear-gradient(180deg, #f3efe8 0%, #e8dfd2 100%);
    color: #000;
}

.home-page-body .parallax-section,
.home-page-body .cream-reveal-section {
    background: transparent;
}

.home-page-body .hero-brand-section {
    min-height: 82vh;
    background: transparent;
}

.home-page-body .parallax-bg,
.home-page-body .parallax-overlay {
    display: none;
}

.home-page-body .story-copy-box,
.home-page-body .vision-copy-box,
.home-page-body .detail-copy,
.home-page-body .text-panel,
.home-page-body .cream-reveal-copy,
.vision-feature-copy,
.shop-hero-copy,
.shop-intro,
.shop-story,
.shop-cta {
    color: #000;
}

.home-page-body .story-copy-box,
.home-page-body .vision-copy-box,
.home-page-body .detail-copy,
.home-page-body .text-panel,
.home-page-body .cream-reveal-copy,
.vision-feature-copy {
    background: #fbfaf6;
    border: 1px solid rgba(29, 38, 31, 0.12);
    box-shadow: 0 18px 42px rgba(20, 26, 21, 0.06);
}

.home-page-body .story-copy-box p,
.home-page-body .vision-copy-box p,
.home-page-body .detail-copy p,
.home-page-body .text-panel p,
.home-page-body .cream-reveal-copy p,
.home-page-body .detail-copy h3,
.home-page-body .text-panel h2,
.home-page-body .cream-reveal-copy h3,
.home-page-body .eyebrow {
    color: #000;
}

.home-page-body .vision-slider-section,
.home-page-body .vision-detail-section,
.home-page-body .vision-story-section,
.home-page-body #contact {
    background: transparent;
}

.home-page-body .detail-image,
.home-page-body .story-image,
.home-page-body .image-slider-container {
    box-shadow: 0 24px 48px rgba(20, 26, 21, 0.14);
}

.home-page-body #contact .section-title,
.home-page-body #contact .section-subtitle {
    color: #000;
}

.vision-page-body .vision-page-shell,
.shop-page-body .shop-page-shell,
.mission-page-body .mission-page-shell {
    background: transparent;
}

.vision-page-body .vision-feature-copy,
.shop-page-body .product-card,
.shop-page-body .shop-cta {
    background: #fbfaf6;
    border-color: rgba(29, 38, 31, 0.12);
}

.vision-page-body h1,
.vision-page-body h2,
.vision-page-body h3,
.shop-page-body h1,
.shop-page-body h2,
.shop-page-body h3,
.shop-page-body h4,
.mission-page-body h1,
.mission-page-body h2,
.mission-page-body h3,
.mission-page-body p,
.mission-page-body li {
    color: #000;
}

.mission-link-line {
    margin-top: 24px;
    font-family: var(--font-heading) !important;
    font-size: 12px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mission-link-line a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 768px) {
    .mission-page-shell {
        padding: 120px 24px 70px;
    }

    .mission-page-intro {
        padding-bottom: 58px;
    }

    .mission-copy {
        padding-top: 48px;
    }
}

/* --- Shared editorial treatment for the home pages --- */
.home-page-body {
    background: linear-gradient(180deg, #f3efe8 0%, #e8dfd2 100%);
    color: var(--ink);
}

.home-page-body .parallax-section {
    min-height: 78vh;
    background: transparent;
}

.home-page-body .parallax-bg,
.home-page-body .parallax-overlay {
    display: none;
}

.home-page-body .hero-brand-section {
    min-height: 82vh;
    background: var(--forest-deep);
}

.home-page-body .story-section,
.home-page-body .vision-slider-section,
.home-page-body .vision-detail-section,
.home-page-body .vision-story-section,
.home-page-body #contact {
    background: transparent;
}

.home-page-body .section-content {
    max-width: 1280px;
}

.home-page-body .vision-slider-content,
.home-page-body .vision-detail-content,
.home-page-body .vision-story-content {
    padding-top: 110px;
    padding-bottom: 110px;
}

.home-page-body .story-copy-box,
.home-page-body .vision-copy-box,
.home-page-body .detail-copy,
.home-page-body .text-panel,
.home-page-body .cream-reveal-copy {
    background: #fbfaf6;
    border: 1px solid rgba(29, 38, 31, 0.12);
    box-shadow: 0 18px 42px rgba(20, 26, 21, 0.06);
}

.home-page-body .story-copy-box p,
.home-page-body .vision-copy-box p,
.home-page-body .detail-copy p,
.home-page-body .text-panel p,
.home-page-body .cream-reveal-copy p {
    color: #000;
}

.home-page-body .detail-copy h3,
.home-page-body .text-panel h2,
.home-page-body .cream-reveal-copy h3 {
    color: #000;
}

.home-page-body .eyebrow {
    color: #000;
}

.home-page-body .detail-image,
.home-page-body .story-image {
    box-shadow: 0 24px 48px rgba(20, 26, 21, 0.14);
}

.home-page-body .image-slider-container {
    box-shadow: 0 24px 48px rgba(20, 26, 21, 0.14);
}

.home-page-body #contact .section-title,
.home-page-body #contact .section-subtitle {
    color: var(--ink);
}

@media (max-width: 768px) {
    .home-page-body .vision-slider-content,
    .home-page-body .vision-detail-content,
    .home-page-body .vision-story-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.vision-page-intro > p:last-child,
.vision-feature-copy > p:last-child {
    font-family: var(--font-body);
    font-size: 14pt;
    line-height: 1.6;
    color: var(--ink-soft);
}

.vision-feature {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 44px;
    align-items: center;
    padding: 90px 0;
    border-top: 1px solid rgba(29, 38, 31, 0.16);
}

.vision-feature-reverse {
    grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.72fr);
}

.vision-feature-copy {
    padding: 30px 32px;
    background: #fbfaf6;
    border: 1px solid rgba(29, 38, 31, 0.12);
}

.vision-feature-copy h2 {
    font-family: var(--font-heading);
    font-size: 24pt;
    line-height: 1.05;
    letter-spacing: 0.8px;
    color: #000;
    margin: 12px 0 18px;
}

.vision-feature-copy .eyebrow {
    color: #000;
}

.vision-feature .image-slider-container {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
    background: #d9d0bf;
    box-shadow: 0 24px 48px rgba(20, 26, 21, 0.14);
}

.vision-feature .blueberry-comparison {
    aspect-ratio: 3 / 4;
}

.blueberry-before {
    transform: translateY(-0.3%) scale(1.003);
}

.vision-page-close {
    margin-top: 40px;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(29, 38, 31, 0.16);
    text-align: center;
}

.vision-page-close h2 {
    font-size: clamp(38px, 5vw, 68px);
}

@media (max-width: 768px) {
    .vision-page-shell {
        padding: 120px 24px 70px;
    }

    .vision-page-intro {
        padding-bottom: 55px;
    }

    .vision-feature,
    .vision-feature-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 58px 0;
    }

    .vision-feature-reverse .vision-feature-copy {
        order: 2;
    }

    .vision-feature-copy {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .section-content {
        padding: 80px 20px;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .content-block p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }
}

/* --- Homepage editorial baseline --- */
.home-page-body {
    background: linear-gradient(180deg, #f3efe8 0%, #e8dfd2 100%);
    color: #000;
}

.home-page-body #templatemo-nav {
    background: var(--forest);
    box-shadow: 0 4px 18px rgba(29, 38, 31, 0.12);
}

.home-page-body #templatemo-nav.scrolled {
    background: var(--forest);
}

.home-page-body .parallax-bg,
.home-page-body .parallax-overlay {
    display: none;
}

.home-page-body .parallax-section,
.home-page-body .story-section,
.home-page-body .vision-slider-section,
.home-page-body .vision-detail-section,
.home-page-body .vision-story-section,
.home-page-body #contact {
    background: transparent;
}

.home-page-body .hero-brand-section {
    min-height: 82vh;
    background: var(--forest-deep);
}

.home-page-body .story-section .section-content,
.home-page-body .vision-slider-content,
.home-page-body .vision-detail-content,
.home-page-body .vision-story-content {
    padding-top: 110px;
    padding-bottom: 110px;
}

.home-page-body .story-section .section-content {
    max-width: 980px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.story-page-intro {
    max-width: 760px;
    padding: 10px 0 72px;
    border-bottom: 1px solid rgba(29, 38, 31, 0.16);
    margin-bottom: 64px;
}

.story-page-intro h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin: 14px 0 22px;
}

.story-page-intro > p:last-child {
    max-width: 680px;
    font-family: var(--font-body);
    font-size: 14pt;
    line-height: 1.55;
    color: rgba(29, 38, 31, 0.8);
}

.home-page-body .story-copy-box,
.home-page-body .vision-copy-box,
.home-page-body .detail-copy,
.home-page-body .text-panel,
.home-page-body .cream-reveal-copy {
    background: #fbfaf6;
    border: 1px solid rgba(29, 38, 31, 0.12);
    box-shadow: 0 18px 42px rgba(20, 26, 21, 0.06);
    color: #000;
}

.home-page-body .story-copy-box {
    max-width: 760px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.home-page-body .story-copy-box p,
.home-page-body .vision-copy-box p,
.home-page-body .detail-copy p,
.home-page-body .text-panel p,
.home-page-body .cream-reveal-copy p,
.home-page-body .story-copy-box p + p {
    font-family: var(--font-body);
    font-size: 14pt;
    line-height: 1.55;
    color: #000;
}

.home-page-body .story-copy-box p + p {
    max-width: none;
    margin-left: 0;
}

.home-page-body .detail-copy h3,
.home-page-body .text-panel h2,
.home-page-body .cream-reveal-copy h3 {
    font-family: var(--font-heading);
    font-size: 24pt;
    line-height: 1.12;
    color: #000;
}

.home-page-body .eyebrow {
    color: #000;
}

.home-page-body .detail-image,
.home-page-body .story-image,
.home-page-body .image-slider-container {
    box-shadow: 0 24px 48px rgba(20, 26, 21, 0.14);
}

.home-page-body #contact .section-title,
.home-page-body #contact .section-subtitle {
    color: #000;
}

.home-page-body #templatemo-footer {
    background: var(--ink);
}

@media (max-width: 768px) {
    .home-page-body .story-section .section-content,
    .home-page-body .vision-slider-content,
    .home-page-body .vision-detail-content,
    .home-page-body .vision-story-content {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .home-page-body .story-section .section-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .story-page-intro {
        padding-bottom: 48px;
        margin-bottom: 44px;
    }
}

/* --- Editorial home treatment --- */
.hero-brand-section {
    min-height: 88vh;
    background: var(--forest-deep);
}

.hero-brand-section .section-content {
    max-width: 1280px;
    text-align: left;
    padding-left: 7vw;
}

.hero-brand-card {
    justify-content: flex-start;
}

.hero-brand-section .btn-scroll {
    align-self: center;
}

.story-section {
    background: var(--paper);
    color: var(--ink);
}

.story-section .section-content {
    max-width: 1280px;
    padding: 120px 7vw;
    text-align: left;
}

.story-copy-box {
    max-width: 780px;
    padding: 34px 38px;
    border: 1px solid rgba(29, 38, 31, 0.12);
    background: #fbfaf6;
}

.story-copy-box p {
    color: var(--ink);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.2;
    letter-spacing: 0;
}

.story-copy-box p + p {
    max-width: 600px;
    margin-left: 18%;
    font-size: 14pt;
    color: var(--ink-soft);
}

.cream-reveal-section {
    background: var(--paper-deep);
}

.cream-reveal-copy {
    box-shadow: none;
    border-color: rgba(29, 38, 31, 0.16);
}

.vision-slider-section,
.vision-detail-section,
.vision-story-section {
    background: var(--stone);
}

.vision-slider-content,
.vision-detail-content,
.vision-story-content {
    padding-top: 120px;
    padding-bottom: 120px;
}

.vision-layout,
.detail-layout,
.vision-story-grid {
    width: min(1180px, 92vw);
}

.vision-copy-box,
.detail-copy,
.text-panel {
    text-align: left;
    padding: 30px 32px;
    background: #fbfaf6;
    border: 1px solid rgba(29, 38, 31, 0.12);
}

.vision-copy-box p,
.detail-copy p,
.text-panel p {
    color: #000;
}

.detail-copy h3,
.text-panel h2 {
    color: #000;
}

.eyebrow {
    color: #000;
}

.cream-reveal-copy {
    background: #fbfaf6;
    color: #000;
}

.cream-reveal-copy .eyebrow,
.cream-reveal-copy h3,
.cream-reveal-copy p:last-child {
    color: #000;
}

.detail-image,
.story-image {
    box-shadow: 0 24px 48px rgba(20, 26, 21, 0.14);
    border-color: rgba(29, 38, 31, 0.12);
}

.feature-copy {
    background: rgba(239, 232, 220, 0.82);
    border-color: rgba(29, 38, 31, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.contact-form-wrap {
    border-color: rgba(29, 38, 31, 0.16);
    background: rgba(239, 232, 220, 0.8);
}

#contact {
    background: var(--paper-deep);
}

#contact .section-title,
#contact .section-subtitle {
    color: var(--ink);
}

#templatemo-footer {
    background: var(--ink);
}

@media (max-width: 768px) {
    .hero-brand-section .section-content,
    .story-section .section-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .story-copy-box p + p {
        margin-left: 0;
    }

    .story-copy-box,
    .vision-copy-box,
    .detail-copy,
    .text-panel,
    .cream-reveal-copy {
        padding: 24px;
    }

    .vision-slider-content,
    .vision-detail-content,
    .vision-story-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* --- Final readable type scale --- */
.story-copy-box p,
.story-copy-box p + p,
.cream-reveal-copy p,
.vision-copy-box p,
.detail-copy p,
.text-panel p {
    font-family: var(--font-body);
    font-size: 14pt;
    line-height: 1.55;
}

.cream-reveal-copy h3,
.detail-copy h3,
.text-panel h2 {
    font-size: 24pt;
}
