:root {
    --primary: #b38f24;
    --primary-hover: #91711a;
    --bg-light: #faf6f0;
    --bg-dark: #1e1b18;
    --bg-card: #ffffff;
    --text-dark: #2c2a29;
    --text-light: #faf6f0;
    --border: #e6dfd5;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* Skip Link Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--text-light);
    padding: 10px 20px;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header & Navigation */
.site-header {
    background-color: var(--bg-dark);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    width: 40px;
    height: 40px;
}

.logo-area span {
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 27, 24, 0.85), rgba(30, 27, 24, 0.85)), url('images/hero.jpg') no-repeat center center/cover;
    padding: 120px 5% 100px 5%;
    text-align: center;
    color: var(--text-light);
}

.hero h1 {
    color: var(--text-light);
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e6dfd5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* Stats Section */
.stats {
    background-color: var(--bg-card);
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Section Common Styles */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto 0 auto;
}

/* Custom SVG Background Grid Decoration */
.grid-decor {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1.7-3 3.5s1 3.5 3 3.5 3-1.7 3-3.5-1-3.5-3-3.5zm-48 0c-2 0-3 1.7-3 3.5s1 3.5 3 3.5 3-1.7 3-3.5-1-3.5-3-3.5zm24-24c-2 0-3 1.7-3 3.5s1 3.5 3 3.5 3-1.7 3-3.5-1-3.5-3-3.5zm0-18c-2 0-3 1.7-3 3.5s1 3.5 3 3.5 3-1.7 3-3.5-1-3.5-3-3.5zm0 36c-2 0-3 1.7-3 3.5s1 3.5 3 3.5 3-1.7 3-3.5-1-3.5-3-3.5zM6 6c-2 0-3 1.7-3 3.5S4 13 6 13s3-1.7 3-3.5S8 6 6 6zm48 0c-2 0-3 1.7-3 3.5S52 13 54 13s3-1.7 3-3.5S56 6 54 6zM30 30c0-1.7-1.3-3-3-3s-3 1.3-3 3 1.3 3 3 3 3-1.3 3-3z' fill='%23b38f24' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 4px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.step-num {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.step-card h3 {
    margin-bottom: 12px;
}

/* Trust Blocks */
.trust-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 5%;
    border-radius: 6px;
}

.trust-block h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.trust-block p {
    color: #ccc;
    font-size: 1.05rem;
}

/* Services section style */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    margin-bottom: 20px;
}

/* Asymmetric Feature Block */
.asym-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.asym-img img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.asym-text ul {
    list-style: none;
    margin-top: 25px;
}

.asym-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.asym-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-card);
    padding: 50px 35px;
    border-radius: 4px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(179, 143, 36, 0.1);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--text-light);
    padding: 4px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
}

.price {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-dark);
    margin: 25px 0;
}

.price span {
    font-size: 1rem;
    font-family: var(--font-sans);
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.form-section h2 {
    color: var(--text-light);
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.03);
    padding: 45px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #ccc;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255,255,255,0.08);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Accordion FAQ */
.accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    font-size: 1.4rem;
    transition: var(--transition);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 10px 22px 10px;
    color: #555;
    font-size: 1.05rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* Trust Layer & Footer */
.trust-layer {
    background-color: #f2ebe1;
    padding: 40px 5%;
    border-top: 1px solid var(--border);
    text-align: center;
}

.trust-layer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-layer-content h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.trust-layer-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 5% 30px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bbb;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-legal-string {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    line-height: 1.6;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 25px 5%;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    border-top: 3px solid var(--primary);
    display: none;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--primary);
    color: var(--text-light);
    border: 1px solid var(--primary);
}

.cookie-accept:hover {
    background-color: var(--primary-hover);
}

.cookie-decline {
    background-color: transparent;
    color: #bbb;
    border: 1px solid #444;
}

.cookie-decline:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--text-light);
}

/* Page Specific Legal Layout */
.legal-page {
    max-width: 900px;
    margin: 60px auto;
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid var(--border);
}

.legal-page h1 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 15px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px 0;
}

.legal-page p, .legal-page ul {
    margin-bottom: 20px;
    color: #444;
}

.legal-page ul {
    padding-left: 20px;
}

.legal-page li {
    margin-bottom: 8px;
}

/* Focus Visibility Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced Motion Mode */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .asym-feature {
        grid-template-columns: 1fr;
    }
    .trust-blocks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 72px;
        left: 0;
        background-color: var(--bg-dark);
        padding: 20px 0;
        border-bottom: 2px solid var(--primary);
    }
    .nav-links.active {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .legal-page {
        padding: 25px;
    }
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}