/* ==========================================================================
   Titanium Firearms USA — PVD coatings landing page
   ========================================================================== */

:root {
  --bg:            #070b12;
  --bg-2:          #0a101c;
  --bg-3:          #0c1322;
  --ink:           #e6e9ee;
  --ink-bright:    #eef2f8;
  --ink-mid:       #aeb8c9;
  --ink-dim:       #9aa4b5;
  --ink-dimmer:    #8591a4;
  --ink-faint:     #68738a;

  --gold:          #d4a439;
  --gold-lt:       #f0c563;
  --gold-dk:       #8a6a1e;

  --hairline:      rgba(255, 255, 255, .1);
  --gold-line:     rgba(212, 164, 57, .4);

  --shell:         1280px;
  --gutter:        32px;

  --display:       'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --cond:          'Barlow Condensed', 'Arial Narrow', sans-serif;
  --mono:          'IBM Plex Mono', ui-monospace, monospace;
  --sans:          'Barlow', system-ui, sans-serif;
}

/* --------------------------------------------------------------- reset -- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, p, dd, dl, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  position: relative;
}

.gold { color: var(--gold); }

/* Brushed-foil gold text used on the two big display headlines. */
.gold-foil {
  background: linear-gradient(180deg, #f7e09a 10%, var(--gold) 48%, var(--gold-dk) 82%, #e9c968);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(212, 164, 57, .25));
}

/* ------------------------------------------------------------- buttons -- */

.btn {
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: filter .2s, border-color .2s, color .2s, background .2s;
}

.btn--gold {
  color: #141108;
  background: linear-gradient(180deg, #f2d074, #c99a2e 55%, #a97c22);
  border: 1px solid #6e5312;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .4) inset,
    0 10px 28px rgba(212, 164, 57, .3);
}
.btn--gold:hover { filter: brightness(1.12); }

.btn--ghost {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .03);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(212, 164, 57, .07);
}

.btn--sm {
  font-size: 14.5px;
  letter-spacing: .14em;
  padding: 10px 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .35) inset,
    0 6px 16px rgba(212, 164, 57, .25);
}
.btn--lg { font-size: 16px; padding: 16px 34px; }
.btn--xl {
  font-size: 17px;
  letter-spacing: .18em;
  padding: 18px 46px;
  margin-top: 38px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .4) inset,
    0 14px 36px rgba(212, 164, 57, .32);
}
.btn--block { width: 100%; padding: 16px; font-size: 16px; letter-spacing: .18em; }

.link-btn {
  margin-top: 16px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid var(--gold-line);
  transition: color .2s, border-color .2s;
}
.link-btn:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* ---------------------------------------------------------------- flag -- */

