@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Open+Sans:wght@300;400;600&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --deep-blue: #0E3863;
    --sky-blue: #B2CCDC;
    --gold: #D3AA5E;
    --cool-grey: #7A8A9E;
    --white: #FFFFFF;
    --off-white: #F7F5F2;
    --light-grey: #E8EDF2;
    --text-dark: #1A2A3A;
    --text-body: #3A4A5A;
    --border-light: #D0DCE8;
    --shadow-sm: 0 2px 8px rgba(14,56,99,0.08);
    --shadow-md: 0 6px 24px rgba(14,56,99,0.12);
    --shadow-lg: 0 16px 48px rgba(14,56,99,0.16);
    --max-w: 1200px;
    --max-site: 1440px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;
    --spacing-xxl: 128px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--deep-blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--deep-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold);
}

ul, ol {
    padding-left: 1.5rem;
}

li {
    line-height: 1.75;
    margin-bottom: 6px;
    color: var(--text-body);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: var(--max-site);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-pad {
    padding: var(--spacing-xl) 0;
}

.section-pad-lg {
    padding: var(--spacing-xxl) 0;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(14,56,99,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(178,204,220,0.2);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(14,56,99,0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    height: 72px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    text-decoration: none;
    flex-shrink: 0;
}

.logo span {
    color: var(--gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.main-nav a {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    border-color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--deep-blue);
    z-index: 999;
    padding: var(--spacing-md);
    border-top: 1px solid rgba(178,204,220,0.2);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(178,204,220,0.1);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* ===== PAGE OFFSET ===== */
.page-content {
    padding-top: 72px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--deep-blue);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,56,99,0.85) 0%, rgba(14,56,99,0.55) 60%, rgba(14,56,99,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    width: 100%;
}

.hero-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.hero h1 {
    color: var(--white);
    max-width: 720px;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    align-items: center;
}

.hero-disclaimer {
    margin-top: var(--spacing-lg);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    max-width: 500px;
    line-height: 1.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--deep-blue);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-dark {
    background: var(--deep-blue);
    color: var(--white);
    border-color: var(--deep-blue);
}

.btn-dark:hover {
    background: transparent;
    color: var(--deep-blue);
}

/* ===== GOLD LINE DIVIDER ===== */
.gold-line {
    width: 56px;
    height: 3px;
    background: var(--gold);
    margin-bottom: var(--spacing-md);
}

.gold-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECTION LABELS ===== */
.section-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

/* ===== STATS ROW ===== */
.stats-row {
    background: var(--off-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: var(--spacing-md) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md) var(--spacing-sm);
    border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--cool-grey);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===== CATEGORY EXPLORER ===== */
.explorer-section {
    background: var(--white);
}

.explorer-tabs {
    display: flex;
    gap: 0;
    border: 1px solid var(--border-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.explorer-tab {
    flex: 1;
    min-width: 160px;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    border: none;
    border-right: 1px solid var(--border-light);
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cool-grey);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    text-align: center;
}

.explorer-tab:last-child {
    border-right: none;
}

.explorer-tab:hover {
    background: var(--off-white);
    color: var(--deep-blue);
}

.explorer-tab.active {
    background: var(--deep-blue);
    color: var(--white);
}

.explorer-panel {
    display: none;
    padding: var(--spacing-lg) 0;
}

.explorer-panel.active {
    display: block;
}

.ingredient-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.ingredient-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.ingredient-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--sky-blue);
}

.ingredient-card:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-grey);
    margin-bottom: var(--spacing-sm);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--deep-blue);
    fill: none;
}

.ingredient-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.ingredient-card p {
    font-size: 0.875rem;
    color: var(--cool-grey);
    line-height: 1.6;
    margin-bottom: 0;
}

.ingredient-detail {
    display: none;
    margin-top: var(--spacing-md);
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    padding: var(--spacing-md) var(--spacing-lg);
}

.ingredient-detail.visible {
    display: block;
}

.ingredient-detail h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: none;
    letter-spacing: 0;
}

