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

:root {
    --primary-color: #d4a373;
    --primary-dark: #b8865f;
    --secondary-color: #2c3e50;
    --accent-color: #e8c4a3;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #fafafa;
    --bg-cream: #f8f5f2;
    --white: #ffffff;
    --border-light: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    z-index: 1000;
}

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

.brand-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: var(--bg-cream);
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a2530;
    transform: translateY(-2px);
}

.cta-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.intro-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.intro-block {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text-wide {
    flex: 2;
}

.intro-text-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.intro-text-wide p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.intro-visual-small {
    flex: 1;
}

.feature-card {
    background-color: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
}

.services-showcase {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.label-text {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.service-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-details p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

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

.btn-select {
    padding: 0.75rem 1.75rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1a2530;
    transform: scale(1.05);
}

.philosophy-split {
    display: flex;
    min-height: 700px;
}

.philosophy-visual {
    flex: 1;
    position: relative;
}

.philosophy-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.philosophy-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background-color: var(--bg-cream);
}

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.philosophy-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.testimonial-block {
    flex: 1.5;
}

.testimonial-block blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--text-medium);
    font-weight: 600;
}

.stats-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-cream);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.process-flow {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.process-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step-card {
    flex: 1;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-medium);
}

.booking-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.booking-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.booking-info > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.highlight-item .icon {
    font-size: 2rem;
}

.highlight-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.highlight-item p {
    color: var(--text-medium);
}

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

.booking-form {
    background-color: var(--bg-cream);
    padding: 3rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

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

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

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.final-cta {
    padding: 6rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(212, 163, 115, 0.5);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 163, 115, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px var(--shadow-medium);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
}

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

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

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

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

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

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

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

.page-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.5rem;
    color: var(--text-medium);
}

.story-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.story-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.story-text p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.image-frame {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.values-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

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

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    background-color: var(--bg-cream);
    border-radius: 12px;
    overflow: hidden;
}

.member-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.approach-text {
    flex: 1.5;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-highlights {
    flex: 1;
}

.highlight-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.highlight-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section {
    padding: 6rem 2rem;
    background-color: var(--bg-cream);
}

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

.cta-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.services-detail-section {
    padding: 4rem 2rem 6rem;
}

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

.intro-text {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    overflow: hidden;
}

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

.service-detail-card.featured-service {
    border: 3px solid var(--primary-color);
}

.service-detail-split {
    display: flex;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-includes ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-includes li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.service-duration {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.detail-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.add-ons-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.add-ons-container {
    max-width: 1200px;
    margin: 0 auto;
}

.add-ons-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

.add-on-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    flex-direction: column;
}

.add-on-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.add-on-item p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    flex: 1;
}

.add-on-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

.faq-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 2rem 6rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

.contact-icon {
    font-size: 2.5rem;
}

.contact-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
}

.contact-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-note p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.map-overlay {
    text-align: center;
    color: var(--text-dark);
}

.map-overlay p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 1.1rem;
    font-weight: 400;
}

.directions-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.directions-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.directions-info p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.directions-info p:last-child {
    margin-bottom: 0;
}

.contact-cta {
    padding: 6rem 2rem;
    background-color: var(--bg-cream);
}

.thanks-section {
    padding: 8rem 2rem 6rem;
    background-color: var(--white);
}

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

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.service-confirmation {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-info {
    margin-bottom: 3rem;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.step-num {
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-item p {
    color: var(--text-medium);
}

.thanks-note {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-note p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-note p:last-child {
    margin-bottom: 0;
}

.thanks-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-page {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-container p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.cookie-table thead {
    background-color: var(--bg-cream);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cookie-table th {
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .section-header-offset h2,
    .section-header-center h2 {
        font-size: 2.3rem;
    }

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

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

    .trust-container {
        flex-direction: column;
        gap: 3rem;
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .step-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .booking-split,
    .contact-split {
        flex-direction: column;
        gap: 3rem;
    }

    .story-split,
    .approach-content {
        flex-direction: column;
        gap: 3rem;
    }

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

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

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

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

    .add-ons-grid {
        flex-direction: column;
    }

    .add-on-item {
        flex: 1 1 100%;
    }

    .next-steps {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px var(--shadow);
        display: none;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

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

    .hero-visual {
        min-height: 400px;
    }

    .philosophy-split {
        flex-direction: column;
        min-height: auto;
    }

    .philosophy-visual {
        min-height: 400px;
    }

    .intro-block {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-lead {
        font-size: 1.2rem;
    }

    .detail-img {
        min-height: 300px;
    }

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

    .thanks-container h1 {
        font-size: 2.3rem;
    }

    .thanks-message {
        font-size: 1.1rem;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.9rem;
    }

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

    .section-header-offset h2,
    .section-header-center h2 {
        font-size: 1.8rem;
    }

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

    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}