.flag {
  width: 22px;
  height: 14px;
  position: relative;
  overflow: hidden;
  flex: none;
  border: .5px solid rgba(255, 255, 255, .25);
  background: repeating-linear-gradient(180deg, #b3282d 0 2px, #efe9e0 2px 4px);
}
.flag__canton {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 8px;
  background: #1f2f5e;
}
.flag--sm { width: 20px; height: 12px; display: inline-block; }
.flag--sm .flag__canton { width: 9px; height: 7px; }

/* ----------------------------------------------------------------- nav -- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(6, 10, 18, .97), rgba(6, 10, 18, .88));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 164, 57, .22);
}

.nav__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { height: 34px; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .7)); }

.nav__lockup {
  line-height: 1;
  padding-left: 12px;
  border-left: 1px solid rgba(212, 164, 57, .35);
}
.nav__name {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--ink-bright);
}
.nav__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .36em;
  color: var(--ink-dimmer);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .14em;
  color: var(--ink-mid);
  text-transform: uppercase;
  transition: color .2s;
}
.nav__links a:hover { color: #7fb0f5; }

.flag-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}
.flag-badge__text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ink-mid);
  white-space: nowrap;
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .2);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink-mid);
  margin: 0 9px;
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 700px at 72% 30%, #143054 0%, #0d1a30 46%, #070b12 78%),
    var(--bg);
}

.hero__fx > *,
.hero__scene,
.hero__ambient > * { pointer-events: none; }

.hero__fx > * { position: absolute; inset: 0; }

.hero__scan-v { background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 3px); }
.hero__scan-h { background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .014) 0 1px, transparent 1px 7px); }

.hero__stripes {
  background: repeating-linear-gradient(115deg,
    transparent 0 80px,
    rgba(179, 40, 45, .07) 80px 122px,
    transparent 122px 202px,
    rgba(226, 230, 238, .05) 202px 244px);
  -webkit-mask-image: linear-gradient(105deg, transparent 26%, rgba(0, 0, 0, .95) 72%);
          mask-image: linear-gradient(105deg, transparent 26%, rgba(0, 0, 0, .95) 72%);
}

.hero__dots {
  inset: 0 0 auto auto;
  width: 46%;
  height: 46%;
  background:
    radial-gradient(circle, rgba(230, 236, 248, .3) 1px, transparent 1.6px),
    linear-gradient(115deg, rgba(24, 52, 102, .45), rgba(15, 30, 58, .12));
  background-size: 30px 30px, 100% 100%;
  -webkit-mask-image: radial-gradient(90% 90% at 100% 0%, rgba(0, 0, 0, .85), transparent 72%);
          mask-image: radial-gradient(90% 90% at 100% 0%, rgba(0, 0, 0, .85), transparent 72%);
}

.hero__glow {
  inset: auto auto -20% -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(34, 80, 158, .24), transparent 70%);
}

.hero__grid {
  background:
    linear-gradient(0deg, rgba(96, 144, 220, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 144, 220, .09) 1px, transparent 1px);
  background-size: 120px 120px;
  -webkit-mask-image: radial-gradient(700px 500px at 20% 80%, rgba(0, 0, 0, .7), transparent 70%);
          mask-image: radial-gradient(700px 500px at 20% 80%, rgba(0, 0, 0, .7), transparent 70%);
}

/* full-bleed cinematic scene */
.hero__scene { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 18, .72) 0%, rgba(7, 11, 18, .45) 26%, rgba(7, 11, 18, .15) 44%, transparent 60%),
    linear-gradient(270deg, rgba(7, 11, 18, .4) 0%, transparent 14%),
    linear-gradient(180deg, rgba(7, 11, 18, .66) 0%, transparent 22%),
    linear-gradient(0deg, rgba(7, 11, 18, .85) 0%, rgba(7, 11, 18, .18) 24%, transparent 40%);
}

.hero__tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 50% at 74% 66%, rgba(212, 164, 57, .09), transparent 68%),
    radial-gradient(38% 42% at 86% 10%, rgba(52, 102, 184, .15), transparent 70%);
}

.hero__caption {
  position: absolute;
  bottom: 66px;
  left: 49%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .24em;
  color: rgba(240, 197, 99, .9);
}
.hero__caption-rule {
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 197, 99, .8), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 150px var(--gutter) 90px;
}

.hero__copy { max-width: 570px; min-width: 0; }

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold-line);
  padding: 7px 14px;
  margin-bottom: 26px;
  background: rgba(212, 164, 57, .06);
}
.eyebrow-badge__stars { color: var(--gold); font-size: 11px; }
.eyebrow-badge__text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: #c7d0de;
}

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 76px;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--ink-bright);
  text-wrap: balance;
}

.hero__lede {
  margin-top: 26px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-dim);
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__hairline {
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 164, 57, .5), transparent);
}

/* ambient FX */
.fx-smoke {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(205, 215, 235, .5), transparent 70%);
  filter: blur(40px);
  animation: tf-smoke 11s ease-in-out infinite;
}

.fx-glint {
  position: absolute;
  top: 0;
  left: 30%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(240, 197, 99, .35), transparent);
  animation: tf-glint 5s ease-in-out infinite;
}

.fx-sparks span {
  position: absolute;
  bottom: 18%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold-lt);
  box-shadow: 0 0 6px 1px rgba(240, 197, 99, .8);
}

@keyframes tf-smoke {
  0%   { transform: translate(0, 0) scale(1);        opacity: .05; }
  50%  { transform: translate(40px, -30px) scale(1.15); opacity: .09; }
  100% { transform: translate(0, 0) scale(1);        opacity: .05; }
}
@keyframes tf-glint {
  0%, 100% { opacity: .25; }
  50%      { opacity: .6; }
}
@keyframes tf-spark {
  0%   { transform: translateY(0);     opacity: 0; }
  15%  { opacity: .9; }
  100% { transform: translateY(-90px); opacity: 0; }
}

/* --------------------------------------------------------------- stats -- */

.stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 52px;
  border-top: 1px solid var(--hairline);
}
.stats__item { padding: 18px 28px; border-left: 1px solid var(--hairline); }
.stats__item:first-child { padding-left: 0; border-left: none; }
.stats__item:last-child { padding-right: 0; }

.stats__value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  color: var(--gold-lt);
}
.stats__label {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--ink-dimmer);
}

/* --------------------------------------------------------------- trust -- */

.trust {
  background: var(--bg-2);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.trust__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
.trust__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  color: var(--ink-faint);
}
.trust__item {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .22em;
  color: var(--ink-mid);
  text-transform: uppercase;
}
.trust__star { color: var(--gold); font-size: 9px; }

/* ------------------------------------------------------- section chrome -- */

.section-index {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .34em;
  color: var(--gold);
}
.section-index__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
}

.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--ink-bright);
  margin-bottom: 12px;
}
.section-title--flush { margin-bottom: 0; }

.section-lede {
  max-width: 640px;
  margin-bottom: 54px;
  color: var(--ink-dim);
  font-size: 16.5px;
  line-height: 1.6;
  text-wrap: pretty;
}
.section-lede--narrow { max-width: 560px; }

/* ------------------------------------------------------------ features -- */

.features {
  position: relative;
  padding: 100px var(--gutter);
  background: linear-gradient(180deg, var(--bg), var(--bg-3) 55%, var(--bg));
}
.features__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .015) 0 1px, transparent 1px 4px);
}

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

.plate {
  position: relative;
  padding: 28px 22px 26px;
  background: linear-gradient(160deg, #182238, #0f1522 60%, #141c2e);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .06) inset,
    0 -8px 24px rgba(0, 0, 0, .4) inset;
  transition: border-color .25s, transform .25s;
}
.plate:hover {
  border-color: rgba(212, 164, 57, .55);
  transform: translateY(-4px);
}

.plate__screw {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #555, #111);
  box-shadow: 0 1px 1px rgba(255, 255, 255, .15);
}
.plate__screw--tl { top: 8px; left: 8px; }
.plate__screw--tr { top: 8px; right: 8px; }
.plate__screw--bl { bottom: 8px; left: 8px; }
.plate__screw--br { bottom: 8px; right: 8px; }

.hex {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(from 200deg, #2c3a58, #4d6390, #243049, #3c5078, #2c3a58);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.hex__inner {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101828;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  color: var(--gold);
}

.plate__title {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .9), 0 -1px 0 rgba(255, 255, 255, .08);
}
.plate__body {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-dimmer);
  text-wrap: pretty;
}

/* ------------------------------------------------------------ products -- */

.products { background: var(--bg); padding: 100px var(--gutter); }

.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}
.products__note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--ink-faint);
  padding-bottom: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #121a2b, #0d1321);
  border: 1px solid rgba(212, 164, 57, .28);
  transition: border-color .25s, box-shadow .25s, transform .3s;
}
.card:hover {
  border-color: rgba(212, 164, 57, .75);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .55), 0 0 0 1px rgba(212, 164, 57, .25);
  transform: translateY(-5px);
}

.card__media { position: relative; width: 100%; height: 230px; }
.card__img { width: 100%; height: 100%; object-fit: cover; }

.card__vignette {
  position: absolute;
  inset: 0 0 auto 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(8, 12, 20, .5), transparent);
  pointer-events: none;
}
.card__tag {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .26em;
  color: var(--gold-lt);
  background: rgba(8, 12, 20, .6);
  padding: 4px 9px;
  pointer-events: none;
}

.card__body { padding: 22px 22px 24px; border-top: 1px solid rgba(212, 164, 57, .2); }
.card__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ink-bright);
}
.card__desc {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-dimmer);
}

