@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Open+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #F8F4E3;
    --green: #4A6B3A;
    --green-dark: #3a5530;
    --terracotta: #8C5F4B;
    --sand: #B5A18C;
    --sand-light: #D6C9B5;
    --charcoal: #333333;
    --charcoal-light: #555555;
    --white: #ffffff;
    --border: #D6C9B5;
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Open Sans', Arial, sans-serif;
    --container: 1200px;
    --radius: 4px;
    --shadow: 0 2px 16px rgba(74,107,58,0.08);
    --shadow-hover: 0 6px 32px rgba(74,107,58,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.7;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--green-dark);
}

h1, h2, h3 {
    font-family: var(--font-serif);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--green);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--green-dark);
}

h3 {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--charcoal);
}

p {
    margin-bottom: 1rem;
    color: var(--charcoal);
    line-height: 1.75;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

strong {
    font-weight: 700;
    color: var(--charcoal);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* =====================
   HEADER / NAVIGATION
   ===================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(248,244,227,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(4px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 68px;
    max-width: var(--container);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--green-dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
    background: rgba(74,107,58,0.07);
}

.main-nav a.active {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--terracotta);
}

.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(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 68px;
    overflow: hidden;
    background-color: var(--green-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,107,58,0.75) 0%, rgba(58,85,48,0.6) 50%, rgba(140,95,75,0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-content h1 {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    margin-bottom: 1.25rem;
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-family: var(--font-sans);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--white);
    background: var(--white);
    color: var(--green-dark);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: scale(1.02);
}

.btn-secondary {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: scale(1.02);
}

.hero-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

/* =====================
   EDUCATIONAL NOTICE
   ===================== */

.edu-notice {
    background: var(--green);
    padding: 14px 24px;
    text-align: center;
}

.edu-notice p {
    color: var(--white);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

/* =====================
   SECTION BASE
   ===================== */

.section {
    padding: 96px 0;
}

.section-sm {
    padding: 64px 0;
}

.section-alt {
    background: var(--white);
}

.section-green {
    background: var(--green);
}

.section-green h2,
.section-green h3,
.section-green p,
.section-green li {
    color: var(--white);
}

.section-green .section-label {
    color: rgba(255,255,255,0.7);
}

.section-sand {
    background: #EDE8D7;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* =====================
   LIBRARY GRID (Index cards)
   ===================== */

.library-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 3rem;
}

.library-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px 28px;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
}

.library-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(74,107,58,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.card-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.library-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
    flex-grow: 0;
}

.library-card p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
}

.card-link:hover {
    gap: 10px;
    color: var(--terracotta);
    border-bottom-color: var(--terracotta);
}

.card-link::after {
    content: '→';
}

/* =====================
   TWO-COLUMN LAYOUTS
   ===================== */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.two-col-7-5 {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: center;
}

.two-col-5-7 {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}

.col-image {
    position: relative;
}

.col-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.col-image-tall img {
    height: 520px;
}

.image-caption {
    font-size: 0.8rem;
    color: var(--sand);
    margin-top: 0.75rem;
    font-style: italic;
}

/* =====================
   INSIGHT CARDS / FACTS
   ===================== */

.insight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 2.5rem;
}

.insight-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-top: 3px solid var(--terracotta);
    padding: 28px 22px;
    border-radius: 4px;
    transition: box-shadow 0.25s ease;
}

.insight-card:hover {
    box-shadow: var(--shadow-hover);
}

.insight-card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.insight-card p {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    margin: 0;
}

/* =====================
   TABLE
   ===================== */

.table-section {
    background: var(--green);
    padding: 96px 0;
}

.table-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 0.75rem;
}

.table-section .section-label {
    color: rgba(255,255,255,0.65);
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2.5rem;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead {
    background: var(--green-dark);
}

.comparison-table thead th {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(248,244,227,0.6);
}

.comparison-table tbody td {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--charcoal);
    vertical-align: top;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--green-dark);
}

/* =====================
   ACCORDION / FAQ
   ===================== */

.faq-list {
    margin-top: 2.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    gap: 16px;
}

