/* #7B1034, #9B1B3E, #546E7A, #FEF6F8 */

:root {
    --color-primary: #7B1034;
    --color-secondary: #9B1B3E;
    --color-accent: #546E7A;
    --bg-tint: #FEF6F8;
    --text-dark: #2A1B20;
    --text-muted: #5A4A50;
    --white: #FFFFFF;
    --border-color: #E6D2D8;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-card: 16px;
    --radius-btn: 8px;
    
    --shadow-dramatic: 0 24px 64px rgba(123, 16, 52, 0.18);
    --shadow-hover: 0 32px 80px rgba(123, 16, 52, 0.26);
}

/* BASE RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-tint);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: clamp(15px, 2vw, 17px);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

.text-center {
    text-align: center;
}

/* BADGE VINTAGE */
.badge-vintage {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--color-primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-btn);
    margin-bottom: 16px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--white);
    box-shadow: var(--shadow-dramatic);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--white);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--white);
}

.btn-accent:hover {
    background-color: #3f545e;
    color: var(--white);
}

.btn-block {
    width: 100%;
}

/* HEADER LAYOUT */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.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: 26px;
    font-weight: 800;
    color: var(--color-primary);
    z-index: 100;
}

.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(--color-primary);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.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 {
    font-weight: 600;
    color: var(--text-dark);
}

.desktop-nav a:hover {
    color: var(--color-primary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

/* MOBILE ADAPTATION FOR 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);
    }
}

/* HERO ASYMMETRIC (INDEX) */
.hero-asymmetric {
    padding: 48px 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
    color: var(--color-primary);
}

.hero-text {
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-asymmetric {
        padding: 80px 0;
    }

    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 560px;
    }
}

/* BENEFITS SECTION (2X2) */
.benefits-section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
    color: var(--color-primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 17px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.benefit-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dramatic);
}

.card-icon {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* QUOTE HIGHLIGHT */
.quote-section {
    padding: 60px 0;
    background-color: var(--color-primary);
    color: var(--white);
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 20px;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 90px;
    line-height: 0.5;
    opacity: 0.3;
    margin-bottom: 10px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 30px);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
}

.quote-author {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* STATS BAR */
.stats-section {
    padding: 48px 0;
    background-color: var(--color-secondary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 14px;
    opacity: 0.85;
}

/* TWO COL SECTION */
.two-col-section {
    padding: 80px 0;
}

.two-col-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .two-col-container {
        grid-template-columns: 1fr 1fr;
    }
}

.content-img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    width: 100%;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* GALLERY GRID */
.gallery-section {
    padding: 60px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    background-color: var(--bg-tint);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-caption {
    padding: 16px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    color: var(--color-primary);
}

.gallery-placeholder {
    background-color: var(--color-accent);
    color: var(--white);
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-placeholder h3 {
    color: var(--white);
    margin-bottom: 8px;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background-color: var(--color-secondary);
    color: var(--white);
    text-align: center;
}

.cta-container h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px auto;
    opacity: 0.9;
}

/* PAGE HERO (INTERNAL PAGES) */
.page-hero {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    color: var(--color-primary);
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 18px;
}

/* NUMBERED PROGRAM SECTION */
.numbered-program-section {
    padding: 80px 0;
}

.numbered-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

.numbered-block:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .numbered-block {
        grid-template-columns: 100px 1fr;
        gap: 40px;
    }
}

.num-display {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.num-content h2 {
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.num-content p {
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* FEATURE IMAGE (PROGRAM) */
.program-feature-img {
    padding: 60px 0;
    background-color: var(--white);
}

.split-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .split-feature {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-img-styled {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

/* FAQ SECTION */
.faq-section {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

/* STORY & MISSION PAGE */
.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story-img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    width: 100%;
}

.values-section {
    padding: 60px 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    padding: 32px;
    background-color: var(--bg-tint);
    border-radius: var(--radius-card);
    border-top: 4px solid var(--color-primary);
}

.value-card h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.manifesto-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    color: var(--white);
}

.manifesto-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.manifesto-text {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* CONTACT PAGE */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.contact-form-wrapper h2 {
    margin-bottom: 24px;
    color: var(--color-primary);
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 15px;
    background-color: var(--bg-tint);
}

.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--white);
}

.info-card {
    background-color: var(--white);
    padding: 28px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    margin-top: 24px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    color: var(--color-primary);
    font-size: 15px;
    margin-bottom: 4px;
}

/* LEGAL PAGES & THANK YOU */
.legal-content-section {
    padding: 60px 0;
}

.legal-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    max-width: 900px;
}

.legal-box h2 {
    color: var(--color-primary);
    margin: 28px 0 12px 0;
    font-size: 22px;
}

.legal-box p, .legal-box ul {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.legal-box ul {
    padding-left: 20px;
}

.thank-main {
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.thank-card {
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    max-width: 650px;
    margin: 0 auto;
}

.thank-card h1 {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thank-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* SITE FOOTER - PROTECTED HEX COLORS */
.site-footer {
    background-color: #2b0812 !important;
    color: #ffffff !important;
    padding: 60px 0 20px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-desc {
    color: #d1c4c8 !important;
    font-size: 14px;
}

.footer-col h4 {
    color: #ffffff !important;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #d1c4c8 !important;
    font-size: 14px;
}

.footer-col a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.footer-col p {
    color: #d1c4c8 !important;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px 24px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #a8989d !important;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #2b0812;
    color: #ffffff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
    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: #e2d7da;
}

#cookie-banner a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    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;
    }
}