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

:root {
    --primary: #1a4d5c;
    --secondary: #2d8a7b;
    --accent: #e8a44c;
    --dark: #1c2a32;
    --light: #f7f5f2;
    --text: #3a3a3a;
    --muted: #6b7a82;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.75;
    color: var(--text);
    background: var(--light);
}

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

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

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

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

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

/* Navigation */
.nav {
    background: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.nav-logo {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    padding: 100px 20px 80px;
    background: linear-gradient(175deg, var(--white) 0%, var(--light) 100%);
}

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

.hero-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.hero-editorial h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-image {
    margin: 60px auto 0;
    max-width: 900px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

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

.btn-secondary:hover {
    background: #153d4a;
    color: var(--white);
}

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

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

/* Editorial Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--white);
}

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

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.85);
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.section h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Story Flow */
.story-block {
    margin-bottom: 60px;
}

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

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

.story-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: var(--secondary);
}

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

.story-quote {
    border-left: 4px solid var(--accent);
    padding-left: 28px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary);
}

.inline-cta {
    background: var(--light);
    padding: 32px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: center;
}

.section-alt .inline-cta {
    background: rgba(26,77,92,0.06);
}

.inline-cta p {
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Split Section */
.split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

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

.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: var(--secondary);
}

/* Services Cards */
.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    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(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    width: 280px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--primary);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

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

.service-price {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

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

/* Features List */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
    background: var(--white);
    padding: 28px;
    border-radius: 6px;
    border-left: 4px solid var(--accent);
}

.feature-item h4 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
}

/* Testimonial */
.testimonial-editorial {
    background: var(--primary);
    padding: 60px;
    border-radius: 8px;
    margin: 60px 0;
}

.testimonial-editorial p {
    font-size: 1.4rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
}

.testimonial-info {
    color: rgba(255,255,255,0.9);
    font-family: 'Helvetica Neue', sans-serif;
}

.testimonial-info strong {
    display: block;
    font-size: 1rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 0;
}

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

.stat-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 8px;
}

/* Form */
.form-section {
    background: linear-gradient(165deg, var(--dark) 0%, var(--primary) 100%);
    padding: 80px 20px;
}

.form-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
}

.form-section .lead {
    color: rgba(255,255,255,0.8);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 40px;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.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 {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 20px 30px;
    color: rgba(255,255,255,0.8);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

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

.footer-col h4 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

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

.sticky-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: var(--dark);
}

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

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

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

.cookie-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

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

/* About Page */
.page-header {
    padding: 80px 20px 60px;
    background: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.page-header .lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
}

.contact-map {
    flex: 1;
    min-height: 300px;
    background: var(--primary);
    border-radius: 8px;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

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

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

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

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

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

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

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

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

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

    .service-image {
        width: 100%;
        height: 180px;
    }

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

    .stats-row {
        gap: 40px;
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-editorial {
        padding: 60px 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .testimonial-editorial {
        padding: 40px 28px;
    }

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

    .sticky-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .features-list {
        flex-direction: column;
    }

    .feature-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.2rem;
    }

    .stats-row {
        gap: 30px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
