/* ============================================
   No 1 China — Styles
   Emerald Green + Cream | Bold Editorial
   ============================================ */

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

:root {
    --color-emerald-900: #064e3b;
    --color-emerald-800: #065f46;
    --color-emerald-700: #047857;
    --color-emerald-600: #059669;
    --color-emerald-500: #10b981;
    --color-cream-50: #faf8f4;
    --color-cream-100: #f5f0e8;
    --color-cream-200: #ede6d8;
    --color-cream-300: #e0d5c4;
    --color-text-dark: #1a1a1a;
    --color-text-mid: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-text-muted: #999;
    --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;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

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

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-dark);
}

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

/* --- Section Eyebrow --- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald-700);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 20px;
    color: var(--color-emerald-900);
}

.section-sub {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 520px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-emerald-800);
    color: var(--color-cream-50);
    border: 2px solid var(--color-emerald-800);
}

.btn--primary:hover {
    background: var(--color-emerald-700);
    border-color: var(--color-emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--color-emerald-800);
    border: 2px solid var(--color-emerald-800);
}

.btn--ghost:hover {
    background: var(--color-emerald-800);
    color: var(--color-cream-50);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--color-cream-50);
    color: var(--color-emerald-800);
    border: 2px solid var(--color-cream-50);
}

.btn--light:hover {
    background: var(--color-cream-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-cream-50);
    border: 2px solid rgba(250, 248, 244, 0.5);
}

.btn--outline-light:hover {
    background: var(--color-cream-50);
    color: var(--color-emerald-800);
    border-color: var(--color-cream-50);
    transform: translateY(-2px);
}

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

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 79, 59, 0.08);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--color-emerald-800);
    background: var(--color-emerald-800);
    color: var(--color-cream-50);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-emerald-900);
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-mid);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-emerald-600);
    transition: width 0.3s ease;
}

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

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

.nav-link--cta {
    background: var(--color-emerald-800);
    color: var(--color-cream-50) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

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

.nav-link--cta:hover {
    background: var(--color-emerald-700);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--color-emerald-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream-50);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    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: 2rem;
    font-weight: 700;
    color: var(--color-emerald-900);
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--color-emerald-600);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 16px 32px;
    background: var(--color-emerald-800);
    color: var(--color-cream-50);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: var(--color-cream-50);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(6, 95, 70, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 80%, rgba(6, 79, 59, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Hero Card */
.hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--color-cream-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card-content {
    padding: 64px 56px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-emerald-700);
    margin-bottom: 24px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--color-emerald-600);
    border-radius: 2px;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-emerald-900);
}

.hero-headline em {
    color: var(--color-emerald-600);
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 440px;
}

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

.hero-card-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-cream-50);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(6, 95, 70, 0.08);
    animation: floatCard 4s ease-in-out infinite;
}

.stat-card--2 {
    animation-delay: 0.5s;
}

.stat-card--3 {
    animation-delay: 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-card-icon {
    width: 44px;
    height: 44px;
    background: var(--color-emerald-800);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream-50);
    flex-shrink: 0;
}

.stat-card-body {
    display: flex;
    flex-direction: column;
}

.stat-card-number {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-emerald-900);
    line-height: 1.3;
}

.stat-card-label {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

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

.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

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

.marquee-item {
    color: var(--color-emerald-500);
    font-size: 1rem;
    flex-shrink: 0;
}

.marquee-text {
    color: var(--color-cream-200);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- Menu Section --- */
.menu {
    padding: 120px 0;
    background: var(--color-cream-50);
}

.menu .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.menu .section-sub {
    margin: 0 auto;
}

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

.menu-cat {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--color-text-mid);
    border: 1.5px solid var(--color-cream-300);
    background: transparent;
    transition: all 0.25s ease;
}

.menu-cat:hover {
    border-color: var(--color-emerald-600);
    color: var(--color-emerald-700);
}

.menu-cat.active {
    background: var(--color-emerald-800);
    border-color: var(--color-emerald-800);
    color: var(--color-cream-50);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.menu-item {
    background: var(--color-cream-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(6, 79, 59, 0.06);
}

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

.menu-item-img {
    height: 220px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.08);
}

.menu-item-body {
    padding: 24px;
}

.menu-item-top {
    margin-bottom: 10px;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-emerald-900);
}

.menu-item-desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

.menu-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.menu-cta {
    text-align: center;
}

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

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--color-cream-100);
}

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

