:root {
    --primary: #1a1a2e;
    --secondary: #c9a227;
    --accent: #e8d5b7;
    --text-dark: #1a1a2e;
    --text-light: #f5f5f5;
    --bg-light: #faf9f7;
    --bg-cream: #f5f0e8;
    --bg-dark: #1a1a2e;
    --border: #d4c5a9;
    --shadow: rgba(26, 26, 46, 0.08);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Ad Disclosure Banner */
.ad-disclosure {
    background: var(--bg-cream);
    padding: 8px 0;
    font-size: 12px;
    text-align: center;
    color: #666;
    border-bottom: 1px solid var(--border);
}

/* Navigation */
.nav-main {
    background: var(--bg-light);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

/* Hero Section */
.hero-funnel {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 80px 24px;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    background: #d4aa2f;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
}

.btn-dark {
    background: var(--primary);
    color: var(--text-light);
}

.btn-dark:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-cream {
    background: var(--bg-cream);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
}

/* Story Section */
.story-block {
    padding: 120px 0;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

.story-image {
    flex: 1;
    background-color: var(--bg-cream);
    border-radius: 4px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    aspect-ratio: 4/3;
}

/* Benefits Grid */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 24px var(--shadow);
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--secondary);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 15px;
    opacity: 0.8;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 340px;
    max-width: 400px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-location {
    font-size: 14px;
    opacity: 0.7;
}

/* Services/Products Section */
.services-section {
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 220px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--secondary);
    font-weight: 700;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.form-info p {
    margin-bottom: 20px;
}

.form-container {
    flex: 1;
    background: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 8px 32px var(--shadow);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: #2a2a4e;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--primary);
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page */
.about-hero {
    padding: 140px 0 80px;
    background: var(--bg-cream);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-cream);
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
}

.value-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary);
}

/* Contact Page */
.contact-hero {
    padding: 140px 0 80px;
    background: var(--bg-cream);
    text-align: center;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.contact-item p {
    font-size: 17px;
}

.contact-map {
    flex: 1;
    background: var(--bg-cream);
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    color: var(--secondary);
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    max-width: 500px;
}

.thanks-service {
    font-weight: 600;
    color: var(--primary);
    font-size: 20px;
    margin: 24px 0;
    padding: 16px 24px;
    background: var(--bg-cream);
    border-radius: 4px;
    display: inline-block;
}

/* Legal Pages */
.legal-hero {
    padding: 140px 0 60px;
    background: var(--bg-cream);
    text-align: center;
}

.legal-hero h1 {
    font-size: clamp(28px, 4vw, 40px);
}

.legal-content {
    padding: 60px 0 100px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 20px;
    margin: 32px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 160px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Disclaimer */
.disclaimer {
    background: var(--bg-cream);
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.disclaimer p {
    font-size: 13px;
    opacity: 0.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    min-width: 280px;
}

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

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

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

.cookie-accept:hover {
    background: #d4aa2f;
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: var(--text-light);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

/* Insights Section */
.insights-section {
    padding: 100px 0;
}

.insights-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.insights-main {
    flex: 2;
}

.insights-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.insights-main p {
    margin-bottom: 20px;
    font-size: 17px;
}

.insights-sidebar {
    flex: 1;
    background: var(--bg-cream);
    padding: 32px;
    border-radius: 8px;
}

.insights-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.insight-stat {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.insight-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.insight-stat span {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--secondary);
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .story-content,
    .story-content.reverse,
    .form-wrapper,
    .about-grid,
    .contact-grid,
    .insights-content {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 4px 12px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        right: 16px;
        bottom: 80px;
    }
}
