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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

a {
    color: #5a4a3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b7355;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0e8dc;
    color: #5a4a3a;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-bottom: 1px solid #d4c4b0;
}

/* Navigation - Floating Style */
.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(250, 250, 248, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5d7c9;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5a4a3a;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b7355;
    transition: width 0.3s ease;
}

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

/* Hero Section - Asymmetric */
.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding: 8rem 5% 5rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 700;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    color: #5a5a5a;
    max-width: 550px;
}

.hero-image-block {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

/* Intro Section - Offset Layout */
.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.intro-text-narrow {
    flex: 1;
    max-width: 500px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-left: 5%;
}

.intro-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(3rem);
    overflow: hidden;
    border-radius: 2px;
}

.intro-image-overlap img {
    width: 100%;
    height: 500px;
}

/* Services Preview - Asymmetric Grid */
.services-preview {
    padding: 7rem 5% 5rem;
    background-color: #f5f2ed;
}

.section-header-irregular {
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.section-header-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.section-header-irregular p {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5d7c9;
}

.service-card.card-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 400px;
}

.service-card.card-offset {
    flex: 1 1 calc(35% - 1rem);
    min-width: 300px;
    transform: translateY(2rem);
}

.service-card.card-small {
    flex: 1 1 calc(40% - 1rem);
    min-width: 300px;
}

.service-card.card-wide {
    flex: 1 1 calc(55% - 1rem);
    min-width: 350px;
}

.service-card.card-medium {
    flex: 1 1 calc(40% - 1rem);
    min-width: 300px;
    transform: translateY(-1rem);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #5a5a5a;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #5a4a3a;
    margin-top: auto;
}

/* Buttons */
.cta-primary,
.btn-primary,
.btn-select-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5a4a3a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #5a4a3a;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #5a4a3a;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a4a3a;
    color: #ffffff;
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

/* Philosophy Section */
.philosophy-section {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
    align-items: center;
}

.philosophy-text {
    flex: 1;
    padding-left: 5%;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.philosophy-image-stack {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
}

.philosophy-image-stack img {
    width: 100%;
    height: 550px;
}

/* Form Section - Offset */
.form-section-offset {
    padding: 7rem 5%;
    background-color: #f0e8dc;
}

.form-container {
    max-width: 700px;
    margin: 0 auto 0 10%;
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e5d7c9;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #5a5a5a;
    font-size: 1.05rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #3a3a3a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #d4c4b0;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fafaf8;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a4a3a;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background-color: #3a3a3a;
    color: #e5d7c9;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col h3 {
    font-size: 1.5rem;
}

.footer-col h4 {
    font-size: 1.1rem;
}

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

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

.footer-col ul li a {
    color: #e5d7c9;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #5a5a5a;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom .disclaimer {
    margin-bottom: 1.5rem;
    color: #b0a090;
    line-height: 1.6;
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(58, 58, 58, 0.98);
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #5a4a3a;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #e5d7c9;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #5a4a3a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #7a6a5a;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Page Header - Offset */
.page-header-offset {
    padding: 6rem 5% 3rem 10%;
    background-color: #f5f2ed;
}

.page-header-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.page-header-offset p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

/* Services Detail */
.services-detail {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
}

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #5a4a3a;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefit-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #4a4a4a;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a4a3a;
    font-weight: 700;
}

.duration {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* About Page */
.about-hero-split {
    display: flex;
    min-height: 70vh;
}

.about-hero-text {
    flex: 1;
    padding: 5rem 5% 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5a5a5a;
}

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

.about-hero-image img {
    width: 100%;
    height: 100%;
}

.philosophy-irregular {
    padding: 6rem 10% 6rem 15%;
    background-color: #f5f2ed;
}

.philosophy-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.philosophy-content-offset p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.approach-section {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.approach-image-left {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
}

.approach-image-left img {
    width: 100%;
    height: 500px;
}

.approach-text-right {
    flex: 1;
    padding-right: 5%;
}

.approach-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.approach-text-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background-color: #f5f2ed;
}

.section-title-centered {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #3a3a3a;
}

.team-layout-offset {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.team-member.member-reverse {
    flex-direction: row-reverse;
}

.member-image {
    flex: 0 0 300px;
    overflow: hidden;
    border-radius: 2px;
}

.member-image img {
    width: 100%;
    height: 300px;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.member-role {
    font-size: 1rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Values Section */
.values-section {
    padding: 6rem 5%;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #3a3a3a;
    text-align: center;
}

.values-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e5d7c9;
    flex: 1 1 calc(45% - 1rem);
    min-width: 280px;
}

.value-card.card-offset {
    transform: translateY(1.5rem);
}

.value-card.card-wide {
    flex: 1 1 100%;
}

.value-card.card-small {
    flex: 1 1 calc(30% - 1rem);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

/* CTA Section */
.cta-section-centered {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f5f2ed;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.cta-section-centered p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #5a5a5a;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #5a4a3a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-large:hover {
    background-color: #7a6a5a;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-header-offset {
    padding: 5rem 5% 3rem 8%;
    background-color: #f5f2ed;
}

.contact-header-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.contact-header-offset p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

.contact-layout-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
    padding-left: 3%;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #3a3a3a;
}

.info-group {
    margin-bottom: 2.5rem;
}

.info-group h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #5a4a3a;
}

.info-group p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-image-block {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
}

.directions-section {
    padding: 5rem 8%;
    background-color: #f5f2ed;
}

.directions-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: #3a3a3a;
}

.directions-content {
    display: flex;
    gap: 3rem;
}

.direction-item {
    flex: 1;
}

.direction-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #5a4a3a;
}

.direction-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-section {
    display: flex;
    min-height: 70vh;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding-left: 3%;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.selected-service-info {
    background-color: #f5f2ed;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #5a4a3a;
}

.selected-service-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.next-steps {
    margin-bottom: 2.5rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.next-steps ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a4a3a;
    font-weight: 700;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
}

.thanks-image img {
    width: 100%;
    height: 500px;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.last-updated {
    font-size: 0.95rem;
    color: #8a8a8a;
    margin-bottom: 3rem;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #5a4a3a;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #5a4a3a;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #5a4a3a;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5d7c9;
}

.cookie-table th {
    background-color: #f5f2ed;
    font-weight: 600;
    color: #3a3a3a;
}

.cookie-table td {
    font-size: 1rem;
    color: #4a4a4a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        padding: 5rem 5%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .service-card {
        min-width: 100%;
        transform: none !important;
    }

    .philosophy-section,
    .approach-section {
        flex-direction: column;
    }

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

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

    .team-member,
    .team-member.member-reverse {
        flex-direction: column;
    }

    .contact-layout-split {
        flex-direction: column;
    }

    .directions-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header-irregular h2 {
        font-size: 2rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .value-card {
        flex: 1 1 100%;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content-offset {
        padding: 3rem 5%;
    }

    .form-container {
        margin: 0;
        padding: 2rem;
    }
}