@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
    --deep-teal: #1a4a4a;
    --deep-teal-dark: #0f2e2e;
    --deep-teal-mid: #1e5555;
    --deep-teal-light: #2a6868;
    --muted-slate-blue: #4a6278;
    --muted-slate-blue-light: #5a7288;
    --muted-slate-blue-pale: #e8edf2;
    --soft-gold: #c9a84c;
    --soft-gold-light: #d4b86a;
    --soft-gold-pale: #f5ecd4;
    --warm-off-white: #f4f1ec;
    --warm-off-white-dark: #e8e4dc;
    --light-grey: #d4d0c8;
    --text-dark: #1a2a2a;
    --text-mid: #3a4a4a;
    --text-light: #6a7a7a;
    --white: #ffffff;
    --border-light: rgba(201,168,76,0.2);
    --border-mid: rgba(201,168,76,0.4);
    --shadow-sm: 0 2px 12px rgba(26,74,74,0.08);
    --shadow-md: 0 6px 28px rgba(26,74,74,0.14);
    --shadow-lg: 0 16px 48px rgba(26,74,74,0.18);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --radius: 4px;
    --radius-md: 8px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--warm-off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
}

p {
    line-height: 1.75;
    color: var(--text-mid);
    font-size: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--soft-gold);
    margin: 20px 0 32px;
}

.divider-center {
    margin: 20px auto 32px;
}

.gold-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft-gold);
    display: block;
    margin-bottom: 12px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--deep-teal);
    color: var(--warm-off-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--deep-teal);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--muted-slate-blue);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    color: var(--warm-off-white);
    border-color: var(--muted-slate-blue);
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--deep-teal);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--deep-teal);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--deep-teal);
    color: var(--warm-off-white);
}

.btn-outline-light {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--warm-off-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid rgba(244,241,236,0.5);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-light:hover {
    background: rgba(244,241,236,0.1);
    color: var(--soft-gold);
    border-color: var(--soft-gold);
}

.bg-teal { background: var(--deep-teal); }
.bg-teal-dark { background: var(--deep-teal-dark); }
.bg-teal-mid { background: var(--deep-teal-mid); }
.bg-slate { background: var(--muted-slate-blue); }
.bg-slate-pale { background: var(--muted-slate-blue-pale); }
.bg-off-white { background: var(--warm-off-white); }
.bg-white { background: var(--white); }

.text-gold { color: var(--soft-gold); }
.text-teal { color: var(--deep-teal); }
.text-off-white { color: var(--warm-off-white); }
.text-white { color: var(--white); }
.text-slate { color: var(--muted-slate-blue); }

.text-center { text-align: center; }
.text-left { text-align: left; }

.section-title-block {
    margin-bottom: 56px;
}

.section-title-block.center {
    text-align: center;
}

.section-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft-gold);
    display: block;
    margin-bottom: 10px;
}

/* =====================================
   HEADER
===================================== */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--deep-teal-dark);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: var(--transition);
}

#site-header.scrolled {
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--soft-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-logo-mark::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid var(--deep-teal-dark);
    border-radius: 50%;
}

.header-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--warm-off-white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-logo-text span {
    color: var(--soft-gold);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-list a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,241,236,0.75);
    padding: 8px 14px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--soft-gold);
    border-bottom-color: var(--soft-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--warm-off-white);
    display: block;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--deep-teal-dark);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 20px 24px 28px;
    z-index: 999;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,241,236,0.8);
    padding: 13px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: var(--transition);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--soft-gold);
    padding-left: 8px;
}

/* =====================================
   FOOTER
===================================== */

