:root {
    --color-primary: #3d5a4c;
    --color-secondary: #5a6f5c;
    --color-accent: #8b7355;
    --color-dark: #2c3e35;
    --color-light: #f5f2eb;
    --color-cream: #faf8f4;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0ddd5;
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --narrow-width: 720px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.25rem;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

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

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

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

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

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

.cookie-buttons .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.cookie-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cookie-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--color-dark);
}

.site-header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ad-disclosure {
    background-color: var(--color-light);
    color: var(--color-text-light);
    font-size: 0.75rem;
    padding: 0.375rem 0;
    text-align: center;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo:hover {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.9375rem;
}

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

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
}

.hero-text-overlay h1 {
    color: white;
    max-width: var(--narrow-width);
    margin: 0 auto 1rem;
}

.hero-subtitle {
    max-width: var(--narrow-width);
    margin: 0 auto;
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    max-height: 500px;
}

.page-hero.compact {
    height: 40vh;
    min-height: 280px;
    max-height: 380px;
}

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

.page-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.4);
    color: white;
}

.page-hero-overlay h1 {
    color: white;
}

.page-hero-overlay p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

.editorial-intro {
    padding: 4rem 1.5rem;
}

.narrow-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
}

.story-section {
    display: flex;
    min-height: 450px;
}

.story-section.reverse {
    flex-direction: row-reverse;
}

.story-image-left,
.story-image-right {
    flex: 1;
    min-width: 50%;
}

.story-image-left img,
.story-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text-left,
.story-text-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-cream);
}

.featured-services {
    padding: 5rem 1.5rem;
    background-color: white;
}

.service-cards-editorial {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.75rem;
}

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

.price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.card-link {
    font-size: 0.9375rem;
    font-weight: 500;
}

.inline-cta {
    padding: 4rem 1.5rem;
    background-color: var(--color-light);
    text-align: center;
}

.inline-cta p {
    margin-bottom: 1.5rem;
}

.testimonial-editorial {
    padding: 4rem 1.5rem;
    background-color: white;
}

.testimonial-editorial blockquote {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--color-text);
    border-left: 3px solid var(--color-primary);
    padding-left: 2rem;
    margin: 0;
}

.testimonial-editorial blockquote p {
    margin-bottom: 1rem;
}

.testimonial-editorial cite {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-light);
}

.text-link {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-form-section {
    padding: 5rem 1.5rem;
    background-color: var(--color-light);
}

.editorial-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: white;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.disclaimer-section {
    padding: 2rem 1.5rem;
    background-color: var(--color-cream);
    border-top: 1px solid var(--color-border);
}

.disclaimer-text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

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

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.editorial-content {
    padding: 4rem 1.5rem;
}

.wide-image-break {
    margin: 3rem 0;
    height: 300px;
}

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

.team-section {
    padding: 5rem 1.5rem;
    background-color: white;
}

.team-grid {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member .role {
    font-size: 0.9375rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.team-member p:last-child {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

.values-section {
    padding: 4rem 1.5rem;
    background-color: var(--color-light);
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item h3 {
    color: var(--color-primary);
}

.value-item p {
    margin: 0;
}

.cta-section {
    padding: 5rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
}

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

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
}

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

.cta-section .btn-primary:hover {
    background-color: var(--color-light);
}

.services-intro {
    padding: 4rem 1.5rem;
    background-color: white;
}

.services-detailed {
    padding: 0 1.5rem 4rem;
}

.service-detail-card {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-image-container {
    flex: 0 0 45%;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-light);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.service-info h2 {
    margin-bottom: 0.5rem;
}

.service-duration {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background-color: var(--color-light);
    border-radius: 6px;
}

.service-includes h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-includes ul {
    margin: 0;
    padding-left: 1.25rem;
}

.service-includes li {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}

.service-includes li:last-child {
    margin-bottom: 0;
}

.service-price-block {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background-color: var(--color-cream);
    border-radius: 6px;
    border: 1px solid var(--color-border);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.price-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.contact-content {
    padding: 4rem 1.5rem;
}

.contact-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info-block {
    flex: 1 1 360px;
}

.contact-additional {
    flex: 1 1 360px;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    margin: 0;
}

.contact-detail .note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.inquiry-list {
    padding-left: 1.25rem;
}

.inquiry-list li {
    font-size: 0.9375rem;
}

.map-section {
    padding: 4rem 1.5rem;
}

.map-placeholder {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.map-info h3 {
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.map-info p {
    margin: 0;
    color: var(--color-text-light);
}

.faq-section {
    padding: 4rem 1.5rem;
    background-color: white;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

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

.thanks-icon {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.next-steps {
    text-align: left;
    background-color: var(--color-light);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.next-steps ol {
    margin: 0;
    padding-left: 1.25rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.thanks-note {
    margin-bottom: 2rem;
}

.thanks-note p {
    margin: 0;
    color: var(--color-text-light);
}

.legal-content {
    padding: 4rem 1.5rem;
}

.legal-container {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.legal-container h1 {
    margin-bottom: 0.5rem;
}

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

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.cookie-table th {
    background-color: var(--color-light);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .story-section,
    .story-section.reverse {
        flex-direction: column;
    }

    .story-image-left,
    .story-image-right {
        min-height: 300px;
    }

    .story-text-left,
    .story-text-right {
        padding: 3rem 1.5rem;
    }

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

    .service-image-container {
        flex: none;
    }

    .service-image-container img {
        min-height: 280px;
    }

    .contact-layout {
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .hero-editorial {
        height: 60vh;
        min-height: 400px;
    }

    .hero-text-overlay {
        padding: 2rem 1.5rem;
    }

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

    .lead-paragraph {
        font-size: 1.125rem;
    }

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

    .service-cards-editorial {
        gap: 1.5rem;
    }

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

    .team-image {
        width: 160px;
        height: 160px;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section {
        flex: 1 1 100%;
    }
}
