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

:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d2a;
    --secondary: #c9a65c;
    --accent: #8b4513;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #faf8f5;
    --bg-cream: #f5f1e8;
    --bg-sage: #e8ede9;
    --white: #ffffff;
    --border: #e0dcd4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

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

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    color: var(--text);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* Hero Editorial */
.hero-editorial {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
}

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

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.hero-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 2rem;
}

.hero-image {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-section.alt-bg {
    background: var(--bg-light);
}

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

.story-block {
    margin-bottom: 2rem;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-image {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.story-image.wide {
    margin-left: -100px;
    margin-right: -100px;
}

.story-image.wide img {
    height: 400px;
}

.inline-quote {
    border-left: 3px solid var(--secondary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--bg-cream);
    font-style: italic;
    font-size: 1.15rem;
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 1rem;
}

.inline-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.inline-cta:hover::after {
    transform: translateX(5px);
}

/* Services Cards */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 320px;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

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

.btn-accent {
    background: var(--secondary);
}

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

/* Testimonial Inline */
.testimonial-inline {
    padding: 4rem 0;
    background: var(--primary-dark);
    color: var(--white);
}

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

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Features List */
.features-section {
    padding: 5rem 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-light);
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: var(--bg-cream);
}

.form-wrapper {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

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

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    min-width: 200px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-text {
    flex: 1;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1.5;
}

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

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

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

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

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

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

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

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

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

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

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background: var(--bg-cream);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-section h1 {
    color: var(--primary);
}

.thanks-section p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content,
    .contact-grid {
        flex-direction: column;
    }

    .feature-item,
    .feature-item:nth-child(even) {
        flex-direction: column;
    }

    .story-image.wide {
        margin-left: 0;
        margin-right: 0;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    .hero-editorial h1 {
        font-size: 2.4rem;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
        display: none;
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        flex-direction: column;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }
}
