/* ============================================================
   Helnbek Group — stylesheet
   Brand: maroon + gold + charcoal, "Above and Beyond"
   ============================================================ */

:root {
  --maroon: #7c1626;
  --maroon-dark: #5a0e18;
  --maroon-deep: #3a0a12;
  --gold: #c9a24b;
  --gold-light: #e6cb82;
  --gold-dark: #a6822f;
  --charcoal: #1a1a1d;
  --charcoal-2: #232327;
  --ink: #141416;
  --paper: #f7f4ef;
  --paper-2: #fbfaf7;
  --white: #ffffff;
  --muted: #5f5f66;
  --muted-light: rgba(255, 255, 255, 0.72);
  --line: rgba(20, 20, 22, 0.1);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(20, 20, 22, 0.08);
  --shadow-md: 0 14px 40px rgba(20, 20, 22, 0.14);
  --shadow-lg: 0 28px 70px rgba(20, 20, 22, 0.22);

  --container: 1160px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  margin: 0 0 0.4em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
a { color: var(--maroon); text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--maroon);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.eyebrow--light { color: var(--gold-light); }

.gold-text {
  background: linear-gradient(100deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: 92px 0; }
.section--tight { padding-top: 0; }
.section--dark {
  background: radial-gradient(120% 120% at 80% -10%, var(--charcoal-2), var(--charcoal) 60%);
  color: var(--white);
}
.section__title {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  color: var(--ink);
}
.section__title--light { color: var(--white); }
.section__head { max-width: 620px; margin-bottom: 48px; }
.section__head--center { margin-inline: auto; text-align: center; }

.lead-muted { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.section--dark .lead-muted { color: var(--muted-light); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--maroon);
}
.link-arrow svg { transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.link-arrow--gold { color: var(--gold-dark); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--maroon);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--gold { --btn-bg: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark)); --btn-fg: #2a1206; }
.btn--maroon { --btn-bg: var(--maroon); }
.btn--maroon:hover { background: var(--maroon-dark); }
.btn--ghost {
  background: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 18px 0;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.is-scrolled {
  background: rgba(26, 26, 29, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  color: #fff;
}
.brand__sub {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.42em;
  font-size: 0.62rem;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links > a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links > a:not(.btn):hover { color: #fff; }
.nav__links > a.is-active:not(.btn) { color: var(--gold-light); }
.nav__links > a.is-active:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.15rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav__cta { margin-left: 0.5rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(58, 10, 18, 0.92) 0%, rgba(58, 10, 18, 0.55) 45%, rgba(26, 26, 29, 0.35) 100%),
    linear-gradient(0deg, rgba(20, 20, 22, 0.85), rgba(20, 20, 22, 0) 55%);
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 90px;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  max-width: 16ch;
  margin-bottom: 1.1rem;
}
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute;
  left: 24px; bottom: 26px;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out 6;
}
@keyframes scrollDot { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%{opacity:0;transform:translateY(14px)} 100%{opacity:0} }

/* ============================================================
   INTRO + STATS
   ============================================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.stats {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stats li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.stats li::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(var(--gold-light), var(--gold-dark));
}
.stats__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--maroon);
  line-height: 1;
}
.stats__label { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   DIVISION CARDS (home)
   ============================================================ */
.div-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.div-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.div-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 75, 0.5);
  box-shadow: var(--shadow-lg);
}
.div-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.div-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.div-card:hover .div-card__media img { transform: scale(1.07); }
.div-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 29, 0.85));
}
.div-card__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: #fff;
}
.div-card__badge--maroon { background: var(--maroon); }
.div-card__badge--gold { background: linear-gradient(120deg, var(--gold), var(--gold-dark)); color: #2a1206; }

.div-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.div-card__body h3 { color: #fff; font-size: 1.3rem; margin: 0; }
.div-card__body p { color: var(--muted-light); font-size: 0.95rem; margin: 0; }
.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0.3rem 0 0.6rem; padding: 0; }
.chip-list li {
  font-size: 0.74rem;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 75, 0.35);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.div-card .link-arrow { margin-top: auto; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-light);
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.12rem; }
.why-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 96px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.06);
}
.cta-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(58, 10, 18, 0.94), rgba(90, 14, 24, 0.8));
}
.cta-band__content { position: relative; max-width: 640px; }
.cta-band__content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band__content p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.6rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 62vh;
  color: #fff;
  overflow: hidden;
}
.page-hero--short { min-height: 48vh; }
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,20,22,0.92), rgba(58,10,18,0.45) 60%, rgba(20,20,22,0.5));
}
.page-hero__content { position: relative; padding: 140px 24px 64px; }
.page-hero__content h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 18ch; }
.page-hero__lead { max-width: 56ch; color: rgba(255,255,255,0.85); }

/* ============================================================
   DIVISION ROWS (services page)
   ============================================================ */
.div-row { padding: 84px 0; }
.div-row--alt { background: var(--paper-2); }
.div-row__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.div-row__inner.is-reversed .div-row__media { order: 2; }
.div-row__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.div-row__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s var(--ease); }
.div-row__media:hover img { transform: scale(1.05); }
.div-row__tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
}
.service-list {
  list-style: none;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
}
.service-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-weight: 500; }
.service-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-dark);
  background: rgba(201, 162, 75, 0.16);
  border-radius: 50%;
  padding: 3px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form { margin-top: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.field label span { color: var(--maroon); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: var(--maroon); }
.form__status { margin: 1rem 0 0; font-weight: 600; font-size: 0.92rem; min-height: 1.2rem; }
.form__status.is-ok { color: #1f7a3d; }
.form__status.is-err { color: var(--maroon); }

.contact__info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.info-card--accent {
  background: linear-gradient(150deg, var(--maroon), var(--maroon-deep));
  color: #fff;
  border: none;
}
.info-card--accent h3 { color: var(--gold-light); font-size: 0.95rem; margin: 0 0 0.4rem; }
.info-card--accent h3:nth-of-type(2) { margin-top: 1.1rem; }
.info-card--accent ul { list-style: none; margin: 0; padding: 0; }
.info-card--accent a { color: #fff; font-size: 1.05rem; font-weight: 600; }
.info-card--accent a:hover { color: var(--gold-light); }
.info-card__label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}
.info-card address { font-style: normal; color: var(--muted); }

/* ---------- Maps ---------- */
.maps__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.map-card__head {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 20px;
  background: var(--charcoal);
  color: #fff;
}
.map-card__head .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,0.25); }
.map-card iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding-top: 160px; }
.error-page__inner { max-width: 560px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: radial-gradient(120% 120% at 0% 0%, var(--charcoal-2), var(--ink) 70%);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.brand--light .brand__name { color: #fff; }
.footer__tag {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold-light);
  margin: 1rem 0 0.6rem;
}
.footer__legal-line { font-size: 0.9rem; max-width: 36ch; }
.footer__col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a, .footer__contact a { color: rgba(255, 255, 255, 0.78); font-size: 0.93rem; transition: color 0.2s var(--ease); }
.footer__col a:hover, .footer__contact a:hover { color: var(--gold-light); }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 24px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__bar p { margin: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .intro__grid, .div-row__inner, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .div-row__inner.is-reversed .div-row__media { order: 0; }
  .div-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .maps__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.4rem;
    padding: 32px;
    background: rgba(26, 26, 29, 0.98);
    backdrop-filter: blur(14px);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links > a { font-size: 1.05rem; padding: 0.7rem 0.9rem; }
  .nav__cta { margin: 0.6rem 0 0; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .div-grid, .why-grid, .stats, .form__row, .service-list { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 26px; }
  .hero__actions .btn { flex: 1; }
}

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