/* ========================================
   GRAB & GO — Café & Bar
   Emerald Green + Cream Palette
   ======================================== */

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

:root {
    --emerald-950: #022c22;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;
    --cream-50:   #faf9f6;
    --cream-100:  #f5f3ee;
    --cream-200:  #ebe8e0;
    --cream-300:  #e0dbd0;
    --stone-950:  #0c0e0e;
    --stone-900:  #131617;
    --stone-800:  #1c2022;
    --stone-700:  #2d3336;
    --stone-600:  #4a5257;
    --stone-500:  #6b757a;
    --stone-400:  #9aa5aa;
    --stone-300:  #b8c2c6;
    --stone-200:  #d4dcd0;
    --stone-100:  #eef0ee;
    --white:      #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--cream-50);
    color: var(--stone-800);
    line-height: 1.6;
    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, ol {
    list-style: none;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--emerald-800);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* --- Page Loader --- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--emerald-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cream-100);
    letter-spacing: 0.05em;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) {
    .container { padding: 0 3rem; }
}

/* --- Typography --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: var(--emerald-600);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--stone-900);
    margin-bottom: 1.25rem;
}
.text-emerald {
    color: var(--emerald-700);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.25s var(--ease-smooth);
    white-space: nowrap;
}
.btn-primary {
    background: var(--emerald-800);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 120, 87, 0.3);
}
.btn-emerald {
    background: var(--emerald-700);
    color: var(--white);
}
.btn-emerald:hover {
    background: var(--emerald-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--stone-700);
    border: 1.5px solid var(--cream-300);
}
.btn-ghost:hover {
    border-color: var(--emerald-600);
    color: var(--emerald-700);
    transform: translateY(-2px);
}
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: box-shadow 0.3s var(--ease-smooth);
}
.navbar.scrolled {
    box-shadow: 0 1px 16px rgba(0,0,0,0.07);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.nav-logo-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--emerald-800);
    background: var(--emerald-800);
    color: var(--cream-50);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--stone-900);
}
.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}
@media (min-width: 900px) {
    .nav-links { display: flex; }
}
.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-600);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}
.nav-cta-btn {
    margin-left: 0.5rem;
    background: var(--emerald-800);
    color: var(--white) !important;
    border-radius: 6px;
}
.nav-cta-btn:hover {
    background: var(--emerald-700);
}

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background 0.2s;
}
@media (min-width: 900px) {
    .nav-toggle { display: none; }
}
.nav-toggle:hover { background: var(--cream-200); }
.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; width: 14px; }
.hamburger::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 6px;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span {
    width: 100%;
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 6px;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream-50);
    z-index: 999;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s var(--ease-smooth);
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile-menu a {
    display: block;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--stone-700);
    border-radius: 8px;
    border-bottom: 1px solid var(--cream-200);
    transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}
.mobile-menu a:last-child {
    border-bottom: none;
    background: var(--emerald-800);
    color: var(--white);
    text-align: center;
    margin-top: 0.5rem;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--cream-50);
    padding: 6rem 0 4rem;
    overflow: hidden;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    color: var(--emerald-800);
    pointer-events: none;
    opacity: 0.5;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
    }
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    color: var(--emerald-800);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-badge svg {
    color: var(--emerald-600);
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--stone-950);
    margin-bottom: 1.5rem;
}
.hero-accent {
    color: var(--emerald-700);
    font-style: italic;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--stone-600);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--stone-500);
}
.hero-meta-item svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* Hero Image Stack */
.hero-visual {
    position: relative;
}
.hero-image-stack {
    position: relative;
    height: 520px;
}
.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.hero-img-primary {
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
}
.hero-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-secondary {
    width: 60%;
    height: 45%;
    bottom: 12%;
    left: 0;
    z-index: 2;
}
.hero-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-accent {
    width: 30%;
    height: 20%;
    bottom: 0;
    right: 5%;
    z-index: 3;
    border: 4px solid var(--cream-50);
}
.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-badge {
    position: absolute;
    bottom: 22%;
    right: 2%;
    z-index: 4;
    background: var(--emerald-800);
    color: var(--cream-100);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(6, 79, 59, 0.4);
}
.img-badge-num {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}
.img-badge-city {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 6rem 0;
    background: var(--white);
}
.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s var(--ease-smooth);
}
.service-card:hover {
    border-color: var(--emerald-200);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(4, 120, 87, 0.1);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-800);
    color: var(--cream-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 0.75rem;
}
.service-card > p {
    font-size: 0.9375rem;
    color: var(--stone-600);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--stone-700);
}
.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 6rem 0;
    background: var(--cream-50);
    overflow: hidden;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
    }
}
.about-image-wrap {
    position: relative;
    height: 600px;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 5px solid var(--cream-50);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-stat {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: var(--emerald-800);
    color: var(--cream-100);
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(6, 79, 59, 0.35);
    z-index: 2;
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}
.about-content { max-width: 560px; }
.about-text {
    font-size: 1.0625rem;
    color: var(--stone-600);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--stone-700);
}
.about-feature svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ========================================
   SPACE
   ======================================== */
