/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
    --terracotta-50: #FFF8F5;
    --terracotta-100: #FDE8E0;
    --terracotta-200: #F9C4B2;
    --terracotta-300: #F49E80;
    --terracotta-400: #EC7550;
    --terracotta-500: #D45A32;
    --terracotta-600: #C24520;
    --terracotta-700: #A1361A;
    --terracotta-800: #832C17;
    --terracotta-900: #6B2514;
    
    --sand-50: #FDFBF7;
    --sand-100: #FAF5EC;
    --sand-200: #F5EADC;
    --sand-300: #EDD9BE;
    --sand-400: #E0C49A;
    --sand-500: #CDB07A;
    --sand-600: #B8975E;
    --sand-700: #96774A;
    --sand-800: #7A603D;
    --sand-900: #654F34;
    
    --warm-950: #1A120B;
    --warm-900: #2A1F14;
    --warm-800: #3D2E20;
    --warm-700: #524030;
    --warm-600: #6B5340;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================
   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.6;
    color: var(--warm-900);
    background-color: var(--sand-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(205, 176, 122, 0.15);
    transition: box-shadow 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    box-shadow: 0 4px 40px rgba(42, 31, 20, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--warm-900);
    letter-spacing: -0.02em;
}

.nav-logo-icon {
    color: var(--terracotta-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--warm-700);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta-500);
    transition: width 0.3s var(--ease-out-expo);
}

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

.nav-links a::after {
    width: 100%;
}

.nav-cta {
    background: var(--warm-900);
    color: var(--sand-100) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.nav-cta:hover {
    background: var(--terracotta-600);
    color: white !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--warm-900);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: var(--sand-200);
}

/* Mobile menu */
.nav-links.open {
    display: flex;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
        border-bottom: 1px solid transparent;
    }
    
    .nav-links.open {
        max-height: 400px;
        padding: 24px 0;
        border-bottom: 1px solid rgba(205, 176, 122, 0.2);
    }
    
    .nav-links a {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .nav-cta {
        margin-top: 8px;
    }
}

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(194, 69, 32, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(205, 176, 122, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(212, 90, 50, 0.3) 0%, transparent 60%),
        linear-gradient(160deg, #1A120B 0%, #2A1F14 30%, #3D2218 60%, #1A120B 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23CDB07A' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand-400);
    margin-bottom: 28px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--sand-50);
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta-300);
    font-weight: 600;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: rgba(253, 251, 247, 0.7);
    max-width: 580px;
    margin: 0 auto 44px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(253, 251, 247, 0.5);
    font-size: 0.8125rem;
    font-weight: 400;
}

.trust-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sand-300);
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(205, 176, 122, 0.25);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 251, 247, 0.35);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease-out-expo);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta-500);
    color: white;
    border: 2px solid var(--terracotta-500);
}

.btn-primary:hover {
    background: var(--terracotta-600);
    border-color: var(--terracotta-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(194, 69, 32, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--sand-200);
    border: 1.5px solid rgba(253, 251, 247, 0.3);
}

.btn-secondary:hover {
    border-color: var(--sand-300);
    color: var(--sand-100);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--warm-900);
    color: var(--sand-100);
    border: 2px solid var(--warm-900);
}

.btn-dark:hover {
    background: var(--terracotta-600);
    border-color: var(--terracotta-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(194, 69, 32, 0.3);
}

.btn-outline-dark {
    background: transparent;
    color: var(--warm-900);
    border: 2px solid var(--warm-800);
}

.btn-outline-dark:hover {
    background: var(--warm-900);
    color: var(--sand-100);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.9375rem;
}

/* ========================================
   Section Shared
   ======================================== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--warm-900);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta-600);
    font-weight: 600;
}

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

.services .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(205, 176, 122, 0.15);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta-400), var(--sand-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(42, 31, 20, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--terracotta-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

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

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--warm-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-600);
}

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

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

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

.about-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    box-shadow: 0 40px 80px rgba(42, 31, 20, 0.15);
}

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-600));
    z-index: -1;
}

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

.about-content .section-eyebrow {
    margin-bottom: 16px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--warm-900);
    margin-bottom: 28px;
}

.about-title em {
    font-style: italic;
    color: var(--terracotta-600);
    font-weight: 600;
}

.about-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--warm-600);
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--warm-800);
}

.value-item svg {
    color: var(--terracotta-500);
    flex-shrink: 0;
}

.about-content .btn {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .about-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ========================================
   Gallery
   ======================================== */
.gallery {
    padding: 120px 0;
    background: var(--sand-50);
}

.gallery .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 11, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: span 2; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .gallery-item:nth-child(1) { grid-column: 1 / -1; grid-row: span 1; aspect-ratio: 16/9; }
    .gallery-item:nth-child(5) { grid-column: 1 / -1; grid-row: span 1; aspect-ratio: 16/9; }
    
    .gallery-overlay {
        opacity: 1;
    }
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 120px 0;
    background: var(--warm-900);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 69, 32, 0.15) 0%, transparent 70%);
}

.testimonials .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.testimonials .section-eyebrow {
    color: var(--sand-400);
}

.testimonials .section-title {
    color: var(--sand-50);
}

.testimonials .section-title em {
    color: var(--terracotta-300);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 176, 122, 0.12);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(205, 176, 122, 0.25);
}

.testimonial-quote {
    color: var(--terracotta-400);
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(253, 251, 247, 0.8);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sand-300);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ========================================
   Visit / Contact
   ======================================== */
.visit {
    padding: 120px 0;
    background: var(--sand-100);
}

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

.visit-info {
    max-width: 480px;
}

.visit-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--warm-900);
    margin-bottom: 40px;
}

.visit-title em {
    font-style: italic;
    color: var(--terracotta-600);
    font-weight: 600;
}

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--terracotta-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    flex-shrink: 0;
}

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

.visit-detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--warm-900);
}

.visit-detail-value a {
    color: var(--warm-900);
    transition: color 0.2s ease;
}

.visit-detail-value a:hover {
    color: var(--terracotta-600);
}

.visit-hours {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 36px;
    border: 1px solid rgba(205, 176, 122, 0.15);
}

.visit-hours h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--warm-900);
    margin-bottom: 12px;
}

.visit-hours p {
    font-size: 0.9375rem;
    color: var(--warm-600);
    line-height: 1.7;
}

.visit-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42, 31, 20, 0.12);
    aspect-ratio: 4/3;
    min-height: 400px;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .visit-layout {
        grid-template-columns: 1fr;
    }
    
    .visit-info {
        max-width: 100%;
    }
    
    .visit-map {
        aspect-ratio: 16/9;
        min-height: 280px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--warm-950);
    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(205, 176, 122, 0.1);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(253, 251, 247, 0.5);
    margin-top: 16px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sand-100);
    letter-spacing: -0.02em;
}

.footer-logo-icon {
    color: var(--terracotta-400);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sand-200);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(253, 251, 247, 0.5);
    transition: color 0.2s ease;
}

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

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(253, 251, 247, 0.5);
}

.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(253, 251, 247, 0.5);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--terracotta-300);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(253, 251, 247, 0.3);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

/* ========================================
   Scroll Reveal (progressive enhancement)
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    }
    
    .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; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
}

/* Reduced motion: ensure everything is visible */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-scroll {
        animation: none;
    }
}
