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

:root {
    --charcoal: #2D2D2D;
    --charcoal-light: #374151;
    --charcoal-dark: #1F2937;
    --coral: #FF6B4A;
    --coral-light: #FF8A70;
    --coral-dark: #E5553A;
    --bg: #FAFAF8;
    --bg-alt: #F3F3F0;
    --white: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --line: #E5E5E0;
    --line-light: #F0F0EC;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.header.scrolled {
    border-bottom-color: var(--line);
    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-body);
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}
.logo-text {
    font-weight: 400;
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav a {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width var(--transition);
}
.nav a:hover {
    color: var(--charcoal);
}
.nav a:hover::after {
    width: 100%;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 74, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--bg);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 0.8125rem;
}
.btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* ─── NAV TOGGLE ─── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 1px;
    background: var(--charcoal);
    box-shadow: 0 -6px 0 var(--charcoal), 0 6px 0 var(--charcoal);
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger {
    box-shadow: 0 -6px 0 var(--charcoal), 0 6px 0 var(--charcoal);
}
.nav-toggle[aria-expanded="true"] .hamburger::before,
.nav-toggle[aria-expanded="true"] .hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--charcoal);
    left: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: -6px;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: -6px;
    transform: rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
}
.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 24px;
}
.hero-title em {
    font-style: italic;
    color: var(--coral);
}
.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 400;
}
.trust-item svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
}
.hero-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.hero-img-wrapper img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.hero-img-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--coral);
    border-radius: var(--radius);
    z-index: 0;
    opacity: 0.4;
}

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    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: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
}
section {
    padding: 100px 0;
}

/* ─── SERVICES ─── */
.services {
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all var(--transition);
    background: var(--bg);
}
.service-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 107, 74, 0.1);
    color: var(--coral);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--coral);
    color: var(--white);
}
.service-title {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.service-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
    background: var(--bg);
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg);
}
.about-img-secondary img {
    width: 280px;
    height: 200px;
    object-fit: cover;
}
.about-content .section-eyebrow {
    text-align: left;
}
.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}
.about-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--coral);
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 400;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--line);
}

/* ─── PROCESS ─── */
.process {
    background: var(--charcoal);
    color: var(--white);
}
.process .section-eyebrow {
    color: var(--coral);
}
.process .section-title {
    color: var(--white);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.step {
    padding: 0 32px;
    position: relative;
    text-align: left;
}
.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--coral);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}
.step-line {
    position: absolute;
    right: 0;
    top: 24px;
    width: calc(100% - 24px);
    height: 1px;
    background: rgba(255,255,255,0.15);
}
.step:last-child .step-line {
    display: none;
}
.step-title {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.step-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ─── CTA BAND ─── */
.cta-band {
    background: var(--coral);
    padding: 64px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}
.cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact {
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-eyebrow {
    text-align: left;
}
.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}
.contact-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 107, 74, 0.1);
    color: var(--coral);
    flex-shrink: 0;
}
.contact-label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.6;
}
.contact-item a:hover {
    color: var(--coral);
}
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--line);
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.form-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    color: var(--coral);
    margin-bottom: 16px;
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--charcoal-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    max-width: 240px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--coral);
}
.footer-contact {
    text-align: right;
    font-size: 0.9375rem;
    line-height: 1.8;
}
.footer-contact a {
    color: var(--coral);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--coral-light);
}
.footer-bottom {
    padding: 20px 0;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    .about-grid {
        gap: 48px;
    }
    .contact-grid {
        gap: 48px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(12px);
        padding: 24px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav ul {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }
    .nav a {
        font-size: 1rem;
    }
    .nav .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
        gap: 40px;
    }
    .hero-image {
        order: -1;
    }
    .hero-img-wrapper img {
        height: 360px;
    }
    .hero-img-accent {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .hero-trust {
        gap: 16px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-secondary {
        right: 0;
        bottom: -24px;
    }
    .about-content .section-eyebrow,
    .about-content .section-title {
        text-align: center;
    }
    .about-content {
        text-align: center;
    }
    .about-text {
        text-align: left;
    }
    .about-stats {
        justify-content: center;
    }
    .about-content .btn {
        display: inline-flex;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-info .section-eyebrow,
    .contact-info .section-title {
        text-align: center;
    }
    .contact-desc {
        text-align: center;
    }
    .contact-details {
        align-items: center;
    }
    .contact-item {
        width: 100%;
    }
    .map-wrapper {
        max-width: 100%;
    }
    .contact-form-wrapper {
        padding: 28px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .footer-contact {
        text-align: center;
    }
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    section {
        padding: 64px 0;
    }
    .service-card {
        padding: 28px;
    }
    .hero-title {
        font-size: 2.25rem;
    }
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
