:root {
    --primary: #2d5a47;
    --primary-light: #3d7a5f;
    --primary-dark: #1d4a37;
    --accent: #e8b854;
    --accent-hover: #d4a644;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-cream: #faf8f5;
    --bg-sage: #e8ede9;
    --bg-warm: #f5f2ed;
    --border-light: #e0e0e0;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

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

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--primary);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 13px;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-disclosure {
    opacity: 0.9;
}

.header-main {
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo span {
    color: var(--accent);
}

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

nav a {
    font-weight: 500;
    color: var(--text-medium);
    padding: 8px 0;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1400&q=80') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

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

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

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

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

.section {
    padding: 90px 0;
}

.section-cream {
    background: var(--bg-cream);
}

.section-sage {
    background: var(--bg-sage);
}

.section-warm {
    background: var(--bg-warm);
}

.section-dark {
    background: var(--primary);
    color: var(--bg-white);
}

.section-title {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--primary);
}

.section-dark .section-title {
    color: var(--bg-white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.3;
}

.intro-text p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.intro-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-sage);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-color: var(--bg-sage);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-content p {
    color: var(--text-medium);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

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

.price-note {
    font-size: 13px;
    color: var(--text-light);
}

.features-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-item p {
    color: var(--text-medium);
    font-size: 15px;
}

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

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.author-info h5 {
    font-size: 16px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--bg-white);
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.booking-section {
    background: linear-gradient(to right, var(--bg-cream) 50%, var(--primary) 50%);
}

.booking-grid {
    display: flex;
    min-height: 600px;
}

.booking-info {
    flex: 1;
    padding: 60px 60px 60px 0;
}

.booking-info h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 20px;
}

.booking-info p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.booking-benefits {
    list-style: none;
}

.booking-benefits li {
    padding: 12px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-benefits li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-form-wrapper {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 400px;
}

.booking-form h3 {
    color: var(--bg-white);
    font-size: 26px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--accent-hover);
}

footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-size: 15px;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent);
}

.disclaimer {
    background: var(--bg-warm);
    padding: 30px 0;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: var(--accent);
    color: var(--text-dark);
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--bg-white);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.85;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.content-section ul {
    color: var(--text-medium);
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-story-text {
    flex: 1.2;
}

.about-story-text h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-story-text p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.about-story-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-sage);
}

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

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

.team-member {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.team-member h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.team-member span {
    color: var(--primary);
    font-size: 15px;
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 12px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-label {
    min-width: 120px;
    font-weight: 600;
    color: var(--primary);
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background: var(--bg-sage);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

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

.services-intro h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.services-intro p {
    color: var(--text-medium);
    font-size: 18px;
}

.service-detail {
    display: flex;
    gap: 50px;
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
    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;
    background-color: var(--bg-sage);
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.service-detail-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding: 8px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-includes li::before {
    content: '•';
    color: var(--accent);
    font-size: 20px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

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

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

.thanks-content h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .intro-grid,
    .about-story,
    .contact-grid {
        flex-direction: column;
    }

    .booking-section {
        background: var(--bg-cream);
    }

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

    .booking-info {
        padding: 40px 0;
    }

    .booking-form-wrapper {
        background: var(--primary);
        padding: 40px;
        border-radius: var(--radius-lg);
    }

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .team-grid,
    .features-row,
    .testimonials-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .section-title {
        font-size: 30px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-soft);
    }

    nav ul.show {
        display: flex;
    }

    nav li {
        border-bottom: 1px solid var(--border-light);
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 14px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
