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

:root {
    --charcoal: #2C2C2C;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #E86A5B;
    --coral-light: #F08578;
    --coral-dark: #D45547;
    --cream: #FAF8F6;
    --cream-dark: #F0EDE8;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A8A;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --nav-height: 72px;
}

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

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.0);
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav__logo-icon {
    color: var(--coral);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--white);
}

.nav__cta {
    background: var(--coral);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

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

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}
.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.88) 0%,
        rgba(44, 44, 44, 0.72) 50%,
        rgba(26, 26, 26, 0.60) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 800px;
}

.hero__headline-line {
    display: block;
}

.hero__headline-accent {
    color: var(--coral);
    font-style: italic;
}

.hero__subheadline {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

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

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 106, 91, 0.35);
}

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

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn--full {
    width: 100%;
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Section eybrow */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

/* Section heading */
.section-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-heading--large {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
}

.section-heading--light {
    color: var(--white);
}

/* Intro */
.intro {
    padding: 120px 0;
}

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

.intro__text .section-heading {
    margin-bottom: 28px;
}

.intro__body {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro__image {
    position: relative;
}

.intro__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.intro__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: 4px;
    z-index: -1;
}

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

.services__header {
    text-align: center;
    margin-bottom: 64px;
}

.services__header .section-heading {
    max-width: 600px;
    margin: 0 auto 24px;
}

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

.service-card {
    padding: 40px 32px;
    border-radius: 4px;
    background: var(--cream);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--charcoal);
    color: var(--coral);
    margin-bottom: 24px;
}

.service-card__title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Divider section */
.divider-section {
    padding: 120px 0;
    background: var(--charcoal-deep);
}

.divider__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.divider__quote {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin: 32px 0 24px;
    letter-spacing: -0.01em;
}

.divider__attr {
    font-size: 0.9375rem;
    color: var(--coral);
    font-weight: 500;
}

/* Insurance */
.insurance {
    padding: 120px 0;
    background: var(--cream);
}

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

.insurance__body {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.insurance__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.insurance__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

.insurance__list li svg {
    color: var(--coral);
    flex-shrink: 0;
}

.insurance__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* CTA / Contact */
.cta {
    padding: 120px 0;
    background: var(--charcoal-deep);
}

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

.cta__details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cta__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta__detail svg {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.cta__detail-value {
    display: block;
    font-size: 1.0625rem;
    color: var(--white);
    line-height: 1.6;
}

.cta__link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta__link:hover {
    color: var(--coral);
}

/* Form */
.cta__form-wrap {
    background: var(--white);
    border-radius: 8px;
    padding: 48px;
}

.cta__form-title {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #E0DCD8;
    border-radius: 6px;
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--cream);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form__input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 106, 91, 0.12);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__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 1L6 6L11 1' stroke='%238A8A8A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    color: var(--text-primary);
}

.form__success svg {
    color: var(--coral);
    margin-bottom: 16px;
}

.form__success p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--charcoal-deep);
    padding: 80px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__logo svg {
    color: var(--coral);
}

.footer__tagline {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer__contact p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer__link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--coral);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .intro__grid,
    .insurance__grid,
    .cta__inner {
        gap: 48px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav__links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav__links.open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav__link {
        font-size: 1.25rem;
        color: var(--white);
    }
    
    .nav__cta {
        font-size: 1rem;
        padding: 14px 32px;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__headline {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .intro {
        padding: 80px 0;
    }
    
    .intro__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .intro__image {
        order: -1;
    }
    
    .intro__image img {
        height: 320px;
    }
    
    .intro__image-accent {
        display: none;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 32px 28px;
    }
    
    .divider-section {
        padding: 80px 0;
    }
    
    .insurance {
        padding: 80px 0;
    }
    
    .insurance__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .insurance__list {
        grid-template-columns: 1fr;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cta__form-wrap {
        padding: 32px 24px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__scroll {
        display: none;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
