/* ============================================
   KinHearth — Design System
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --warm: #C85A2A;
    --warm-light: #E8A87C;
    --warm-dark: #A84820;
    --earth: #3D2B1F;
    --sage: #6B8F71;
    --sage-light: #A3C4A8;
    --cream: #FDF6EC;
    --cream-dark: #F5E6D0;
    --sky: #87AECC;
    --sky-light: #B3D0E8;
    --text: #2C1810;
    --text-light: #6B5B4F;
    --white: #ffffff;
    --border: rgba(61,43,31,0.06);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
    background: rgba(253,246,236,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(61,43,31,0.08);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--earth);
    text-decoration: none;
}

.nav-logo span { color: var(--warm); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: var(--text); background: rgba(61,43,31,0.04); }
.nav-link.active { color: var(--warm); }

.nav-cta {
    background: var(--warm);
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 8px;
}
.nav-cta:hover { background: var(--warm-dark) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--earth);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    border: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--warm);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200,90,42,0.25);
}
.btn-primary:hover { background: var(--warm-dark); box-shadow: 0 6px 28px rgba(200,90,42,0.35); }

.btn-outline {
    background: transparent;
    color: var(--warm);
    border: 2px solid var(--warm);
}
.btn-outline:hover { background: var(--warm); color: var(--white); }

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

.btn-white {
    background: var(--white);
    color: var(--warm);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.15); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 100px 24px 60px;
    background: linear-gradient(170deg, var(--cream) 0%, var(--cream-dark) 40%, #EDD9C0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 85% 20%, rgba(107,143,113,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 10% 80%, rgba(200,90,42,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 32px;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: var(--earth);
    margin-bottom: 32px;
}

.hero h1 span { color: var(--warm); }

.hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.7;
    color: var(--text-light);
    max-width: 620px;
    font-weight: 300;
}

.hero-stat-bar {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.hero-stat {
    border-left: 3px solid var(--warm-light);
    padding-left: 16px;
}

.hero-stat strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--warm);
}

.hero-stat span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* ---- SCROLL HINT ---- */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: var(--text-light);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 0.8; height: 56px; }
}

/* ---- STORY ---- */
.story {
    padding: 120px 24px;
    background: var(--white);
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--cream-dark), var(--white));
}

.story-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.story-quote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.4;
    color: var(--earth);
    margin-bottom: 40px;
    position: relative;
    padding-left: 28px;
    border-left: 4px solid var(--warm-light);
}

.story p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 300;
}

.story p strong {
    color: var(--text);
    font-weight: 500;
}

/* ---- CONCEPT ---- */
.concept {
    padding: 100px 24px;
    background: var(--earth);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.concept::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,90,42,0.15), transparent 70%);
}

.concept-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.concept-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm-light);
    margin-bottom: 24px;
}

.concept h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 64px;
    max-width: 600px;
    line-height: 1.2;
}

.facility-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 64px;
}

.facility-wing {
    padding: 40px 32px;
    border-radius: 16px;
    position: relative;
}

.wing-left {
    background: rgba(107,143,113,0.15);
    border: 1px solid rgba(107,143,113,0.3);
}

.wing-right {
    background: rgba(135,174,204,0.15);
    border: 1px solid rgba(135,174,204,0.3);
}

.facility-wing h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.wing-left h3 { color: var(--sage-light); }
.wing-right h3 { color: var(--sky); }

.facility-wing p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    font-weight: 300;
}

.wing-features {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.wing-features li {
    font-size: 0.9rem;
    padding: 6px 0;
    opacity: 0.7;
    font-weight: 300;
    padding-left: 20px;
    position: relative;
}

.wing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 600;
}

.wing-left .wing-features li::before { color: var(--sage-light); }
.wing-right .wing-features li::before { color: var(--sky-light); }

.facility-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    position: relative;
}

.facility-center::before {
    content: '';
    position: absolute;
    top: 10%; bottom: 10%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--warm-light), transparent);
}

.center-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* ---- PILLARS ---- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar {
    padding: 32px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pillar h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--warm-light);
}

.pillar p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    font-weight: 300;
}

/* ---- DATA SECTION ---- */
.data-section {
    padding: 100px 24px;
    background: var(--cream);
}

.data-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.data-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 24px;
}

.data-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--earth);
    margin-bottom: 56px;
    max-width: 600px;
    line-height: 1.2;
}

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

.data-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.data-card:hover { transform: translateY(-2px); }

.data-card .num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--warm);
    margin-bottom: 8px;
}

.data-card .label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.data-card .source {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.5;
    margin-top: 12px;
    font-style: italic;
}

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 80px 24px;
    background: var(--white);
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cta-card {
    display: block;
    text-decoration: none;
    color: var(--text);
    background: var(--cream);
    border-radius: 20px;
    padding: 48px 36px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(61,43,31,0.1);
}

.cta-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--earth);
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-card-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--warm);
}

/* ---- CLOSING ---- */
.closing {
    padding: 120px 24px;
    background: linear-gradient(170deg, var(--earth) 0%, #1A110A 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.closing::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,90,42,0.1), transparent 60%);
}

.closing-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.closing h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 28px;
}

.closing p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.7;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
}

.closing-contact {
    margin-top: 56px;
}

.contact-prompt {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 24px;
    font-weight: 400;
}

