/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --charcoal-mid: #3D3D3D;
    --coral: #E8655A;
    --coral-dark: #D15045;
    --coral-light: #F2A098;
    --cream: #FAFAF8;
    --cream-dark: #F0F0EC;
    --gray-100: #F5F5F3;
    --gray-200: #E8E8E4;
    --gray-300: #D4D4D0;
    --gray-400: #A0A09A;
    --gray-500: #6E6E6A;
    --white: #FFFFFF;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    z-index: 1000;
    font-size: 0.875rem;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s var(--ease-smooth);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(26, 26, 26, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--coral);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--cream);
}

.logo--footer .logo-mark {
    width: 24px;
    height: 24px;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 0.25rem;
}

.nav-list a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-500);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}

.nav-list a:hover {
    color: var(--charcoal);
    background: var(--gray-100);
}

.btn--nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1.125rem;
    border-radius: 100px;
    background: var(--coral);
    color: var(--white);
    transition: background 0.2s, transform 0.15s;
}

.btn--nav:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

/* NAV TOGGLE */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-smooth);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn--coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 101, 90, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--gray-300);
}

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

.btn--outline-dark {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-dark:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--cream);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0 6rem;
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
}

.hero-content {
    padding-right: 1rem;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
}

.hero-headline .text-coral {
    color: var(--coral);
    font-style: italic;
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 460px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
}

/* HERO IMAGE */
.hero-image {
    position: relative;
    padding-left: 2rem;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 600/780;
    background: var(--gray-200);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.12;
    z-index: -1;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

/* ===== SERVICES ===== */
.services {
    padding: 7rem 0;
    background: var(--white);
}

.services .container {
    max-width: 1200px;
}

.section-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2.25rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.service-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--coral);
    margin-bottom: 1.5rem;
    transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-icon {
    background: var(--coral);
    color: var(--white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray-500);
}

/* ===== ABOUT ===== */
.about {
    padding: 7rem 0;
    background: var(--cream);
}

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

.about-image {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 560/420;
    background: var(--gray-200);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: 8px;
    overflow: hidden;
    width: 60%;
    aspect-ratio: 320/240;
    background: var(--gray-200);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.12);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.18);
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--coral);
}

.badge-text {
    font-size: 0.8125rem;
    color: var(--gray-300);
    line-height: 1.4;
}

.about-content {
    padding-left: 1rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.about-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    border-top: 1px solid var(--gray-200);
}

.feature-line {
    width: 24px;
    height: 1.5px;
    background: var(--coral);
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--charcoal);
    font-weight: 400;
}

/* ===== WHY US ===== */
.why-us {
    padding: 7rem 0;
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content .section-eyebrow {
    color: var(--coral-light);
}

.why-content .section-title {
    color: var(--white);
}

.why-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-num {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--coral);
    padding-top: 0.125rem;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.why-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray-400);
}

.why-image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 600/700;
    background: var(--charcoal-light);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* ===== SERVICE AREA ===== */
.service-area {
    padding: 6rem 0;
    background: var(--coral);
}

.area-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.area-content .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.area-content .section-title {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.area-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.area-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.area-links .btn--outline-dark:hover {
    background: var(--white);
    color: var(--coral);
}

/* ===== CONTACT ===== */
.contact {
    padding: 7rem 0;
    background: var(--white);
}

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

.contact-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--coral);
    flex-shrink: 0;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    display: block;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 0.9375rem;
    color: var(--charcoal);
    font-weight: 400;
}

.detail-value a {
    color: var(--charcoal);
    transition: color 0.2s;
}

.detail-value a:hover {
    color: var(--coral);
}

/* FORM */
.contact-form-wrap {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    color: var(--charcoal);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 101, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

/* FORM SUCCESS */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232, 101, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
}

.success-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray-400);
    max-width: 300px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9375rem;
    color: var(--gray-300);
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--coral);
}

.footer-contact span {
    font-size: 0.9375rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2rem;
        padding: 3rem 0 4rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-image {
        padding-left: 0;
    }

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

    .about-grid,
    .why-grid,
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -8px 0 32px rgba(26, 26, 26, 0.1);
        z-index: 100;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list a {
        font-size: 1.125rem;
        padding: 0.875rem 1rem;
        width: 100%;
        border-radius: 8px;
    }

    .nav-list a:hover {
        background: var(--gray-100);
    }

    .btn--nav {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 26, 26, 0.3);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero */
    .hero {
        padding-top: 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 3rem 0 4rem;
        min-height: auto;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        padding-left: 0;
    }

    .hero-img-wrapper {
        aspect-ratio: 4/3;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .stat-divider {
        display: none;
    }

    /* Services */
    .services {
        padding: 4rem 0;
    }

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

    .service-card {
        padding: 1.75rem;
    }

    /* About */
    .about {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        padding-left: 0;
        order: 1;
    }

    .about-img-accent {
        right: -0.5rem;
        bottom: -1rem;
    }

    /* Why Us */
    .why-us {
        padding: 4rem 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-image {
        aspect-ratio: 4/3;
        order: -1;
    }

    /* Service Area */
    .service-area {
        padding: 4rem 0;
    }

    .area-links {
        flex-direction: column;
        align-items: center;
    }

    .area-links .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Contact */
    .contact {
        padding: 4rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrap {
        padding: 1.75rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .about-badge {
        top: -1rem;
        right: 0.5rem;
        padding: 1rem 1.25rem;
    }
}