.space {
    padding: 6rem 0;
    background: var(--white);
}
.space-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.space-sub {
    font-size: 1.0625rem;
    color: var(--stone-500);
    line-height: 1.7;
}
.space-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .space-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .space-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
    }
    .space-img-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .space-img-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
    .space-img-3 { grid-column: 4 / 5; grid-row: 1 / 2; }
    .space-img-4 { grid-column: 1 / 3; grid-row: 2 / 3; }
}
.space-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.space-img-2, .space-img-3 {
    aspect-ratio: 1/1;
}
.space-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.space-img:hover img {
    transform: scale(1.05);
}

/* ========================================
   VISIT
   ======================================== */
.visit {
    padding: 6rem 0;
    background: var(--cream-50);
}
.visit-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 900px) {
    .visit-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.visit-detail {
    display: flex;
    gap: 1rem;
}
.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}
.visit-detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.visit-detail p {
    font-size: 0.9375rem;
    color: var(--stone-600);
    line-height: 1.6;
}
.visit-detail a {
    color: var(--emerald-700);
    transition: color 0.2s;
}
.visit-detail a:hover {
    color: var(--emerald-500);
    text-decoration: underline;
}
.hours-note {
    font-size: 0.8125rem;
    color: var(--stone-400);
}
.visit-map {
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--cream-200);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 6rem 0;
    background: var(--emerald-950);
    color: var(--cream-100);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
    }
}
.contact .section-label {
    color: var(--emerald-400);
}
.contact .section-label::before {
    background: var(--emerald-500);
}
.contact .section-title {
    color: var(--cream-50);
}
.contact-text {
    font-size: 1.0625rem;
    color: var(--stone-400);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}
.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-phone, .contact-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-200);
    transition: color 0.2s;
}
.contact-phone:hover, .contact-email:hover {
    color: var(--emerald-400);
}
.contact-phone svg, .contact-email svg {
    color: var(--emerald-500);
    flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
    background: var(--stone-900);
    border: 1px solid var(--stone-700);
    border-radius: 20px;
    padding: 2rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group-full { flex: 1; }
.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--stone-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--stone-800);
    border: 1.5px solid var(--stone-700);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--cream-100);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--stone-500);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.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 5l3 3 3-3' stroke='%239aa5aa' 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;
    color: var(--stone-400);
}
.form-group select option {
    background: var(--stone-800);
    color: var(--stone-300);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    color: var(--emerald-400);
}
.form-success svg {
    color: var(--emerald-500);
}
.form-success strong {
    font-size: 1.25rem;
    color: var(--cream-100);
}
.form-success p {
    font-size: 0.9375rem;
    color: var(--stone-400);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--stone-950);
    color: var(--stone-400);
    padding: 4rem 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1.5fr;
        gap: 2rem;
    }
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cream-100);
    background: var(--emerald-800);
    color: var(--cream-50);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.footer-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream-200);
}
.footer-tagline {
    font-size: 0.875rem;
    color: var(--stone-500);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    font-size: 0.9375rem;
    color: var(--stone-400);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--emerald-400);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9375rem;
}
.footer-contact a {
    color: var(--stone-400);
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: var(--emerald-400);
}
.footer-bottom {
    border-top: 1px solid var(--stone-800);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--stone-600);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid [data-reveal] { transition-delay: 0.1s; }
.services-grid [data-reveal]:nth-child(2) { transition-delay: 0.2s; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.services-grid [data-reveal]:nth-child(4) { transition-delay: 0.4s; }
.space-grid [data-reveal] { transition-delay: 0.1s; }
.space-grid [data-reveal]:nth-child(2) { transition-delay: 0.2s; }
.space-grid [data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.space-grid [data-reveal]:nth-child(4) { transition-delay: 0.4s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html { scroll-behavior: auto; }
    .loader { display: none; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 639px) {
    .hero { padding: 5rem 0 3rem; }
    .hero-image-stack { height: 420px; }
    .hero-img-badge { display: none; }
    .about-image-wrap { height: 440px; }
    .about-stat { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .visit-map { min-height: 300px; }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .hero-image-stack { height: 480px; }
}