/* Image slot awaiting final product photography. */
.slot {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background:
    repeating-linear-gradient(135deg,
      rgba(212, 164, 57, .05) 0 10px,
      transparent 10px 20px),
    linear-gradient(160deg, #16203a, #0c1220);
  border-bottom: 1px dashed rgba(212, 164, 57, .25);
}
.slot__label {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(133, 145, 164, .8);
  max-width: 220px;
}

/* -------------------------------------------------------------- colors -- */

.colors {
  position: relative;
  padding: 100px var(--gutter);
  background: linear-gradient(180deg, var(--bg), #0d1424 50%, var(--bg));
}
.colors__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(96, 144, 220, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 144, 220, .07) 1px, transparent 1px);
  background-size: 140px 140px;
  -webkit-mask-image: radial-gradient(800px 500px at 80% 20%, rgba(0, 0, 0, .8), transparent 70%);
          mask-image: radial-gradient(800px 500px at 80% 20%, rgba(0, 0, 0, .8), transparent 70%);
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.swatch {
  padding: 20px 14px 18px;
  text-align: center;
  background: linear-gradient(165deg, #141c2e, #0e1523);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: border-color .25s, transform .25s;
}
.swatch:hover {
  border-color: rgba(212, 164, 57, .5);
  transform: translateY(-4px);
}

.swatch__ring {
  display: block;
  width: 100%;
  max-width: 92px;
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 5px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, #3b3b41, #606068, #2a2a2f, #55555c, #3b3b41);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
}

.swatch__disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .5);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, .6) inset,
    0 1px 0 rgba(255, 255, 255, .25);
}