.faq-question h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-dark);
    flex: 1;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
    color: var(--green);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
}

.faq-item.open .faq-toggle {
    background: var(--green);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 22px 0;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin: 0;
}

/* =====================
   CHAT WIDGET
   ===================== */

.chat-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
}

.chat-bubble {
    width: 58px;
    height: 58px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(74,107,58,0.4);
    transition: transform 0.2s, background 0.2s;
    border: none;
    outline: none;
}

.chat-bubble:hover {
    transform: scale(1.08);
    background: var(--green-dark);
}

.chat-bubble svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chat-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.16);
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.chat-panel.open {
    display: flex;
}

.chat-header {
    background: var(--green);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-avatar svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
}

.chat-header-info h3 {
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 700;
    margin: 0;
}

.chat-header-info span {
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
}

.chat-body {
    padding: 20px;
    max-height: 240px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    background: var(--cream);
    border-radius: 0 8px 8px 8px;
    padding: 12px 14px;
    font-size: 0.875rem;
    color: var(--charcoal);
    line-height: 1.5;
    max-width: 90%;
    border-left: 3px solid var(--green);
}

.chat-suggestions {
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-suggestion-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 9px 14px;
    font-size: 0.82rem;
    font-family: var(--font-sans);
    color: var(--green);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s, border-color 0.2s;
    font-weight: 500;
}

.chat-suggestion-btn:hover {
    background: rgba(74,107,58,0.06);
    border-color: var(--green);
}

/* =====================
   QUOTES / READER PERSPECTIVES
   ===================== */

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 2.5rem;
}

.quote-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px 28px;
    position: relative;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--border);
    position: absolute;
    top: 8px;
    left: 22px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.quote-card blockquote {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
    border: none;
    padding: 0;
}

.quote-source {
    font-size: 0.8rem;
    color: var(--sand);
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
}

/* =====================
   WELLNESS ROUTE
   ===================== */

.route-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 2.5rem;
    position: relative;
}

.route-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.route-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
}

.route-step h3 {
    font-size: 0.9rem;
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}

.route-step p {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    margin: 0;
}

/* =====================
   FULL-WIDTH CALLOUT
   ===================== */

.callout-block {
    background: var(--terracotta);
    padding: 80px 0;
    text-align: center;
}

.callout-block h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.callout-block p {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.btn-outline-white {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 30px;
    border-radius: var(--radius);
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--terracotta);
    transform: scale(1.02);
}

/* =====================
   CONTENT LIMITATION BLOCK
   ===================== */

.info-context-block {
    background: rgba(181,161,140,0.15);
    border-left: 4px solid var(--sand);
    border-radius: 0 4px 4px 0;
    padding: 28px 32px;
    margin: 3rem 0;
}

.info-context-block h3 {
    font-family: var(--font-serif);
    color: var(--terracotta);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.info-context-block p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-bottom: 0.5rem;
}

.info-context-block p:last-child {
    margin: 0;
}

/* =====================
   PHOTO GALLERY STRIP
   ===================== */

.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    height: 280px;
    overflow: hidden;
}

.photo-strip-item {
    overflow: hidden;
    position: relative;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.05);
}

/* =====================
   FULL-WIDTH IMAGE SECTION
   ===================== */

.full-image-section {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.full-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74,107,58,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-image-text {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 24px;
}

.full-image-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.full-image-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}

/* =====================
   ABOUT PAGE
   ===================== */

