:root {
    --color-primary: #6B4423;
    --color-secondary: #8B7355;
    --color-accent: #C4956A;
    --color-dark: #2C1810;
    --color-light: #F5F0EB;
    --color-cream: #FDF8F3;
    --color-wine: #722F37;
    --color-cave: #4A5568;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', sans-serif;
    --max-width-narrow: 720px;
    --max-width-medium: 960px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-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;
}

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 68, 35, 0.1);
}

.nav-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    letter-spacing: 1px;
}

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

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    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(--color-cream) 0%, var(--color-light) 100%);
    position: relative;
}

.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="1" fill="%236B4423" opacity="0.05"/></svg>');
    background-size: 30px 30px;
}

.hero-content {
    position: relative;
    max-width: var(--max-width-narrow);
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--color-wine);
    color: white;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.editorial-section {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 5rem 2rem;
}

.editorial-section p {
    font-size: 1.15rem;
    color: var(--color-cave);
}

.editorial-section .lead {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-wine);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.section-wide {
    max-width: var(--max-width-medium);
}

.section-full {
    max-width: 100%;
    padding: 5rem 0;
}

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

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

.section-dark p {
    color: var(--color-light);
    opacity: 0.9;
}

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

.section-wine h2,
.section-wine h3 {
    color: white;
}

.section-accent {
    background: var(--color-light);
}

.image-block {
    margin: 3rem 0;
    position: relative;
}

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

.image-caption {
    font-size: 0.9rem;
    color: var(--color-secondary);
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.image-wide {
    margin-left: -15%;
    margin-right: -15%;
    width: 130%;
}

.inline-cta {
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem 0;
    background: var(--color-light);
    border-radius: 8px;
}

.inline-cta h3 {
    margin-bottom: 1rem;
}

.testimonial-block {
    padding: 2.5rem;
    background: white;
    border-left: 4px solid var(--color-wine);
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--color-secondary);
}

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

.service-card {
    flex: 1 1 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    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.12);
}

.service-card h3 {
    color: var(--color-wine);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 1.5rem 0;
}

.service-price span {
    font-size: 1rem;
    color: var(--color-secondary);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-cave);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-wine);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta p {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.sticky-cta .btn {
    padding: 0.8rem 2rem;
}

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

.form-container {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--color-light);
    border-radius: 8px;
    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-wine);
}

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

.form-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.counter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 2rem;
    background: var(--color-dark);
}

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

.counter-number {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    display: block;
}

.counter-label {
    font-size: 1rem;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
}

.split-content {
    flex: 1 1 50%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1 1 50%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.urgency-banner {
    background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-primary) 100%);
    color: white;
    text-align: center;
    padding: 1.5rem 2rem;
}

.urgency-banner p {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

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

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

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

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

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

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

.footer-col a {
    color: var(--color-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: var(--color-light);
}

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

.page-header p {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    color: var(--color-secondary);
}

.page-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    margin-top: 2.5rem;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-wine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
}

.thanks-container h1 {
    margin-bottom: 1rem;
}

.thanks-container p {
    max-width: 500px;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    flex: 1 1 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}

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

.contact-card p {
    margin: 0;
    color: var(--color-cave);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-wine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    fill: none;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.feature-content p {
    margin: 0;
    color: var(--color-cave);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(107, 68, 35, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .image-wide {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .split-content {
        padding: 3rem 2rem;
    }

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

    .counter-section {
        gap: 2rem;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

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

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

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

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

    .hero-title {
        font-size: 1.8rem;
    }

    .editorial-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .editorial-section {
        padding: 3rem 1.5rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-price {
        font-size: 1.6rem;
    }
}
