:root {
    --primary: #4a7c59;
    --primary-dark: #3a5a45;
    --primary-light: #6a9c75;
    --secondary: #8b6914;
    --accent: #c49b32;
    --text: #2a2a2a;
    --text-light: #5a5a5a;
    --bg: #ffffff;
    --bg-alt: #f8f7f4;
    --bg-dark: #1a1a1a;
    --border: #e5e3de;
    --shadow: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --radius: 8px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 2.6rem; margin-bottom: 1.5rem; }
h2 { font-size: 1.9rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }

p { margin-bottom: 1rem; }

.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.ad-disclosure {
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin-left: 32px;
}

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

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

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

.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(--text);
    transition: all var(--transition);
}

.hero-editorial {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 24px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.page-intro {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

.story-section.offset-left {
    margin-left: -80px;
    padding-left: 80px;
    border-left: 4px solid var(--primary);
}

.story-section.offset-right {
    margin-right: -80px;
    padding-right: 80px;
    border-right: 4px solid var(--primary);
}

.story-section.centered {
    text-align: center;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    color: var(--primary);
    margin-right: 12px;
    margin-top: 4px;
}

.inline-image {
    margin: 48px -60px;
}

.full-width-image {
    margin: 60px -200px;
}

.image-container {
    border-radius: var(--radius);
    overflow: hidden;
}

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

figcaption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

.services-preview {
    margin: 60px 0;
    padding: 48px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin-left: -48px;
    margin-right: -48px;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 32px;
}

.service-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1 1 240px;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-image {
    height: 160px;
    overflow: hidden;
}

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

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.cta-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    font-weight: 600;
    color: var(--primary);
}

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

.testimonial-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    margin-left: -48px;
    margin-right: -48px;
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
}

blockquote p {
    margin-bottom: 16px;
}

cite {
    font-size: 0.95rem;
    font-style: normal;
    opacity: 0.85;
}

.cta-section {
    text-align: center;
    padding: 48px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin: 48px -48px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

.cta-button:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.services-page .services-full {
    margin-top: 48px;
}

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

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

.service-image {
    flex: 1 1 350px;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 280px;
}

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

.service-info {
    flex: 1 1 350px;
}

.difficulty {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.difficulty.easy {
    background: #d4edda;
    color: #155724;
}

.difficulty.moderate {
    background: #fff3cd;
    color: #856404;
}

.difficulty.hard {
    background: #f8d7da;
    color: #721c24;
}

.service-details {
    list-style: none;
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-details li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-price {
    margin-top: 16px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 8px;
}

.booking-section {
    margin-top: 60px;
    padding: 48px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.booking-section h2 {
    margin-bottom: 16px;
}

.booking-form {
    margin-top: 32px;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

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

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

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

.submit-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.submit-button:hover {
    background: var(--primary-dark);
}

.values-section {
    margin: 48px 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 24px;
}

.value-item {
    flex: 1 1 200px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.value-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.contact-page .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    flex: 1 1 200px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.contact-card h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-card p {
    margin: 0;
}

.email-text {
    color: var(--text);
    cursor: default;
    word-break: break-word;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

.faq-section {
    margin: 48px 0;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type {
    border-top: 1px solid var(--border);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.faq-item p {
    margin: 0;
    color: var(--text-light);
}

.thanks-page .thanks-section {
    text-align: center;
    padding: 60px 0;
}

.thanks-icon {
    margin-bottom: 32px;
}

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

.selected-service {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 8px 0 0;
}

.next-steps {
    text-align: left;
    max-width: 400px;
    margin: 32px auto;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.next-steps h2 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.next-steps ol {
    padding-left: 20px;
    color: var(--text-light);
}

.next-steps li {
    margin-bottom: 8px;
}

.thanks-cta {
    margin-top: 32px;
}

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

.thanks-cta .cta-link {
    display: inline-block;
    margin-left: 16px;
}

.legal-page .legal-section {
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    margin-bottom: 6px;
    color: var(--text-light);
}

.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.7);
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.disclaimer {
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.cookie-content a {
    color: var(--accent);
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.cookie-accept {
    background: var(--primary);
    color: #fff;
}

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

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

.cookie-reject:hover {
    border-color: #fff;
}

@media (max-width: 900px) {
    .full-width-image {
        margin-left: -24px;
        margin-right: -24px;
    }

    .services-preview,
    .cta-section,
    .testimonial-section,
    .booking-section {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .story-section.offset-left,
    .story-section.offset-right {
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 0;
    }

    .story-section.offset-right {
        padding-left: 0;
        padding-right: 20px;
    }

    .inline-image {
        margin-left: -24px;
        margin-right: -24px;
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

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

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--bg);
        flex-direction: column;
        padding: 32px;
        gap: 0;
        margin: 0;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        transform: translateX(0);
    }

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

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .ad-disclosure {
        display: none;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .service-cards {
        flex-direction: column;
    }

    .drop-cap::first-letter {
        font-size: 3rem;
    }
}