/* The angled sheen shared by every swatch, over each finish's own body colour. */
.swatch__disc--black  { background: conic-gradient(from 205deg, rgba(255,255,255,.28), transparent 18% 42%, rgba(255,255,255,.1) 58%, transparent 70%), radial-gradient(circle at 32% 28%, #4a4a4e, #1b1b1e 55%, #060607); }
.swatch__disc--tin    { background: conic-gradient(from 205deg, rgba(255,255,255,.28), transparent 18% 42%, rgba(255,255,255,.1) 58%, transparent 70%), radial-gradient(circle at 32% 28%, #ffe9a3, #d4a439 50%, #7a5c15); }
.swatch__disc--rose   { background: conic-gradient(from 205deg, rgba(255,255,255,.28), transparent 18% 42%, rgba(255,255,255,.1) 58%, transparent 70%), radial-gradient(circle at 32% 28%, #ffc9a8, #d97f4e 52%, #7e3c1c); }
.swatch__disc--crn    { background: conic-gradient(from 205deg, rgba(255,255,255,.28), transparent 18% 42%, rgba(255,255,255,.1) 58%, transparent 70%), radial-gradient(circle at 32% 28%, #e8eaec, #9ba1a8 52%, #4a4f55); }
.swatch__disc--dlc    { background: conic-gradient(from 205deg, rgba(255,255,255,.28), transparent 18% 42%, rgba(255,255,255,.1) 58%, transparent 70%), radial-gradient(circle at 32% 28%, #3a3d42, #16171a 55%, #050506); }
.swatch__disc--grey   { background: conic-gradient(from 205deg, rgba(255,255,255,.28), transparent 18% 42%, rgba(255,255,255,.1) 58%, transparent 70%), radial-gradient(circle at 32% 28%, #b8bcc2, #6d7178 52%, #33363b); }
.swatch__disc--custom { background: conic-gradient(from 205deg, rgba(255,255,255,.28), transparent 18% 42%, rgba(255,255,255,.1) 58%, transparent 70%), conic-gradient(from 0deg, #d4a439, #d97f4e, #9ba1a8, #3a3d42, #d4a439); }

.swatch__q {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  color: var(--gold);
}

.swatch__name {
  margin-top: 16px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.swatch__spec {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  color: var(--ink-faint);
}

/* ----------------------------------------------------------------- cta -- */

.cta {
  position: relative;
  overflow: hidden;
  background: #0a0f1a;
  padding: 120px var(--gutter);
  text-align: center;
}
.cta__fx > * { position: absolute; pointer-events: none; }

.cta__flag {
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(179, 40, 45, .07) 0 46px, rgba(230, 226, 218, .05) 46px 92px);
  -webkit-mask-image: linear-gradient(180deg, transparent 5%, rgba(0, 0, 0, .9) 50%, transparent 95%);
          mask-image: linear-gradient(180deg, transparent 5%, rgba(0, 0, 0, .9) 50%, transparent 95%);
}
.cta__grid {
  top: 0;
  left: 0;
  width: 42%;
  height: 60%;
  background:
    linear-gradient(0deg, rgba(58, 96, 170, .32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 96, 170, .32) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(80% 80% at 0% 0%, rgba(0, 0, 0, .8), transparent 75%);
          mask-image: radial-gradient(80% 80% at 0% 0%, rgba(0, 0, 0, .8), transparent 75%);
}
.cta__scan { inset: 0; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 3px); }
.cta__glow { inset: 0; background: radial-gradient(700px 380px at 50% 55%, rgba(212, 164, 57, .1), transparent 70%); }

.cta__inner { position: relative; max-width: 860px; margin: 0 auto; }

.cta__stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .5em;
  margin-bottom: 22px;
}
.cta__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 72px;
  line-height: .98;
  text-transform: uppercase;
  color: var(--ink-bright);
  text-wrap: balance;
}
.cta__lede {
  margin: 24px auto 0;
  max-width: 520px;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.6;
}

/* -------------------------------------------------------------- footer -- */

.footer {
  background: #060a10;
  border-top: 1px solid rgba(212, 164, 57, .25);
  padding: 70px var(--gutter) 36px;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .05em;
  color: var(--ink-bright);
}
.footer__about {
  margin-top: 14px;
  max-width: 360px;
  color: var(--ink-dimmer);
  font-size: 14px;
  line-height: 1.6;
}
.footer__logo {
  margin-top: 22px;
  height: 34px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .6));
}

.footer__loc {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__addr {
  font-style: normal;
  color: var(--ink-mid);
  font-size: 14.5px;
  line-height: 1.8;
}
.footer__tel { font-family: var(--mono); font-size: 13.5px; }

.footer__bar {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__links {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-faint);
}
.footer__made {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--ink-dimmer);
}

/* --------------------------------------------------------------- modal -- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 13, .82);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: 520px;
  max-width: 100%;
  max-height: 90vh;
  overflow: auto;
  background: linear-gradient(170deg, #141c2e, #0e1422);
  border: 1px solid rgba(212, 164, 57, .5);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, .7),
    0 1px 0 rgba(255, 255, 255, .07) inset;
}

.modal__rule { height: 3px; background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk)); }
.modal__body { padding: 34px 36px 36px; }

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal__kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--ink-bright);
}
.modal__close {
  flex: none;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--ink-mid);
  font-size: 15px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.modal__close:hover { border-color: var(--gold); color: var(--gold-lt); }

.modal__sent {
  margin-top: 30px;
  border: 1px solid var(--gold-line);
  background: rgba(212, 164, 57, .06);
  padding: 28px;
  text-align: center;
}
.modal__sent[hidden] { display: none; }
.modal__sent-stars { color: var(--gold); font-size: 13px; letter-spacing: .4em; margin-bottom: 14px; }
.modal__sent-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--ink-bright);
}
.modal__sent-copy { color: var(--ink-dim); font-size: 14.5px; line-height: 1.6; margin-top: 10px; }

/* ---------------------------------------------------------------- form -- */

.quote-form[hidden] { display: none; }

.quote-form__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .24em;
  color: var(--ink-dimmer);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--sans);
  width: 100%;
}
.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus { outline: 1px solid var(--gold); }

.field input:user-invalid { border-color: rgba(179, 40, 45, .8); }

.quote-form .btn--block { margin-top: 22px; }

.quote-form__note {
  margin-top: 14px;
  text-align: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--ink-faint);
}

/* -------------------------------------------------------- responsive --- */

@media (max-width: 1100px) {
  .hero__title { font-size: 60px; }
  .cta__title { font-size: 56px; }
  .section-title { font-size: 42px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__caption { display: none; }
}

@media (max-width: 860px) {
  :root { --gutter: 20px; }

  .nav__links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter) 16px;
    background: rgba(6, 10, 18, .98);
    border-bottom: 1px solid rgba(212, 164, 57, .22);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 0; width: 100%; }

  .nav__toggle { display: flex; }
  .nav .btn--sm,
  .flag-badge { display: none; }

  .hero { min-height: 0; }
  .hero__inner { padding: 120px var(--gutter) 72px; }
  .hero__title { font-size: 46px; }
  .hero__lede { font-size: 16px; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(7, 11, 18, .82) 0%, rgba(7, 11, 18, .7) 50%, rgba(7, 11, 18, .92) 100%);
  }

  .stats { gap: 0; }
  .stats__item { padding: 16px 20px; }
  .stats__item:first-child { padding-left: 0; }

  .feature-grid,
  .product-grid { grid-template-columns: 1fr; }

  .footer__cols { grid-template-columns: 1fr; gap: 36px; }
  .footer__made { margin-left: 0; }

  .cta { padding: 80px var(--gutter); }
  .cta__title { font-size: 40px; }
  .section-title { font-size: 34px; }

  .features, .products, .colors { padding: 72px var(--gutter); }

  .modal__body { padding: 24px 22px 26px; }
  .quote-form__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__ambient { display: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
