/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
    --plum-50: #faf5f8;
    --plum-100: #f3e8ee;
    --plum-200: #e8cdd8;
    --plum-300: #d4a3b8;
    --plum-400: #c07a98;
    --plum-500: #a85578;
    --plum-600: #8b3f62;
    --plum-700: #6b3a6e;
    --plum-800: #4a2849;
    --plum-900: #2d172b;
    
    --amber-50: #fefce8;
    --amber-100: #fef9c3;
    --amber-200: #fef08a;
    --amber-300: #fde047;
    --amber-400: #facc15;
    --amber-500: #eab308;
    --amber-600: #ca8a04;
    --amber-700: #a16207;
    --amber-800: #854d0e;
    --amber-900: #713f12;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--neutral-800);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--plum-700);
    color: #fff;
    border: 2px solid var(--plum-700);
}

.btn--primary:hover {
    background-color: var(--plum-800);
    border-color: var(--plum-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background-color: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-700);
}

.btn--ghost:hover {
    background-color: var(--plum-700);
    color: #fff;
    transform: translateY(-1px);
}

.btn--outline-light {
    background-color: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-700);
}

.btn--outline-light:hover {
    background-color: var(--plum-700);
    color: #fff;
    transform: translateY(-1px);
}

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

/* ========================================
   Section Header
   ======================================== */
.section-header {
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.section-header__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-700);
    margin-bottom: var(--space-md);
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--neutral-900);
}

.section-header__lead {
    font-size: 1.125rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--neutral-200);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    height: 72px;
    gap: var(--space-xl);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--plum-700);
}

.nav__logo-text {
    display: none;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-left: auto;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plum-700);
    transition: width 0.25s ease;
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--plum-700);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

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

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: var(--space-sm);
}

.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Mobile Menu
   ======================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(45, 23, 43, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    color: #fff;
    padding: var(--space-sm);
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.2s ease;
}

.mobile-menu__link:hover {
    color: var(--amber-400);
}

.mobile-menu__cta {
    margin-top: var(--space-md);
    background: var(--amber-500);
    color: var(--neutral-900);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--plum-50) 0%, #fff 60%);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-3xl) var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-700);
    margin-bottom: var(--space-lg);
}

.hero__headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--neutral-900);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero__subhead {
    font-size: 1.125rem;
    color: var(--neutral-600);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--plum-700);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.hero__image-card {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero__image-card-label {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--plum-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
}

.hero__image-card-text {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--space-4xl) 0;
    background: #fff;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.service-card {
    padding: var(--space-2xl);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    background: #fff;
}

.service-card:hover {
    border-color: var(--plum-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-100);
    border-radius: var(--radius-md);
    color: var(--plum-700);
    margin-bottom: var(--space-lg);
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-900);
}

.service-card__text {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--space-4xl) 0;
    background: var(--plum-50);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__image-stack {
    position: relative;
}

.about__image-main img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__image-secondary {
    position: absolute;
    bottom: -24px;
    right: -12px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid #fff;
}

.about__image-secondary img {
    width: 100%;
    height: auto;
    display: block;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    left: -12px;
    background: var(--plum-700);
    color: #fff;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-700);
    margin-bottom: var(--space-md);
}

.about__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: var(--space-lg);
    color: var(--neutral-900);
}

.about__body {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.about__value {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.about__value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-100);
    border-radius: var(--radius-md);
}

.about__value-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 2px;
}

.about__value-text {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* ========================================
   Patients Section
   ======================================== */
.patients {
    padding: var(--space-4xl) 0;
    background: #fff;
}

.patients__eyebrow-wrap {
    text-align: center;
    margin-bottom: var(--space-md);
}

.patients__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    text-align: center;
    margin-bottom: var(--space-3xl);
    color: var(--neutral-900);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.patients__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.patients__card {
    padding: var(--space-2xl);
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.patients__card:hover {
    border-color: var(--plum-200);
    box-shadow: var(--shadow-md);
}

.patients__card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.patients__card-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--plum-200);
    line-height: 1;
}

.patients__card-title {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.patients__card-text {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--plum-50);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

.contact__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: var(--space-md);
    color: var(--neutral-900);
}

.contact__lead {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact__detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-700);
    border-radius: var(--radius-md);
}

.contact__detail strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact__detail p,
.contact__detail a {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--plum-700);
    text-decoration: underline;
}

/* Contact Form */
.contact__form-col {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    color: var(--neutral-900);
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--neutral-800);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(107, 58, 110, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--neutral-400);
}

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

.contact__form-note {
    margin-top: var(--space-md);
    text-align: center;
}

.contact__form-note p {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    font-style: italic;
}

/* Success Message */
.contact__success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.contact__success-icon {
    margin-bottom: var(--space-lg);
}

.contact__success-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--neutral-900);
}

.contact__success p {
    font-size: 1rem;
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* ========================================
   Location Section
   ======================================== */
.location {
    padding: var(--space-4xl) 0;
    background: #fff;
}

.location__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.location__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: var(--space-md);
    color: var(--neutral-900);
}

.location__lead {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.75;
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
}

.location__map iframe {
    width: 100%;
    height: 100%;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.0625rem;
    color: #fff;
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

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

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__phone {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--amber-400);
}

.footer__phone:hover {
    color: var(--amber-300);
}

.footer__address {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-xl);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   Responsive — Tablet
   ======================================== */
@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .patients__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav__logo-text {
        display: block;
    }
}

/* ========================================
   Responsive — Desktop
   ======================================== */
@media (min-width: 1024px) {
    .nav__toggle {
        display: none;
    }
    
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
    
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
    
    .patients__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
    
    .location__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
    
    .footer__top {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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