/* 
   Palette: Earthy Brown & Warm Gold (Version 3)
   Primary: #4A3728 (Deep Brown)
   Secondary: #A0522D (Sienna/Terracotta)
   Accent: #DAA520 (Goldenrod)
   Background: #FDFBF7 (Warm Off-White)
   Text: #2B2B2B (Charcoal)
*/

:root {
    --primary-color: #4A3728;
    --secondary-color: #A0522D;
    --accent-color: #DAA520;
    --bg-color: #FDFBF7;
    --bg-light: #F5EFE6;
    --text-color: #2B2B2B;
    --text-light: #5A5A5A;
    --white: #FFFFFF;
    --border-color: #E0D8C8;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.center-text {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header Layout (STRICTLY AS REQUESTED) */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--primary-color);
    color: var(--white);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--accent-color);
}

.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;
    background-color: var(--white);
    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(--white);
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--accent-color);
}

.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(--primary-color);
}

.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(--white);
}

@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);
    }
}

/* V3 Unique Hero: Floating Card */
.hero-floating-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 55, 40, 0.4); /* Primary color overlay */
}

.hero-card-container {
    position: relative;
    z-index: 2;
}

.floating-hero-card {
    background-color: var(--white);
    padding: 50px 40px;
    max-width: 550px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-top: 5px solid var(--accent-color);
}

.hero-subtitle {
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 20px;
}

.hero-text {
    color: var(--text-light);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .floating-hero-card {
        padding: 30px 20px;
        margin: 40px 0;
    }
}

/* V3 Unique Layout: Asymmetrical Grid */
.asym-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.asym-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.asym-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 55, 40, 0.05);
}

.asym-card h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .asym-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-large {
        grid-column: span 2;
    }
}

@media (min-width: 992px) {
    .asym-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
    }
    .card-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    .card-medium {
        grid-column: span 2;
    }
    .card-small {
        grid-column: span 1;
    }
}

/* V3 Unique Layout: Overlap Content */
.overlap-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.overlap-image-box {
    width: 100%;
}

.overlap-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.overlap-text-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-left: 4px solid var(--secondary-color);
}

@media (min-width: 992px) {
    .overlap-wrapper {
        flex-direction: row;
        align-items: center;
    }
    .overlap-image-box {
        width: 60%;
    }
    .overlap-img {
        height: 500px;
    }
    .overlap-text-box {
        width: 50%;
        margin-top: 0;
        margin-left: -10%;
        padding: 50px;
    }
}

/* V3 Unique Layout: Accordion FAQ */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.accordion-toggle {
    display: none;
}

.accordion-header {
    display: block;
    padding: 20px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--secondary-color);
}

.accordion-toggle:checked + .accordion-header {
    background-color: var(--bg-light);
}

.accordion-toggle:checked + .accordion-header::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 500px;
    padding: 20px;
}

/* Page Headers */
.page-header-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 60px;
}

.page-title {
    color: var(--accent-color);
    font-size: clamp(32px, 5vw, 48px);
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* V3 Unique Layout: 2x3 Module Grid */
.grid-2x3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.module-box {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.module-box:hover {
    border-bottom-color: var(--secondary-color);
    transform: translateY(-5px);
}

.module-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

@media (min-width: 768px) {
    .grid-2x3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-2x3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* V3 Unique Layout: Numbered Steps */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-image-col {
    width: 100%;
}

.step-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.step-content-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.numbered-step {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.5;
}

.step-text h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .steps-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
    .step-image-col {
        width: 45%;
    }
    .step-content-col {
        width: 55%;
    }
}

/* V3 Unique Layout: Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.value-icon-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Image Break Section */
.image-break-section {
    position: relative;
    height: 400px;
}

.full-width-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-break-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 55, 40, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.overlay-title {
    color: var(--white);
    font-size: clamp(24px, 4vw, 36px);
    max-width: 800px;
}

/* Manifesto */
.manifesto-box {
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    border-top: 5px solid var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.manifesto-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* V3 Unique Layout: Contact Grid */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info-col {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.contact-heading {
    color: var(--accent-color);
}

.contact-intro {
    margin-bottom: 30px;
    opacity: 0.9;
}

.info-block {
    margin-bottom: 25px;
}

.info-title {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-link {
    color: var(--white);
    text-decoration: underline;
}

.form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.custom-form {
    max-width: 800px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background-color: var(--bg-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-full {
    width: 100%;
}

@media (min-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: 40% 60%;
    }
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.legal-title {
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.legal-content h3 {
    margin-top: 30px;
    color: var(--secondary-color);
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Thank You Page */
.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.thank-title {
    color: var(--secondary-color);
    font-size: 36px;
}

.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.thank-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Footer (STRICTLY HARDCODED COLORS) */
.site-footer {
    background-color: #2b2b2b !important;
    color: #ffffff !important;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #DAA520 !important;
    display: block;
    margin-bottom: 15px;
}

.footer-desc {
    color: #cccccc !important;
}

.footer-heading {
    color: #ffffff !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc !important;
}

.footer-links a:hover {
    color: #DAA520 !important;
}

.footer-contact-text {
    color: #cccccc !important;
    margin-bottom: 10px;
}

.footer-contact-text a {
    color: #DAA520 !important;
}

.footer-bottom {
    background-color: #1a1a1a !important;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #999999 !important;
    margin: 0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        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;
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(0); 
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

#cookie-banner.hidden { 
    transform: translateY(110%); 
}

#cookie-banner p { 
    margin: 0; 
    flex: 1; 
    min-width: 200px; 
    font-size: 14px;
}

#cookie-banner a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-btns { 
    display: flex; 
    gap: 10px; 
    flex-shrink: 0; 
    flex-wrap: wrap; 
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    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; 
    }
}