/* ============================================
   Melissa Feed, Seed & Hardware
   Clean Minimalist Design System
   Deep Navy + Warm Gold Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #111b30;
    --gold: #c8a45a;
    --gold-light: #d4b76e;
    --gold-dark: #b8944a;
    --cream: #faf8f4;
    --cream-dark: #f2efe8;
    --white: #ffffff;
    --text-primary: #1a2744;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border: #e2ddd4;
    --border-light: #efebe3;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 39, 68, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 39, 68, 0.12);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

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

.accent {
    color: var(--gold);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy-dark);
    border: 1.5px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-text {
    color: var(--gold);
    padding: 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-text:hover {
    color: var(--gold-dark);
}

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

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-light .logo-main {
    color: var(--white);
}

.logo-light .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

/* Desktop Navigation */
.nav-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 900px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        font-weight: 400;
        color: var(--text-secondary);
        letter-spacing: 0.02em;
        border-radius: var(--radius-sm);
        transition: all var(--transition);
    }
    
    .nav-link:hover {
        color: var(--navy);
        background-color: rgba(26, 39, 68, 0.04);
    }
    
    .nav-cta {
        margin-left: 0.5rem;
        padding: 0.625rem 1.25rem;
        background-color: var(--gold);
        color: var(--navy-dark);
        font-weight: 500;
        border-radius: var(--radius-sm);
    }
    
    .nav-cta:hover {
        background-color: var(--gold-dark);
        color: var(--navy-dark);
    }
}

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

.nav-toggle:hover {
    background-color: rgba(26, 39, 68, 0.04);
}

.hamburger {
    position: relative;
    width: 18px;
    height: 12px;
    display: block;
}

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

.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: translateY(-50%) rotate(45deg);
}

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

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

/* Mobile Menu */
@media (max-width: 899px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--cream);
        border-bottom: 1px solid var(--border);
        padding: var(--space-md);
        flex-direction: column;
        gap: 0.25rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        color: var(--text-secondary);
        border-radius: var(--radius-sm);
        width: 100%;
    }
    
    .nav-menu a:hover {
        background-color: rgba(26, 39, 68, 0.04);
        color: var(--navy);
    }
    
    .nav-menu .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        background-color: var(--gold);
        color: var(--navy-dark);
        font-weight: 500;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background-color: var(--navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 164, 90, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 164, 90, 0.05) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 27, 48, 0.95) 0%, rgba(26, 39, 68, 0.85) 50%, rgba(26, 39, 68, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-xl);
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        align-items: center;
    }
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.8s 0.15s ease forwards;
}

.hero-title .accent {
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeUp 0.8s 0.45s ease forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s ease forwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
    opacity: 0;
    animation: fadeIn 1s 0.5s ease forwards;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .hero-image-grid {
        grid-template-columns: 1.2fr 0.8fr;
        grid-template-rows: 1fr 1fr;
        gap: var(--space-sm);
        height: 560px;
    }
    
    .hero-img--large {
        grid-row: 1 / -1;
    }
}

.hero-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img:hover img {
    transform: scale(1.03);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: fadeUp 0.8s 1s ease forwards;
    opacity: 0;
}

.hero-scroll svg {
    animation: bounce 2s infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(4px); }
    60% { transform: translateY(2px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background-color: var(--cream);
}

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

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

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

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-features {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 400;
}

.feature-icon {
    flex-shrink: 0;
    color: var(--gold);
}

.about-image {
    position: relative;
}

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

@media (min-width: 768px) {
    .about-image img {
        height: 600px;
    }
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

@media (max-width: 767px) {
    .about-image-accent {
        display: none;
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

@media (min-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-card {
    group: product;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--cream);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

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

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-img {
    overflow: hidden;
    height: 220px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-info {
    padding: var(--space-md);
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.product-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--space-3xl) 0;
    background-color: var(--navy);
    color: var(--white);
}

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

@media (min-width: 900px) {
    .services-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-2xl);
    }
}

.services-content .section-eyebrow {
    color: var(--gold);
}

.services-content .section-title {
    color: var(--white);
}

.services-intro {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

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

.service-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.service-item:hover {
    border-color: rgba(200, 164, 90, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
}

.service-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    padding-top: 0.25rem;
}

.service-details h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.service-details p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.services-visual {
    position: relative;
}

.services-image-stack {
    position: relative;
}

.services-image-stack img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.services-quote {
    position: absolute;
    bottom: -30px;
    left: -20px;
    right: -20px;
    background-color: var(--gold);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.services-quote svg {
    flex-shrink: 0;
    color: var(--navy-dark);
    margin-top: 0.125rem;
}

.services-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--navy-dark);
    line-height: 1.5;
}

@media (max-width: 767px) {
    .services-quote {
        left: 0;
        right: 0;
        bottom: -20px;
    }
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    padding: var(--space-3xl) 0;
    background-color: var(--cream);
}

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

@media (min-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        align-items: start;
    }
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}

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

.location-icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 0.125rem;
}

.location-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.125rem;
}

.location-value {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.location-value a:hover {
    color: var(--gold);
}

.location-hours {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.location-hours h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.hour-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hour-row span:first-child {
    color: var(--text-primary);
    font-weight: 400;
}

.hour-row span:last-child {
    color: var(--text-secondary);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    border: 1px solid var(--border);
}

.map-frame {
    border-radius: var(--radius-lg);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--white);
}

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

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.contact-content {
    max-width: 480px;
}

.contact-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.contact-form-wrapper {
    background-color: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

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

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

@media (max-width: 599px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    color: var(--text-primary);
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
}

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

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

/* Form Success State */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-sm);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 320px;
}

.form-success svg {
    margin-bottom: 0.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-md);
}

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

@media (min-width: 600px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer-contact address {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

.footer-phone a,
.footer-email a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer-hours {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: var(--space-md);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.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);
}

.reveal.visible {
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    padding: 0.75rem 1rem;
    background-color: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    z-index: 9999;
    transition: top var(--transition);
}

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