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

:root {
    --primary-color: #2d2d2d;
    --secondary-color: #c19a6b;
    --accent-color: #8b7355;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0ddd9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-right a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem 7%;
    background: var(--light-bg);
}

.hero-text {
    max-width: 550px;
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary, .btn-secondary, .btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

.btn-primary-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

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

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.content-narrow h2 {
    margin-bottom: 2rem;
}

.content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.insight-split {
    display: flex;
    align-items: center;
    padding: 0;
}

.insight-image {
    flex: 1;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.insight-text {
    flex: 1;
    padding: 5rem 7%;
    background: var(--light-bg);
}

.insight-text h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.insight-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-flow {
    padding: 6rem 5%;
    background: var(--white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.story-cards {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    justify-content: center;
}

.story-card {
    flex: 1;
    max-width: 320px;
    padding: 2rem;
    background: var(--light-bg);
    text-align: left;
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.story-card h4 {
    margin-bottom: 1rem;
}

.testimonials-asymmetric {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    max-width: 650px;
}

.testimonial-item.offset-left {
    margin-right: auto;
}

.testimonial-item.offset-right {
    margin-left: auto;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-item cite {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.8;
}

.services-reveal {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.btn-select-service:hover {
    background: var(--secondary-color);
}

.service-card.selected {
    border-color: var(--accent-color);
    background: #fffef8;
}

.urgency-block {
    padding: 3rem 5%;
    background: #fff5e6;
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.form-section {
    padding: 6rem 5% 6rem;
    background: var(--white);
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 3rem 2rem;
}

.form-container {
    flex: 1;
    padding: 4rem;
    background: var(--light-bg);
}

.contact-form {
    max-width: 500px;
}

.contact-form h2 {
    margin-bottom: 2rem;
}

.service-display {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.service-display p {
    margin: 0;
    color: var(--text-light);
}

.service-display.active {
    background: #fffef8;
}

.service-display.active p {
    color: var(--text-dark);
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
}

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

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.final-push {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

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

.sticky-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.sticky-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 6rem 5% 4rem;
    background: var(--light-bg);
    text-align: center;
}

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

.about-split {
    display: flex;
    align-items: center;
    padding: 0;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    padding: 5rem 7%;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.experience-section {
    padding: 6rem 5%;
    background: var(--white);
}

.experience-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

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

.exp-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: var(--light-bg);
    text-align: left;
}

.exp-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.philosophy-section {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.approach-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

.approach-step {
    flex: 1;
    max-width: 320px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-about {
    padding: 5rem 5%;
    background: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-page {
    padding: 4rem 5% 6rem;
    background: var(--white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-detailed {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: var(--light-bg);
    padding: 3rem;
    border-left: 5px solid var(--border-color);
    position: relative;
}

.service-detail-card.featured-service {
    border-left-color: var(--secondary-color);
    background: #fffef8;
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-detail-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    margin-top: 1rem;
}

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

.faq-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-list {
    margin-top: 3rem;
    text-align: left;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    margin-bottom: 0.8rem;
}

.cta-services {
    padding: 5rem 5%;
    background: var(--white);
    text-align: center;
}

.contact-page {
    padding: 4rem 5% 6rem;
    background: var(--white);
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 2rem;
}

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

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.directions-section {
    padding: 5rem 5%;
    background: var(--white);
}

.directions-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.direction-card {
    flex: 1;
    max-width: 300px;
    padding: 2rem;
    background: var(--light-bg);
    text-align: left;
}

.direction-card h3 {
    margin-bottom: 1rem;
}

.thanks-section {
    padding: 6rem 5%;
    background: var(--light-bg);
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-main {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-content {
    text-align: left;
    background: var(--white);
    padding: 3rem;
    margin-top: 3rem;
}

.thanks-service {
    background: var(--light-bg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.selected-service {
    font-size: 1.1rem;
    margin: 0;
}

.next-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-note {
    background: #fff5e6;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.thanks-testimonial {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    opacity: 0.8;
}

.legal-page {
    padding: 4rem 5% 6rem;
    background: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-update {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.8rem;
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .insight-split,
    .about-split {
        flex-direction: column;
    }

    .hero-left,
    .insight-text,
    .about-text {
        padding: 3rem 5%;
    }

    .hero-right img,
    .insight-image img,
    .about-image img {
        min-height: 400px;
    }

    .story-cards,
    .approach-steps {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .form-split,
    .contact-split {
        flex-direction: column;
    }

    .form-container {
        padding: 3rem 5%;
    }

    .directions-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .experience-grid {
        flex-direction: column;
    }

    .exp-item {
        flex: 1 1 100%;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        max-width: 100%;
    }
}
