:root {
    --color-primary: #2d5a4a;
    --color-primary-dark: #1e3f34;
    --color-primary-light: #3d7a64;
    --color-secondary: #d4a574;
    --color-accent: #8b6914;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-bg: #ffffff;
    --color-bg-soft: #f8f6f3;
    --color-bg-warm: #faf8f5;
    --color-border: #e8e4df;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
}

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-text);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: #c49664;
    border-color: #c49664;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.split-section {
    padding: 0;
}

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

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

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

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

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

.hero {
    margin-top: 70px;
}

.hero .split-text {
    padding: 80px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-bg-soft);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 24px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 20px;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 12px;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.intro-band {
    background: var(--color-primary);
    padding: 60px 0;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: white;
    font-style: italic;
}

.bg-soft {
    background: var(--color-bg-soft);
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    font-size: 1.1rem;
    color: var(--color-text);
}

.feature-list span {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.services-preview {
    padding: 100px 0;
    background: var(--color-bg-warm);
}

.section-header {
    margin-bottom: 48px;
}

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

.section-header.offset-left {
    max-width: 500px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.services-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.service-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--color-primary);
    color: white;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    font-size: 0.9rem;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: var(--color-bg-soft);
    padding: 40px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial cite {
    display: block;
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
}

.testimonial cite span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.booking-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
    color: white;
}

.booking-info h2 {
    color: white;
    font-size: 2.2rem;
}

.booking-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.trust-signals {
    display: flex;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.booking-form {
    flex: 1;
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
    background: white;
}

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

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

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 16px;
}

.location-band {
    padding: 80px 0;
    background: var(--color-bg-soft);
}

.location-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.location-text {
    flex: 1;
}

.location-text address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 24px;
    color: var(--color-text);
}

.location-hours {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.location-hours ul {
    list-style: none;
    margin: 24px 0;
}

.location-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.location-hours li:last-child {
    border-bottom: none;
}

.footer {
    background: var(--color-text);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-contact p {
    opacity: 0.7;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-text);
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.cookie-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--color-primary);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
}

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

.page-header {
    margin-top: 70px;
    padding: 80px 0;
    background: var(--color-bg-soft);
}

.page-header h1 {
    font-size: 2.8rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
}

.page-content {
    padding: 80px 0;
}

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

.content-narrow h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 16px;
}

.content-narrow h3 {
    font-size: 1.3rem;
    margin-top: 32px;
}

.content-narrow p {
    margin-bottom: 16px;
}

.content-narrow ul,
.content-narrow ol {
    margin: 16px 0 16px 24px;
}

.content-narrow li {
    margin-bottom: 8px;
}

.services-full {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.service-detail-content .price {
    font-size: 1.5rem;
    margin: 24px 0;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

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

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 320px;
    background: var(--color-bg-soft);
    padding: 48px;
    border-radius: var(--radius-lg);
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
    margin-top: 70px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.thanks-content h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

@media (max-width: 968px) {
    .split-content {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-text {
        padding: 60px 24px;
    }

    .split-image {
        height: 400px;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .booking-wrapper {
        flex-direction: column;
    }

    .location-content {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail {
        flex-direction: column !important;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }

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

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .trust-signals {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .booking-form {
        padding: 32px 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .sticky-cta {
        bottom: 80px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

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

    .cta-group .btn {
        width: 100%;
    }
}
