/* Palette Name: charcoal-coral */
/* Primary Dark: #1D2A3C, Secondary accent: #FF6F61, Peach: #F2D4C9, Light Tint: #F8F8F8 */

:root {
    --color-primary: #1D2A3C;
    --color-secondary: #FF6F61;
    --color-accent: #F2D4C9;
    --bg-tint: #F8F8F8;
    
    /* Dark Mode Theme Bases */
    --bg-main: #121824;
    --bg-card: #1D2A3C;
    --text-light: #F8F8F8;
    --text-muted: #B3C0D1;
    
    /* Design Style: soft-organic */
    /* Border Style: pill */
    /* Shadow Style: subtle */
    --border-radius-pill: 50px;
    --border-radius-card: 32px;
    --border-radius-badge: 999px;
    --box-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    border-bottom: 1px solid rgba(242, 212, 201, 0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - always left */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-secondary) !important;
    z-index: 100;
}

/* Hamburger - always right */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.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 {
    color: var(--text-light);
    font-weight: 500;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-secondary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    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 a {
    color: var(--text-light);
    font-size: 18px;
    display: block;
}

/* Responsive Header */
@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);
    }
}

/* Buttons (pill style) */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--text-light) !important;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary) !important;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent) !important;
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}

/* Section Common Styles */
section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* HERO SECTION: gradient-center */
.hero-gradient-center {
    position: relative;
    padding: 100px 20px;
    background: radial-gradient(circle at center, var(--color-primary) 0%, var(--bg-main) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-badge {
    background-color: rgba(255, 111, 97, 0.15);
    color: var(--color-secondary);
    padding: 8px 20px;
    border-radius: var(--border-radius-badge);
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 25px;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Decorative CSS Shapes for soft-organic */
.decorator-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
}

.shape-1 {
    background-color: var(--color-secondary);
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
}

.shape-2 {
    background-color: var(--color-accent);
    width: 400px;
    height: 400px;
    bottom: -10%;
    right: -5%;
}

/* BENEFITS SECTION: benefits-5asymm */
.asymm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .asymm-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .card-large {
        grid-column: span 3;
    }
    
    .card-small {
        grid-column: span 2;
    }
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-card);
    border: 1px solid rgba(242, 212, 201, 0.05);
    box-shadow: var(--box-shadow-subtle);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* EXPERT BLOCK */
.expert-section {
    background-color: var(--color-primary);
    border-radius: var(--border-radius-card);
    margin: 40px 20px;
}

.expert-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .expert-wrapper {
        flex-direction: row;
    }
}

.expert-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: var(--color-secondary);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
}

.expert-quote-content {
    flex-grow: 1;
}

.expert-quote {
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
}

.expert-author {
    display: block;
    font-weight: bold;
    color: var(--color-secondary);
    font-size: 18px;
}

.expert-title {
    font-size: 14px;
    color: var(--text-muted);
}

/* COMPARISON TABLE */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-subtle);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid rgba(242, 212, 201, 0.05);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--color-accent);
    font-weight: 600;
}

.risk-cell {
    color: #FFB3B3;
    opacity: 0.9;
}

.healthy-cell {
    color: #B3FFD6;
    font-weight: 500;
}

/* FEATURES GRID: icon-features */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-subtle);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: scale(1.03);
}

.feature-emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* TWO COLUMN SECTION */
.split-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-container {
        flex-direction: row;
    }
    
    .image-column, .text-column {
        width: 50%;
    }
}

.reverse-split {
    flex-direction: column-reverse;
}

@media (min-width: 1024px) {
    .reverse-split {
        flex-direction: row-reverse;
    }
}

.organic-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-subtle);
}

.styled-list {
    list-style: none;
    margin: 25px 0;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.styled-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 18px;
}

/* INTERNAL HERO */
.internal-hero {
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.internal-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--text-light);
    margin-bottom: 20px;
}

.internal-hero p {
    font-size: 18px;
    color: var(--color-accent);
    max-width: 600px;
    margin: 0 auto;
}

/* METHODOLOGY INTRO */
.methodology-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .methodology-grid {
        flex-direction: row;
        align-items: center;
    }
    .methodology-text { width: 60%; }
    .methodology-stats { width: 40%; }
}

.methodology-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-box {
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: var(--border-radius-card);
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--color-secondary);
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
}

/* TIMELINE: timeline-4modules */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-accent);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}

.timeline-content {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-subtle);
}

.timeline-content h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
}

/* ACCORDION FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    margin-bottom: 16px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
}

.faq-item summary {
    padding: 24px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    outline: none;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
}

/* CTA BANNER */
.cta-banner-section {
    background-color: var(--color-primary);
    border-radius: var(--border-radius-card);
    margin: 40px 20px;
    padding: 80px 20px;
}

.cta-banner-section h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
}

.cta-banner-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* MISSION MANIFESTO */
.manifesto-wrapper {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: var(--border-radius-card);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-wrapper h2 {
    color: var(--color-secondary);
    margin-bottom: 25px;
}

.manifesto-wrapper p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-muted);
}

/* VALUES SECTION: grid-values */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-subtle);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
}

/* CONTACT PAGE LAYOUT */
.contact-hero-section {
    padding: 80px 20px;
    background-color: var(--color-primary);
}

.contact-split-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 1024px) {
    .contact-split-container {
        flex-direction: row;
    }
    .contact-form-column { width: 60%; }
    .contact-info-column { width: 40%; }
}

/* ORGANIC FORM (4 fields) */
.organic-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-subtle);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-accent);
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--border-radius-pill);
    background-color: var(--bg-main);
    border: 1px solid rgba(242, 212, 201, 0.1);
    color: var(--text-light);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group textarea {
    border-radius: 20px;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-secondary);
}

.btn-submit {
    width: 100%;
}

/* CONTACT INFO CARDS */
.info-block-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-subtle);
    margin-bottom: 24px;
}

.info-block-card h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.contact-detail-item {
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* LEGAL PAGES */
.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-section {
    padding: 0;
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--color-accent);
    margin-bottom: 20px;
}

.warning-box {
    background-color: rgba(255, 111, 97, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 24px;
    border-radius: var(--border-radius-card);
}

/* THANK YOU PAGE */
.thank-you-page {
    padding: 100px 20px;
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 30px;
}

.thank-you-page h1 {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.next-steps-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-card);
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.thank-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* FOOTER */
.site-footer {
    background-color: var(--color-primary) !important;
    color: var(--text-light) !important;
    padding: 80px 20px 40px 20px;
    border-top: 1px solid rgba(242, 212, 201, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand p {
    color: var(--text-muted) !important;
    font-size: 14px;
    margin-top: 15px;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    color: var(--color-secondary) !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 12px;
}

.footer-links a, .footer-legal a {
    color: var(--text-muted) !important;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-accent) !important;
}

.footer-contact p {
    color: var(--text-muted) !important;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--color-accent) !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted) !important;
    font-size: 12px;
}

/* 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;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: var(--color-primary);
    border-top: 2px solid var(--color-secondary);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-light);
}

#cookie-banner a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-secondary);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    font-weight: bold;
    cursor: pointer;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
}

@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;
    }
}