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

:root {
    --primary: #1a2634;
    --secondary: #c9a962;
    --accent: #3d5a73;
    --light: #f8f6f2;
    --dark: #0f1419;
    --text: #2c3e50;
    --muted: #6b7c8a;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 38, 52, 0.97);
    backdrop-filter: blur(8px);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.editorial-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.editorial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,169,98,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-title strong {
    font-weight: 700;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.editorial-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.wide-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-label {
    color: var(--secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-text {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    margin: 3rem -2rem;
    border-radius: 0;
}

.highlight-box .section-title {
    color: var(--white);
}

.highlight-box .section-text {
    color: rgba(255,255,255,0.8);
}

.inline-image {
    margin: 3rem -4rem;
    position: relative;
}

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

.inline-image-caption {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.75rem;
    font-style: italic;
}

.quote-block {
    border-left: 4px solid var(--secondary);
    padding: 2rem 0 2rem 2rem;
    margin: 3rem 0;
    background: rgba(201,169,98,0.05);
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--muted);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

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

.service-name {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.alternating-section {
    background: var(--white);
    padding: 5rem 0;
}

.alternating-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.alternating-inner.reverse {
    flex-direction: row-reverse;
}

.alternating-content {
    flex: 1;
}

.alternating-image {
    flex: 1;
}

.alternating-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.stats-section {
    background: var(--primary);
    padding: 4rem 2rem;
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

.testimonials-section {
    background: var(--light);
    padding: 5rem 2rem;
}

.testimonials-grid {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--muted);
}

.contact-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1.5;
}

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

.contact-label {
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

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

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

.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #d4b76a 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-banner .section-title {
    color: var(--primary);
}

.cta-banner .section-text {
    color: var(--primary);
    opacity: 0.8;
}

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

.cta-banner .btn-primary:hover {
    background: var(--dark);
}

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn-primary {
    box-shadow: 0 4px 20px rgba(201,169,98,0.4);
}

.page-header {
    background: var(--primary);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

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

.page-header p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-page h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.content-page h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

.content-page p {
    margin-bottom: 1rem;
    color: var(--text);
}

.content-page ul {
    margin: 1rem 0 1rem 2rem;
}

.content-page ul li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.thanks-content {
    background: var(--white);
    padding: 4rem;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

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

.thanks-content h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.about-story {
    background: var(--white);
}

.team-section {
    background: var(--light);
    padding: 5rem 2rem;
}

.team-grid {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-card {
    flex: 0 0 280px;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.team-name {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--muted);
}

.process-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.process-steps {
    max-width: 800px;
    margin: 3rem auto 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--secondary);
    opacity: 0.3;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--muted);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
    }

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

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hamburger {
        display: flex;
    }

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

    .alternating-inner.reverse {
        flex-direction: column;
    }

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

    .inline-image {
        margin: 2rem -1rem;
    }

    .highlight-box {
        margin: 2rem -1rem;
        padding: 2rem 1.5rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .stats-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
}
