/* ==========================================================================
   Iron Harbor Consulting — Site Stylesheet
   Blue & gold theme · responsive · WCAG-conscious
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #061024;
  --navy-900: #0a1b3d;
  --navy-800: #0e2450;
  --navy-700: #143268;
  --blue-600: #1d4e9e;
  --blue-500: #2e6bc6;
  --blue-100: #e8eef9;

  --gold-700: #8a6e14;
  --gold-500: #c9a227;
  --gold-400: #d9b84c;
  --gold-300: #ead489;
  --gold-100: #f7efd8;

  --ink: #16233a;
  --slate-700: #3d4a63;
  --slate-500: #5a6884;
  --mist: #f4f7fc;
  --line: #e2e8f2;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(10, 27, 61, 0.06), 0 2px 8px rgba(10, 27, 61, 0.07);
  --shadow-md: 0 4px 12px rgba(10, 27, 61, 0.08), 0 12px 32px rgba(10, 27, 61, 0.1);
  --shadow-lg: 0 8px 24px rgba(10, 27, 61, 0.14), 0 24px 64px rgba(10, 27, 61, 0.18);

  --radius: 14px;
  --radius-sm: 10px;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;

  --header-h: 78px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-600); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration: underline; }

ul { padding-left: 1.2em; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--navy-900);
  color: var(--gold-300);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--mist { background: var(--mist); }
.section--navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); }

.section-head { max-width: 720px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.section-head p { font-size: 1.06rem; }

/* ---------- Kickers & accents ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.on-navy .kicker { color: var(--gold-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}
.btn--gold:hover { box-shadow: 0 10px 26px rgba(201, 162, 39, 0.45); transform: translateY(-1px); text-decoration: none; }

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--navy:hover { background: var(--navy-700); transform: translateY(-1px); text-decoration: none; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); text-decoration: none; background: rgba(255, 255, 255, 0.07); }

.btn--outline {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--blue-600); color: var(--blue-600); text-decoration: none; }

.btn--sm { padding: 9px 18px; font-size: 0.86rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--gold-300);
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding: 4px 0;
}
.topbar__links { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar a { color: var(--gold-300); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--white); text-decoration: underline; }
.topbar a > svg { flex: none; }
.topbar__note { color: #aeb9d4; letter-spacing: 0.04em; }
@media (max-width: 700px) {
  .topbar__note { display: none; }
}

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy-900);
}
.brand__mark { flex: none; width: 46px; height: 46px; filter: drop-shadow(0 2px 4px rgba(10, 27, 61, 0.25)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: 0.045em;
  color: var(--navy-900);
}
.brand__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 3px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-block;
  padding: 9px 13px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  border-radius: 8px;
  position: relative;
}
.nav__link:hover { color: var(--blue-600); background: var(--blue-100); }
.nav__link[aria-current="page"] { color: var(--navy-800); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
}
.nav__toggle:hover { border-color: var(--blue-600); color: var(--blue-600); }

@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 0.6rem 1.4rem 1.2rem;
    display: none;
  }
  .site-header.menu-open .nav__menu { display: flex; }
  .nav__link { display: block; padding: 13px 8px; border-radius: 8px; }
  .nav__link[aria-current="page"]::after { left: 8px; right: auto; top: 50%; bottom: auto; transform: translateY(-50%); width: 4px; height: 22px; }
  .nav__cta { margin: 12px 0 2px; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #dce4f5;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(46, 107, 198, 0.35), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(201, 162, 39, 0.14), transparent 55%),
    linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero__anchor {
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 560px;
  height: 560px;
  opacity: 0.07;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4.5rem, 9vw, 7rem);
}
.hero h1 { color: var(--white); margin-bottom: 0.5em; }
.hero h1 .gold { color: var(--gold-400); font-style: italic; }
.hero__lede {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: #c3cfe8;
  max-width: 54ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.2rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-300);
  text-transform: uppercase;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); }

/* Hero trust card */
.trust-card {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.9rem 1.9rem 1.6rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.8rem;
  right: 1.8rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.trust-card h2 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.3em;
}
.trust-card > p { font-size: 0.88rem; color: #b6c3de; margin-bottom: 1.1rem; }
.trust-card ul { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: 0.55rem; }
.trust-card li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.94rem;
  color: #dbe4f5;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
}
.trust-card li svg { flex: none; transform: translateY(2px); }
.trust-card li strong { color: var(--white); font-weight: 600; }
.trust-card__note { font-size: 0.8rem; color: #93a2c4; margin: 0; }
.trust-card__note a { color: var(--gold-300); }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__anchor { right: -220px; }
  .trust-card { max-width: 560px; }
}

/* ---------- Badge strip ---------- */
.badge-strip {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #aeb9d4;
}
.badge-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 2.6rem;
  padding: 1.05rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.badge-strip__inner span { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-300); }
