/* 
Palette: copper-midnight
--color-primary: #935116; (buttons, accents, titles)
--color-secondary: #0C0F24; (hero overlay/bg, footer, dark sections)
--color-accent: #F0A55A; (icons, hover, decor)
--bg-tint: #FEF8EE; (light text/badges/contrasts, vintage base)
Style: warm-vintage (serif headings, textured linear gradients, pill-borders, flat shadows)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,800;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #935116;
    --color-secondary: #0C0F24;
    --color-accent: #F0A55A;
    --bg-tint: #FEF8EE;
    --bg-dark: #070917;
    --text-light: #FEF8EE;
    --text-muted: #B3AFAC;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 800;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTAINERS */
.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;
}

/* BUTTONS (Pill Style) */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 15px;
    text-align: center;
    border-radius: 50px; /* Pill border */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-secondary);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-secondary-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.btn-block {
    display: block;
    width: 100%;
}

/* BADGES */
.vintage-badge, .section-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 999px; /* Pill */
    background-color: var(--color-primary);
    color: var(--text-light);
    border: 1px solid var(--color-accent);
    margin-bottom: 16px;
}

/* HEADER STYLE */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    border-bottom: 1px solid rgba(240, 165, 90, 0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-accent) !important;
    z-index: 100;
    font-style: italic;
}

.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;
    margin: 5px 0;
    transition: 0.3s;
    background-color: var(--color-accent);
}

.menu-checkbox {
    display: none;
}

/* Desktop Nav */
.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-weight: 500;
    font-size: 15px;
    color: var(--text-light);
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Nav */
.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-secondary);
}

.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.05);
}

.mobile-nav a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    display: block;
}

/* HERO STACK (vertical-stack layout) */
.hero-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-secondary);
}

