/* ============================================
   STARBUCKS ANNAPOLIS — Editorial Style
   Forest Green + Off-White
   ============================================ */

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

:root {
    --green-900: #0B3D2E;
    --green-800: #0F5138;
    --green-700: #1A6B4A;
    --green-600: #22845A;
    --green-500: #2DA572;
    --green-100: #D1F5E6;
    --green-50: #EAF7F0;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --warm-white: #FFFDF9;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --text-inverse: #F5F5F0;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    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 {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* --- Layout --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-800);
    color: var(--text-inverse);
    border: 1.5px solid var(--green-800);
}

.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 61, 46, 0.25);
}

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

.btn-outline:hover {
    background: var(--green-800);
    color: var(--text-inverse);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

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

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

.nav-logo-icon {
    width: 36px;
    height: 36px;
    color: var(--green-800);
}

.nav.scrolled .nav-logo {
    color: var(--green-800);
}

.nav.scrolled .nav-logo-icon {
    color: var(--green-800);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.01em;
    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(--green-700);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--green-800);
}

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

.nav-cta {
    background: var(--green-800);
    color: var(--text-inverse) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-out) !important;
}

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

.nav-cta:hover {
    background: var(--green-700) !important;
    color: var(--text-inverse) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 61, 46, 0.25);
}

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-800);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--green-50);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 12px 24px;
    transition: color 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.open .mobile-menu-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link:hover {
    color: var(--green-700);
}

.mobile-menu-cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    background: var(--green-800);
    color: var(--text-inverse);
    padding: 14px 40px;
    border-radius: 100px;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
    .nav-links {
        display: flex;
    }
    .mobile-menu {
        display: none;
    }
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--green-50) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-headline em {
    font-style: italic;
    color: var(--green-700);
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-dark);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-800);
}

.hero-stat-label {
    font-size: 0.813rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 32px 64px rgba(11, 61, 46, 0.12);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background: var(--green-800);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.08;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    animation: float 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
    color: var(--green-700);
}

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

@media (min-width: 1024px) {
    .hero {
        padding: 0 64px;
    }
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    .hero-image-wrapper {
        aspect-ratio: auto;
        height: 680px;
    }
}

/* --- Marquee --- */
.marquee {
    background: var(--green-800);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee span {
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-100);
}

.marquee-dot {
    color: var(--green-500) !important;
    font-size: 0.5rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Shared --- */
.section-eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* --- Menu --- */
.menu {
    padding: 120px 0;
    background: var(--warm-white);
}

.menu .container {
    max-width: 1280px;
}

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

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}

.menu-cat {
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 100px;
    color: var(--text-mid);
    border: 1.5px solid var(--cream-dark);
    background: transparent;
    transition: all 0.3s var(--ease-out);
}

.menu-cat:hover,
.menu-cat.active {
    background: var(--green-800);
    color: var(--text-inverse);
    border-color: var(--green-800);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.menu-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    opacity: 1;
    transform: translateY(0);
}

.menu-card.hidden {
    display: none;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(11, 61, 46, 0.1);
}

.menu-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.menu-card-body {
    padding: 28px;
}

.menu-card-title {
    font-size: 1.375rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.menu-card-desc {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.6;
}

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

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

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

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 5/6.5;
    box-shadow: 0 24px 48px rgba(11, 61, 46, 0.1);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -16px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(11, 61, 46, 0.15);
    border: 4px solid var(--cream);
}

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

.about-img-accent {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 80px;
    height: 80px;
    color: var(--green-700);
    opacity: 0.3;
}

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

.about-text {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature svg {
    width: 28px;
    height: 28px;
    color: var(--green-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* --- Community --- */
.community {
    padding: 120px 0;
    background: var(--green-900);
    color: var(--text-inverse);
}

.community .section-eyebrow {
    color: var(--green-500);
}

.community .section-title {
    color: var(--text-inverse);
}

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

.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1280px;
}

.community-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s var(--ease-out);
}

.community-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.community-card-icon {
    width: 56px;
    height: 56px;
    color: var(--green-500);
    margin-bottom: 24px;
}

.community-card-icon svg {
    width: 100%;
    height: 100%;
}

.community-card h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-inverse);
}

.community-card p {
    font-size: 0.938rem;
    color: rgba(245, 245, 240, 0.7);
    line-height: 1.7;
}

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

/* --- Quote --- */
.quote-section {
    padding: 120px 0;
    background: var(--cream);
}

.quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    width: 48px;
    height: 48px;
    color: var(--green-200);
    opacity: 0.4;
    margin: 0 auto 32px;
}

.quote-inner blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.quote-inner cite {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: var(--warm-white);
}

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

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

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

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--green-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-700);
}

.visit-detail-icon svg {
    width: 22px;
    height: 22px;
}

.visit-detail h4 {
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.visit-detail p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--green-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.visit-detail a:hover {
    color: var(--green-500);
}

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

.visit-map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 24px 48px rgba(11, 61, 46, 0.1);
}

.visit-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.visit-map-overlay svg {
    width: 24px;
    height: 24px;
    color: var(--green-700);
    flex-shrink: 0;
}

.visit-map-overlay span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

@media (min-width: 1024px) {
    .visit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* --- Newsletter --- */
.newsletter {
    padding: 120px 0;
    background: var(--green-800);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.newsletter-content {
    color: var(--text-inverse);
}

.newsletter-content .section-eyebrow {
    color: var(--green-500);
}

.newsletter-content .section-title {
    color: var(--text-inverse);
}

.newsletter-desc {
    font-size: 1.063rem;
    color: rgba(245, 245, 240, 0.7);
    line-height: 1.7;
    max-width: 400px;
}

.newsletter-form-wrapper {
    max-width: 480px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 0.938rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: var(--text-inverse);
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(245, 245, 240, 0.4);
}

.form-input:focus {
    border-color: var(--green-500);
    background: rgba(255, 255, 255, 0.12);
}

.form-note {
    font-size: 0.813rem;
    color: rgba(245, 245, 240, 0.4);
    text-align: center;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: var(--green-500);
}

.form-success p {
    font-size: 1.125rem;
    color: var(--text-inverse);
    font-weight: 500;
}

@media (min-width: 768px) {
    .newsletter-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    .newsletter-form-wrapper {
        margin-left: auto;
    }
}

/* --- Footer --- */
.footer {
    background: var(--green-900);
    color: var(--text-inverse);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 64px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-inverse);
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    color: var(--text-inverse);
}

.footer-tagline {
    font-size: 0.938rem;
    color: rgba(245, 245, 240, 0.6);
    margin-bottom: 8px;
}

.footer-phone a {
    font-size: 0.938rem;
    color: var(--green-500);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: var(--green-400);
}

.footer-links h4 {
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.938rem;
    color: rgba(245, 245, 240, 0.6);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(245, 245, 240, 0.35);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }
