/* ==========================================================================
   HONGQI MALAYSIA — Informational Site
   Design language: refined editorial luxury
   Palette: obsidian base, champagne accents, Hongqi red for brand moments
   ========================================================================== */

:root {
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --ink-hairline: rgba(255, 255, 255, 0.08);
  --ink-hairline-strong: rgba(255, 255, 255, 0.14);

  --paper: #f4ede0;
  --paper-warm: #ebe1cf;

  --bone: #e8e2d4;
  --bone-muted: #c9c2b4;
  --bone-dim: #8a8376;

  --champagne: #c8a876;
  --champagne-deep: #9d8355;
  --champagne-glow: rgba(200, 168, 118, 0.16);

  --hongqi-red: #b51d24;
  --hongqi-red-deep: #7a1319;

  --text-primary: #ece7da;
  --text-secondary: #a8a193;
  --text-muted: #6f6a5e;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  --maxw: 1400px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "ss01", "kern";
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

::selection {
  background: var(--champagne);
  color: var(--ink);
}

/* ── TYPOGRAPHY PRIMITIVES ───────────────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--champagne);
  display: inline-block;
}

.display-1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-style: normal;
}

.display-2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.display-3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--text-primary);
  max-width: 60ch;
}

.prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 68ch;
}
.prose p + p { margin-top: 1.25rem; }
.prose strong { color: var(--text-primary); font-weight: 500; }

/* ── NAVIGATION ──────────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--ink-hairline);
  transition: all 0.4s var(--ease-out);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hongqi-red);
  clip-path: polygon(0 0, 100% 0, 75% 50%, 100% 100%, 0 100%);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
  transition: all 0.3s var(--ease-out);
}

/* ── HERO (homepage) ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-media::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}

.hero-title {
  max-width: 16ch;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-weight: 300;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--champagne);
}

.hero-sub {
  max-width: 48ch;
  color: var(--text-primary);
  opacity: 0.95;
  margin-bottom: 3rem;
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}

.hero-meta .hero-meta-label,
.hero-meta .hero-meta-value {
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-meta {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-hairline-strong);
  flex-wrap: wrap;
}
.hero-meta-item {
  font-family: var(--sans);
}
.hero-meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  display: block;
}
.hero-meta-value {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-scroll::before {
  content: "";
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--champagne));
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ── SECTIONS ────────────────────────────────────────────────────────── */

.section {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  position: relative;
}
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}
.section-paper .eyebrow { color: var(--champagne-deep); }
.section-paper .eyebrow::before { background: var(--champagne-deep); }
.section-paper .prose { color: #433e31; }
.section-paper .prose strong { color: var(--ink); }

.section-soft {
  background: var(--ink-soft);
}

.section-header {
  max-width: 70ch;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .eyebrow {
  margin-bottom: 1.5rem;
}

/* Two-column feature layout */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature-split.right-heavy {
  grid-template-columns: 5fr 7fr;
}
.feature-split.left-heavy {
  grid-template-columns: 7fr 5fr;
}
.feature-split-media {
  position: relative;
}
.feature-split-media img {
  border-radius: 2px;
}
.feature-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink-hairline);
  pointer-events: none;
}

/* ── MODEL TILES ─────────────────────────────────────────────────────── */

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.model-card {
  background: var(--ink);
  border: 1px solid var(--ink-hairline);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  display: block;
}
.model-card:hover {
  border-color: var(--champagne);
  transform: translateY(-4px);
}

.model-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}
.model-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.model-card:hover .model-card-media img {
  transform: scale(1.04);
}

.model-card-body {
  padding: 2rem 2rem 2.2rem;
}
.model-card-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.model-card-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.model-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.model-card-cta {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.model-card-cta::after {
  content: "→";
  transition: transform 0.4s var(--ease-out);
}
.model-card:hover .model-card-cta::after {
  transform: translateX(6px);
}

/* ── HERITAGE TILES ──────────────────────────────────────────────────── */

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

.heritage-card {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--ink-hairline);
  transition: all 0.5s var(--ease-out);
}
.heritage-card:hover {
  border-color: var(--champagne);
}
.heritage-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.heritage-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  opacity: 0.55;
}
.heritage-card:hover .heritage-card-bg img {
  transform: scale(1.06);
  opacity: 0.75;
}
.heritage-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.95) 85%);
}
.heritage-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.8rem 2rem;
  z-index: 2;
}
.heritage-card-year {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  color: var(--champagne);
  margin-bottom: 0.7rem;
}
.heritage-card-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ── CTA BLOCKS ──────────────────────────────────────────────────────── */

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--champagne);
  transition: all 0.4s var(--ease-out);
}
.cta-link::after {
  content: "→";
  transition: transform 0.4s var(--ease-out);
}
.cta-link:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.cta-link:hover::after {
  transform: translateX(6px);
}