#site-footer {
    background: var(--deep-teal-dark);
    color: var(--warm-off-white);
    padding: 80px 0 0;
    border-top: 3px solid var(--soft-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand p {
    color: rgba(244,241,236,0.65);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}

.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--warm-off-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand-name span {
    color: var(--soft-gold);
}

.footer-edu-note {
    margin-top: 20px;
    padding: 12px 16px;
    border: 1px solid rgba(201,168,76,0.25);
    font-size: 0.78rem;
    color: rgba(244,241,236,0.55);
    font-style: italic;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(244,241,236,0.65);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--soft-gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
}

.footer-contact-item p {
    color: rgba(244,241,236,0.65);
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 0;
}

.footer-hours {
    margin-top: 6px;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(244,241,236,0.55);
    padding: 5px 0;
    border-bottom: 1px solid rgba(244,241,236,0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(244,241,236,0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(244,241,236,0.4);
    margin: 0;
}

.footer-policy-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-policy-links a {
    font-size: 0.75rem;
    color: rgba(244,241,236,0.4);
    transition: var(--transition);
}

.footer-policy-links a:hover {
    color: var(--soft-gold);
}

/* =====================================
   HERO SECTION (index.html)
===================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--deep-teal-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,46,46,0.75) 0%, rgba(26,74,74,0.5) 60%, rgba(74,98,120,0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 100px;
    max-width: 780px;
}

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--soft-gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--soft-gold);
}

.hero-h1 {
    color: var(--warm-off-white);
    margin-bottom: 28px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-lead {
    color: rgba(244,241,236,0.82);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,168,76,0.25);
}

.hero-meta-item {
    text-align: left;
}

.hero-meta-item .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--soft-gold);
    display: block;
    line-height: 1;
}

.hero-meta-item .label {
    font-size: 0.75rem;
    color: rgba(244,241,236,0.55);
    letter-spacing: 0.06em;
    margin-top: 4px;
    display: block;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(244,241,236,0.45);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(201,168,76,0.4);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(0.6); }
}

/* =====================================
   ESSENTIAL NUTRIENTS (Section 2)
===================================== */

.nutrients-section {
    background: var(--deep-teal);
    padding: 100px 0;
}

.nutrients-section .section-title-block h2 {
    color: var(--warm-off-white);
}

.nutrient-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.15);
}

.nutrient-card {
    background: var(--deep-teal-mid);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.nutrient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--soft-gold);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    transform-origin: bottom;
}

.nutrient-card:hover::before {
    transform: scaleY(1);
}

.nutrient-card:hover {
    background: var(--deep-teal-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.nutrient-card-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.nutrient-card h3 {
    color: var(--soft-gold);
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.nutrient-card p {
    color: rgba(244,241,236,0.72);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.nutrient-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--soft-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.nutrient-card-link::after {
    content: '→';
    transition: transform 0.3s;
}

.nutrient-card-link:hover {
    color: var(--soft-gold-light);
}

.nutrient-card-link:hover::after {
    transform: translateX(4px);
}

.nutrients-image-strip {
    margin-top: 64px;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.nutrients-image-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.nutrients-image-strip:hover img {
    opacity: 0.85;
    transform: scale(1.02);
}

.nutrients-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--deep-teal) 0%, transparent 40%, transparent 60%, var(--deep-teal) 100%);
}

/* =====================================
   VITAMINS & MINERALS (Section 3)
===================================== */

.vitamins-section {
    background: var(--warm-off-white);
    padding: 100px 0;
}

.vitamins-section .section-title-block h2 {
    color: var(--deep-teal);
}

.two-col-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 2px;
    align-items: stretch;
}

.two-col-block.reverse {
    direction: rtl;
}

.two-col-block.reverse > * {
    direction: ltr;
}

.two-col-text {
    padding: 56px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.two-col-text.bg-teal .divider {
    background: var(--soft-gold);
}

.two-col-text h2 {
    margin-bottom: 8px;
}

.two-col-text p {
    margin-bottom: 16px;
}

.two-col-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.two-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.two-col-block:hover .two-col-image img {
    transform: scale(1.04);
}

.two-col-feature-list {
    margin-top: 8px;
}

.two-col-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    font-size: 0.9rem;
    color: var(--text-mid);
}

.two-col-feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--soft-gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.two-col-feature-list.light li {
    color: rgba(244,241,236,0.75);
    border-bottom-color: rgba(201,168,76,0.1);
}

/* =====================================
   PLANT COMPOUNDS (Section 4)
===================================== */

.plants-section {
    background: var(--deep-teal-dark);
    padding: 100px 0;
}

.plants-section .section-title-block h2 {
    color: var(--warm-off-white);
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 56px;
}

.plant-card {
    position: relative;
    overflow: hidden;
    height: 520px;
}

.plant-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.plant-card:hover img {
    transform: scale(1.06);
}

.plant-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15,46,46,0.92) 0%, rgba(15,46,46,0.4) 50%, transparent 100%);
    transition: var(--transition);
}