.badge-strip__inner span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold-500);
  transform: rotate(45deg);
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cdd8ea; }

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  margin-bottom: 1.15rem;
  box-shadow: 0 6px 14px rgba(10, 27, 61, 0.22);
}
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--blue-600); text-decoration: underline; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 1.6rem); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.check-list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: 0.55rem; }
.check-list li { display: flex; gap: 10px; align-items: baseline; font-size: 0.95rem; }
.check-list li svg { flex: none; transform: translateY(3px); }

.card .btn { margin-top: 0.2rem; }

/* ---------- Feature blocks (split) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split + .split { margin-top: clamp(2.5rem, 6vw, 4rem); }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

.split__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-sm);
}
.split__panel h3 { margin-bottom: 0.5em; }
.split__panel .check-list { margin-bottom: 0; }

/* ---------- Mini stats / value chips ---------- */
.value-chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 1.6rem); }
@media (max-width: 760px) { .value-chips { grid-template-columns: 1fr; } }
.value-chip {
  text-align: center;
  padding: 1.6rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.value-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy-800);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.value-chip span { font-size: 0.88rem; color: var(--slate-500); }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #dce4f5;
  background:
    radial-gradient(720px 340px at 88% -20%, rgba(46, 107, 198, 0.3), transparent 60%),
    linear-gradient(155deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 30%, var(--gold-400) 70%, transparent);
}
.page-hero__inner { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.8rem, 6vw, 4.2rem); max-width: 780px; }
.page-hero h1 { color: var(--white); margin-bottom: 0.45em; }
.page-hero p { font-size: 1.06rem; color: #c3cfe8; max-width: 62ch; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--gold-300); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Registration cards & table ---------- */
.reg-card { position: relative; overflow: hidden; }
.reg-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  border-radius: 999px;
  padding: 4px 11px;
}
.reg-card__badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.reg-card p { font-size: 0.93rem; }

.reg-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
table.reg-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.reg-table th, .reg-table td { text-align: left; padding: 15px 20px; font-size: 0.94rem; }
.reg-table thead th {
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.reg-table tbody tr { border-top: 1px solid var(--line); }
.reg-table tbody tr:nth-child(even) { background: var(--mist); }
.reg-table td strong { color: var(--navy-800); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(201, 162, 39, 0.2), transparent 60%),
    linear-gradient(140deg, var(--navy-900), var(--navy-800) 70%, var(--navy-700));
  color: #dbe4f5;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: clamp(2.6rem, 6vw, 4rem) 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.35em; }
.cta-band p { color: #b6c3de; max-width: 52ch; }
@media (max-width: 760px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-aside {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-800));
  color: #d5def1;
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3.5vw, 2.3rem);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.contact-aside h2 { color: var(--white); font-size: 1.35rem; }
.contact-aside__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-aside__item:last-of-type { border-bottom: 0; }
.contact-aside__item svg { flex: none; margin-top: 3px; color: var(--gold-400); }
.contact-aside__item small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 2px;
}
.contact-aside__item a, .contact-aside__item span { color: #e7edf9; font-weight: 600; text-decoration: none; font-size: 0.98rem; }
.contact-aside__item a:hover { color: var(--gold-300); text-decoration: underline; }
.contact-aside__foot { font-size: 0.84rem; color: #a4b2d2; margin-top: 1.2rem; }

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(1.7rem, 3.5vw, 2.4rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.form-field .req { color: #a3232f; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid #cbd5e5;
  border-radius: 9px;
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: #a9b9d4; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(46, 107, 198, 0.18);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field.has-error input, .form-field.has-error textarea, .form-field.has-error select { border-color: #a3232f; }
.field-error {
  display: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a3232f;
}
.form-field.has-error .field-error { display: block; }
.form-hint { font-size: 0.8rem; color: var(--slate-500); }
.form-note {
  font-size: 0.84rem;
  color: var(--slate-500);
  background: var(--mist);
  border: 1px dashed #c9d4e6;
  border-radius: 9px;
  padding: 11px 14px;
  margin: 0 0 1.2rem;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success {
  display: none;
  text-align: center;
  padding: clamp(1.6rem, 4vw, 2.6rem) 1rem;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-100);
  border: 2px solid var(--gold-500);
  color: var(--gold-700);
}
.form-success h3 { font-size: 1.4rem; }
.form-success p { max-width: 46ch; margin-inline: auto; }
.form-success__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 1.4rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #aeb9d4;
  border-top: 3px solid var(--gold-500);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding: clamp(2.8rem, 6vw, 4rem) 0 2.2rem;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__tag { color: var(--gold-400); }
.site-footer p { font-size: 0.9rem; }

.site-footer h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 8px;
  background: var(--gold-500);
  border-radius: 2px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-links a {
  color: #c6d0e6;
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--gold-300); text-decoration: underline; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; font-size: 0.92rem; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 3px; color: var(--gold-400); }
.footer-contact a { color: #c6d0e6; }
.footer-contact a:hover { color: var(--gold-300); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem 0;
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.8rem;
  color: #8493b5;
}
.footer-bottom__inner span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Reveal animations ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .site-footer, .cta-band, .badge-strip { display: none; }
  body { color: #000; }
}