/* ---- FOOTER ---- */
footer {
    padding: 40px 24px;
    background: #0F0A06;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand span { color: var(--warm-light); }

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--warm-light); }

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
    padding: 140px 24px 80px;
    background: linear-gradient(170deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 85% 20%, rgba(107,143,113,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 10% 80%, rgba(200,90,42,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-header-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header .page-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 24px;
}

.page-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--earth);
    margin-bottom: 24px;
}

.page-header h1 span { color: var(--warm); }

.page-header .page-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-light);
    max-width: 600px;
    font-weight: 300;
}

/* ============================================
   CONTENT SECTIONS (inner pages)
   ============================================ */
.content-section {
    padding: 80px 24px;
}

.content-section:nth-child(even) { background: var(--cream); }
.content-section:nth-child(odd) { background: var(--white); }

.content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 24px;
}

.content-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--earth);
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-inner h2 span { color: var(--warm); }

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    font-weight: 300;
    margin-bottom: 48px;
}

/* ---- REVENUE TABLE ---- */
.revenue-table-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 48px;
}

.revenue-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.revenue-table thead {
    background: var(--earth);
    color: var(--white);
}

.revenue-table th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.revenue-table td {
    padding: 16px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    font-weight: 300;
    color: var(--text-light);
}

.revenue-table tr:last-child td { border-bottom: none; }

.revenue-table .row-total {
    background: var(--cream);
    font-weight: 600;
}

.revenue-table .row-total td {
    color: var(--text);
    font-weight: 600;
}

.revenue-table .num-col {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--warm);
    font-weight: 400;
}

.revenue-table .row-total .num-col {
    font-size: 1.3rem;
    color: var(--earth);
}

/* ---- METRIC CARDS ---- */
.metric-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.metric-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    text-align: center;
}

.metric-card .metric-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: var(--warm);
    margin-bottom: 8px;
}

.metric-card .metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
}

.metric-card .metric-note {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.5;
    margin-top: 8px;
    font-style: italic;
}

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
    background: var(--earth);
    color: var(--white);
    border-radius: 20px;
    padding: 48px;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,90,42,0.2), transparent 70%);
}

.highlight-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
    position: relative;
}

.highlight-box p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 300;
    position: relative;
    max-width: 700px;
}

.highlight-box .highlight-stat {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    position: relative;
}

.highlight-box .hl-item {
    border-left: 3px solid var(--warm);
    padding-left: 16px;
}

.highlight-box .hl-item strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--warm-light);
}

.highlight-box .hl-item span {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ---- TWO COLUMN ---- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.two-col-text h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--earth);
    margin-bottom: 16px;
}

.two-col-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

/* ---- TIMELINE ---- */
.timeline {
    position: relative;
    padding-left: 40px;
    margin: 48px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--warm-light), var(--sage-light));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--warm);
    border: 3px solid var(--cream);
}

.timeline-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--earth);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

/* ---- STAT BLOCKS ---- */
.stat-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.stat-block {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--border);
}

.stat-block .stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--warm);
    margin-bottom: 8px;
}

.stat-block .stat-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--earth);
    margin-bottom: 8px;
}

.stat-block .stat-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

.stat-block .stat-source {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.5;
    margin-top: 12px;
    font-style: italic;
}

/* ---- COMPARISON TABLE ---- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin: 48px 0;
}

.comparison-table th {
    background: var(--sage);
    color: var(--white);
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comparison-table td {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    font-weight: 300;
    color: var(--text-light);
}

.comparison-table tr:last-child td { border-bottom: none; }

/* ---- ANC LIST ---- */
.anc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.anc-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
}

.anc-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--earth);
    margin-bottom: 8px;
}

.anc-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 300;
}

.anc-card .anc-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sage);
    background: rgba(107,143,113,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 12px;
}

/* ---- CALLOUT SECTION ---- */
.callout-section {
    padding: 80px 24px;
    background: var(--sage);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.callout-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}

.callout-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.callout-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.callout-inner p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.85;
    font-weight: 300;
    margin-bottom: 32px;
}

.callout-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253,246,236,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(61,43,31,0.1);
    }

    .nav-links.open { display: flex; }

    .nav-toggle { display: flex; }

    .nav-cta { margin-left: 0; text-align: center; margin-top: 8px; }

    .facility-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .facility-center {
        padding: 16px;
    }
    .facility-center::before {
        top: 0; bottom: 0;
        width: 100%; height: 2px;
        left: 0;
        background: linear-gradient(to right, transparent, var(--warm-light), transparent);
    }
    .center-circle {
        width: 64px; height: 64px;
        font-size: 0.55rem;
    }
    .pillars {
        grid-template-columns: 1fr;
    }
    .data-grid {
        grid-template-columns: 1fr;
    }
    .hero-stat-bar {
        gap: 32px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        text-align: center;
    }
    .cta-cards {
        grid-template-columns: 1fr;
    }
    .metric-cards {
        grid-template-columns: 1fr;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .stat-blocks {
        grid-template-columns: 1fr;
    }
    .anc-grid {
        grid-template-columns: 1fr;
    }
    .highlight-box .highlight-stat {
        flex-direction: column;
        gap: 24px;
    }
    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .revenue-table-wrap {
        overflow-x: auto;
    }
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .hero { padding: 100px 16px 48px; }
    .page-header { padding: 120px 16px 60px; }
    .content-section { padding: 60px 16px; }
    .highlight-box { padding: 32px 24px; }
}
