@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #2c5545;
    --primary-light: #3d7a5f;
    --secondary: #c9a87c;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --cream: #faf9f6;
    --charcoal: #3d3d3d;
    --muted: #7a7a7a;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

.btn-gold {
    background: var(--secondary);
    color: var(--dark);
}

.btn-gold:hover {
    background: #b8956b;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

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

.nav-main {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-main a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 80px 32px 32px;
    transition: right 0.4s ease;
}

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

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--light);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.visible {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.hero-text {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.hero-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-float-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.hero-float-text strong {
    display: block;
    font-size: 1.4rem;
    color: var(--dark);
}

.hero-float-text span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

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

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-top: 16px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

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

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

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

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

.service-card h3 {
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price .from {
    font-size: 0.85rem;
    color: var(--muted);
}

.service-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Features Section */
.features-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.features-image {
    flex: 1;
    position: relative;
}

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

.features-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    border-radius: 8px;
    z-index: -1;
}

.features-content {
    flex: 1;
}

.features-content h2 {
    margin-bottom: 20px;
}

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

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
}

.features-list .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--primary);
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    padding: 48px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* Testimonials */
.testimonials-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 380px;
    background: var(--white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

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

.testimonial-info strong {
    display: block;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Process Section */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light);
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    padding-bottom: 48px;
}

.process-item:last-child { padding-bottom: 0; }

.process-number {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.process-content h3 {
    margin-bottom: 12px;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-gold {
    position: relative;
    z-index: 1;
}

/* Contact Form */
.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--muted);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--light);
}

.contact-details .icon {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-form-wrap {
    flex: 1;
    background: var(--light);
    padding: 48px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,85,69,0.1);
}

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

.form-submit {
    width: 100%;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links {
    flex: 1 1 180px;
}

.footer-links h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 24px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--secondary);
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

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

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

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

.thanks-content h1 {
    margin-bottom: 16px;
}

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

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

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

/* About Page */
.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.value-card .icon {
    width: 48px;
    height: 48px;
    fill: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--muted);
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-member {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    text-align: center;
}

.team-avatar {
    width: 180px;
    height: 180px;
    background: var(--light);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.team-member h3 {
    margin-bottom: 4px;
}

.team-member span {
    color: var(--muted);
    font-size: 0.95rem;
}

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

.legal-content h2 {
    font-size: 1.6rem;
    margin: 48px 0 20px;
}

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

.legal-content p, .legal-content li {
    color: var(--charcoal);
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 600px;
    }

    .hero-float {
        left: 50%;
        transform: translateX(-50%);
    }

    .features-row,
    .features-row.reverse {
        flex-direction: column;
    }

    .about-intro {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-main,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .section {
        padding: 60px 0;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .process-timeline::before {
        left: 29px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .testimonials-slider {
        gap: 16px;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

    .footer-grid {
        gap: 32px;
    }

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

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

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

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero {
        min-height: 80vh;
    }

    .hero-image-main {
        height: 360px;
    }

    .hero-float {
        display: none;
    }

    .btn-large {
        padding: 14px 28px;
    }

    .contact-form-wrap {
        padding: 28px;
    }
}
