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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --text-color: #2d2d2d;
    --text-light: #666;
    --bg-light: #f8f8f6;
    --bg-cream: #faf9f5;
    --border-color: #e0dfd8;
    --accent-gold: #c9a961;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.4rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hero-immersive {
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 50, 29, 0.7) 0%, rgba(44, 95, 45, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.intro-story {
    padding: 8rem 0;
    background: var(--bg-cream);
}

.story-lead {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.problem-reveal {
    padding: 6rem 0;
    background: var(--white);
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.problem-list {
    list-style: none;
    margin-top: 1.5rem;
}

.problem-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-size: 1.4rem;
}

.insight-block {
    padding: 6rem 0;
    background: var(--bg-light);
}

.process-visual {
    padding: 7rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2.5rem;
    background: var(--bg-cream);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.trust-layer,
.trust-layer-second {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: var(--white);
}

.testimonial-inline {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    border-left: 4px solid var(--accent-gold);
    padding-left: 2rem;
    margin: 2rem 0;
}

.trust-layer .testimonial-inline,
.trust-layer-second .testimonial-inline {
    border-left-color: var(--accent-gold);
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.showcase-gallery {
    padding: 7rem 0;
    background: var(--bg-cream);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.gallery-caption {
    font-size: 0.95rem;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 7rem 0;
    background: var(--white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.cta-immersive {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-immersive h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-immersive p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-gold);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #b39551;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.services-pricing {
    padding: 7rem 0;
    background: var(--bg-cream);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(44, 95, 45, 0.1);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-details {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 1rem 0;
    font-style: italic;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: var(--primary-dark);
}

.form-section {
    padding: 7rem 0;
    background: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-soft {
    padding: 4rem 0;
    background: var(--bg-light);
}

.urgency-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.site-footer {
    background: var(--text-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #b39551;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(45, 45, 45, 0.98);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 8rem 0 4rem;
    background: var(--bg-cream);
    margin-top: 70px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
}

.about-story {
    padding: 6rem 0;
}

.philosophy {
    padding: 6rem 0;
    background: var(--bg-light);
}

.values-section {
    padding: 6rem 0;
    background: var(--white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 4px;
}

.team-collab {
    padding: 6rem 0;
    background: var(--bg-light);
}

.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.cta-section.center {
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--bg-cream);
    border-radius: 8px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.service-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-includes {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.5rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-box {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 4px;
}

.contact-info-box h3 {
    margin-bottom: 1rem;
}

.contact-info-box p {
    line-height: 1.8;
}

.contact-cta {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.thanks-section {
    padding: 8rem 0;
    margin-top: 70px;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    text-align: center;
    margin: 2rem 0;
    color: var(--text-light);
}

.thanks-service {
    text-align: center;
    margin: 2rem 0;
}

.selected-service-info {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: var(--bg-cream);
    border-radius: 4px;
    display: inline-block;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 2rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 0;
    margin-top: 70px;
}

.legal-page h1 {
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-card {
        flex: 1 1 100%;
    }

    .gallery-item,
    .benefit-card,
    .service-card,
    .value-item,
    .contact-info-box {
        flex: 1 1 100%;
    }

    .footer-columns {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    .service-price {
        font-size: 1.8rem;
    }

    .service-price-large {
        font-size: 2rem;
    }
}