/* 
   Palette: Contrast (Black-Gold)
   Colors: #1A1A1A (Black), #D4AF37 (Gold), #F9F6F0 (Cream), #333333 (Dark Grey)
*/

:root {
    --primary: #D4AF37;
    --primary-dark: #B8860B;
    --secondary: #1A1A1A;
    --bg-light: #F9F6F0;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --border-color: #E0D8C3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin-bottom: 15px; }

/* Buttons */
.btn-gold {
    display: inline-block;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--primary-dark);
}

.btn-dark {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-dark:hover {
    background-color: #000000;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--secondary);
    color: var(--primary);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.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(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.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(--secondary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav a {
    color: var(--primary);
    font-size: 18px;
}

@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); }
}

/* V4 UNIQUE HERO: Overlap Grid */
.hero-v4 {
    padding: 60px 20px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-v4-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-v4-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 10px solid var(--primary);
}

.hero-v4-content {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 40px;
    position: relative;
}

.hero-v4-content h1 {
    color: var(--primary);
}

.gold-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .hero-v4-container {
        grid-template-columns: 5fr 6fr;
    }
    .hero-v4-content {
        margin-left: -100px;
        z-index: 2;
        padding: 60px;
    }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.gold-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto;
}

.intro-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* V4 UNIQUE: Vertical Timeline */
.timeline-section {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--secondary);
    color: var(--text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3 {
    color: var(--primary);
}

.section-header-left {
    margin-bottom: 50px;
}

.timeline-v4 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-v4::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 32px;
    height: 32px;
    background-color: var(--secondary);
    border: 4px solid var(--primary);
    border-radius: 50%;
}

.timeline-content {
    background-color: rgba(255,255,255,0.05);
    padding: 25px;
    border-left: 4px solid var(--primary);
}

/* Split Section */
.split-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.gold-divider-left {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px 0;
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.custom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 50px 0 50px;
    box-shadow: 20px 20px 0 var(--primary);
}

@media (min-width: 768px) {
    .split-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Lifestyle Grid */
.lifestyle-grid-section {
    padding: 80px 0;
}

.grid-3-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-card-v4 {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-card-v4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .grid-3-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA Section */
.cta-section-v4 {
    padding: 80px 20px;
    background-color: var(--primary);
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--secondary);
}

.cta-box p {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Page Header */
.page-header {
    padding: 100px 0;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* V4 UNIQUE: Numbered Program Section */
.numbered-program-section {
    padding: 80px 0;
}

.program-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
}

.numbered-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.number-large {
    background-color: var(--secondary);
    color: var(--primary);
    font-size: 3rem;
    font-weight: bold;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.numbered-content {
    padding: 40px;
}

@media (min-width: 768px) {
    .numbered-card {
        flex-direction: row;
    }
    .number-large {
        width: 150px;
        font-size: 4rem;
    }
    .numbered-content {
        flex: 1;
    }
}

/* Image Integration */
.program-image-section {
    padding: 40px 0 80px;
}

.image-wrapper-gold {
    position: relative;
    border: 5px solid var(--primary);
}

.image-wrapper-gold img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(50%);
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--secondary));
    padding: 40px;
    color: var(--primary);
}

.image-overlay-text p {
    color: #fff;
    margin: 0;
}

/* FAQ Grid */
.bg-light {
    background-color: #fff;
}

.faq-grid-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.faq-item-v4 {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--primary);
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mission Split Story */
.story-split-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.framed-image {
    border: 15px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Values Grid */
.values-section {
    padding: 80px 0;
}

.values-grid-v4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-box {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-top: 4px solid var(--primary);
}

.value-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 15px;
}

@media (min-width: 600px) {
    .values-grid-v4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .values-grid-v4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Manifesto */
.manifesto-section {
    padding: 100px 0;
    background-color: var(--secondary);
    color: var(--text-light);
    text-align: center;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-content h2 {
    color: var(--primary);
}

.lead-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin: 40px 0;
}

.signature {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Form Centered */
.contact-form-section {
    padding: 80px 0;
}

.form-wrapper-centered {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.custom-form .form-group {
    margin-bottom: 25px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--secondary);
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: inherit;
    font-size: 1rem;
}

.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Contact Cards */
.contact-cards-section {
    padding: 60px 0 100px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
}

.legal-container {
    max-width: 800px;
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.legal-container h1 {
    margin-bottom: 10px;
}

.legal-container h2 {
    margin-top: 40px;
    font-size: 1.5rem;
}

.legal-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.text-center {
    text-align: center;
}

.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 40px;
    border: 2px solid var(--primary);
}

.check-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.next-steps {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

@media (min-width: 600px) {
    .action-links {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.site-footer {
    padding: 60px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 2fr 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;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: var(--secondary);
    color: var(--text-light);
    border-top: 2px solid var(--primary);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

#cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 10px 20px;
    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;
    }
}