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

:root {
    --color-primary: #c45c26;
    --color-secondary: #2d4a3e;
    --color-accent: #e8b86d;
    --color-dark: #1a1a1a;
    --color-light: #faf8f5;
    --color-muted: #6b6b6b;
    --color-cream: #f5efe6;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

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

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

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--color-light);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-dark);
    font-weight: 400;
    letter-spacing: -0.5px;
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

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

.main-nav a:hover::after,
.main-nav 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 {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: transform 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
}

.hero-editorial .container-narrow {
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-editorial h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--color-muted);
    max-width: 560px;
    margin: 0 auto 32px;
}

.hero-image-wrap {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Article Content */
.article-section {
    padding: 72px 0;
}

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

.article-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.article-section h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--color-dark);
}

.article-section p {
    margin-bottom: 20px;
    color: var(--color-dark);
}

.article-section p:last-child {
    margin-bottom: 0;
}

.inline-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
}

.inline-image figcaption {
    font-size: 14px;
    color: var(--color-muted);
    text-align: center;
    padding: 12px 0;
    font-style: italic;
}

/* Pull Quote */
.pull-quote {
    border-left: 4px solid var(--color-primary);
    padding: 24px 32px;
    margin: 40px 0;
    background-color: rgba(196, 92, 38, 0.05);
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    color: var(--color-secondary);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--color-secondary);
    color: white;
}

.services-section h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    color: white;
}

.services-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    color: rgba(255,255,255,0.8);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 320px;
    max-width: 380px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255,255,255,0.15);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-secondary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: white;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-accent);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 500px;
}

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

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

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: var(--color-light);
}

.split-section.dark .split-content {
    background-color: var(--color-dark);
    color: white;
}

.split-section.dark .split-content h2,
.split-section.dark .split-content h3 {
    color: white;
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.split-content p {
    margin-bottom: 18px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-cream);
}

.testimonials-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 320px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-primary);
    opacity: 0.3;
    position: absolute;
    top: -15px;
    left: -5px;
}

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

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

.author-info strong {
    display: block;
    color: var(--color-dark);
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #a84820 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 16px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #a84820;
    color: white;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

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

.btn-dark:hover {
    background-color: #333;
    color: white;
}

/* Inline CTA */
.inline-cta {
    background-color: var(--color-cream);
    border-radius: 8px;
    padding: 24px 32px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.inline-cta p {
    margin: 0;
    font-weight: 500;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.form-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
}

.form-intro {
    text-align: center;
    color: var(--color-muted);
    max-width: 500px;
    margin: 0 auto 40px;
}

.booking-form {
    max-width: 560px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: var(--color-light);
    font-family: var(--font-body);
    transition: border-color 0.3s 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;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Contact Info */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.contact-item {
    flex: 1 1 200px;
    text-align: center;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--color-muted);
    font-size: 15px;
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
}

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

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

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

/* Page Headers */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
}

.page-header p {
    color: var(--color-muted);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0 80px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    margin: 40px 0 16px;
    color: var(--color-dark);
}

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

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 12px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 32px;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
}

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

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

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

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

.cookie-accept:hover {
    background-color: #a84820;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(196, 92, 38, 0.4);
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    fill: white;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--color-secondary);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-accent);
    display: block;
}

.stat-label {
    font-size: 15px;
    opacity: 0.8;
}

/* About Team */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
}

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

.team-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: var(--color-cream);
}

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

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--color-muted);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
    }

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

    .split-image {
        min-height: 300px;
        position: relative;
    }

    .split-content {
        padding: 48px 32px;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

    .services-section h2,
    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-light);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

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

    .nav-toggle {
        display: flex;
    }

    .header-inner {
        position: relative;
    }

    .hero-editorial {
        padding: 60px 0 48px;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .article-section {
        padding: 48px 0;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

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

    .pull-quote {
        padding: 20px 24px;
        font-size: 18px;
    }

    .footer-grid {
        gap: 32px;
    }

    .sticky-cta {
        bottom: 80px;
        right: 16px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-editorial h1 {
        font-size: 28px;
    }

    .article-section h2 {
        font-size: 28px;
    }

    .booking-form {
        padding: 24px;
    }

    .service-card {
        padding: 24px;
    }

    .stat-number {
        font-size: 36px;
    }
}
