/* ============================================
   Little Sprouts Learning Center
   Classic & Elegant — Burgundy + Blush
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-burgundy: #781f2d;
    --color-burgundy-dark: #5a1620;
    --color-burgundy-light: #9e2a3d;
    --color-blush: #e8c4b8;
    --color-blush-light: #f5e6d3;
    --color-blush-lighter: #faf3ec;
    --color-cream: #fdf8f4;
    --color-warm-white: #fefcf9;
    --color-text: #2a1f1f;
    --color-text-muted: #6b5555;
    --color-text-light: #8a7070;
    --color-border: #e8d8d0;
    --color-border-light: #f0e4dc;
    --color-gold: #c9a84c;
    --color-gold-light: #d4b86a;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Segoe UI', system-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 3px rgba(120, 31, 45, 0.06);
    --shadow-md: 0 4px 16px rgba(120, 31, 45, 0.08);
    --shadow-lg: 0 8px 32px rgba(120, 31, 45, 0.10);
    --shadow-xl: 0 16px 48px rgba(120, 31, 45, 0.12);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-burgundy);
    color: var(--color-blush-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 700;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-md);
}

.text-blush {
    color: var(--color-blush);
}

.text-light {
    color: var(--color-blush-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-xl);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.lead {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-burgundy);
    color: var(--color-blush-light);
    border: 2px solid var(--color-burgundy);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-blush-light);
    border: 2px solid var(--color-blush);
}

.btn-secondary:hover {
    background-color: var(--color-blush);
    color: var(--color-burgundy-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-burgundy);
    border: 1.5px solid var(--color-burgundy);
}

.btn-outline:hover {
    background-color: var(--color-burgundy);
    color: var(--color-blush-light);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-blush-light);
    border: 1.5px solid rgba(245, 230, 211, 0.5);
}

.btn-ghost:hover {
    background-color: rgba(245, 230, 211, 0.1);
    border-color: var(--color-blush);
    color: var(--color-blush-light);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

.btn-text, .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline-flex; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    color: var(--color-burgundy);
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.logo-light .logo-name { color: var(--color-blush-light); }
.logo-light .logo-tagline { color: rgba(245, 230, 211, 0.7); }
.logo-light:hover .logo-name { color: var(--color-blush); }

/* Navigation */
.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: var(--space-md);
    right: var(--space-md);
    height: 1.5px;
    background-color: var(--color-burgundy);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-burgundy);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background-color: var(--color-burgundy);
    color: var(--color-blush-light) !important;
    border-radius: var(--radius-sm);
    margin-left: var(--space-sm);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background-color: var(--color-burgundy-dark);
    color: var(--color-blush-light) !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
    background-color: var(--color-blush-lighter);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

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

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-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: 50%;
    transform: rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--color-cream);
        padding: var(--space-2xl);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

    .nav-link {
        font-size: 1rem;
        padding: var(--space-md);
        border-bottom: 1px solid var(--color-border-light);
    }

    .nav-link::after { display: none; }

    .nav-cta {
        margin-left: 0;
        text-align: center;
        border-bottom: none;
        border-radius: var(--radius-md);
        margin-top: var(--space-md);
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-burgundy-dark);
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(90, 22, 32, 0.92) 0%,
        rgba(120, 31, 45, 0.85) 50%,
        rgba(90, 22, 32, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: var(--space-4xl) var(--space-xl);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-blush);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    font-weight: 600;
    color: var(--color-blush-light);
    line-height: 1.15;
    margin-bottom: var(--space-xl);
}

.hero-title .text-blush {
    color: var(--color-blush);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245, 230, 211, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(245, 230, 211, 0.75);
    letter-spacing: 0.03em;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(245, 230, 211, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Section Spacing ---------- */
section {
    padding: var(--space-4xl) 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--space-4xl) 0;
    }
}

/* ---------- About ---------- */
.about {
    background-color: var(--color-warm-white);
}

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

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

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

.about-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--color-blush);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    max-width: 560px;
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    background-color: var(--color-border);
    align-self: stretch;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-3xl);
    }
}

/* ---------- Programs ---------- */
.programs {
    background-color: var(--color-cream);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.program-card {
    background-color: var(--color-warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-light);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.program-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.program-card:hover .program-image {
    transform: scale(1.04);
}

.program-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(42, 31, 31, 0.08));
}

.program-card-content {
    padding: var(--space-2xl);
}

.program-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-blush-lighter);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.program-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.program-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.program-features {
    margin-bottom: var(--space-xl);
}

.program-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-text);
    padding: var(--space-xs) 0;
}

.program-features li svg {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Approach ---------- */
.approach {
    background-color: var(--color-warm-white);
}

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

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

.approach-step {
    display: flex;
    gap: var(--space-xl);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blush);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.step-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

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

.approach-quote {
    position: absolute;
    bottom: -24px;
    left: -12px;
    right: -12px;
    background-color: var(--color-burgundy);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.approach-quote svg {
    margin-bottom: var(--space-md);
}

.approach-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-blush-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.approach-quote-attribution {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-blush);
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-3xl);
    }
}

/* ---------- Testimonials ---------- */
.testimonials {
    background-color: var(--color-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.testimonial-card {
    background-color: var(--color-warm-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-burgundy);
}

.author-detail {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(90, 22, 32, 0.93) 0%,
        rgba(120, 31, 45, 0.88) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(245, 230, 211, 0.85);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* ---------- Contact ---------- */
.contact {
    background-color: var(--color-warm-white);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

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

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 400;
}

.contact-link {
    color: var(--color-burgundy);
    font-size: 1rem;
    font-weight: 400;
    transition: color var(--transition-fast);
}

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

.contact-hours {
    background-color: var(--color-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
}

.hours-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    font-size: 0.9rem;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: var(--color-text);
    font-weight: 700;
}

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

/* Contact Form */
.form-card {
    background-color: var(--color-warm-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background-color: var(--color-cream);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-burgundy);
    background-color: var(--color-warm-white);
    box-shadow: 0 0 0 3px rgba(120, 31, 45, 0.1);
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%236b5555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    text-align: center;
    background-color: var(--color-blush-lighter);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.form-success p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
}

.form-success svg {
    color: var(--color-burgundy);
}

.form-group input:invalid:not(:placeholder-shown):invalid {
    border-color: #c0392b;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: var(--space-3xl);
        align-items: start;
    }

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

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--color-burgundy-dark);
    color: var(--color-blush-light);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.65);
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-blush);
    margin-bottom: var(--space-lg);
}

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

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

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

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.6;
}

.footer-phone a,
.footer-email a {
    color: rgba(245, 230, 211, 0.7);
    transition: color var(--transition-fast);
}

.footer-phone a:hover,
.footer-email a:hover {
    color: var(--color-blush-light);
}

.footer-bottom {
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(245, 230, 211, 0.12);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

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

.footer-legal {
    font-size: 0.75rem;
    color: rgba(245, 230, 211, 0.35);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ---------- Scroll Reveal (Progressive Enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

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