/* ============================================================
   ICARION — design tokens
   ============================================================ */
:root {
  --gold: #C9A227;
  --gold-light: #E8C56A;
  --gold-dim: rgba(201, 162, 39, 0.25);
  --black: #0A0A0A;
  --surface: #141414;
  --text: #F2EFE9;
  --muted: #8C8880;
  --hero-muted: #C4C0B8;

  --tier-gold: #C9A227;
  --tier-gold-hover: #E8C56A;
  --tier-silver: #C9CBD1;
  --tier-silver-hover: #E4E6EA;
  --tier-bronze: #B07A45;
  --tier-bronze-hover: #D19A63;

  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius-btn: 2px;
  --radius-card: 3px;

  --ease-out: cubic-bezier(0.16, 0.68, 0.28, 1);
  --section-pad-y: clamp(80px, 10vw, 140px);
  --content-max: 1280px;
}

/* ============================================================
   Reset & base
   ============================================================ */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--black);
}
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }
::selection { background: rgba(201, 162, 39, 0.3); }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 24px;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: var(--radius-btn);
  transition: top 200ms var(--ease-out);
}
.skip-link:focus { top: 16px; }

.section { padding: var(--section-pad-y) 24px; }

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.kicker__rule { width: 44px; height: 1px; background: var(--gold); flex-shrink: 0; }
.kicker__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  margin: 0 0 clamp(40px, 6vw, 70px);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  padding: 17px 30px;
  border: 1px solid transparent;
  transition: background 400ms var(--ease-out), border-color 400ms var(--ease-out), color 400ms var(--ease-out);
}
.btn--primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); }
.btn--outline {
  color: var(--text);
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(10, 10, 10, 0.35);
}
.btn--outline:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   Scroll reveal (paired with js/motion.js)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { will-change: opacity, transform; }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 400ms var(--ease-out), border-color 400ms var(--ease-out);
}
.nav.is-scrolled {
  background: var(--black);
  border-bottom-color: var(--gold-dim);
}
.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__brand img { width: 56px; height: auto; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.22em;
  color: var(--text);
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__link:hover { color: var(--gold-light); }
.nav__cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 11px 20px;
  border-radius: var(--radius-btn);
  transition: color 400ms var(--ease-out), background 400ms var(--ease-out), border-color 400ms var(--ease-out);
}
.nav__cta:hover { color: var(--black); background: var(--gold-light); border-color: var(--gold-light); }

.nav__burger {
  background: transparent;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-btn);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span { display: block; width: 20px; height: 1px; background: var(--gold); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--black);
  display: none;
  flex-direction: column;
  padding: 22px 24px 48px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__close {
  background: transparent;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-btn);
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  padding: 10px 14px;
}
.mobile-menu__links {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-dim);
}
.mobile-menu__cta {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: var(--radius-btn);
  padding: 18px;
  text-align: center;
}