.about-accent-card {
    position: absolute;
    top: -20px;
    left: -30px;
    background: var(--color-emerald-800);
    color: var(--color-cream-50);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-accent-card svg {
    color: var(--color-emerald-400);
}

.about-accent-card span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

.about-content {
    padding: 20px 0;
}

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

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

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

.about-value-icon {
    width: 28px;
    height: 28px;
    background: var(--color-emerald-100, rgba(6, 95, 70, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-700);
    flex-shrink: 0;
}

/* --- Visit Section --- */
.visit {
    padding: 120px 0;
    background: var(--color-cream-50);
}

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

.visit-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.visit-detail-icon {
    width: 52px;
    height: 52px;
    background: var(--color-emerald-800);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream-50);
    flex-shrink: 0;
}

.visit-detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit-detail-text strong {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-emerald-700);
}

.visit-detail-text span,
.visit-detail-text a {
    font-size: 1.0625rem;
    color: var(--color-text-dark);
    line-height: 1.6;
}

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

.visit-map {
    margin-top: 40px;
}

.visit-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-cream-100);
    border: 1.5px solid var(--color-emerald-200, rgba(6, 95, 70, 0.15));
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-emerald-800);
    transition: all 0.25s ease;
}

.visit-map-link:hover {
    background: var(--color-emerald-800);
    color: var(--color-cream-50);
    border-color: var(--color-emerald-800);
    transform: translateY(-2px);
}

/* Form */
.visit-form-wrap {
    position: relative;
}

.visit-form-card {
    background: var(--color-cream-100);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(6, 79, 59, 0.08);
    box-shadow: var(--shadow-md);
}

.visit-form-title {
    font-size: 1.75rem;
    color: var(--color-emerald-900);
    margin-bottom: 8px;
}

.visit-form-sub {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-emerald-700);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-cream-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    background: var(--color-cream-50);
    transition: all 0.25s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--color-emerald-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream-50);
    margin: 0 auto 20px;
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-emerald-900);
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- CTA Band --- */
.cta-band {
    background: var(--color-emerald-900);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-band-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--color-cream-50);
    margin-bottom: 12px;
}

.cta-band-sub {
    font-size: 1.0625rem;
    color: rgba(250, 248, 244, 0.7);
    max-width: 480px;
}

.cta-band-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--color-emerald-900);
    color: var(--color-cream-200);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.125rem;
    background: var(--color-emerald-600);
    color: var(--color-cream-50);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-cream-50);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(250, 248, 244, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(250, 248, 244, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-cream-50);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9375rem;
    color: rgba(250, 248, 244, 0.7);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(250, 248, 244, 0.7);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--color-cream-50);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.4);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 32px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 180px;
    }

    .about-img-secondary {
        right: -20px;
        bottom: -20px;
    }

    .about-accent-card {
        left: -16px;
        top: -12px;
    }
}

@media (max-width: 900px) {
    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-card-image {
        min-height: 350px;
        order: -1;
    }

    .hero-card-image img {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .hero-card-content {
        padding: 48px 32px;
    }

    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-images {
        max-width: 500px;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-card-content {
        padding: 36px 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .menu {
        padding: 80px 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 80px 0;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-secondary {
        position: relative;
        width: 100%;
        right: 0;
        bottom: 0;
        margin-top: 16px;
        border: 4px solid var(--color-cream-100);
    }

    .about-img-secondary img {
        height: 200px;
    }

    .about-accent-card {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 24px;
        display: inline-flex;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-form-card {
        padding: 32px 24px;
    }

    .cta-band {
        padding: 60px 0;
    }

    .cta-band-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-band-actions .btn {
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        width: 100%;
    }

    .menu-categories {
        gap: 8px;
    }

    .menu-cat {
        padding: 8px 18px;
        font-size: 0.8125rem;
    }
}
