/* Palette Name: walnut-teal */
/* Primary: #3E2010 (Walnut Brown) */
/* Secondary: #5C3018 (Warm Chocolate) */
/* Accent: #00695C (Deep Teal) */
/* Tint: #FAF3EC (Warm Cream) */

:root {
    --color-primary: #3E2010;
    --color-secondary: #5C3018;
    --color-accent: #00695C;
    --bg-tint: #FAF3EC;
    --color-bg-dark: #1E1008;
    --color-text-light: #F5EBE1;
    --color-text-dark: #2E1A10;
    --font-heading: 'Georgia', serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: clamp(16px, 1vw + 14px, 20px);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--bg-tint);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vintage Badge Style */
.vintage-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--bg-tint);
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(250, 243, 236, 0.3);
}

/* Buttons (Rounded & Dramatic Shadow) */
.btn-primary, .btn-secondary, .btn-accent {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--bg-tint);
    border: none;
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    color: var(--bg-tint);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-tint);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: rgba(0, 105, 92, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.btn-accent {
    background-color: var(--color-primary);
    color: var(--bg-tint);
    border: 1px solid var(--color-secondary);
}

.btn-accent:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    border-bottom: 3px solid var(--color-secondary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - always on the left */
.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
    color: var(--bg-tint);
    letter-spacing: 1px;
}

/* Hamburger - ALWAYS ON THE RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none; /* Desktop hidden */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--bg-tint);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-primary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav li a {
    font-family: var(--font-heading);
    font-size: 20px;
    display: block;
}

/* Mobile responsive hamburger logic */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* HERO: gradient-center (Index Page) */
.hero-gradient-center {
    padding: 80px 20px;
    background: radial-gradient(circle, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-bg-dark) 100%);
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-gradient-center::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(250, 243, 236, 0.1);
    border-radius: 50%;
}

.hero-gradient-center::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 105, 92, 0.1);
    border-radius: 12px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 60px);
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--bg-tint);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* HERO COMPACT (Internal Pages) */
.hero-compact {
    padding: 60px 20px;
    background-color: var(--color-secondary);
    text-align: center;
    border-bottom: 3px solid var(--color-accent);
}

.hero-compact h1 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 16px;
}

.hero-compact p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--bg-tint);
    opacity: 0.9;
}

/* Section Common Headers */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 12px auto 0 auto;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
}

/* BENEFITS TIMELINE (Strict order) */
.section-timeline {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--bg-tint);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.timeline-content {
    background-color: var(--color-secondary);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--bg-tint);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding-left: 0;
        margin-bottom: 60px;
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 40px;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 40px;
        text-align: right;
    }

    .timeline-icon {
        left: auto;
        right: -20px;
        top: 20px;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        left: -20px;
        right: auto;
    }
}

/* QUOTE HIGHLIGHT */
.section-quote {
    padding: 80px 0;
    background-color: var(--color-primary);
    border-top: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}

.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 20px;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1;
    color: var(--color-accent);
    display: block;
    margin-bottom: -20px;
    opacity: 0.5;
}

.quote-block blockquote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    margin-bottom: 24px;
    color: var(--bg-tint);
}

.quote-author {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg-tint);
    opacity: 0.8;
}

/* CTA BANNER */
.cta-banner {
    padding: 60px 0;
    background-color: var(--color-accent);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

.cta-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.cta-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
}

@media (min-width: 768px) {
    .cta-grid {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    .cta-text {
        flex: 1;
    }
}

/* STATS BAR */
.stats-bar {
    padding: 50px 0;
    background-color: var(--color-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 64px);
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ACCORDION FAQ */
.section-faq {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-secondary);
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-question {
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    user-select: none;
    background-color: var(--color-primary);
    color: var(--bg-tint);
}

.faq-answer {
    padding: 20px;
    background-color: var(--color-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* PROGRAM PAGE: TABS */
.section-tabs {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.tabs {
    display: flex;
    flex-direction: column;
}

.tabs-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.tabs-nav label {
    background-color: var(--color-secondary);
    color: var(--bg-tint);
    padding: 16px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

input[name="tabs"] {
    display: none;
}

.tab-panel {
    display: none;
    background-color: var(--color-secondary);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-accent);
    color: var(--bg-tint);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 105, 92, 0.4);
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.tab-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--bg-tint);
}

.tab-text p {
    margin-bottom: 16px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .tabs-nav {
        grid-template-columns: repeat(4, 1fr);
    }
    .tab-content-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* METHODOLOGY SECTION */
.section-methodology {
    padding: 80px 0;
    background-color: var(--color-primary);
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.methodology-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.methodology-info p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.methodology-card {
    background-color: var(--color-secondary);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.methodology-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--bg-tint);
}

.custom-list {
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

@media (min-width: 992px) {
    .methodology-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* MISSION PAGE: VERTICAL STORYTELLING */
.section-storytelling {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-image img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.story-text {
    position: relative;
}

.story-number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: bold;
    color: var(--color-accent);
    opacity: 0.3;
    display: block;
    line-height: 1;
    margin-bottom: -10px;
}

.story-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.story-text p {
    margin-bottom: 16px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .story-block {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-block.reverse .story-image {
        order: 2;
    }
    .story-block.reverse .story-text {
        order: 1;
    }
}

/* VALUES SECTION */
.section-values {
    padding: 80px 0;
    background-color: var(--color-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-card {
    background-color: var(--color-primary);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CONTACT PAGE */
.section-contact {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-form-container p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 16px;
}

.form-group input, .form-group textarea {
    background-color: var(--color-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(0, 105, 92, 0.3);
}

.contact-info-container .contact-card {
    background-color: var(--color-secondary);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-intro {
    margin-bottom: 30px;
    opacity: 0.9;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 24px;
    color: var(--color-accent);
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

@media (min-width: 992px) {
    .contact-split {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* THANK PAGE */
.thank-page {
    padding: 100px 0;
    text-align: center;
}

.thank-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-secondary);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.thank-badge {
    display: inline-block;
    background-color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.thank-card h1 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
}

.thank-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.next-steps {
    text-align: left;
    background-color: var(--color-primary);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.next-steps a {
    text-decoration: underline;
    color: var(--color-accent);
}

/* LEGAL PAGES */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 8px;
}

.effective-date {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--bg-tint);
}

.legal-section p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
    opacity: 0.9;
}

/* FOOTER (Anti-translator hardcoded colors) */
.site-footer {
    background-color: #3E2010 !important;
    color: #FAF3EC !important;
    padding: 60px 0 30px 0 !important;
    border-top: 3px solid #00695C !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
    color: #FAF3EC !important;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    color: #FAF3EC !important;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: #FAF3EC !important;
    opacity: 0.8;
}

.footer-links a:hover, .footer-legal a:hover {
    color: #00695C !important;
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-contact a {
    color: #FAF3EC !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(250, 243, 236, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

@media (min-width: 576px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background-color: var(--color-primary);
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--bg-tint);
}

#cookie-banner a {
    text-decoration: underline;
    color: var(--color-accent);
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    border: none;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--bg-tint);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid var(--bg-tint);
    color: var(--bg-tint);
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}