.plant-card:hover .plant-card-overlay {
    background: linear-gradient(0deg, rgba(15,46,46,0.96) 0%, rgba(15,46,46,0.6) 60%, rgba(15,46,46,0.15) 100%);
}

.plant-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 32px;
}

.plant-card-accent {
    width: 36px;
    height: 2px;
    background: var(--soft-gold);
    margin-bottom: 14px;
}

.plant-card h3 {
    color: var(--warm-off-white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.plant-card p {
    color: rgba(244,241,236,0.72);
    font-size: 0.88rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
    opacity: 0;
}

.plant-card:hover p {
    max-height: 200px;
    opacity: 1;
}

.plant-card-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--soft-gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 4px 10px;
    margin-bottom: 12px;
}

/* =====================================
   LIFESTYLE (Section 5)
===================================== */

.lifestyle-section {
    background: var(--muted-slate-blue-pale);
    padding: 100px 0;
}

.lifestyle-section .section-title-block h2 {
    color: var(--deep-teal);
}

.lifestyle-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}

.lifestyle-intro p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.lifestyle-intro-meta {
    margin-top: 32px;
    padding: 24px;
    background: var(--deep-teal);
    color: var(--warm-off-white);
}

.lifestyle-intro-meta p {
    color: rgba(244,241,236,0.8);
    font-size: 0.85rem;
    margin: 0;
}

.accordion-list {
    border-top: 1px solid rgba(26,74,74,0.15);
}

.accordion-item {
    border-bottom: 1px solid rgba(26,74,74,0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    transition: var(--transition);
    gap: 16px;
}

.accordion-header:hover {
    padding-left: 8px;
}

.accordion-header h3 {
    font-size: 1rem;
    color: var(--deep-teal);
    font-weight: 600;
    flex: 1;
}

.accordion-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--soft-gold);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    width: 28px;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(26,74,74,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.accordion-icon span {
    width: 12px;
    height: 2px;
    background: var(--deep-teal);
    display: block;
    position: relative;
    transition: var(--transition);
}

.accordion-icon span::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background: var(--deep-teal);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.accordion-item.open .accordion-icon {
    background: var(--deep-teal);
    border-color: var(--deep-teal);
}

.accordion-item.open .accordion-icon span {
    background: var(--warm-off-white);
}

.accordion-item.open .accordion-icon span::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.accordion-body-inner {
    padding: 0 0 28px 36px;
}

.accordion-body-inner p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 12px;
}

.accordion-body-inner p:last-child {
    margin-bottom: 0;
}

.accordion-item.open .accordion-body {
    max-height: 600px;
}

/* =====================================
   TIMELINE (Section 6)
===================================== */

.timeline-section {
    background: var(--muted-slate-blue);
    padding: 100px 0;
    overflow: hidden;
}

.timeline-section .section-title-block h2 {
    color: var(--warm-off-white);
}

.timeline-section .section-number {
    color: rgba(201,168,76,0.85);
}

.timeline-track {
    position: relative;
    padding: 40px 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,168,76,0.3) transparent;
}

.timeline-track::-webkit-scrollbar {
    height: 4px;
}

.timeline-track::-webkit-scrollbar-track {
    background: transparent;
}

.timeline-track::-webkit-scrollbar-thumb {
    background: rgba(201,168,76,0.3);
}

.timeline-line {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-width: max-content;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(201,168,76,0.3);
}

.timeline-point {
    position: relative;
    width: 260px;
    flex-shrink: 0;
    padding: 0 24px 0 0;
}

