/* ===== CSS Custom Properties ===== */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;

    --cream-50: #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fef08a;
    --cream-400: #fde047;
    --cream-500: #facc15;
    --cream-600: #ca8a04;
    --cream-700: #a16207;
    --cream-800: #854d0e;
    --cream-900: #713f12;

    --cream-light: #fefdf8;
    --cream-warm: #faf8f0;
    --cream-medium: #f5f0e1;
    --cream-dark: #e8e0cc;

    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;
    --text-light: #f5f5f0;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream-light);
    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;
}

ul {
    list-style: none;
}

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

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

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

/* ===== Typography ===== */
.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section__title em {
    font-style: italic;
    color: var(--emerald-700);
}

.section__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
}

.section__title--light,
.section__subtitle--light {
    color: var(--text-light);
}

.section__subtitle--light {
    opacity: 0.85;
}

/* ===== Section ===== */
.section {
    padding: 80px 0;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-700);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.3);
}

.btn--primary:hover {
    background: var(--emerald-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 120, 87, 0.35);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn--white {
    background: #ffffff;
    color: var(--emerald-800);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    background: var(--cream-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

.nav.scrolled .nav__logo-text {
    color: var(--text-primary);
}

.nav.scrolled .nav__link {
    color: var(--text-secondary);
}

.nav.scrolled .nav__link:hover {
    color: var(--emerald-700);
}

.nav.scrolled .nav__link--cta {
    background: var(--emerald-700);
    color: #ffffff !important;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--emerald-700);
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    transition: color var(--transition-fast);
}

.nav__menu {
    display: none;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav__link--cta {
    background: var(--emerald-700);
    color: #ffffff !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--emerald-600);
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 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(5px, -5px);
}

@media (min-width: 1024px) {
    .nav__menu {
        display: flex;
    }

    .nav__toggle {
        display: none;
    }
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(2, 44, 34, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

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

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cream-100);
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--emerald-400);
}

.mobile-menu__cta {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald-400);
    padding: 14px 32px;
    border: 1.5px solid var(--emerald-400);
    border-radius: var(--radius-xl);
    margin-top: 8px;
}

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

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

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 44, 34, 0.92) 0%,
        rgba(6, 78, 59, 0.85) 40%,
        rgba(4, 120, 87, 0.7) 100%
    );
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 640px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-300);
    margin-bottom: 20px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero__headline em {
    font-style: italic;
    color: var(--emerald-300);
}

.hero__subheadline {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 520px;
}

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

/* Stat Cards */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-card--1 { grid-column: 1; }
.stat-card--2 { grid-column: 2; }
.stat-card--3 { grid-column: 1; }
.stat-card--4 { grid-column: 2; }

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-300);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero__scroll-hint span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

@media (min-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr auto;
        padding: 0 60px;
        gap: 80px;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 160px);
        gap: 20px;
    }

    .stat-card {
        padding: 28px 24px;
    }

    .stat-card__number {
        font-size: 2.2rem;
    }
}

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

    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Products Section ===== */
.products {
    background: var(--cream-light);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__header .section__subtitle {
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-700);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-xl);
}

.product-card__body {
    padding: 24px;
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.product-card__desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.product-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--emerald-700);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-fast);
}

.product-card__link:hover {
    gap: 8px;
}

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

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

/* ===== Why Us Section ===== */
.why-us {
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
}

.why-us__layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.why-us__text {
    max-width: 440px;
}

.why-us__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(4px);
}

.feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-800);
    border-radius: var(--radius-sm);
    color: var(--emerald-300);
}

.feature__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.feature__desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
}

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

    .why-us__features {
        grid-template-columns: 1fr;
    }
}

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

/* ===== Banner ===== */
.banner {
    background: var(--cream-warm);
    padding: 80px 0;
}

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

.banner__eyebrow {
    color: var(--emerald-600);
}

.banner__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.banner__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 480px;
}

.banner__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

@media (min-width: 768px) {
    .banner__inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* ===== About Section ===== */
.about {
    background: var(--cream-light);
}

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

.about__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
}

.about__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--emerald-700);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: var(--shadow-md);
}

.about__badge-number {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about__badge-year {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.about__content {
    max-width: 520px;
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--cream-dark);
}

.about__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
    margin-bottom: 4px;
}

.about__stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.about__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--cream-dark);
}

@media (min-width: 768px) {
    .about__layout {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 60px;
    }
}

/* ===== Visit Section ===== */
.visit {
    background: var(--cream-warm);
}

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

.visit__info {
    max-width: 480px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 36px 0;
}

.visit__detail {
    display: flex;
    gap: 16px;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-100);
    color: var(--emerald-700);
    border-radius: var(--radius-sm);
}

.visit__detail-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.visit__detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

.visit__detail-value a {
    color: var(--emerald-700);
    transition: color var(--transition-fast);
}

.visit__detail-value a:hover {
    color: var(--emerald-600);
    text-decoration: underline;
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 360px;
    aspect-ratio: 4/3;
}

@media (min-width: 768px) {
    .visit__layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .visit__map {
        min-height: 420px;
        aspect-ratio: auto;
    }
}

/* ===== CTA Section ===== */
.cta {
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.cta__content {
    max-width: 520px;
}

.cta__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 16px;
}

.cta__title em {
    color: var(--emerald-300);
}

.cta__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

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

.cta__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .cta__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--emerald-950);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

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

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--emerald-700);
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer__link-col h4 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer__link-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link-col a,
.footer__link-col li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
    line-height: 1.5;
}

.footer__link-col a:hover {
    color: var(--emerald-400);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer__copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__location {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr 1.5fr;
        padding-bottom: 56px;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Focus Styles ===== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--emerald-500);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===== Selection ===== */
::selection {
    background: var(--emerald-200);
    color: var(--emerald-950);
}
