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

:root {
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --charcoal-muted: #6B6B6B;
    --coral: #C75A3A;
    --coral-light: #D47256;
    --coral-dark: #A8472A;
    --coral-bg: #FDF3F0;
    --bg: #FAFAF8;
    --bg-white: #FFFFFF;
    --bg-warm: #F5F4F1;
    --line: #E2E0DB;
    --line-light: #EDECE8;
    --text: #1A1A1A;
    --text-muted: #7A7A7A;
    --text-light: #9A9A9A;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --max-w: 1200px;
    --radius: 4px;
    --radius-lg: 8px;
}

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

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

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-line {
    height: 2px;
    background: linear-gradient(90deg, var(--charcoal) 0%, var(--coral) 50%, var(--charcoal) 100%);
    flex-shrink: 0;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ── */
.header {
    position: sticky;
    top: 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(--line-light);
}

.nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--coral);
    color: #fff;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.logo-text {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal-muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    margin-left: auto;
}

.hamburger {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--charcoal);
    position: absolute;
    left: 7px;
    top: 11px;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--charcoal);
    transition: all 0.3s;
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -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 {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
}

.btn-coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(199, 90, 58, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--line);
}

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

.btn-full {
    width: 100%;
}

/* ── Hero ── */
.hero {
    padding: 80px 0 100px;
    overflow: hidden;
}

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

.hero-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-muted);
    max-width: 480px;
    margin-bottom: 36px;
}

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

.hero-cred {
    display: flex;
    gap: 24px;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--charcoal-muted);
    font-weight: 400;
}

.hero-image {
    position: relative;
}

.img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 620/780;
    background: var(--bg-warm);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--coral-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

/* ── Divider ── */
.divider {
    padding: 0;
}

.divider-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--line);
}

/* ── Section shared ── */
.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-sub {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal-muted);
    max-width: 560px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header .section-sub {
    max-width: 600px;
}

/* ── Services ── */
.services {
    padding: 100px 0;
}

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

.service-card {
    padding: 36px;
    background: var(--bg-white);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--charcoal-muted);
}

/* ── About ── */
.about {
    padding: 100px 0;
}

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

.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 560/640;
    background: var(--bg-warm);
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-quote {
    margin-top: 24px;
    padding: 24px 28px;
    background: var(--coral-bg);
    border-left: 2px solid var(--coral);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content > p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--charcoal-muted);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--line);
}

/* ── Insurance ── */
.insurance {
    padding: 100px 0;
}

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

.insurance-text .section-title {
    margin-bottom: 20px;
}

.insurance-text > p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--charcoal-muted);
    margin-bottom: 28px;
}

.insurance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.insurance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 400;
}

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

.insurance-note {
    font-size: 14px;
    color: var(--charcoal-muted);
}

.insurance-note a {
    color: var(--coral);
    text-decoration: none;
}

.insurance-note a:hover {
    text-decoration: underline;
}

.insurance-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ins-card {
    padding: 28px 32px;
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
}

.ins-card--accent {
    background: var(--coral);
    border-color: var(--coral);
    color: #fff;
}

.ins-card svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.ins-card--accent svg {
    opacity: 1;
}

.ins-card-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.ins-card--accent .ins-card-label {
    color: rgba(255,255,255,0.7);
}

.ins-card-value {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--charcoal);
}

.ins-card--accent .ins-card-value {
    color: #fff;
}

/* ── Hours ── */
.hours {
    padding: 100px 0;
}

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

.hours-text .section-sub {
    margin-top: 16px;
}

.hours-table {
    width: 100%;
    border-top: 1px solid var(--line);
}

.hours-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 14px;
    align-items: center;
}

.hours-row--header {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-bottom: 12px;
}

.hours-row span:first-child {
    color: var(--charcoal);
    font-weight: 400;
}

.hours-row span:last-child {
    color: var(--charcoal-muted);
}

.hours-row--footer span:last-child {
    color: var(--text-light);
    font-style: italic;
}

.hours-disclaimer {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.hours-disclaimer a {
    color: var(--coral);
    text-decoration: none;
}

.hours-disclaimer a:hover {
    text-decoration: underline;
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
}

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

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-info > .section-sub {
    margin-bottom: 40px;
}

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

.contact-detail {
    display: flex;
    gap: 16px;
}

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

.contact-detail-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--charcoal);
    text-decoration: none;
}

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

.phone-prefix {
    color: var(--coral);
    font-weight: 500;
}

/* ── Form ── */
.contact-form-col {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
}

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

.form-privacy {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    color: var(--charcoal);
}

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

.form-success h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--charcoal-muted);
    line-height: 1.7;
}

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

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

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

.footer-brand .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

.footer-brand .logo-text {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

.footer-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    gap: 16px;
    flex-wrap: wrap;
}

.footer-notice {
    max-width: 400px;
    text-align: right;
    line-height: 1.5;
}

/* ── 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);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .insurance-content,
    .hours-inner,
    .contact-grid {
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--line);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        border-bottom: 1px solid var(--line-light);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 14px;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

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

    .img-accent {
        display: none;
    }

    .hero-cred {
        flex-wrap: wrap;
    }

    .services {
        padding: 64px 0;
    }

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

    .about,
    .insurance,
    .hours,
    .contact {
        padding: 64px 0;
    }

    .about-grid,
    .insurance-content,
    .hours-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-frame {
        aspect-ratio: 4/3;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hours-row {
        grid-template-columns: 120px 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-notice {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 32px;
    }

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .service-card {
        padding: 24px;
    }

    .insurance-visual {
        gap: 12px;
    }

    .ins-card {
        padding: 20px 24px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