.timeline-point:last-child {
    padding-right: 0;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--soft-gold);
    border-radius: 50%;
    margin: 22px 0 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
    transition: var(--transition);
}

.timeline-point:hover .timeline-dot {
    transform: scale(1.4);
    box-shadow: 0 0 0 8px rgba(201,168,76,0.15);
}

.timeline-era {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft-gold);
    display: block;
    margin-bottom: 8px;
}

.timeline-point h3 {
    font-size: 0.95rem;
    color: var(--warm-off-white);
    margin-bottom: 10px;
}

.timeline-point p {
    font-size: 0.83rem;
    color: rgba(244,241,236,0.6);
    line-height: 1.7;
}

.timeline-card {
    background: rgba(244,241,236,0.06);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 20px;
    transition: var(--transition);
}

.timeline-point:hover .timeline-card {
    background: rgba(244,241,236,0.1);
    border-color: rgba(201,168,76,0.3);
}

/* =====================================
   SCIENTIFIC CONTEXT (Section 7)
===================================== */

.science-section {
    background: var(--warm-off-white);
    padding: 100px 0;
}

.science-section .section-title-block h2 {
    color: var(--deep-teal);
}

.science-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

.science-main h3 {
    color: var(--deep-teal);
    font-size: 1.2rem;
    margin-bottom: 14px;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(26,74,74,0.12);
}

.science-main h3:first-of-type {
    margin-top: 0;
}

.science-main p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.science-main ul {
    margin: 16px 0 20px 16px;
}

.science-main ul li {
    font-size: 0.92rem;
    color: var(--text-mid);
    padding: 6px 0;
    border-bottom: 1px dashed rgba(26,74,74,0.1);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.science-main ul li::before {
    content: '—';
    color: var(--soft-gold);
    flex-shrink: 0;
    font-weight: 700;
}

.science-image {
    margin-bottom: 40px;
    overflow: hidden;
    height: 280px;
}

.science-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.science-image:hover img {
    transform: scale(1.04);
}

.glossary-rail {
    position: sticky;
    top: 100px;
}

.glossary-rail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft-gold);
    padding: 14px 20px;
    background: var(--deep-teal);
    display: block;
}

.glossary-list {
    border: 1px solid rgba(26,74,74,0.12);
}

.glossary-entry {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(26,74,74,0.08);
    transition: var(--transition);
}

.glossary-entry:last-child {
    border-bottom: none;
}

.glossary-entry:hover {
    background: rgba(201,168,76,0.05);
}

.glossary-term {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--deep-teal);
    display: block;
    margin-bottom: 4px;
}

