/* ============================================
   THE AFRA ME — Editorial Lodging Website
   Colors: Emerald Green + Cream
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
  --emerald-900: #064E3B;
  --emerald-800: #065F46;
  --emerald-700: #0B5E3E;
  --emerald-600: #047857;
  --emerald-500: #10B981;
  --cream-50: #FAF8F4;
  --cream-100: #F5F0E8;
  --cream-200: #EDE5D5;
  --cream-300: #E0D5C0;
  --text-dark: #1A1A1A;
  --text-mid: #3D3D3D;
  --text-light: #6B6B6B;
  --text-on-dark: #F5F0E8;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--cream-50);
  color: var(--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 ---------- */
.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;
  }
}

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

/* ---------- SECTION HEADLINE ---------- */
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 94, 62, 0.25);
}

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

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

.btn-outline-dark {
  background: transparent;
  color: var(--emerald-700);
  border: 2px solid var(--emerald-700);
}

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

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

.btn-large {
  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.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 94, 62, 0.08);
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

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

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

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

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

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--emerald-700);
  color: var(--cream-50) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s var(--ease-out) !important;
}

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

.nav-cta:hover {
  background: var(--emerald-800) !important;
  color: var(--cream-50) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 94, 62, 0.2);
}

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

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

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 248, 244, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  display: flex;
}

.nav-overlay .nav-menu {
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.nav-overlay .nav-menu a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.nav-overlay .nav-cta {
  font-size: 1.25rem;
  padding: 14px 32px;
}

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

.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(
    135deg,
    rgba(6, 78, 59, 0.88) 0%,
    rgba(6, 95, 70, 0.75) 50%,
    rgba(4, 120, 87, 0.6) 100%
  );
}

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

@media (min-width: 768px) {
  .hero-inner {
    padding: 120px 48px 80px;
    grid-template-columns: 1.1fr 0.7fr;
    gap: 64px;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 140px 64px 100px;
    gap: 80px;
  }
}

.hero-content {
  color: var(--cream-50);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--cream-50);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
  max-width: 520px;
  margin-bottom: 36px;
}

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

/* Hero card */
.hero-card {
  background: var(--cream-50);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: translateY(24px);
  opacity: 0;
  animation: heroCardIn 0.8s var(--ease-out) 0.3s forwards;
}

@keyframes heroCardIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-card-img {
  height: 260px;
  overflow: hidden;
}

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

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

.hero-card-text {
  padding: 24px 28px 28px;
}

.hero-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 8px;
  display: block;
}

.hero-card-text p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-dark);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245, 240, 232, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background: var(--cream-50);
}

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

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

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

.about-image-col {
  position: relative;
}

.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--emerald-700);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.15;
}

@media (min-width: 768px) {
  .about-img-wrap img {
    height: 600px;
  }
}

.about-text-col p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 16px;
}

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

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

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

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

/* ---------- STAY / FEATURES ---------- */
.stay {
  padding: 100px 0;
  background: var(--cream-100);
}

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

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

.stay-header .section-headline {
  margin-bottom: 16px;
}

.stay-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
}

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

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

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

.stay-card {
  background: var(--cream-50);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(11, 94, 62, 0.1);
}

.stay-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(11, 94, 62, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}

.stay-card:hover .stay-card-icon {
  background: var(--emerald-700);
  color: var(--cream-50);
}

.stay-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.stay-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ---------- IMAGE BREAK ---------- */
.image-break {
  padding: 0;
  overflow: hidden;
}

.image-break-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .image-break-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}

.image-break-item {
  overflow: hidden;
  height: 360px;
}

@media (min-width: 768px) {
  .image-break-item {
    height: 500px;
  }
}

.image-break-item--tall {
  height: 560px;
}

@media (min-width: 768px) {
  .image-break-item--tall {
    height: 640px;
  }
}

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

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

/* ---------- LOCATION ---------- */
.location {
  padding: 100px 0;
  background: var(--cream-50);
}

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

.location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

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

.location-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.location-address {
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding: 24px;
  background: var(--cream-100);
  border-radius: 12px;
  border-left: 4px solid var(--emerald-700);
}

.location-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--emerald-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-200);
  transition: all 0.2s;
}

.location-contact:hover {
  color: var(--emerald-600);
  padding-left: 8px;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  height: 100%;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

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

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

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

.cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-eyebrow {
  color: rgba(245, 240, 232, 0.6) !important;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream-50);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  max-width: 520px;
  margin: 0 auto 36px;
}

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

/* ---------- CONTACT ---------- */
.contact {
  padding: 100px 0;
  background: var(--cream-100);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

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

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
}

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

.contact-detail-value a {
  color: var(--text-dark);
  transition: color 0.2s;
}

.contact-detail-value a:hover {
  color: var(--emerald-700);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream-50);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream-100);
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--emerald-600);
  background: var(--cream-50);
  box-shadow: 0 0 0 4px rgba(11, 94, 62, 0.08);
}

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

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

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(11, 94, 62, 0.08);
  border-radius: 8px;
  color: var(--emerald-800);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--emerald-700);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--emerald-900);
  color: var(--cream-100);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    padding-bottom: 56px;
  }
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream-50);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.footer-logo:hover {
  color: var(--cream-200);
}

.footer-logo-icon {
  color: var(--emerald-500);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.5);
  max-width: 240px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.2s;
}

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

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

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ---------- SCROLL REVEAL (below-fold only) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }

  .reveal.revealed {
    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; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
