/* ─────────────────────────────────────────────────────────
   Mission Coffee Stevens Point — Premium Dark Luxury
   Colors: Midnight Blue (#0a1628 / #0f1f38) + Mint (#3ecfa2) + Gold (#c9a84c)
   Fonts: Playfair Display + Inter
───────────────────────────────────────────────────────── */

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

:root {
    --midnight:        #0a1628;
    --midnight-light:  #0f1f38;
    --midnight-mid:    #152238;
    --midnight-soft:   #1a2d4a;
    --gold:            #c9a84c;
    --gold-light:      #dfc06e;
    --gold-dim:        rgba(201, 168, 76, 0.15);
    --mint:            #3ecfa2;
    --mint-dim:        rgba(62, 207, 162, 0.12);
    --white:           #f4f2ed;
    --white-soft:      rgba(244, 242, 237, 0.7);
    --white-dim:       rgba(244, 242, 237, 0.45);
    --text-primary:    #f4f2ed;
    --text-secondary:  rgba(244, 242, 237, 0.7);
    --text-muted:      rgba(244, 242, 237, 0.45);
    --font-display:    'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius:          8px;
    --radius-lg:       14px;
    --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ── Typography ── */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.section-title-center { text-align: center; }
.section-title-left { text-align: left; }
.section-title-light { color: var(--white); }

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 13px 28px;
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--midnight);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(244, 242, 237, 0.3);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(244, 242, 237, 0.35);
}
.btn-outline-light:hover {
    background: rgba(244, 242, 237, 0.08);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(244, 242, 237, 0.12);
}
.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(244, 242, 237, 0.3);
}

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

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
}
.nav-logo-icon { color: var(--gold); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    color: var(--gold) !important;
    font-weight: 500 !important;
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all var(--transition) !important;
}
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--midnight) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle-bar {
    width: 100%;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.82) 45%,
        rgba(10, 22, 40, 0.4) 70%,
        rgba(10, 22, 40, 0.15) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.hero-aside {
    width: 280px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 32px 80px 48px;
    border-right: 1px solid rgba(201, 168, 76, 0.12);
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-aside-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
}
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.hero-features svg { color: var(--mint); flex-shrink: 0; }
.hero-aside-bottom { margin-top: 8px; }

.hero-text {
    flex: 1;
    padding: 0 8% 0 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 680px;
}
.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
}
.hero-sub {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    animation: float 2.4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about {
    padding: 120px 0;
    background: var(--midnight);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 600px;
}
.about-img-main {
    width: 75%;
    height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--midnight);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 22, 40, 0.88);
    backdrop-filter: blur(8px);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 50px;
}
.about-content { padding: 16px 0; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(244, 242, 237, 0.08);
}
.stat { flex: 1; }
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
.stat-divider {
    width: 1px;
    background: rgba(244, 242, 237, 0.1);
    align-self: stretch;
}

/* ═══════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════ */
.menu {
    padding: 120px 0;
    background: var(--midnight-light);
    position: relative;
    overflow: hidden;
}
.menu-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
                      radial-gradient(ellipse at 80% 20%, rgba(62, 207, 162, 0.04) 0%, transparent 50%);
    pointer-events: none;
}
.menu .container { position: relative; z-index: 1; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(244, 242, 237, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}
.menu-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.menu-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.menu-card:hover .menu-card-icon {
    background: rgba(201, 168, 76, 0.22);
}
.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}
.menu-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.menu-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════ */
.gallery {
    padding: 120px 0;
    background: var(--midnight);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 48px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.3) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--wide { grid-column: span 7; height: 320px; }
.gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) { height: 280px; }
.gallery-item--tall { grid-column: span 5; height: 616px; }

/* ═══════════════════════════════════════════════════════
   CTA / VISIT
═══════════════════════════════════════════════════════ */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.93) 0%,
        rgba(10, 22, 40, 0.88) 100%
    );
}
.cta .container { position: relative; z-index: 1; }
.cta-content { max-width: 800px; margin: 0 auto; text-align: center; }
.cta-content .section-title { margin-bottom: 48px; }
.cta-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
}
.cta-info-item {}
.cta-info-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.cta-info-value {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
.cta-info-value a {
    color: var(--text-secondary);
    transition: color var(--transition);
}
.cta-info-value a:hover { color: var(--gold); }
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact {
    padding: 120px 0;
    background: var(--midnight-light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-content .section-title { margin-bottom: 20px; }
.contact-content > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.contact-details svg { color: var(--mint); flex-shrink: 0; }
.contact-details a {
    color: var(--text-secondary);
    transition: color var(--transition);
}
.contact-details a:hover { color: var(--gold); }

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(244, 242, 237, 0.07);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(244, 242, 237, 0.1);
    border-radius: var(--radius);
    padding: 12px 16px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option { background: var(--midnight); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--mint-dim);
    border: 1px solid rgba(62, 207, 162, 0.2);
    border-radius: var(--radius);
    color: var(--mint);
    font-size: 0.88rem;
    margin-top: 4px;
}
.form-success svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
    padding: 80px 0 0;
    background: var(--midnight);
    border-top: 1px solid rgba(244, 242, 237, 0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul,
.footer-hours ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a,
.footer-contact a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    gap: 16px;
}
.footer-bottom {
    border-top: 1px solid rgba(244, 242, 237, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── Scroll to top ── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--midnight-soft);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.scroll-top:hover {
    background: var(--gold);
    color: var(--midnight);
    transform: translateY(-3px);
}
.scroll-top[hidden] { display: none; }

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-aside { width: 240px; padding: 80px 24px 80px 32px; }
    .about-grid { gap: 48px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .hero-aside { display: none; }
    .hero-text { padding: 0 6%; }
    .hero-headline { font-size: clamp(2.4rem, 8vw, 3.6rem); }
    .about-images { height: 420px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 400px; }
    .gallery-item--wide { grid-column: span 12; height: 260px; }
    .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) { height: 220px; }
    .gallery-item--tall { grid-column: span 12; height: 320px; }
    .cta-info-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .cta-content .section-title { text-align: center; }
    .cta-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-content { text-align: center; }
    .contact-details { align-items: center; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform var(--transition);
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .menu-grid { grid-template-columns: 1fr; }
    .about-images { height: 340px; }
    .about-img-main { width: 80%; height: 340px; }
    .about-img-float { width: 60%; height: 220px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-text { padding: 0 5%; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-stats { flex-direction: column; gap: 20px; }
    .stat-divider { display: none; }
    .contact-form-wrap { padding: 24px; }
    .cta-info-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
}

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