@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #3B4A3C;
    --sage: #A3B18A;
    --stone: #DAD7CD;
    --moss: #588157;
    --primary-dark: #2c3a2d;
    --primary-light: #4d5f4e;
    --text-light: #f5f3ef;
    --text-muted: #c8c4bc;
    --text-dark: #1e2a1f;
    --border: rgba(163,177,138,0.2);
    --transition: all 0.25s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
}

p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}

a {
    color: var(--sage);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--stone);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 1.5rem;
}

li {
    line-height: 1.7;
    color: var(--text-muted);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-pad {
    padding: 96px 0;
}

.section-pad-sm {
    padding: 64px 0;
}


/* ─── NAVBAR ─── */

.gtrigon-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(59, 74, 60, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.gtrigon-nav.scrolled {
    background: rgba(44, 58, 45, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-brand {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-decoration: none;
}

.nav-brand span {
    color: var(--sage);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
    background: rgba(163,177,138,0.12);
}

.nav-links a.active {
    color: var(--sage);
    border-bottom: 2px solid var(--sage);
    border-radius: 0;
    padding-bottom: 0.35rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 1rem 2rem 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
}

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

.nav-mobile a {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: var(--sage);
}


/* ─── HERO SECTION ─── */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(30,42,31,0.92) 45%, rgba(59,74,60,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 100px;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--sage);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--stone);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4rem;
}

.hero-scroll::before {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--sage);
    opacity: 0.6;
}


/* ─── BUTTONS ─── */

.btn-read {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-light);
    background: var(--moss);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-read:hover {
    background: var(--sage);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88,129,87,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--sage);
    background: transparent;
    border: 1px solid var(--sage);
    padding: 0.7rem 1.65rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(163,177,138,0.1);
    color: var(--text-light);
}


/* ─── SECTION LABELS ─── */

.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--sage);
    flex-shrink: 0;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: var(--moss);
    margin: 1.25rem 0 2rem;
}

.section-divider-center {
    width: 48px;
    height: 3px;
    background: var(--moss);
    margin: 1.25rem auto 2rem;
}


/* ─── SECTION BG VARIANTS ─── */

.bg-primary {
    background: var(--primary);
}

.bg-primary-dark {
    background: var(--primary-dark);
}

.bg-stone {
    background: var(--stone);
    color: var(--text-dark);
}

.bg-stone h1,
.bg-stone h2,
.bg-stone h3 {
    color: var(--text-dark);
}

.bg-stone p,
.bg-stone li {
    color: #4a5c4b;
}

.bg-stone .section-eyebrow {
    color: var(--moss);
}

.bg-stone .section-eyebrow::before {
    background: var(--moss);
}

.bg-stone .section-divider,
.bg-stone .section-divider-center {
    background: var(--moss);
}

.bg-moss-light {
    background: rgba(88,129,87,0.08);
}


/* ─── NUTRIENT MATRIX TABLE ─── */

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.matrix-table th {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    border-bottom: 2px solid var(--border);
    padding: 0.75rem 1.25rem;
    text-align: left;
}

.matrix-table td {
    font-family: 'Source Serif 4', serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.matrix-table tr:hover td {
    background: rgba(163,177,138,0.06);
}

.matrix-table .cat-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}


/* ─── GLOSSARY RAIL ─── */

.glossary-rail {
    border-left: 3px solid var(--moss);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glossary-item h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.35rem;
}

.glossary-item p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
}


/* ─── FOOD GROUP PANEL ─── */

.food-panel {
    background: rgba(163,177,138,0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.food-panel-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.75rem;
}

.food-panel h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.food-panel p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.food-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}


/* ─── STAT STRIP ─── */