.hero-image-wrapper {
    width: 100%;
    height: 55vh;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-content-wrapper {
    padding: 48px 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(28px, 6vw, 52px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.text-center {
    text-align: center;
}

/* INNER PAGES HERO */
.inner-hero {
    padding: 60px 20px;
    background-color: var(--color-secondary);
    border-bottom: 1px solid rgba(240, 165, 90, 0.1);
}

.inner-hero h1 {
    font-size: clamp(32px, 5vw, 46px);
    margin-bottom: 16px;
}

.inner-hero-desc {
    color: var(--text-muted);
}

/* BENEFITS SECTION (benefits-3col) */
.benefits-section {
    padding: 60px 16px;
    background-color: var(--bg-dark);
}

.section-header {
    margin-bottom: 48px;
}

.section-header.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 16px;
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--color-secondary);
    border: 1px solid rgba(240, 165, 90, 0.1);
    border-radius: 28px; /* Pill style */
    padding: 32px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-card-text {
    color: var(--text-muted);
}

/* CHECKLIST BLOCK */
.checklist-section {
    padding: 60px 16px;
    background-color: var(--color-secondary);
    background-image: repeating-linear-gradient(45deg, rgba(240, 165, 90, 0.02) 0px, rgba(240, 165, 90, 0.02) 2px, transparent 2px, transparent 10px);
}

.checklist-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.checklist-info {
    max-width: 500px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    background-color: var(--color-primary);
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    border: 1px solid var(--color-accent);
}

.checklist-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.checklist-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* SPLIT PROMO SECTION */
.split-promo-section {
    padding: 60px 16px;
    background-color: var(--bg-dark);
}

.split-promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.promo-text-side p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.promo-img-side {
    position: relative;
}

.promo-image {
    width: 100%;
    border-radius: 36px; /* Pill style */
    border: 2px solid var(--color-primary);
}

/* COMPARISON TABLE */
.comparison-section {
    padding: 60px 16px;
    background-color: var(--color-secondary);
}

.table-responsive {
    overflow-x: auto;
    margin-top: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    text-align: left;
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 18px;
    border-bottom: 2px solid var(--color-accent);
}

.comparison-table th:first-child {
    border-top-left-radius: 20px;
}

.comparison-table th:last-child {
    border-top-right-radius: 20px;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(240, 165, 90, 0.15);
    color: var(--text-muted);
}

.comparison-table tr:hover td {
    background-color: rgba(147, 81, 22, 0.1);
    color: var(--text-light);
}

/* STATS BAR */
.stats-bar-section {
    padding: 48px 16px;
    background-color: var(--color-primary);
    border-top: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stats-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

/* ACCORDION FAQ */
.faq-section {
    padding: 60px 16px;
    background-color: var(--bg-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-secondary);
    border: 1px solid rgba(240, 165, 90, 0.15);
    border-radius: 28px; /* Pill */
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    user-select: none;
    color: var(--color-accent);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    border-top: 1px solid rgba(240, 165, 90, 0.05);
}

/* METHODOLOGY INTRO */
.methodology-intro-section {
    padding: 60px 16px;
    background-color: var(--bg-dark);
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.methodology-img {
    width: 100%;
    border-radius: 36px;
    border: 2px solid var(--color-primary);
}

.methodology-text-box h2 {
    margin-bottom: 16px;
}

.methodology-text-box p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* NUMBERED SECTIONS (Program Modules) */
.numbered-program-section {
    padding: 60px 16px;
    background-color: var(--color-secondary);
}

.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.numbered-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.num-badge {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    border-bottom: 2px solid var(--color-primary);
    width: fit-content;
    padding-bottom: 4px;
}

.num-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.num-content p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* CTA BANNER */
.cta-banner-section {
    padding: 80px 16px;
    background-color: var(--color-primary);
    background-image: repeating-linear-gradient(-45deg, rgba(240, 165, 90, 0.03) 0px, rgba(240, 165, 90, 0.03) 2px, transparent 2px, transparent 10px);
    text-align: center;
    border-top: 2px solid var(--color-accent);
}

.cta-banner-section h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 16px;
}

.cta-banner-section p {
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--text-light);
}

/* VERTICAL STORYTELLING (Mission) */
.storytelling-section {
    padding: 60px 16px;
    background-color: var(--bg-dark);
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-num {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.story-text h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    margin-bottom: 16px;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.story-img-wrapper {
    position: relative;
}

.story-img {
    width: 100%;
    border-radius: 36px;
    border: 2px solid var(--color-primary);
}

/* CONTACT LAYOUT */
.contact-layout-section {
    padding: 60px 16px;
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info-card {
    background-color: var(--color-secondary);
    border: 1px solid rgba(240, 165, 90, 0.15);
    border-radius: 36px;
    padding: 32px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-meta {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-meta-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.meta-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-meta-item strong {
    color: var(--color-accent);
    display: block;
    margin-bottom: 4px;
}

.contact-meta-item p, .contact-meta-item a {
    color: var(--text-muted);
    font-size: 14px;
}

/* FORM STYLING */
.form-wrapper {
    background-color: var(--color-secondary);
    border: 1px solid rgba(240, 165, 90, 0.15);
    border-radius: 36px;
    padding: 32px;
}

.form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.custom-form input, .custom-form textarea {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(240, 165, 90, 0.2);
    border-radius: 50px; /* Pill input */
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-form textarea {
    border-radius: 20px; /* Rounded instead of pill for textareas */
}

.custom-form input:focus, .custom-form textarea:focus {
    border-color: var(--color-accent);
}

/* LEGAL PAGES */
.legal-section {
    padding: 80px 16px;
    background-color: var(--bg-dark);
}

.legal-date {
    color: var(--color-accent);
    font-style: italic;
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-section {
    padding: 80px 16px;
    background-color: var(--bg-dark);
}

.thank-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thank-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.next-steps {
    max-width: 700px;
    margin: 0 auto 40px;
    background-color: var(--color-secondary);
    border-radius: 36px;
    padding: 32px;
    border: 1px solid rgba(240, 165, 90, 0.15);
}

.next-steps h3 {
    margin-bottom: 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.step-card {
    text-align: left;
}

.step-card h4 {
    color: var(--color-accent);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.thank-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* FOOTER */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--text-light) !important;
    border-top: 1px solid rgba(240, 165, 90, 0.15);
    padding: 60px 16px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-desc {
    color: var(--text-muted) !important;
    font-size: 14px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-accent) !important;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted) !important;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-accent) !important;
}

.footer-contact p {
    color: var(--text-muted) !important;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-phone, .footer-email {
    color: var(--color-accent) !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(240, 165, 90, 0.05);
    text-align: center;
    font-size: 12px;
    color: var(--text-muted) !important;
}

/* 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-secondary);
    border-top: 2px solid var(--color-accent);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-light);
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}

/* RESPONSIVE DESIGN (Mobile-First) */

@media (min-width: 600px) {
    .hero-actions {
        flex-direction: row;
    }
    
    .thank-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    /* Hamburger hidden */
    .hamburger {
        display: none;
    }

    /* Benefits 3 col */
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Checklist */
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats Bar */
    .stats-bar-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Methodology program */
    .methodology-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Numbered items horizontal flow */
    .numbered-item {
        flex-direction: row;
        gap: 32px;
    }

    /* Story blocks alternate */
    .story-block {
        flex-direction: row;
        align-items: center;
    }

    .story-block.reverse {
        flex-direction: row-reverse;
    }

    .story-text, .story-img-wrapper {
        flex: 1;
    }

    /* Contact page */
    .contact-grid {
        grid-template-columns: 4fr 6fr;
    }

    /* Next steps cards */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer columns */
    .footer-container {
        grid-template-columns: 5fr 3fr 4fr;
    }
}

@media (min-width: 1024px) {
    /* Split layout promo */
    .split-promo-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .checklist-layout {
        flex-direction: row;
    }
    
    .checklist-info {
        flex: 4;
    }
    
    .checklist-grid {
        flex: 6;
    }
}

/* Mobile-only menu overrides */
@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);
    }
    
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-btns {
        width: 100%;
    }
    
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}