.about-hero {
    margin-top: 68px;
    position: relative;
    height: 480px;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(74,107,58,0.7) 0%, rgba(74,107,58,0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 48px;
}

.about-hero-caption {
    max-width: 560px;
}

.about-hero-caption h3 {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.about-hero-caption .h1-white {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* =====================
   POLICY PAGES
   ===================== */

.policy-header {
    margin-top: 68px;
    background: var(--green-dark);
    padding: 72px 0 56px;
    text-align: center;
}

.policy-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.policy-header .subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.policy-content {
    padding: 72px 0 96px;
}

.policy-content .container {
    max-width: 860px;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.policy-section p,
.policy-section li {
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

.policy-meta {
    font-size: 0.85rem;
    color: var(--sand);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

/* =====================
   CONTACT PAGE
   ===================== */

.contact-page {
    margin-top: 68px;
    padding: 80px 0 96px;
}

.contact-page h1 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 48px;
    max-width: 640px;
}

.disclaimer-box {
    background: rgba(181,161,140,0.2);
    border: 1px solid var(--sand-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 2rem;
}

.disclaimer-box h3 {
    color: var(--terracotta);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.disclaimer-box p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin: 0;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: var(--white);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 36px;
    border-radius: var(--radius);
    border: 2px solid var(--green);
    background: var(--green);
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: scale(1.02);
}

.contact-info-block {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-info-block h3 {
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    color: var(--green-dark);
    font-size: 1.05rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.contact-info-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--terracotta);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item span {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

/* =====================
   THANK YOU PAGE
   ===================== */

.thankyou-page {
    margin-top: 68px;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: var(--cream);
}

.thankyou-inner {
    text-align: center;
    max-width: 580px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: rgba(74,107,58,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thankyou-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
}

.thankyou-page h1 {
    margin-bottom: 1.5rem;
}

.thankyou-page h2 {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--charcoal-light);
    margin-bottom: 2.5rem;
}

.btn-back-home {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--green);
    background: var(--green);
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-back-home:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: scale(1.02);
    color: var(--white);
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
    background: #2B3D24;
    color: rgba(255,255,255,0.8);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo {
    color: var(--white);
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.5rem;
}

.footer-contact strong {
    color: var(--white);
    font-weight: 600;
}

.footer-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-hours p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-middle {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-edu-notice {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 20px 24px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-edu-notice p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-style: italic;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    text-align: center;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* =====================
   COOKIE BANNER
   ===================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #2B3D24;
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    min-width: 260px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius);
    border: 2px solid var(--white);
    background: var(--white);
    color: #2B3D24;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-accept:hover {
    background: transparent;
    color: var(--white);
}

.cookie-btn-reject {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-reject:hover {
    border-color: var(--white);
    color: var(--white);
}

.cookie-btn-info {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius);
    border: none;
    background: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-btn-info:hover {
    color: var(--white);
}

/* =====================
   SECTION CONTENT BLOCKS (Index sections)
   ===================== */

.section-content-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 48px;
}

.panel-header {
    background: var(--green);
    padding: 32px 40px;
}

.panel-header h2 {
    color: var(--white);
    margin: 0;
}

.panel-header .section-label {
    color: rgba(255,255,255,0.65);
}

.panel-body {
    padding: 40px;
}

.panel-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* =====================
   INDEX CONTENT SECTIONS
   ===================== */

.component-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.component-type-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
}

.component-type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.component-type-content {
    padding: 24px;
}

.component-type-content h3 {
    font-family: var(--font-serif);
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.component-type-content p {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    margin: 0;
}

/* =====================
   UTILITY
   ===================== */

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .library-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-steps::before {
        display: none;
    }

    .quotes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .component-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 16px;
        border-radius: 4px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
    }

    .two-col,
    .two-col-7-5,
    .two-col-5-7 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .two-col-5-7 .col-text {
        order: 2;
    }

    .two-col-5-7 .col-image {
        order: 1;
    }

    .library-grid {
        grid-template-columns: 1fr;
    }

    .insight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .route-steps {
        grid-template-columns: 1fr 1fr;
    }

    .quotes-grid {
        grid-template-columns: 1fr;
    }

    .photo-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 360px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-panel {
        width: 290px;
    }

    .col-image img {
        height: 260px;
    }

    .component-types-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        height: 340px;
    }

    .about-hero-overlay {
        padding: 28px;
    }

    .table-section {
        padding: 64px 0;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .insight-grid {
        grid-template-columns: 1fr;
    }

    .route-steps {
        grid-template-columns: 1fr;
    }

    .photo-strip {
        grid-template-columns: 1fr 1fr;
        height: 240px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 64px 0;
    }
}