@media (max-width: 939px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 24px 150px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.35) 42%, rgba(10, 10, 10, 0.8) 72%, var(--black) 100%);
  pointer-events: none;
}
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__wings {
  position: relative;
  width: min(300px, 58vw);
  height: auto;
  aspect-ratio: 1190 / 592;
  animation: ic-rise 900ms var(--ease-out) both;
}
.hero__title {
  position: relative;
  margin: 38px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 13vw, 190px);
  line-height: 0.95;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  color: var(--text);
  clip-path: inset(-30% -30% -30% 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero__title { clip-path: none; }
}
.hero__tagline {
  position: relative;
  margin: 26px 0 0;
  max-width: 620px;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--hero-muted);
  animation: ic-rise 900ms var(--ease-out) 460ms both;
}
.hero__ctas {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
  animation: ic-rise 900ms var(--ease-out) 620ms both;
}
.hero__scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-cue span:first-child {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-cue span:last-child {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: ic-cue 2.4s ease-in-out infinite;
}

@keyframes ic-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes ic-cue { 0% { transform: translateY(0); opacity: 0.2; } 50% { transform: translateY(10px); opacity: 1; } 100% { transform: translateY(0); opacity: 0.2; } }
@keyframes ic-smoke { 0% { opacity: 0; transform: translate(0, 0) scale(0.35); } 18% { opacity: 0.55; } 100% { opacity: 0; transform: translate(0.66em, -0.62em) scale(2.2); } }

@media (prefers-reduced-motion: reduce) {
  .hero__wings, .hero__tagline, .hero__ctas { animation: none; opacity: 1; transform: none; }
}

/* Wheel intro — static appearance; geometry (position/size/rotation) is set
   per-frame by js/main.js */
.hero__wheel {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  visibility: hidden;
  box-sizing: border-box;
  border: 0.17em solid var(--text);
  background: radial-gradient(closest-side, var(--black), var(--black));
}
.hero__wheel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 0.03em solid rgba(242, 239, 233, 0.55);
}
.hero__wheel-blur {
  position: absolute;
  inset: 0.03em;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(232, 197, 106, 0.55), rgba(201, 162, 39, 0) 28%, rgba(232, 197, 106, 0.4) 52%, rgba(201, 162, 39, 0) 78%, rgba(232, 197, 106, 0.5));
  opacity: 0.55;
}
.hero__wheel-rim {
  position: absolute;
  inset: 0.055em;
  border-radius: 50%;
  border: 0.03em solid var(--gold-light);
  background: #100F0D;
}
.hero__wheel-spoke {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.026em;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.35), var(--gold-light) 22%, var(--gold) 50%, var(--gold-light) 78%, rgba(201, 162, 39, 0.35));
  transform: translateY(-50%) rotate(var(--angle, 0deg));
}
.hero__wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.15em;
  height: 0.15em;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
}
.hero__smoke {
  position: absolute;
  bottom: -0.08em;
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(214, 210, 201, 0.5), rgba(214, 210, 201, 0));
  visibility: hidden;
  animation: ic-smoke 1.5s ease-out infinite;
}
.hero__smoke:nth-child(1) { left: 36%; }
.hero__smoke:nth-child(2) { left: 46%; bottom: -0.07em; width: 0.26em; height: 0.26em; background: radial-gradient(closest-side, rgba(214, 210, 201, 0.42), rgba(214, 210, 201, 0)); animation-delay: 0.5s; }
.hero__smoke:nth-child(3) { left: 28%; bottom: -0.09em; width: 0.34em; height: 0.34em; background: radial-gradient(closest-side, rgba(214, 210, 201, 0.32), rgba(214, 210, 201, 0)); animation-delay: 1s; }
.hero__streak {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  opacity: 0;
  background: linear-gradient(to right, rgba(214, 210, 201, 0.28), rgba(214, 210, 201, 0));
  pointer-events: none;
  z-index: 1;
}
.hero__contact-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   Achievement ribbon
   ============================================================ */
.ribbon {
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  background: var(--black);
  overflow: hidden;
  padding: 16px 0;
}
.ribbon__track {
  display: flex;
  width: max-content;
  animation: ic-marquee 42s linear infinite;
}
.ribbon__group { display: flex; align-items: center; gap: 38px; padding-right: 38px; }
.ribbon__item {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.ribbon__dot { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
@keyframes ic-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ribbon__track { animation: none; } }

/* ============================================================
   About + Pillars
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.about__copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  max-width: 56ch;
}
.about__copy p:last-child { margin-bottom: 0; }

.about__list {
  border-top: 1px solid var(--gold-dim);
}
.about__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gold-dim);
}
.about__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 3px;
}
.about__list h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.about__list p { margin: 0; color: var(--muted); font-size: 16px; }

.pillars { padding-top: 0; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.pillar-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-card);
  padding: 44px 34px 40px;
  background: var(--black);
  transition: transform 460ms var(--ease-out), border-color 460ms var(--ease-out);
}
.pillar-card:hover { transform: translateY(-4px); border-color: var(--gold-light); }
.pillar-card__num {
  position: absolute;
  right: 18px;
  bottom: -18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 150px;
  line-height: 1;
  color: rgba(201, 162, 39, 0.07);
}
.pillar-card svg { position: relative; }
.pillar-card h3 {
  position: relative;
  margin: 26px 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.pillar-card p { position: relative; margin: 0; color: var(--muted); font-size: 16px; }

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 26px;
}
.team-card { transition: transform 460ms var(--ease-out); }
.team-card:hover { transform: translateY(-4px); }
.team-card__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-card);
  overflow: hidden;
  filter: grayscale(1) contrast(1.05);
  transition: filter 500ms ease-out;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card:hover .team-card__portrait {
  filter: grayscale(1) sepia(0.65) saturate(2.6) hue-rotate(-14deg) contrast(1.02);
}
.team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card__initial {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.team-card h3 {
  margin: 20px 0 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.team-card__role {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-card p:last-child { margin: 0; color: var(--muted); font-size: 15px; }

/* ============================================================
   Journey
   ============================================================ */
.journey {
  background: var(--surface);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}
.journey .container { max-width: 980px; }
.journey-item {
  display: grid;
  grid-template-columns: clamp(64px, 10vw, 110px) 1px 1fr;
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  padding-bottom: 44px;
}
.journey-item:last-child { padding-bottom: 0; }
.journey-item__year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.1em;
  color: var(--gold);
}
.journey-item__rule {
  position: relative;
  background: var(--gold-dim);
  align-self: stretch;
  min-height: 100%;
}
.journey-item:last-child .journey-item__rule {
  background: linear-gradient(var(--gold-dim), transparent);
}
.journey-item__rule::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -4px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
.journey-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.journey-item p { margin: 0; color: var(--muted); font-size: 16px; }

