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

: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: #fdf9f0;
  --cream-200: #faf3e0;
  --cream-300: #f5e6c8;
  --cream-400: #edc99a;
  --cream-500: #c49a6c;
  --cream-600: #a07848;
  --cream-700: #7a5a34;

  --gold-500:  #d97706;
  --gold-600:  #b45309;

  --white:     #ffffff;
  --black:     #0a0a0a;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;

  --font-serif: 'Lora', 'Georgia', serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --shadow-sm:  0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 48px rgba(0,0,0,0.16);
}

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

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--cream-50);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--emerald-500);
  display: inline-block;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--emerald-950);
  margin-bottom: var(--space-lg);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(6, 78, 59, 0.3);
}

.btn-primary:hover {
  background: var(--emerald-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 78, 59, 0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: box-shadow 0.3s ease;
}

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

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  height: 64px;
  gap: var(--space-xl);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--emerald-900);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo-icon {
  color: var(--emerald-700);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-left: auto;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s ease;
  position: relative;
}

.nav-menu a:not(.nav-cta):hover {
  color: var(--emerald-700);
}

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--emerald-500);
  transition: width 0.25s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--emerald-800);
  color: var(--white) !important;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem !important;
}

.nav-cta:hover {
  background: var(--emerald-700);
}

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

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  margin-left: auto;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.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 (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(253, 253, 248, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    font-size: 1rem;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  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;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 44, 34, 0.88) 0%,
    rgba(6, 78, 59, 0.78) 50%,
    rgba(4, 120, 87, 0.65) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px var(--space-lg) var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-3xl);
  align-items: center;
  width: 100%;
}

.hero-card {
  max-width: 640px;
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-300);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--emerald-400);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-xl);
}

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

.hero-accent {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream-300);
  display: block;
  margin-top: var(--space-sm);
  opacity: 0.85;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-4px);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

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

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

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

  .btn {
    width: 100%;
  }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--space-5xl) 0;
  background: var(--cream-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6 / 7;
}

.about-content {
  padding: var(--space-xl) 0;
}

.about-content .section-tag {
  margin-bottom: var(--space-md);
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 0.9375rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.about-signature svg {
  color: var(--emerald-600);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image-wrap {
    max-height: 400px;
  }
}

/* ===== OFFERINGS ===== */
.offerings {
  padding: var(--space-5xl) 0;
  background: var(--emerald-900);
}

.offerings .section-tag {
  color: var(--emerald-300);
}

.offerings .section-tag::before {
  background: var(--emerald-400);
}

.offerings .section-headline {
  color: var(--white);
}

.offerings .section-headline em {
  color: var(--emerald-300);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-4xl);
}

.section-header .section-tag {
  justify-content: center;
}

.section-header .section-tag::before {
  display: none;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.offering-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s ease;
}

.offering-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.offering-icon {
  padding: var(--space-xl) var(--space-xl) 0;
  color: var(--emerald-400);
}

.offering-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  padding: var(--space-md) var(--space-xl) var(--space-sm);
}

.offering-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 var(--space-xl) var(--space-lg);
}

.offering-image {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

@media (max-width: 600px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NEIGHBORHOOD ===== */
.neighborhood {
  padding: var(--space-5xl) 0;
  background: var(--cream-100);
}

.neighborhood-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.neighborhood-content .section-tag {
  margin-bottom: var(--space-md);
}

.neighborhood-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

.neighborhood-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.neighborhood-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-weight: 500;
}

.neighborhood-features li svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

.neighborhood-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.nh-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.nh-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.nh-img-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nh-img-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .neighborhood-split {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ===== VISIT / CONTACT ===== */
.visit {
  padding: var(--space-5xl) 0;
  background: var(--cream-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.visit-info .section-tag {
  margin-bottom: var(--space-md);
}

.visit-details {
  margin: var(--space-xl) 0;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.visit-details a {
  color: var(--emerald-700);
  transition: color 0.2s ease;
}

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

.visit-hours {
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--gray-200);
}

.visit-hours-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--emerald-900);
  margin-bottom: var(--space-lg);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 500;
  color: var(--gray-700);
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald-900);
  margin-bottom: var(--space-sm);
}

.form-sub {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--cream-50);
  color: var(--gray-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  color: var(--emerald-700);
}

.form-success svg {
  color: var(--emerald-500);
}

.form-success p {
  font-size: 1.0625rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.8);
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: rgba(6, 78, 59, 0.7);
  backdrop-filter: blur(2px);
  color: var(--white);
}

.map-overlay p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .map-section {
    height: 220px;
  }

  .map-overlay p {
    font-size: 1.125rem;
    padding: 0 var(--space-lg);
    text-align: center;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--emerald-950);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo svg {
  color: var(--emerald-400);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--emerald-300);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

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

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--emerald-300);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

/* No-reduce-motion: content always visible */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