/* ===== TWO-COL SECTION ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.two-col-img {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.two-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.two-col:hover .two-col-img img {
    transform: scale(1.03);
}

.two-col-text {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.two-col-text.bg-blue {
    background: var(--deep-blue);
}

.two-col-text.bg-blue h2,
.two-col-text.bg-blue h3,
.two-col-text.bg-blue p,
.two-col-text.bg-blue li {
    color: var(--white);
}

.two-col-text.bg-blue .section-label {
    color: var(--gold);
}

.two-col-text.bg-off {
    background: var(--off-white);
}

/* ===== BALANCE SECTION ===== */
.balance-section {
    background: var(--deep-blue);
    padding: var(--spacing-xl) 0;
}

.balance-section h2,
.balance-section .section-label {
    color: var(--white);
}

.balance-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.balance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.balance-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(178,204,220,0.2);
    padding: var(--spacing-md);
    transition: all 0.25s ease;
}

.balance-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.balance-card .card-icon {
    background: rgba(178,204,220,0.12);
    margin-bottom: var(--spacing-sm);
}

.balance-card .card-icon svg {
    stroke: var(--gold);
}

.balance-card h3 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.balance-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.65;
}

/* ===== DIAGRAM / COMPARISON ===== */
.comparison-section {
    background: var(--off-white);
    padding: var(--spacing-xl) 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.comparison-table th {
    background: var(--deep-blue);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
}

.comparison-table th:first-child {
    width: 30%;
    background: rgba(14,56,99,0.85);
}

.comparison-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    line-height: 1.6;
    vertical-align: top;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--off-white);
}

.comparison-table .row-label {
    font-weight: 600;
    color: var(--deep-blue);
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    background: var(--sky-blue);
    color: var(--deep-blue);
    margin-bottom: 6px;
}

/* ===== CHAT SECTION ===== */
.chat-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.chat-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.chat-intro h2 {
    margin-bottom: var(--spacing-md);
}

.chat-intro p {
    margin-bottom: var(--spacing-md);
}

.expert-avatar {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    margin-top: var(--spacing-md);
}

.avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-circle svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
}

.avatar-info strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--deep-blue);
}

.avatar-info span {
    font-size: 0.8rem;
    color: var(--cool-grey);
    letter-spacing: 0.05em;
}

.chat-box {
    border: 1px solid var(--border-light);
    background: var(--white);
    display: flex;
    flex-direction: column;
    height: 440px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.chat-msg {
    display: flex;
    gap: var(--spacing-xs);
    align-items: flex-start;
}

.chat-msg.user {
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.msg-avatar.user-av {
    background: var(--sky-blue);
    color: var(--deep-blue);
}

.msg-bubble {
    max-width: 75%;
    padding: 10px 16px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--off-white);
    border: 1px solid var(--border-light);
}

.chat-msg.user .msg-bubble {
    background: var(--deep-blue);
    color: var(--white);
    border-color: var(--deep-blue);
}

.chat-input-row {
    display: flex;
    border-top: 1px solid var(--border-light);
}

.chat-input-row input {
    flex: 1;
    padding: 14px var(--spacing-sm);
    border: none;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--text-body);
}

.chat-input-row button {
    padding: 14px var(--spacing-md);
    background: var(--deep-blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.chat-input-row button:hover {
    background: var(--gold);
    color: var(--deep-blue);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--off-white);
    padding: var(--spacing-xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    cursor: pointer;
    gap: var(--spacing-md);
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-blue);
    text-transform: none;
    letter-spacing: 0;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
    background: var(--white);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--deep-blue);
    fill: none;
    transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
}

.faq-item.open .faq-icon svg {
    stroke: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 var(--spacing-md);
}

