/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --charcoal: #2D3436;
    --charcoal-light: #636e72;
    --coral: #E07A5F;
    --coral-dark: #c96a52;
    --coral-light: #f4e4df;
    --cream: #FDF6F0;
    --cream-dark: #f5ece6;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(45, 52, 54, 0.06);
    --shadow-md: 0 8px 30px rgba(45, 52, 54, 0.10);
    --shadow-lg: 0 20px 60px rgba(45, 52, 54, 0.12);
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--charcoal); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 1000; font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

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

/* ── Typography ── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    max-width: 560px;
    line-height: 1.7;
}

.highlight { color: var(--coral); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--coral {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(224, 122, 95, 0.35);
}
.btn--coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}
.btn--outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 246, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(45, 52, 54, 0.06);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(253, 246, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
}

.logo-text { letter-spacing: -0.01em; }

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

.main-nav a {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.main-nav a:hover { color: var(--charcoal); background: rgba(45, 52, 54, 0.05); }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-toggle:hover { background: rgba(45, 52, 54, 0.05); }

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px; height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
    padding: 120px 0 80px;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: var(--coral-light);
    color: var(--coral-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-light);
}

.hero-image { position: relative; }

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
}
.hero-img-accent {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 120px; height: 120px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.hero-float-card {
    position: absolute;
    bottom: 40px; left: -40px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.float-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}
.float-card-label {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
    margin-top: 4px;
}

/* ── Services ── */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    background: var(--white);
    border-color: rgba(224, 122, 95, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px; height: 64px;
    background: var(--coral-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--coral); }
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg line { stroke: var(--white); }
.service-card:hover .service-icon svg path[fill] { fill: var(--white); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.service-card p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 52/48;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-experience {
    position: absolute;
    top: -20px; left: -20px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(224, 122, 95, 0.4);
}
.exp-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}
.exp-label {
    font-size: 0.8125rem;
    opacity: 0.9;
    margin-top: 4px;
    line-height: 1.3;
}

.about-content .section-title { margin-bottom: 20px; }
.about-content > p {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(45, 52, 54, 0.08);
    border-bottom: 1px solid rgba(45, 52, 54, 0.08);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
    margin-top: 4px;
}

/* ── Process ── */
.process {
    padding: 100px 0;
    background: var(--charcoal);
    color: var(--white);
}
.process .section-tag { color: var(--coral); }
.process .section-title { color: var(--white); }
.process .section-title .highlight { color: var(--coral); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
}

.process-step {
    position: relative;
    padding: 0 20px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--coral);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.step-content p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 28px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: rgba(224, 122, 95, 0.3);
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -4px; top: -3px;
    width: 0; height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(224, 122, 95, 0.3);
}

/* ── Testimonials ── */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.testimonial-card:hover {
    border-color: rgba(224, 122, 95, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote {
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px; height: 40px;
    background: var(--coral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-avatar svg circle,
.author-avatar svg path { stroke: var(--coral); }
.author-avatar svg circle[fill] { fill: var(--coral); }

.author-info { display: flex; flex-direction: column; }
.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--charcoal);
}
.author-role {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 80px 0;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.cta-content { flex: 1; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 48px; height: 48px;
    background: var(--coral-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--charcoal-light);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
}
.contact-item a:hover { color: var(--coral); }

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--charcoal-light); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-top: 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
}
.form-success.show { display: flex; }

/* ── Footer ── */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; max-width: 280px; }

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--coral); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-float-card { left: -20px; }
    .services-grid { gap: 16px; }
    .process-steps { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(253, 246, 240, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid rgba(45, 52, 54, 0.06);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .main-nav a { padding: 12px 16px; }
    .main-nav .btn { text-align: center; justify-content: center; }

    .hero { padding: 100px 0 60px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-float-card { left: 0; bottom: 20px; }
    .hero-actions { justify-content: flex-start; }

    .services-grid { grid-template-columns: 1fr; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-images { max-width: 480px; }
    .about-img-secondary { right: -16px; bottom: -16px; }
    .about-experience { left: -10px; top: -10px; }
    .about-stats { gap: 24px; }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .step-connector { display: none; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions { justify-content: center; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-wrapper { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .process-steps { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 20px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}
