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

:root {
  --forest: #1a3c2a;
  --forest-deep: #0f2419;
  --forest-mid: #244d35;
  --forest-light: #2d5f42;
  --cream: #f5f0e8;
  --cream-light: #faf6f0;
  --cream-dark: #e8e0d0;
  --warm: #c8a87c;
  --warm-light: #d4b896;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #6b6b6b;
  --text-on-dark: #f5f0e8;
  --text-on-dark-muted: #b8b0a0;
  --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);
  color: var(--text-dark);
  background: var(--cream);
  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;
}

ul {
  list-style: none;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 20px 0;
}

.nav.scrolled {
  background: rgba(26, 60, 42, 0.97);
  box-shadow: 0 2px 40px rgba(0,0,0,0.15);
  padding: 14px 0;
  backdrop-filter: blur(12px);
}

.nav-inner {
  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;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  opacity: 0.85;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link:hover {
  color: var(--text-on-dark);
}

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

.nav-cta {
  background: var(--warm);
  color: var(--forest-deep) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease;
}

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

.nav-cta:hover {
  background: var(--warm-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--forest-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-on-dark);
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
  opacity: 1;
}

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

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

.mobile-link:hover {
  color: var(--warm);
}

.mobile-cta {
  font-family: var(--font-sans);
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--forest-deep) !important;
  background: var(--warm);
  padding: 14px 32px;
  border-radius: 100px;
  margin-top: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 36, 25, 0.72) 0%,
    rgba(15, 36, 25, 0.55) 40%,
    rgba(15, 36, 25, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-on-dark);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  max-width: 800px;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-on-dark-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--warm);
  color: var(--forest-deep);
  border-color: var(--warm);
}

.btn-primary:hover {
  background: var(--warm-light);
  border-color: var(--warm-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 168, 124, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(245, 240, 232, 0.4);
}

.btn-outline:hover {
  border-color: var(--text-on-dark);
  background: rgba(245, 240, 232, 0.08);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--forest-deep);
}

.btn-outline-light:hover {
  background: var(--forest-deep);
  color: var(--text-on-dark);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 44px;
  font-size: 0.95rem;
}

/* ===== HERO SCROLL ===== */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ===== MARQUEE ===== */
.marquee {
  background: var(--forest);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

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

.marquee-item {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  white-space: nowrap;
  padding: 0 8px;
  letter-spacing: 0.02em;
}

.marquee-dot {
  color: var(--warm);
  white-space: nowrap;
  padding: 0 16px;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ===== SECTION STYLES ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--forest-deep);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--forest-light);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== MENU ===== */
.menu {
  padding: 120px 0;
  background: var(--cream);
}

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

.menu-column {
  background: var(--cream-light);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.menu-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 60, 42, 0.1);
}

.menu-column-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-column-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
  flex-shrink: 0;
}

.menu-column-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-deep);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 400;
}

.menu-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.menu-disclaimer {
  text-align: center;
  padding-top: 8px;
}

.menu-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 168, 124, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--warm);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content .section-eyebrow {
  color: var(--warm);
  text-align: left;
}

.about-content .section-title {
  color: var(--text-on-dark);
  text-align: left;
  margin-bottom: 28px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--warm);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--cream-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--large {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item--tall {
  grid-column: span 4;
  grid-row: span 2;
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--cream);
}

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

.visit-info .section-eyebrow {
  text-align: left;
}

.visit-info .section-title {
  text-align: left;
  margin-bottom: 40px;
}

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

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

.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
  flex-shrink: 0;
}

.visit-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.visit-detail-value {
  font-size: 1rem;
  color: var(--forest-deep);
  font-weight: 500;
  line-height: 1.5;
}

.visit-detail-value a {
  color: var(--forest);
  transition: color 0.3s ease;
}

.visit-detail-value a:hover {
  color: var(--warm);
}

.visit-hours {
  background: var(--forest);
  border-radius: 20px;
  padding: 32px 36px;
}

.visit-hours-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 20px;
}

.visit-hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visit-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.visit-hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  font-weight: 400;
}

.hours-time {
  font-size: 0.9rem;
  color: var(--warm);
  font-weight: 600;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 60, 42, 0.15);
  height: 100%;
  min-height: 450px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 168, 124, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  color: var(--warm);
  text-align: center;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-headline em {
  font-style: italic;
  color: var(--warm-light);
}

.cta-text {
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--forest-deep);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

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

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
}

.footer-links-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: color 0.3s ease;
}

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

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact li {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

.footer-contact a {
  color: var(--text-on-dark-muted);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  opacity: 0.6;
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-column:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .about-grid {
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item--large {
    grid-column: span 6;
    grid-row: span 1;
  }

  .gallery-item--tall {
    grid-column: span 3;
    grid-row: span 1;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 120px 24px 100px;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

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

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

  .marquee {
    display: none;
  }

  .menu {
    padding: 80px 0;
  }

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

  .menu-column:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .about {
    padding: 80px 0;
  }

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

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

  .about-content .section-title,
  .about-content .section-eyebrow {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .gallery {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .visit {
    padding: 80px 0;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .visit-info .section-title,
  .visit-info .section-eyebrow {
    text-align: center;
  }

  .cta {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 100px 16px 80px;
  }

  .menu-column {
    padding: 28px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }

  .gallery-item--large,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .visit-hours {
    padding: 24px;
  }

  .visit-hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