.faq-answer p {
    color: var(--cool-grey);
    line-height: 1.75;
    margin-bottom: 0;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ===== INFO DISCLAIMER SECTION ===== */
.info-note {
    background: var(--light-grey);
    border-left: 4px solid var(--sky-blue);
    padding: var(--spacing-md) var(--spacing-lg);
    margin: var(--spacing-md) 0;
}

.info-note p {
    font-size: 0.875rem;
    color: var(--cool-grey);
    margin-bottom: 0;
    line-height: 1.65;
}

.info-note strong {
    color: var(--deep-blue);
}

/* ===== FULL WIDTH IMAGE SECTION ===== */
.full-img-section {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.full-img-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.full-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,56,99,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.full-img-overlay-content {
    text-align: center;
    max-width: 700px;
}

.full-img-overlay-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.full-img-overlay-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

/* ===== PRINCIPLES SECTION ===== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.principle-block {
    padding: var(--spacing-md);
    border: 1px solid var(--border-light);
    background: var(--white);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.principle-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.principle-block:hover {
    box-shadow: var(--shadow-md);
}

.principle-block:hover::after {
    transform: scaleX(1);
}

.principle-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--border-light);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.principle-block h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.principle-block p {
    font-size: 0.875rem;
    color: var(--cool-grey);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--off-white);
    padding: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--border-light);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.featured {
    grid-column: span 2;
}

.gallery-item.featured img {
    height: 360px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(14,56,99,0.85));
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
}

.gallery-caption span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text-dark);
    padding-top: var(--spacing-xl);
}

.footer-disclaimer-bar {
    background: rgba(14,56,99,0.6);
    border-top: 1px solid rgba(178,204,220,0.1);
    border-bottom: 1px solid rgba(178,204,220,0.1);
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-lg);
}

.footer-disclaimer-bar p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-disclaimer-bar strong {
    color: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 0;
}

.footer-col h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--cool-grey);
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-hours {
    margin-top: var(--spacing-sm);
}

.footer-hours h3 {
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.footer-hours p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
    line-height: 1.4;
}

.footer-bottom {
    padding: var(--spacing-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-edu-note {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer-legal-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* ===== DISCLAIMER BLOCK ===== */
.disclaimer-block {
    background: rgba(178,204,220,0.12);
    border: 1px solid rgba(178,204,220,0.25);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.disclaimer-block p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: var(--spacing-xs);
}

.disclaimer-block p:last-child {
    margin-bottom: 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--text-dark);
    border-top: 2px solid var(--gold);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    flex: 1;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-xs);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 9px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--deep-blue);
    border-color: var(--gold);
}

.cookie-btn-accept:hover {
    background: transparent;
    color: var(--gold);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.2);
}

.cookie-btn-reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.cookie-btn-learn {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border-color: transparent;
    text-decoration: underline;
    font-size: 0.78rem;
}

.cookie-btn-learn:hover {
    color: var(--white);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
    background: var(--deep-blue);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: rgba(178,204,220,0.05);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.breadcrumb a,
.breadcrumb span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: rgba(255,255,255,0.25);
}

.timeline {
    position: relative;
    padding-left: var(--spacing-lg);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--spacing-lg) - 5px);
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.timeline-item h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.875rem;
    color: var(--cool-grey);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== POLICY PAGES ===== */
.policy-content {
    max-width: 820px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.policy-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--spacing-sm);
}

.policy-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--border-light);
}

.policy-content h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
    text-transform: none;
    letter-spacing: 0;
    margin-top: var(--spacing-md);
    margin-bottom: 8px;
}

.policy-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: var(--spacing-sm);
}

.policy-content li {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 6px;
}

.policy-meta {
    font-size: 0.8rem;
    color: var(--cool-grey);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
}

.contact-item-text strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cool-grey);
    margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a {
    font-size: 0.95rem;
    color: var(--text-body);
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-light);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px var(--spacing-sm);
    border: 1px solid var(--border-light);
    background: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-body);
    transition: border-color 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--deep-blue);
}

.form-group textarea {
    height: 160px;
    resize: vertical;
}

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--cool-grey);
    line-height: 1.6;
    padding: var(--spacing-sm);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--sky-blue);
    margin-bottom: var(--spacing-md);
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
    min-height: calc(100vh - 72px);
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.thankyou-card {
    background: var(--white);
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 580px;
    width: 100%;
    text-align: center;
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.check-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.check-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
}

.thankyou-card h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.thankyou-card p {
    color: var(--cool-grey);
    line-height: 1.75;
    margin-bottom: var(--spacing-md);
}

/* ===== ABOUT MISSION ===== */
.mission-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.values-list li:last-child {
    border-bottom: none;
}

.val-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.val-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .balance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .two-col-img {
        min-height: 320px;
    }

    .two-col-text {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .chat-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .ingredient-cards {
        grid-template-columns: 1fr 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.featured {
        grid-column: span 1;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-item.featured img {
        height: 200px;
    }

    .explorer-tabs {
        flex-direction: column;
    }

    .explorer-tab {
        min-width: unset;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-table {
        font-size: 0.82rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .balance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ingredient-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contact-form-wrapper {
        padding: var(--spacing-md);
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.45rem;
    }
}
