:root {
    --primary: #c9a68a;
    --primary-dark: #a8836a;
    --secondary: #2c2c2c;
    --accent: #e8d5c4;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --bg-light: #faf8f6;
    --bg-cream: #f5f0eb;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 25px 0;
}

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

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

.nav-desktop {
    display: flex;
    gap: 35px;
}

.nav-desktop a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-desktop a:hover {
    opacity: 1;
}

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

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

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--secondary);
    padding: 80px 30px;
    transition: right 0.4s ease;
    z-index: 200;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    color: var(--white);
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 150;
}

.overlay.active {
    display: block;
}

/* Hero Editorial */
.hero-editorial {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(44,44,44,0.85) 0%, rgba(44,44,44,0.7) 100%), url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
}

.hero-editorial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-editorial-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-editorial-content h1 strong {
    font-weight: 600;
}

.hero-editorial-content .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

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

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

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

/* Story Section */
.story-section {
    padding: 100px 20px;
}

.story-intro {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.story-text {
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.story-image-wrap {
    margin: 50px -100px;
    position: relative;
}

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

.story-image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 25px;
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 300px;
}

.inline-cta {
    background: var(--bg-cream);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

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

/* Services Cards */
.services-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--secondary);
}

.section-title strong {
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    flex: 1 1 320px;
    max-width: 380px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card-image {
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

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

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

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

/* Quote Section */
.quote-section {
    padding: 100px 20px;
    background: var(--secondary);
    text-align: center;
}

.quote-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    font-style: italic;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.quote-author {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Benefits List */
.benefits-section {
    padding: 80px 20px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

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

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

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 350px;
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.form-section .section-title,
.form-section .section-subtitle {
    color: var(--white);
}

.form-wrapper {
    background: var(--white);
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    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 {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--text);
    transform: translateY(-2px);
}

/* Gallery */
.gallery-section {
    padding: 80px 20px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 280px;
    height: 280px;
    overflow: hidden;
}

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

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

/* CTA Banner */
.cta-banner {
    padding: 60px 20px;
    background: var(--secondary);
    text-align: center;
}

.cta-banner h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 2;
}

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

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    display: none;
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

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

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 25px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    background: var(--bg-light);
}

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

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

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

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

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

/* About Page */
.page-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, rgba(44,44,44,0.9) 0%, rgba(44,44,44,0.8) 100%), url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1920') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 80px 20px;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.content-grid-text {
    flex: 1 1 400px;
}

.content-grid-image {
    flex: 1 1 400px;
}

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

/* Contact Page */
.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-card {
    flex: 1 1 250px;
    background: var(--white);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Policy Pages */
.policy-section {
    padding: 60px 20px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--secondary);
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 10px;
}

/* Services Page */
.services-full-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-full-item {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

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

.service-full-image {
    flex: 1 1 400px;
}

.service-full-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-full-content {
    flex: 1 1 400px;
}

.service-full-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

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

.service-full-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Header Dark */
.header-dark {
    position: relative;
    background: var(--secondary);
}

.header-dark .logo,
.header-dark .nav-desktop a {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

    .story-image-wrap {
        margin: 30px -20px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .footer-grid {
        gap: 30px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-editorial {
        padding: 100px 15px 60px;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

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

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