/* ============================================
   Alexandra Jewell, PA-C — Medical Practice Site
   Color Palette: Burgundy (#6B1B2A) + Blush (#F5E6D3)
   Fonts: Playfair Display + Lora
   ============================================ */

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

:root {
    --burgundy: #6B1B2A;
    --burgundy-deep: #4A1220;
    --burgundy-light: #8C2D40;
    --blush: #F5E6D3;
    --blush-light: #FBF5EE;
    --blush-muted: #E8D5C4;
    --cream: #FDF9F5;
    --white: #FFFFFF;
    --text-dark: #1A0A10;
    --text-body: #3D2030;
    --text-muted: #6B4E5E;
    --text-light: #8A6A7A;
    --border: #E8D5C4;
    --shadow-sm: 0 2px 8px rgba(107, 27, 42, 0.06);
    --shadow-md: 0 8px 30px rgba(107, 27, 42, 0.10);
    --shadow-lg: 0 16px 50px rgba(107, 27, 42, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Palatino Linotype', Palatino, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--burgundy-light);
}

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

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

.skip-link:focus {
    top: 16px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 500;
}

em {
    font-style: italic;
    color: var(--burgundy);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-nav {
    background: var(--blush);
    color: var(--burgundy);
    border-color: var(--blush);
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn-nav:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

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

.btn-icon {
    flex-shrink: 0;
}

/* ---------- Section Labels ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.label-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--burgundy);
    flex-shrink: 0;
}

.label-center {
    justify-content: center;
}

.label-center .label-line:first-child {
    display: none;
}

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

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.75;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 249, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    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: 76px;
}

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

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo-credential {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--burgundy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a:not(.btn) {
    color: var(--text-body);
    font-size: 0.9375rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
}

.main-nav a:not(.btn):hover {
    color: var(--burgundy);
    background: rgba(107, 27, 42, 0.06);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 110;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 22px;
    height: 14px;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--burgundy);
    transition: all var(--transition);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translate(-50%, -50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--burgundy-deep);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 18, 32, 0.92) 0%,
        rgba(107, 27, 42, 0.85) 50%,
        rgba(140, 45, 64, 0.75) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--white) 1px, transparent 0);
    background-size: 32px 32px;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 24px;
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--blush);
    opacity: 0.6;
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--white);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: rgba(245, 230, 211, 0.8);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: all var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(6px);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 230, 211, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blush);
    flex-shrink: 0;
}

.stat-card-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.6);
    margin-bottom: 2px;
}

.stat-card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
}

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

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

.about-image-wrap {
    position: relative;
}

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

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--blush-muted);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    padding-top: 20px;
}

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

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 500;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: var(--blush);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

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

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

.service-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
}

.service-card:hover {
    background: var(--white);
    border-color: var(--burgundy);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blush);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 20px;
    transition: all var(--transition);
}

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

.service-title {
    font-size: 1.1875rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

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

/* ---------- Approach ---------- */
.approach {
    padding: 120px 0;
    background: var(--burgundy-deep);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 0);
    background-size: 28px 28px;
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.approach .section-label {
    color: var(--blush);
}

.approach .label-line {
    background: var(--blush);
    opacity: 0.5;
}

.approach .section-title {
    color: var(--white);
    margin-bottom: 28px;
}

.approach .section-title em {
    color: var(--blush);
}

.approach-text {
    font-size: 1.0625rem;
    color: rgba(245, 230, 211, 0.75);
    line-height: 1.85;
    margin-bottom: 20px;
}

.approach-pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 44px;
}

.pillar {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(245, 230, 211, 0.25);
    line-height: 1;
    padding-top: 4px;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 6px;
}

.pillar-desc {
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.7;
}

.approach-image {
    position: relative;
}

.approach-photo {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.approach-image-border {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(245, 230, 211, 0.2);
    border-radius: var(--radius-lg);
    z-index: -1;
}

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

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

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

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

.insurance-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 500;
}

.insurance-check {
    width: 24px;
    height: 24px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.insurance-cta {
    position: sticky;
    top: 120px;
}

.cta-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-card-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.cta-card-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.cta-card-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.cta-hours {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-hours strong {
    color: var(--text-body);
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-intro {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

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

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--blush);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.detail-value {
    display: block;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.detail-link {
    color: var(--burgundy);
    font-size: 1rem;
    font-weight: 500;
}

.detail-link:hover {
    color: var(--burgundy-light);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    width: 100%;
    height: 260px;
    display: block;
}

/* ---------- Form ---------- */
.contact-form-wrap {
    max-width: 100%;
}

.form-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(107, 27, 42, 0.08);
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin: 0 auto 20px;
}

.success-title {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--burgundy-deep);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 0.8125rem;
}

.footer-logo .logo-name {
    color: var(--white);
    font-size: 0.9375rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(245, 230, 211, 0.6);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.7;
}

.footer-link {
    color: var(--blush);
    transition: color var(--transition);
}

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

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

.copyright {
    font-size: 0.8125rem;
    color: rgba(245, 230, 211, 0.4);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(245, 230, 211, 0.3);
    line-height: 1.6;
}

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
    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);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
[data-reveal] ~ [data-reveal] { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }
.service-card:nth-child(5) { transition-delay: 0.32s; }
.service-card:nth-child(6) { transition-delay: 0.40s; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-cards {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .stat-card {
        flex: 1;
        min-width: 200px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image {
        height: 500px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .approach-image {
        order: -1;
        max-width: 500px;
    }
    .approach-photo {
        height: 500px;
    }
    .insurance-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .insurance-cta {
        position: static;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-top > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        border-left: 1px solid var(--border);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 100;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .main-nav a:not(.btn) {
        padding: 14px 16px;
        font-size: 1.0625rem;
        border-radius: var(--radius-sm);
    }
    .btn-nav {
        text-align: center;
        margin-top: 16px;
    }
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    .hero-cards {
        flex-direction: column;
    }
    .stat-card {
        min-width: auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-top > :first-child {
        grid-column: auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-headline {
        font-size: 1.875rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .about-image {
        height: 400px;
    }
    .form-card {
        padding: 28px 20px;
    }
    .cta-card {
        padding: 32px 24px;
    }
}