/* ── PULL QUOTE ──────────────────────────────────────────────────────── */

.pullquote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  max-width: 24ch;
  font-style: italic;
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid var(--champagne);
}

/* ── SPEC TABLE ──────────────────────────────────────────────────────── */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-hairline);
  border: 1px solid var(--ink-hairline);
  margin-top: 3rem;
}
.spec-grid > div {
  background: var(--ink-soft);
  padding: 1.8rem 1.5rem;
}
.spec-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.spec-value {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.spec-unit {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 0.2rem;
  font-family: var(--sans);
  letter-spacing: 0.08em;
}

/* ── PAGE HEADER (interior pages) ────────────────────────────────────── */

.page-hero {
  position: relative;
  min-height: 70vh;
  min-height: 70svh;
  display: flex;
  align-items: flex-end;
  padding: 10rem var(--gutter) 4rem;
  overflow: hidden;
  background: var(--ink);
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.05) 40%, rgba(10,10,10,0.55) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.2) 30%, rgba(10,10,10,0) 60%);
}
.page-hero-content .breadcrumb,
.page-hero-content .eyebrow,
.page-hero-content .page-hero-title,
.page-hero-content .page-hero-sub {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.page-hero-title {
  max-width: 20ch;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 300;
}
.page-hero-sub {
  max-width: 52ch;
  color: var(--text-primary);
  opacity: 0.85;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--champagne); }
.breadcrumb span { margin: 0 0.7rem; color: var(--text-muted); }

/* ── COMING SOON BLOCK ───────────────────────────────────────────────── */

.coming-soon {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem var(--gutter) 6rem;
  background:
    radial-gradient(ellipse at center, rgba(200,168,118,0.06) 0%, transparent 70%),
    var(--ink);
}
.coming-soon-inner {
  max-width: 60ch;
}
.coming-soon .eyebrow {
  justify-content: center;
  margin-bottom: 2rem;
}
.coming-soon .eyebrow::before,
.coming-soon .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--champagne);
  display: inline-block;
}
.coming-soon h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
  color: var(--text-primary);
}
.coming-soon p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* ── LEGAL ───────────────────────────────────────────────────────────── */

.legal-page {
  padding: 10rem var(--gutter) 6rem;
  max-width: 800px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.legal-page h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--champagne);
}
.legal-page p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-page ul {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page a {
  color: var(--champagne);
  border-bottom: 1px solid var(--champagne-deep);
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */

.site-footer {
  background: #050505;
  border-top: 1px solid var(--ink-hairline);
  padding: 5rem var(--gutter) 2.5rem;
  color: var(--text-secondary);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--ink-hairline);
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 30ch;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
}
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--text-secondary); }

.disclaimer {
  background: var(--ink-soft);
  border: 1px solid var(--ink-hairline);
  padding: 1.5rem 1.8rem;
  margin-bottom: 2.5rem;
  border-radius: 2px;
}
.disclaimer p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-family: var(--sans);
}
.disclaimer strong {
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── HERITAGE TIMELINE PANEL ─────────────────────────────────────────── */

.timeline-panel {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 2px;
}
.timeline-panel img {
  width: 100%;
  height: auto;
}

/* ── UTILITIES ───────────────────────────────────────────────────────── */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.text-center { text-align: center; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 340px;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 2.5rem;
    gap: 2rem;
    border-left: 1px solid var(--ink-hairline);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }

  .feature-split,
  .feature-split.right-heavy,
  .feature-split.left-heavy {
    grid-template-columns: 1fr;
  }

  .model-grid { grid-template-columns: 1fr; }
  .heritage-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-scroll { display: none; }

  .hero-meta { gap: 2rem; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .spec-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; padding-bottom: 3rem; }
  .nav-links a { font-size: 0.9rem; }
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

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