.glossary-def {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* =====================================
   FAQ (Section 8)
===================================== */

.faq-section {
    background: var(--deep-teal);
    padding: 100px 0;
}

.faq-section .section-title-block h2 {
    color: var(--warm-off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.faq-accordion-list {
    border-top: 1px solid rgba(244,241,236,0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(244,241,236,0.1);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    gap: 16px;
}

.faq-header h3 {
    font-size: 0.95rem;
    color: var(--warm-off-white);
    font-weight: 600;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(201,168,76,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-icon span {
    width: 10px;
    height: 2px;
    background: var(--soft-gold);
    display: block;
    position: relative;
    transition: var(--transition);
}

.faq-icon span::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 10px;
    background: var(--soft-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--soft-gold);
    border-color: var(--soft-gold);
}

.faq-item.open .faq-icon span,
.faq-item.open .faq-icon span::after {
    background: var(--deep-teal-dark);
}

.faq-item.open .faq-icon span::after {
    opacity: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.faq-body-inner {
    padding: 0 0 28px 0;
}

.faq-body-inner p {
    font-size: 0.9rem;
    color: rgba(244,241,236,0.68);
    line-height: 1.8;
}

.faq-item.open .faq-body {
    max-height: 400px;
}

.faq-col-separator {
    background: rgba(201,168,76,0.1);
    width: 1px;
}

/* =====================================
   FINAL CTA (Section 9)
===================================== */

.final-cta-section {
    background: var(--deep-teal-dark);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
}

.final-cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--soft-gold);
    display: block;
    margin-bottom: 20px;
}

.final-cta-section h2 {
    color: var(--warm-off-white);
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.final-cta-section p {
    color: rgba(244,241,236,0.65);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.edu-notice-inline {
    margin-top: 40px;
    display: inline-block;
    font-size: 0.78rem;
    color: rgba(244,241,236,0.35);
    letter-spacing: 0.06em;
    font-style: italic;
}

/* =====================================
   DISCLAIMER BLOCK (every content page)
===================================== */

.disclaimer-block {
    background: var(--muted-slate-blue-pale);
    border-left: 4px solid var(--soft-gold);
    padding: 28px 36px;
    margin: 64px 0 0;
}

.disclaimer-block h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--deep-teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.disclaimer-block p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
    margin: 0;
}

/* =====================================
   ABOUT PAGE
===================================== */

.page-hero {
    background: var(--deep-teal);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(201,168,76,0.02) 40px,
        rgba(201,168,76,0.02) 41px
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--warm-off-white);
    margin-bottom: 16px;
}

.page-hero .lead {
    color: rgba(244,241,236,0.75);
    font-size: 1.1rem;
    max-width: 580px;
    line-height: 1.8;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.about-text-col {
    padding: 80px 64px;
    background: var(--warm-off-white);
}

.about-image-col {
    position: relative;
    min-height: 560px;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.about-values {
    margin-top: 40px;
    padding: 0;
}

.about-value-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(26,74,74,0.1);
    align-items: flex-start;
}

.about-value-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--soft-gold);
    flex-shrink: 0;
    width: 32px;
    line-height: 1;
    padding-top: 3px;
}

.about-value-item h3 {
    font-size: 0.95rem;
    color: var(--deep-teal);
    margin-bottom: 4px;
}

.about-value-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
}

.about-philosophy {
    background: var(--deep-teal-mid);
    padding: 80px 0;
}

.about-philosophy h2 {
    color: var(--warm-off-white);
    margin-bottom: 8px;
}

.about-philosophy .divider {
    background: var(--soft-gold);
}

.about-philosophy p {
    color: rgba(244,241,236,0.75);
    font-size: 0.95rem;
    line-height: 1.85;
    max-width: 720px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
    margin-top: 48px;
}

.philosophy-card {
    background: var(--deep-teal);
    padding: 36px 28px;
}

.philosophy-card h3 {
    color: var(--soft-gold);
    font-size: 1rem;
    margin-bottom: 12px;
}

.philosophy-card p {
    color: rgba(244,241,236,0.65);
    font-size: 0.88rem;
}

/* =====================================
   CATALOG PAGE
===================================== */

.catalog-section {
    background: var(--warm-off-white);
    padding: 80px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog-card {
    background: var(--white);
    border: 1px solid rgba(26,74,74,0.08);
    overflow: hidden;
    transition: var(--transition);
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,0.3);
}

.catalog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.06);
}

.catalog-card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(0deg, rgba(15,46,46,0.55) 0%, transparent 100%);
}

.catalog-card-body {
    padding: 28px 28px 24px;
}

.catalog-card-body h3 {
    font-size: 1.05rem;
    color: var(--deep-teal);
    margin-bottom: 12px;
    line-height: 1.4;
}

.catalog-card-body p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 18px;
}

.catalog-card-bullets {
    margin-bottom: 24px;
}

.catalog-card-bullets li {
    display: flex;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--text-mid);
    padding: 6px 0;
    border-bottom: 1px dashed rgba(26,74,74,0.08);
    align-items: flex-start;
}