/* ============================================================
   Sponsors
   ============================================================ */
.sponsors__lead { margin: 0 0 clamp(40px, 6vw, 64px); color: var(--muted); font-size: 17px; max-width: 60ch; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.tier-card {
  border-radius: var(--radius-card);
  background: var(--black);
  display: flex;
  flex-direction: column;
  transition: transform 460ms var(--ease-out), border-color 460ms var(--ease-out);
}
.tier-card__body { padding: 26px; }
.tier-card__price {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.tier-card__list { display: grid; gap: 12px; }
.tier-card__list li { display: flex; gap: 12px; color: var(--text); font-size: 15px; }
.tier-card__list li::before { content: "\2713"; flex-shrink: 0; }

.tier-card--title {
  border: 1px solid var(--gold);
}
.tier-card--title:hover { transform: translateY(-4px); }
.tier-card--title .tier-card__header {
  padding: 20px 26px;
  background: linear-gradient(100deg, #B08D1F 0%, #C9A227 20%, #F4E3A8 40%, #E8C56A 52%, #C9A227 68%, #B08D1F 100%);
  background-size: 220% 100%;
  animation: ic-sheen 7s linear infinite;
}
.tier-card--title .tier-card__header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.tier-card--title .tier-card__price,
.tier-card--title .tier-card__list li::before { color: var(--gold); }
@keyframes ic-sheen { from { background-position: 0% 50%; } to { background-position: 200% 50%; } }
@media (prefers-reduced-motion: reduce) { .tier-card--title .tier-card__header { animation: none; } }

.tier-card--tone {
  border: 1px solid color-mix(in srgb, var(--tone) 25%, transparent);
}
.tier-card--tone:hover { transform: translateY(-4px); border-color: var(--tone-hover); }
.tier-card--tone .tier-card__header {
  padding: 20px 26px;
  border-top: 3px solid var(--tone);
  border-bottom: 1px solid color-mix(in srgb, var(--tone) 35%, transparent);
}
.tier-card--tone .tier-card__header h3,
.tier-card--tone .tier-card__price,
.tier-card--tone .tier-card__list li::before { color: var(--tone); }
.tier-card--tone .tier-card__header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.partners-label {
  margin: clamp(56px, 7vw, 80px) 0 26px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}
.partner-cell {
  height: 104px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-card);
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 460ms ease-out, opacity 460ms ease-out;
}
.partner-cell:hover { filter: none; opacity: 1; }
.partner-cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-cell span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--gold-dim);
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.contact__copy p { margin: 0 0 28px; color: var(--muted); font-size: 17px; max-width: 48ch; }
.contact__email {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form { display: grid; gap: 30px; }
.form-field { display: grid; gap: 8px; }
.form-field label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input, .form-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gold-dim);
  color: var(--text);
  font-size: 16px;
  padding: 10px 2px;
  outline: none;
  transition: border-color 300ms ease-out, box-shadow 300ms ease-out;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 1px 0 0 var(--gold-light);
}
.form-field__error {
  display: none;
  font-size: 13px;
  color: #E08A6B;
}
.form-field.has-error input,
.form-field.has-error textarea { border-color: #E08A6B; }
.form-field.has-error .form-field__error { display: block; }

.contact-form__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.contact-form__status {
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: none;
}
.contact-form__status.is-visible { display: block; }
.contact-form__status--error { color: #E08A6B; }

.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--gold-dim);
  background: var(--black);
  padding: 60px 24px 40px;
}
.site-footer__top {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__brand img { width: 50px; height: auto; }
.site-footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--text);
}
.site-footer__brand span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.site-footer__nav a {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-footer__nav a:hover { color: var(--gold-light); }
.site-footer__bottom {
  max-width: var(--content-max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--gold-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  justify-content: space-between;
}
.site-footer__bottom p { margin: 0; font-size: 13px; color: var(--muted); }
