/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
    padding: 16px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Split Screen Layouts - Archetype Foundation */
.split-hero,
.split-alt,
.page-hero-split,
.split-left,
.split-right {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.split-hero {
    min-height: 85vh;
}

.page-hero-split {
    min-height: 60vh;
}

.split-alt {
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 80px 60px;
}

.split-right {
    padding: 80px 60px;
}

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

.hero-image,
.split-right.hero-image {
    padding: 0;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.content-block {
    max-width: 520px;
}

.content-block h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* Buttons and CTAs */
.cta-primary,
.cta-primary-large,
.btn-submit,
.btn-select-service {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.cta-primary-large {
    padding: 20px 40px;
    font-size: 18px;
}

.cta-primary:hover,
.cta-primary-large:hover,
.btn-submit:hover,
.btn-select-service:hover {
    background: #333333;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.link-arrow {
    display: inline-block;
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 16px;
    transition: transform 0.3s;
}

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Value Props Section */
.value-props {
    padding: 100px 0;
    background: #f8f8f8;
}

.prop-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.prop-card {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.prop-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.prop-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-intro p {
    font-size: 19px;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-visual,
.service-details {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0;
}

.service-meta {
    margin: 16px 0;
}

.service-duration {
    color: #666;
    font-size: 15px;
}

/* Testimonials */
.trust-indicators {
    padding: 100px 0;
    background: #f8f8f8;
}

.trust-indicators h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-row {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
}

.booking-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.booking-content {
    flex: 1;
}

.booking-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-content p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.booking-form-wrapper {
    flex: 1;
}

.service-form {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

/* Process Flow */
.process-flow {
    padding: 100px 0;
    background: #f8f8f8;
}

.process-flow h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    line-height: 60px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Why Different Section */
.why-different {
    display: flex;
    min-height: 600px;
}

/* Final CTA */
.final-cta-block {
    padding: 120px 0;
    background: #1a1a1a;
    color: #ffffff;
}

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

.cta-content-center h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.cta-content-center p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #d0d0d0;
    line-height: 1.7;
}

.cta-content-center .cta-primary-large {
    background: #ffffff;
    color: #1a1a1a;
}

.cta-content-center .cta-primary-large:hover {
    background: #f0f0f0;
}

/* Footer */
.main-footer {
    background: #f8f8f8;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #4a4a4a;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #1a1a1a;
}

.footer-col p {
    color: #4a4a4a;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #d0d0d0;
    color: #666;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-cta-btn {
    display: block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 28px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #1a1a1a;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a4a4a;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

.btn-cookie-accept {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #333333;
}

.btn-cookie-reject {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #d0d0d0;
}

.btn-cookie-reject:hover {
    border-color: #1a1a1a;
}

/* About Page Styles */
.story-section {
    padding: 100px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 17px;
}

.approach-split {
    display: flex;
    min-height: 600px;
}

.commitment-section {
    padding: 100px 0;
}

.commitment-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

.commitment-list {
    display: flex;
    gap: 40px;
}

.commitment-item {
    flex: 1;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 8px;
}

.commitment-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.commitment-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-about {
    padding: 100px 0;
    background: #1a1a1a;
}

/* Services Page Styles */
.service-category {
    padding: 80px 0;
}

.service-category.alt-bg {
    background: #f8f8f8;
}

.category-intro {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-approach {
    padding: 100px 0;
    background: #f8f8f8;
}

.service-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 40px;
}

.approach-item {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.approach-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.service-cta {
    padding: 100px 0;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
}

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

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.7;
}

.contact-detail a {
    color: #1a1a1a;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.day {
    font-weight: 600;
}

.time {
    color: #4a4a4a;
}

.directions-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.directions-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.booking-preference {
    padding: 80px 0;
}

.preference-split {
    display: flex;
    gap: 60px;
}

.preference-option {
    flex: 1;
    padding: 50px;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.preference-option h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
}

.preference-option p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 100px 0;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-lead {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 60px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 60px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    color: #4a4a4a;
    line-height: 1.7;
}

.service-selected {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-selected h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.contact-reminder {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
}

.contact-reminder h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-reminder p {
    color: #4a4a4a;
}

.contact-reminder a {
    color: #1a1a1a;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.updated {
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-page a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-hero,
    .split-alt,
    .page-hero-split,
    .why-different,
    .approach-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 60px 40px;
    }

    .service-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-split.reverse {
        flex-direction: column;
    }

    .prop-grid,
    .testimonial-row,
    .process-steps,
    .commitment-list,
    .approach-grid {
        flex-direction: column;
    }

    .booking-split,
    .contact-grid,
    .preference-split {
        flex-direction: column;
        gap: 40px;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .content-block h2,
    .section-intro h2 {
        font-size: 32px;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .thanks-content h1 {
        font-size: 36px;
    }

    .service-price {
        font-size: 28px;
    }
}