.stat-strip {
    background: var(--primary-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sage);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* ─── CARDS ─── */

.info-card {
    background: rgba(163,177,138,0.07);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(163,177,138,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.info-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.info-card-body {
    padding: 1.5rem;
}

.info-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.info-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.info-card-body a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sage);
    margin-top: 1rem;
    transition: var(--transition);
}

.info-card-body a:hover {
    color: var(--text-light);
    gap: 0.65rem;
}

.info-card-body a::after {
    content: '→';
}


/* ─── ACCORDION ─── */

.accordion-block {
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 0;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: var(--transition);
}

.accordion-btn:hover .accordion-q {
    color: var(--sage);
}

.accordion-q {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.accordion-icon {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    color: var(--sage);
    line-height: 1;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 0.1rem;
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    display: none;
    padding: 0 0 1.4rem 0;
}

.accordion-body p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.accordion-item.open .accordion-body {
    display: block;
}


/* ─── COMPARISON TABLE ─── */

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    background: var(--primary-dark);
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.compare-table td {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.compare-table tr:hover td {
    background: rgba(163,177,138,0.05);
}

.compare-table .method-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--sage);
}


/* ─── SUSTAINABILITY CHECKLIST ─── */

.checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.checklist li::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--moss);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    background: rgba(88,129,87,0.15);
}

.checklist li.checked::before {
    background: var(--moss);
}


/* ─── BLOCKQUOTE / PULL QUOTE ─── */

.pull-quote {
    border-left: 4px solid var(--moss);
    padding: 1rem 1.75rem;
    margin: 2rem 0;
    background: rgba(163,177,138,0.06);
    border-radius: 0 6px 6px 0;
}

.pull-quote p {
    font-family: 'Source Serif 4', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--stone);
    line-height: 1.7;
    margin: 0;
}


/* ─── IMAGE BLOCKS ─── */

.img-cinematic {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.img-square {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.img-wide {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.img-overlay-block {
    position: relative;
    overflow: hidden;
}

.img-overlay-block img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-overlay-block:hover img {
    transform: scale(1.03);
}


/* ─── INTERRELATION DIAGRAM ─── */

.diagram-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.diagram-node {
    background: rgba(163,177,138,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem;
    transition: var(--transition);
}

.diagram-node:hover {
    background: rgba(163,177,138,0.18);
    border-color: var(--sage);
}

.diagram-node-icon {
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
}

.diagram-node p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
    margin: 0;
}

.diagram-connector {
    width: 40px;
    height: 1px;
    background: var(--sage);
    opacity: 0.4;
}


/* ─── TIMELINE ─── */

.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.2rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--moss);
    border: 2px solid var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(88,129,87,0.3);
}

.timeline-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.35rem;
}

.timeline-item h3 {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.timeline-item p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
}


/* ─── WARNING BANNER ─── */

.warning-banner {
    background: rgba(218,215,205,0.1);
    border: 1px solid rgba(218,215,205,0.3);
    border-left: 5px solid var(--stone);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 6px 6px 0;
}

.warning-banner h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--stone);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.warning-banner p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}


/* ─── POLICY PAGE LAYOUT ─── */

.policy-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    margin-bottom: 0.5rem;
}

.policy-term {
    margin-bottom: 1.25rem;
}

.policy-term dt {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.25rem;
}

.policy-term dd {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-left: 0;
}

.policy-notice {
    background: rgba(163,177,138,0.07);
    border: 1px solid var(--border);
    border-left: 4px solid var(--stone);
    padding: 1.25rem 1.5rem;
    border-radius: 0 6px 6px 0;
    margin: 1.5rem 0;
}

.policy-notice p {
    font-size: 0.93rem;
    color: var(--stone);
    margin: 0;
    line-height: 1.65;
}


/* ─── TERMS NAVIGATOR RAIL ─── */

.terms-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
}