.catalog-card-bullets li::before {
    content: '·';
    color: var(--soft-gold);
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.catalog-card-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--deep-teal);
    color: var(--warm-off-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

.catalog-card-btn:hover {
    background: var(--muted-slate-blue);
    color: var(--warm-off-white);
}

/* =====================================
   CONTACT PAGE
===================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    align-items: stretch;
}

.contact-info-col {
    background: var(--deep-teal);
    padding: 64px 56px;
}

.contact-info-col h2 {
    color: var(--warm-off-white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-info-col .divider {
    background: var(--soft-gold);
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft-gold);
    display: block;
    margin-bottom: 8px;
}

.contact-detail p,
.contact-detail a {
    color: rgba(244,241,236,0.8);
    font-size: 0.92rem;
    line-height: 1.7;
}

.contact-detail a:hover {
    color: var(--soft-gold);
}

.contact-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.contact-hours-table tr td {
    padding: 7px 0;
    font-size: 0.85rem;
    color: rgba(244,241,236,0.65);
    border-bottom: 1px solid rgba(244,241,236,0.06);
}

.contact-hours-table tr td:last-child {
    text-align: right;
    color: rgba(244,241,236,0.45);
}

.contact-form-col {
    background: var(--warm-off-white);
    padding: 64px 56px;
}

.contact-form-col h2 {
    font-size: 1.4rem;
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.contact-disclaimer {
    background: var(--muted-slate-blue-pale);
    border-left: 3px solid var(--soft-gold);
    padding: 16px 20px;
    margin-bottom: 32px;
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
}

.form-field {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--deep-teal);
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid rgba(26,74,74,0.2);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--deep-teal);
    box-shadow: 0 0 0 3px rgba(26,74,74,0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
}

.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--deep-teal);
    color: var(--warm-off-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--deep-teal);
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--muted-slate-blue);
    border-color: var(--muted-slate-blue);
}

/* =====================================
   LEGAL PAGES
===================================== */

.legal-page {
    background: var(--warm-off-white);
    padding: 120px 0 80px;
}

.legal-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-page h1 {
    color: var(--deep-teal);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 8px;
}

.legal-date {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 40px;
    display: block;
}

.legal-page h2 {
    color: var(--deep-teal);
    font-size: 1.3rem;
    margin-top: 48px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(26,74,74,0.12);
}

.legal-page p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 12px 0 16px 20px;
}

.legal-page ul li {
    font-size: 0.9rem;
    color: var(--text-mid);
    padding: 5px 0;
    line-height: 1.7;
    list-style: disc;
}

.legal-warning-banner {
    background: var(--deep-teal);
    color: var(--warm-off-white);
    padding: 24px 36px;
    margin-bottom: 48px;
    border-left: 4px solid var(--soft-gold);
}

.legal-warning-banner h2 {
    color: var(--warm-off-white);
    font-size: 1rem;
    margin: 0 0 8px;
    border: none;
    padding: 0;
}

.legal-warning-banner p {
    color: rgba(244,241,236,0.8);
    font-size: 0.88rem;
    margin: 0;
}

/* =====================================
   THANK YOU PAGE
===================================== */

.thank-you-page {
    min-height: 100vh;
    background: var(--deep-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thank-you-inner {
    max-width: 560px;
}

.thank-you-mark {
    width: 72px;
    height: 72px;
    border: 2px solid var(--soft-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
}

.thank-you-mark::before {
    content: '';
    width: 28px;
    height: 14px;
    border-left: 2px solid var(--soft-gold);
    border-bottom: 2px solid var(--soft-gold);
    transform: rotate(-45deg) translateY(-4px);
}

.thank-you-page h1 {
    color: var(--warm-off-white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}

.thank-you-page p {
    color: rgba(244,241,236,0.72);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* =====================================
   COOKIE BANNER
===================================== */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--deep-teal-dark);
    border-top: 2px solid var(--soft-gold);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.85rem;
    color: rgba(244,241,236,0.75);
    line-height: 1.6;
    flex: 1;
    min-width: 280px;
}

.cookie-text a {
    color: var(--soft-gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--soft-gold);
    color: var(--deep-teal-dark);
}

.cookie-btn-accept:hover {
    background: var(--soft-gold-light);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(244,241,236,0.55);
    border: 1px solid rgba(244,241,236,0.2);
}

.cookie-btn-decline:hover {
    border-color: rgba(244,241,236,0.5);
    color: var(--warm-off-white);
}

.cookie-btn-learn {
    background: transparent;
    color: rgba(244,241,236,0.55);
    text-decoration: underline;
    padding: 10px 14px;
    font-size: 0.75rem;
}

.cookie-btn-learn:hover {
    color: var(--soft-gold);
}

/* =====================================
   SECTION DECOR ELEMENTS
===================================== */

.corner-decor {
    position: absolute;
    width: 64px;
    height: 64px;
    pointer-events: none;
}

.corner-decor-tl {
    top: 24px;
    left: 24px;
    border-top: 2px solid rgba(201,168,76,0.25);
    border-left: 2px solid rgba(201,168,76,0.25);
}

.corner-decor-br {
    bottom: 24px;
    right: 24px;
    border-bottom: 2px solid rgba(201,168,76,0.25);
    border-right: 2px solid rgba(201,168,76,0.25);
}

.section-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
    margin: 0;
    border: none;
}

.gold-dot-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.gold-dot {
    width: 5px;
    height: 5px;
    background: var(--soft-gold);
    border-radius: 50%;
}

.gold-dot-row span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft-gold);
}

