/* ============================================================
   WEN ROSS — AUDIOBOOK NARRATOR
   Stylesheet  |  Clean & Professional
   Palette: #1b2b4b · #4a6741 · #c9922a
   Fonts: Cormorant Garamond (display) · Raleway (body)
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --navy:        #1b2b4b;
  --navy-deep:   #131e35;
  --navy-mid:    #243357;
  --green:       #4a6741;
  --green-light: #5c8151;
  --amber:       #c9922a;
  --amber-light: #dba63a;

  --white:       #ffffff;
  --off-white:   #f6f3ed;
  --text:        #1e1e2e;
  --text-muted:  #6b6b80;
  --border:      rgba(26, 26, 46, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;

  --max-w: 1160px;
  --pad-x: 48px;
  --pad-section: 96px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.28s;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pad-x);
  transition: background var(--t) var(--ease),
              padding    var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.nav.scrolled {
  background: rgba(19, 30, 53, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px var(--pad-x);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
}
.nav__links a:hover { color: var(--amber); }

.nav__links .nav__hire {
  color: var(--amber);
  border: 1px solid rgba(201,146,42,0.6);
  padding: 9px 22px;
  border-radius: 2px;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.nav__links .nav__hire:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav { padding: 22px 24px; }
  .nav.scrolled { padding: 16px 24px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 16px; }
}

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

/* Subtle gradient warmth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 65% 50%, rgba(74,103,65,0.10) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(201,146,42,0.06) 0%, transparent 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 140px var(--pad-x) 100px;
  max-width: calc(var(--max-w) + var(--pad-x) * 2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

/* Hero text column */
.hero__text { /* inherits grid child positioning */ }

/* Hero photo column */
.hero__photo-wrap {
  position: relative;
  height: 620px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }
  .hero__photo-wrap {
    height: 420px;
    max-width: 380px;
    margin: 0 auto;
  }
}

.hero__label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.4s forwards;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero__rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.0s forwards;
}

.hero__tagline {
  font-size: clamp(13px, 1.4vw, 14px);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.1s forwards;
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.3s forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.5s forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(201,146,42,0.5);
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,146,42,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,43,75,0.2);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section {
  padding: var(--pad-section) 0;
}
.section--light  { background: var(--white); }
.section--tinted { background: var(--off-white); }
.section--dark   { background: var(--navy); }

.section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section--dark .section__eyebrow { color: var(--amber); }

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 20px;
}
.section--dark .section__heading { color: var(--white); }

.section__lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 560px;
}
.section--dark .section__lead { color: rgba(255,255,255,0.6); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

.about__header {
  margin-bottom: 36px;
}

.about__body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(30,30,46,0.78);
  margin-bottom: 20px;
}
.about__body p:last-child { margin-bottom: 0; }

/* Award strip */
.about__award {
  margin-top: 36px;
  padding: 20px 24px;
  border-left: 3px solid var(--amber);
  background: var(--off-white);
  border-radius: 0 4px 4px 0;
}
.about__award-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 4px;
}
.about__award-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

/* Stats row */
.about__stats {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 36px;
}
.about__stat {
  flex: 1;
  padding: 22px 0;
  text-align: center;
  border-right: 1px solid var(--border);
}
.about__stat:last-child { border-right: none; }
.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}
.about__stat-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Photo column */
.about__photo { position: sticky; top: 96px; }

.about__photo-frame {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-mid);
  position: relative;
}
.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Placeholder shown when no image is present */
.about__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.about__photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}
.about__photo-placeholder span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.about__photo-caption {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__photo {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ============================================================
   LISTEN / DEMOS
   ============================================================ */
.listen__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.listen__sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(201,146,42,0.45);
  padding: 11px 22px;
  border-radius: 2px;
  transition: all var(--t);
  white-space: nowrap;
}
.listen__sc-cta:hover {
  background: rgba(201,146,42,0.08);
  border-color: var(--amber);
}
.listen__sc-cta svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
  flex-shrink: 0;
}

.listen__quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 52px;
  padding: 0 48px;
  line-height: 1.5;
}

/* SoundCloud player */
.listen__player-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 36px;
}
.listen__player-wrap iframe {
  display: block;
  width: 100%;
}

.listen__sc-note {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.listen__sc-note a {
  color: var(--amber);
  border-bottom: 1px solid rgba(201,146,42,0.4);
  transition: border-color var(--t);
}
.listen__sc-note a:hover { border-color: var(--amber); }

/* Genre capability cards */
.genres__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 60px;
}

.genre-card {
  background: rgba(27,43,75,0.9);
  padding: 36px 28px;
  transition: background var(--t);
}
.genre-card:hover { background: rgba(36,51,87,0.95); }

.genre-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(201,146,42,0.1);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.genre-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.genre-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .genres__grid { grid-template-columns: repeat(2, 1fr); }
  .listen__quote { padding: 0; }
}
@media (max-width: 540px) {
  .genres__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio__header {
  margin-bottom: 52px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.book-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t) var(--ease);
}
.book-card:hover {
  transform: translateY(-4px);
}

.book-card__cover {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(27, 43, 75, 0.15);
  background: var(--navy-mid);
}
.book-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.book-card:hover .book-card__cover img {
  transform: scale(1.04);
}

/* Hover overlay */
.book-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 43, 75, 0.82);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.book-card:hover .book-card__overlay {
  opacity: 1;
}

.book-card__cta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(201, 146, 42, 0.6);
  padding: 7px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

/* Title / author below cover */
.book-card__info {
  padding: 12px 4px 0;
}
.book-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 3px;
}
.book-card__author {
  display: block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Browse all CTA */
.portfolio__footer {
  text-align: center;
  margin-top: 52px;
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__aside {
  position: sticky;
  top: 96px;
}

.contact__body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(30,30,46,0.75);
  margin-bottom: 36px;
}

.contact__details { border-top: 1px solid var(--border); padding-top: 28px; }

.contact__detail {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}
.contact__detail-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  min-width: 72px;
}
.contact__detail-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
}
.contact__detail-value a {
  color: var(--amber);
  border-bottom: 1px solid rgba(201,146,42,0.4);
  transition: border-color var(--t);
}
.contact__detail-value a:hover { border-color: var(--amber); }

/* Form card */
.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(27,43,75,0.07);
}

.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201,146,42,0.12);
  background: var(--white);
}
.form-row textarea {
  height: 130px;
  resize: vertical;
  line-height: 1.7;
}
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%236b6b80'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}
.form-honeypot { display: none; }

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.form-submit:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,43,75,0.2);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.active { display: block; }
.form-success__heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__aside { position: static; }
  .contact__form { padding: 32px 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 20px; }
.footer__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}
.footer__logo img {
  height: 48px;
  width: auto;
  opacity: 0.85;
}
.footer__copy {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--t);
}
.footer__links a:hover { color: var(--amber); }

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --pad-section: 64px;
  }
  .hero__inner { padding: 120px 24px 80px; }
}