.terms-nav-rail {
    position: sticky;
    top: 88px;
    background: rgba(163,177,138,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.terms-nav-rail h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.terms-nav-rail ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.terms-nav-rail a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.35rem 0.5rem;
    display: block;
    border-radius: 4px;
    transition: var(--transition);
    line-height: 1.45;
}

.terms-nav-rail a:hover {
    color: var(--sage);
    background: rgba(163,177,138,0.08);
}


/* ─── COOKIE TABLE ─── */

.cookie-two-col {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.cookie-type-label {
    background: var(--primary-dark);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-right: 1px solid var(--border);
}

.cookie-type-icon {
    font-size: 1.5rem;
}

.cookie-type-label span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    text-align: center;
}

.cookie-desc {
    padding: 1.25rem 1.5rem;
}

.cookie-desc h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.cookie-desc p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.cookie-compare-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

.cookie-compare-table th {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--primary-dark);
    color: var(--sage);
    padding: 0.9rem 1.25rem;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.cookie-compare-table td {
    font-size: 0.93rem;
    color: var(--text-muted);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

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

.cookie-compare-table tr:hover td {
    background: rgba(163,177,138,0.04);
}


/* ─── FURTHER READING CARDS ─── */

.reading-card {
    background: rgba(163,177,138,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition);
    text-decoration: none;
}

.reading-card:hover {
    border-color: rgba(163,177,138,0.4);
    background: rgba(163,177,138,0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.reading-card-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--moss);
}

.reading-card h3 {
    font-size: 1.1rem;
    color: var(--text-light);
}

.reading-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.reading-card-arrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
    transition: var(--transition);
}

.reading-card:hover .reading-card-arrow {
    gap: 0.65rem;
    color: var(--text-light);
}


/* ─── EDITORIAL LAYOUT (explorations) ─── */

.editorial-block {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border);
}

.editorial-block.reverse {
    grid-template-columns: 480px 1fr;
}

.editorial-block.reverse .editorial-text {
    order: 2;
}

.editorial-block.reverse .editorial-media {
    order: 1;
}

.editorial-text h2 {
    margin-bottom: 1rem;
}

.editorial-text p {
    margin-bottom: 1rem;
}

.thematic-glossary {
    position: sticky;
    top: 88px;
    background: rgba(163,177,138,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
}

.thematic-glossary h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.thematic-glossary dl {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thematic-glossary dt {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.thematic-glossary dd {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}


/* ─── FOOTER ─── */

.gtrigon-footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.footer-brand h4 span {
    color: var(--sage);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--sage);
}

.footer-hours {
    background: rgba(163,177,138,0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    margin-top: 0.75rem;
}

.footer-hours p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.footer-hours strong {
    color: var(--sage);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-policy-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-policy-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-policy-links a:hover {
    color: var(--sage);
}


/* ─── COOKIE BANNER ─── */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--primary-dark);
    border-top: 1px solid var(--border);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner p a {
    color: var(--sage);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.55rem 1.2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--moss);
    color: var(--text-light);
}

.cookie-btn-accept:hover {
    background: var(--sage);
    color: var(--primary-dark);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
    color: var(--text-light);
    border-color: var(--text-muted);
}

.cookie-btn-more {
    background: transparent;
    color: var(--sage);
    border: 1px solid var(--sage);
}

.cookie-btn-more:hover {
    background: rgba(163,177,138,0.1);
}


/* ─── PAGE HEADER BAND ─── */

.page-header-band {
    background: var(--primary-dark);
    padding: 120px 0 56px;
    border-bottom: 1px solid var(--border);
}

.page-header-band .section-eyebrow {
    margin-bottom: 0.75rem;
}

.page-header-band h1 {
    margin-bottom: 0.75rem;
}

.page-header-band p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.75;
}


/* ─── ABOUT PAGE NARRATIVE ─── */

.narrative-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: start;
}

.narrative-text h2 {
    margin-bottom: 1rem;
}

.narrative-text p {
    margin-bottom: 1.25rem;
}


/* ─── FAQ SEARCH ─── */

.faq-search-wrap {
    margin-bottom: 3rem;
}

.faq-search {
    width: 100%;
    max-width: 560px;
    background: rgba(163,177,138,0.08);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.85rem 1.25rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    outline: none;
    transition: var(--transition);
}

.faq-search::placeholder {
    color: var(--text-muted);
}

.faq-search:focus {
    border-color: var(--sage);
    background: rgba(163,177,138,0.12);
}

.faq-related {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.faq-related h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.6rem;
}

.faq-related ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.faq-related a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    display: block;
    transition: var(--transition);
}

.faq-related a:hover {
    color: var(--sage);
}

.faq-related a::before {
    content: '→ ';
    color: var(--sage);
}


/* ─── UTILITIES ─── */

.text-sage { color: var(--sage); }
.text-stone { color: var(--stone); }
.text-moss { color: var(--moss); }
.text-light { color: var(--text-light); }
.text-muted-c { color: var(--text-muted); }