/* =====================================
   STAT STRIP
===================================== */

.stat-strip {
    background: var(--deep-teal-mid);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 40px 0;
}

.stat-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
}

.stat-item {
    padding: 28px 32px;
    background: var(--deep-teal-mid);
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(201,168,76,0.12);
}

.stat-item:last-child::after {
    display: none;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--soft-gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(244,241,236,0.55);
    letter-spacing: 0.04em;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .two-col-block {
        grid-template-columns: 1fr;
    }

    .two-col-block.reverse {
        direction: ltr;
    }

    .two-col-image {
        min-height: 300px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-col {
        min-height: 380px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .science-layout {
        grid-template-columns: 1fr;
    }

    .glossary-rail {
        position: static;
    }

    .stat-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 64px 0;
    }

    .nav-list { display: none; }
    .nav-toggle { display: flex; }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }

    .nutrient-cards-grid {
        grid-template-columns: 1fr;
    }

    .plants-grid {
        grid-template-columns: 1fr;
    }

    .plant-card {
        height: 400px;
    }

    .plant-card p {
        max-height: 200px;
        opacity: 1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-col-separator {
        display: none;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .two-col-text {
        padding: 40px 24px;
    }

    .lifestyle-layout {
        grid-template-columns: 1fr;
    }

    .hero-meta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-text-col {
        padding: 48px 24px;
    }

    .contact-info-col,
    .contact-form-col {
        padding: 48px 24px;
    }

    .stat-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content { padding: 140px 0 80px; }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        flex-wrap: wrap;
        width: 100%;
    }

    .stat-strip-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* =====================================
   HEALTH DISCLAIMER PAGE
===================================== */

.hd-warning-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--deep-teal);
    border-left: 4px solid var(--soft-gold);
    padding: 28px 32px;
    margin-bottom: 56px;
}

.hd-warning-icon {
    flex-shrink: 0;
    color: var(--soft-gold);
    margin-top: 2px;
}

.hd-warning-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 8px;
}

.hd-warning-text p {
    font-size: 0.92rem;
    color: rgba(244,241,236,0.82);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 600px) {
    .hd-warning-banner {
        flex-direction: column;
        gap: 12px;
        padding: 20px 20px;
    }
}

/* =====================================
   THANK YOU PAGE — SUPPLEMENTARY ELEMENTS
===================================== */

.ty-home-btn {
    display: inline-block;
    margin-bottom: 48px;
}

.ty-note {
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 4px;
    padding: 18px 24px;
    font-size: 0.85rem;
    color: rgba(244,241,236,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: left;
}

.ty-note strong {
    color: var(--soft-gold);
    display: block;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ty-links {
    border-top: 1px solid rgba(201,168,76,0.18);
    padding-top: 32px;
    margin-top: 8px;
}

.ty-links-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,241,236,0.35);
    margin-bottom: 16px;
}

.ty-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.ty-links-row a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(244,241,236,0.5);
    text-decoration: none;
    transition: color 0.25s;
}

.ty-links-row a:hover {
    color: var(--soft-gold);
}
