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

:root {
    --charcoal: #374151;
    --charcoal-deep: #1f2937;
    --charcoal-light: #6b7280;
    --charcoal-pale: #f3f4f6;
    --coral: #F97066;
    --coral-dark: #e8554a;
    --coral-light: #fef0ee;
    --white: #ffffff;
    --off-white: #fafafa;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Lora', Georgia, serif;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(55, 65, 81, 0.06);
    --shadow-md: 0 4px 20px rgba(55, 65, 81, 0.08);
    --shadow-lg: 0 12px 40px rgba(55, 65, 81, 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(--charcoal);
    background: var(--white);
    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 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal-deep);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--charcoal-deep);
}

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 112, 102, 0.3);
}

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

.btn-full {
    width: 100%;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(55, 65, 81, 0.06);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    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-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--charcoal-deep);
}
.logo svg {
    color: var(--coral);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.main-nav a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--charcoal-light);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}
.main-nav a:hover {
    color: var(--charcoal-deep);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 32px;
    height: 32px;
    position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
    position: absolute;
    left: 6px;
}
.hamburger { top: 14px; }
.hamburger::before { content: ''; top: -6px; }
.hamburger::after { content: ''; 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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 120px;
    background: var(--white);
    position: relative;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--charcoal-deep);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(55, 65, 81, 0.15);
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal-deep);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
    line-height: 1.5;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Services ─── */
.services {
    padding: 100px 0 112px;
    background: var(--charcoal);
}
.services .section-title {
    color: var(--white);
}
.services .section-sub {
    color: rgba(255, 255, 255, 0.55);
}
.services .section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
}
.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(249, 112, 102, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--coral);
    margin-bottom: 24px;
}
.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.35;
}
.service-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ─── About ─── */
.about {
    padding: 112px 0;
    background: var(--white);
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    margin: 36px 0 40px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.value-line {
    width: 32px;
    height: 1px;
    background: var(--coral);
    flex-shrink: 0;
}
.value-label {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--charcoal);
}

/* ─── Approach ─── */
.approach {
    padding: 112px 0;
    background: var(--charcoal-pale);
}
.approach-header {
    text-align: center;
    margin-bottom: 72px;
}
.approach-header .section-title {
    margin-bottom: 0;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: rgba(55, 65, 81, 0.15);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}
.step h3 {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--charcoal-deep);
    margin-bottom: 12px;
}
.step p {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}
.step a {
    color: var(--coral);
    border-bottom: 1px solid rgba(249, 112, 102, 0.3);
    transition: border-color var(--transition);
}
.step a:hover {
    border-color: var(--coral);
}

/* ─── Insurance ─── */
.insurance {
    padding: 112px 0;
    background: var(--white);
}
.insurance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.insurance-text {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.insurance-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}
.insurance-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    color: var(--charcoal);
}
.insurance-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
}

.insurance-note {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}
.insurance-note a {
    color: var(--coral);
    border-bottom: 1px solid rgba(249, 112, 102, 0.3);
    transition: border-color var(--transition);
}
.insurance-note a:hover {
    border-color: var(--coral);
}

.insurance-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.insurance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Contact ─── */
.contact {
    padding: 112px 0;
    background: var(--charcoal);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact .section-title {
    color: var(--white);
}
.contact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 28px;
    list-style: none;
}
.contact-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: start;
}
.contact-item dt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral);
}
.contact-item dd {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    grid-column: 2 / -1;
    margin-left: 0;
}
.contact-item dd a {
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition);
}
.contact-item dd a:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ─── Contact Form ─── */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--white);
    transition: all var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.08);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F97066' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-group select option {
    background: var(--charcoal);
    color: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 16px;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin: 16px 0 12px;
}
.form-success p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--charcoal-deep);
    padding: 72px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1.8fr;
    gap: 64px;
    padding-bottom: 56px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
}
.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}
.footer-col a:hover {
    color: var(--white);
}
.footer-col address {
    font-style: normal;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}
.footer-col address a {
    transition: color var(--transition);
}
.footer-col address a:hover {
    color: var(--white);
}
.footer-col p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
    max-width: 480px;
    text-align: right;
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 48px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 110;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 100px 32px 40px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 100;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .main-nav a {
        font-size: 1rem;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 99;
    }
    .nav-overlay.active {
        display: block;
    }

    .hero {
        padding: 100px 0 80px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image {
        order: -1;
        max-height: 320px;
    }
    .hero-stats {
        gap: 24px;
    }

    .services {
        padding: 80px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        padding: 28px 24px;
    }

    .about {
        padding: 80px 0;
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image {
        max-height: 360px;
    }
    .about-values {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .approach {
        padding: 80px 0;
    }
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .insurance {
        padding: 80px 0;
    }
    .insurance-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .insurance-image {
        max-height: 280px;
    }

    .contact {
        padding: 80px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-form-wrapper {
        padding: 28px;
    }
    .contact-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .contact-item dd {
        grid-column: 1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
}