.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }

.fw-600 { font-weight: 600; }

.border-top-sage {
    border-top: 2px solid var(--sage);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}


/* ─── RESPONSIVE ─── */

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .terms-layout {
        grid-template-columns: 200px 1fr;
        gap: 2.5rem;
    }

    .editorial-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .editorial-block.reverse {
        grid-template-columns: 1fr;
    }

    .editorial-block.reverse .editorial-text {
        order: 1;
    }

    .editorial-block.reverse .editorial-media {
        order: 2;
    }
}

@media (max-width: 992px) {
    .gtrigon-nav .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .narrative-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .terms-layout {
        grid-template-columns: 1fr;
    }

    .terms-nav-rail {
        position: static;
        margin-bottom: 2rem;
    }

    .cookie-two-col {
        grid-template-columns: 1fr;
    }

    .cookie-type-label {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.85rem 1.25rem;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .hero-content {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 64px 0;
    }

    .section-pad-sm {
        padding: 48px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-policy-links {
        gap: 1rem;
    }

    .diagram-connector {
        display: none;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .img-cinematic {
        height: 280px;
    }

    .img-square {
        height: 260px;
    }

    .food-panel-grid {
        grid-template-columns: 1fr;
    }

    .matrix-table {
        font-size: 0.85rem;
    }

    .matrix-table th,
    .matrix-table td {
        padding: 0.65rem 0.75rem;
    }

    .page-header-band {
        padding: 100px 0 48px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }

    .gtrigon-nav {
        padding: 0 1.25rem;
    }

    .cookie-banner {
        padding: 1rem 1.25rem;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ========================================
   POLICY PAGES
   ======================================== */

.policy-doc {
    padding: 0;
}

.policy-section {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.policy-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 1rem;
    margin-top: 0;
    letter-spacing: -0.01em;
}

.policy-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
}

.policy-section p {
    color: var(--color-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: var(--color-body);
    line-height: 1.75;
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    margin-bottom: 0.4rem;
}

.policy-section a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-section a:hover {
    color: var(--color-heading);
}

.policy-contact-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    margin: 1rem 0 1.25rem;
}

.policy-contact-block p {
    margin: 0;
    line-height: 1.75;
}

/* Policy sidebar */
.policy-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.policy-sidebar-links li {
    border-bottom: 1px solid var(--color-border);
}

.policy-sidebar-links li:last-child {
    border-bottom: none;
}

.policy-sidebar-links a {
    display: block;
    padding: 0.7rem 0;
    color: var(--color-body);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.policy-sidebar-links a:hover,
.policy-sidebar-links a.active {
    color: var(--color-accent);
    font-weight: 600;
}

.policy-sidebar-note {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 1rem 1.1rem;
    font-size: 0.83rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.policy-sidebar-note p {
    margin: 0;
}

.policy-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-summary-list li {
    font-size: 0.83rem;
    color: var(--color-body);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--color-border);
    padding-left: 1rem;
    position: relative;
}

.policy-summary-list li:last-child {
    border-bottom: none;
}

.policy-summary-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* Cookie table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 1.25rem 0;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
    color: var(--color-body);
}

.cookie-table thead {
    background: var(--color-surface);
}

.cookie-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-heading);
    border-bottom: 1px solid var(--color-border);
}

.cookie-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
    line-height: 1.5;
}

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

.cookie-table code {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    background: var(--color-surface);
    padding: 0.1em 0.4em;
    border-radius: 3px;
    border: 1px solid var(--color-border);
    color: var(--color-accent);
}

/* Browser links */
.browser-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.browser-link-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.85rem;
}

.browser-link-item:last-child {
    border-bottom: none;
}

.browser-link-item strong {
    color: var(--color-heading);
    min-width: 130px;
    font-size: 0.83rem;
}

.browser-link-item span {
    color: var(--color-muted);
    font-size: 0.8rem;
}

/* Health disclaimer notice block */
.disclaimer-notice {
    display: flex;
    gap: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    align-items: flex-start;
}

.disclaimer-notice-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.disclaimer-notice-text strong {
    display: block;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}

.disclaimer-notice-text p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--color-body);
}

.disclaimer-alert {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}
