/* ------------ TOKENS ------------ */
:root {
  --charcoal: #0E1116;
  --charcoal-2: #161A21;
  --charcoal-3: #1E232B;
  --slate: #3A434E;
  --slate-2: #5A6472;
  --blue: #1E7BFF;
  --blue-hot: #3B8DFF;
  --blue-deep: #0A4DB8;
  --pink: #FF4D8F;
  --bone: #F5F6F8;
  --bone-2: #E5E7EB;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}
.site--no-pink { --pink: #1E7BFF; }

/* ------------ RESET ------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--charcoal);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: "Archivo", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}


/* ------------ INTRO: FOAM SLOWLY COVERS, THEN MICROFIBER WIPES TOP→BOTTOM ------------ */
.intro {
  position: fixed; inset: 0; z-index: 1000;
  background: #000;
  overflow: hidden;
  pointer-events: auto;
}
.intro--done { display: none; }

/* The black "car body" backdrop */
.intro__body {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, #181c24 0%, #0a0c10 60%, #000 100%);
}

/* Faint reflection sheen on the body, like polished paint */
.intro__sheen {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.04) 48%, rgba(180, 210, 255, 0.06) 52%, transparent 70%);
  opacity: 0;
  animation: sheenIn 1.2s ease-out 0.2s forwards;
}
@keyframes sheenIn { to { opacity: 1; } }

/* Whole-screen foam coat — fills in fast, like spray accumulating */
.intro__coat {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.95) 0 60px, transparent 62px),
    radial-gradient(circle at 28% 10%, rgba(255,255,255,0.92) 0 80px, transparent 82px),
    radial-gradient(circle at 46% 24%, rgba(255,255,255,0.94) 0 70px, transparent 72px),
    radial-gradient(circle at 68% 14%, rgba(255,255,255,0.93) 0 90px, transparent 92px),
    radial-gradient(circle at 86% 22%, rgba(255,255,255,0.92) 0 65px, transparent 67px),
    radial-gradient(circle at 8% 42%, rgba(255,255,255,0.94) 0 75px, transparent 77px),
    radial-gradient(circle at 32% 50%, rgba(255,255,255,0.93) 0 95px, transparent 97px),
    radial-gradient(circle at 56% 44%, rgba(255,255,255,0.95) 0 80px, transparent 82px),
    radial-gradient(circle at 78% 52%, rgba(255,255,255,0.93) 0 70px, transparent 72px),
    radial-gradient(circle at 94% 40%, rgba(255,255,255,0.92) 0 60px, transparent 62px),
    radial-gradient(circle at 16% 72%, rgba(255,255,255,0.93) 0 85px, transparent 87px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.94) 0 75px, transparent 77px),
    radial-gradient(circle at 64% 74%, rgba(255,255,255,0.92) 0 90px, transparent 92px),
    radial-gradient(circle at 84% 84%, rgba(255,255,255,0.94) 0 80px, transparent 82px),
    radial-gradient(circle at 22% 92%, rgba(255,255,255,0.93) 0 65px, transparent 67px),
    radial-gradient(circle at 50% 96%, rgba(255,255,255,0.92) 0 70px, transparent 72px),
    radial-gradient(circle at 76% 94%, rgba(255,255,255,0.93) 0 60px, transparent 62px),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(248, 250, 252, 0.96), rgba(220, 230, 245, 0.92));
  opacity: 0;
  filter: blur(8px);
  animation: coatIn 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
@keyframes coatIn {
  0%   { opacity: 0;    filter: blur(14px); }
  60%  { opacity: 0.9;  filter: blur(4px); }
  100% { opacity: 1;    filter: blur(1.5px); }
}

/* Foam highlight detail layer — bubble pile texture on top of coat */
.intro__bubbles {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,1) 0 6px, transparent 8px),
    radial-gradient(circle at 35% 45%, rgba(255,255,255,1) 0 4px, transparent 6px),
    radial-gradient(circle at 60% 20%, rgba(255,255,255,1) 0 5px, transparent 7px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,1) 0 7px, transparent 9px),
    radial-gradient(circle at 25% 70%, rgba(255,255,255,1) 0 5px, transparent 7px),
    radial-gradient(circle at 50% 85%, rgba(255,255,255,1) 0 6px, transparent 8px),
    radial-gradient(circle at 75% 35%, rgba(255,255,255,1) 0 4px, transparent 6px),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,1) 0 6px, transparent 8px),
    radial-gradient(circle at 10% 55%, rgba(255,255,255,1) 0 5px, transparent 7px),
    radial-gradient(circle at 45% 60%, rgba(255,255,255,1) 0 4px, transparent 6px);
  opacity: 0;
  animation: bubblesIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
  mix-blend-mode: screen;
}
@keyframes bubblesIn { to { opacity: 0.6; } }

/* Subtle foam-edge shadow so it has dimension */
.intro__coat::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, transparent 60%, rgba(180, 200, 220, 0.35) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Brand reveal at peak foam — isolated layer, opacity-only fade */
.intro__brand {
  position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  z-index: 20;
  opacity: 0;
  isolation: isolate;
  transform: translateZ(0);
  will-change: opacity;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: brandIn 0.6s ease-in-out 1.5s forwards;
}
@keyframes brandIn  {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.intro__brand-mark {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 72px;
  letter-spacing: -0.025em;
  color: #1a2030;
}
.intro__brand-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(40, 60, 90, 0.65);
  text-transform: uppercase;
}
.intro__brand-name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #1a2030;
}

/* Whole intro fades out smoothly (no cloth wipe) */
.intro--done-fading { animation: introFadeOut 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes introFadeOut { to { opacity: 0; } }

/* Skip button */
.intro__skip {
  position: absolute; top: 20px; right: 24px;
  z-index: 10;
  padding: 8px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  opacity: 0;
  animation: skipIn 0.5s ease-out 0.5s forwards;
}
.intro__skip:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
@keyframes skipIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .intro { animation: introFadeOut 0.4s ease-out 0.1s forwards; }
  .intro__coat, .intro__bubbles, .cloth, .intro__brand { display: none; }
}


.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(14, 17, 22, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__links { display: flex; gap: 28px; font-size: 14px; color: var(--bone-2); }
.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--blue-hot); }
.nav__cta { padding: 10px 18px; font-size: 14px; }
@media (max-width: 720px) { .nav__links { display: none; } }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__name { font-family: "Archivo", sans-serif; font-weight: 800; letter-spacing: 0.02em; font-size: 14px; }
.logo__sub { font-size: 11px; color: var(--slate-2); letter-spacing: 0.08em; text-transform: uppercase; }

/* ------------ BUTTONS ------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 24px -8px rgba(30, 123, 255, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--primary:hover { background: var(--blue-hot); box-shadow: 0 10px 30px -8px rgba(30, 123, 255, 0.8); }
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--bone);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--blue); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ------------ HERO ------------ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  padding: clamp(40px, 6vw, 96px) var(--pad) clamp(60px, 8vw, 120px);
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 80vh;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, #000, transparent);
}
.hero__glow {
  position: absolute; left: -20%; top: 20%; width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(30, 123, 255, 0.18), transparent 60%);
  filter: blur(40px);
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-hot);
  background: rgba(30, 123, 255, 0.1);
  border: 1px solid rgba(30, 123, 255, 0.3);
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-transform: uppercase;
}
.hero__title--accent {
  background: linear-gradient(180deg, var(--blue-hot) 0%, var(--blue) 60%, var(--blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero__lede {
  margin-top: 24px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--bone-2);
  max-width: 480px;
}
.hero__ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  margin-top: 56px;
  display: flex; align-items: center; gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stat__num { font-family: "Archivo", sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.stat__label { font-size: 12px; color: var(--slate-2); letter-spacing: 0.06em; text-transform: uppercase; }
.stat__sep { width: 1px; height: 28px; background: var(--line); }

.hero__visual { position: relative; z-index: 2; }
.hero__plate {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--charcoal-2);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px var(--line);
}
.hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__badge {
  position: absolute; right: 16px; top: 16px;
  background: var(--charcoal);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 160px;
  backdrop-filter: blur(10px);
}
.hero__badge-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--pink); letter-spacing: 0.12em; font-weight: 600; }
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 8px var(--pink); animation: pulse 1.6s infinite; }
.hero__badge-big { font-family: "Archivo", sans-serif; font-size: 22px; font-weight: 800; margin-top: 6px; }
.hero__badge-sub { font-size: 11px; color: var(--slate-2); }
.hero__chip {
  position: absolute;
  background: rgba(14, 17, 22, 0.9);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--bone-2);
  backdrop-filter: blur(10px);
}
.hero__chip--1 { left: 16px; bottom: 80px; }
.hero__chip--2 { left: 32px; bottom: 32px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__plate { aspect-ratio: 16/12; max-height: 400px; }
}

/* ------------ SECTIONS ------------ */
.section {
  padding: clamp(60px, 8vw, 120px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.shead { max-width: 700px; margin-bottom: 56px; }
.shead__eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-hot);
  margin-bottom: 16px;
  font-weight: 600;
  font-family: "JetBrains Mono", "Archivo", monospace;
}
.shead__title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.shead__sub {
  margin-top: 16px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--bone-2);
  line-height: 1.5;
  max-width: 540px;
}
.shead--light .shead__title { color: var(--bone); }

/* ------------ PACKAGES ------------ */
.pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 980px) { .pkgs { grid-template-columns: 1fr; } }

.pkg {
  position: relative;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.2s, box-shadow 0.25s;
}
.pkg:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.pkg--popular {
  background: linear-gradient(180deg, rgba(30, 123, 255, 0.08), var(--charcoal-2) 50%);
  border: 1px solid rgba(30, 123, 255, 0.4);
  box-shadow: 0 20px 60px -20px rgba(30, 123, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateY(-8px);
}
.pkg--popular:hover { transform: translateY(-12px); }
.pkg__ribbon {
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  background: var(--blue); color: #fff;
  font-size: 11px; letter-spacing: 0.14em; font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 20px -4px rgba(30, 123, 255, 0.6);
}
.pkg__head { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pkg__tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-2); font-weight: 600; margin-bottom: 12px;
}
.pkg--popular .pkg__tag { color: var(--blue-hot); }
.pkg__name { font-size: 26px; line-height: 1.1; }
.pkg__pitch { color: var(--bone-2); margin-top: 10px; font-size: 14px; line-height: 1.5; }
.pkg__price {
  margin-top: 24px;
  display: flex; align-items: baseline; gap: 2px;
  font-family: "Archivo", sans-serif;
}
.pkg__currency { font-size: 22px; font-weight: 600; color: var(--slate-2); }
.pkg__num { font-size: 64px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.pkg__suffix { font-size: 32px; font-weight: 800; color: var(--blue-hot); }
.pkg__features { list-style: none; padding: 24px 0; margin: 0; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.pkg__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--bone-2); line-height: 1.45;
}
.pkg__features svg { color: var(--blue-hot); flex-shrink: 0; margin-top: 2px; }
.pkg--popular .pkg__features svg { color: var(--blue-hot); }

/* ------------ SERVICES ------------ */
.section--services { background: linear-gradient(180deg, transparent 0%, var(--charcoal-2) 100%); max-width: none; padding-left: 0; padding-right: 0; }
.section--services > .shead, .section--services > .srvs { max-width: var(--maxw); margin-left: auto; margin-right: auto; padding-left: var(--pad); padding-right: var(--pad); }

.srvs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .srvs { grid-template-columns: 1fr; } }
.srv {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.srv:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.srv__media { background: var(--charcoal-3); position: relative; min-height: 260px; overflow: hidden; }
.srv__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.srv--blue .srv__media { box-shadow: inset 0 0 0 1px rgba(30, 123, 255, 0.15); }
.srv--pink .srv__media { box-shadow: inset 0 0 0 1px rgba(255, 77, 143, 0.15); }
.srv__body { padding: 28px; display: flex; flex-direction: column; }
.srv__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.srv__name { font-size: 22px; line-height: 1.1; }
.srv__price {
  font-family: "Archivo", sans-serif;
  font-size: 32px; font-weight: 900; letter-spacing: -0.03em;
  color: var(--blue-hot);
}
.srv--pink .srv__price { color: var(--pink); }
.srv__pitch { color: var(--bone-2); margin-top: 8px; font-size: 14px; line-height: 1.5; }
.srv__bullets { list-style: none; padding: 16px 0 24px; margin: 0; flex: 1; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--bone-2); }
.srv__bullets li::before { content: "+ "; color: var(--blue-hot); font-weight: 700; }
.srv--pink .srv__bullets li::before { color: var(--pink); }
.srv__body .btn { align-self: flex-start; }

@media (max-width: 600px) { .srv { grid-template-columns: 1fr; } .srv__media { min-height: 200px; } }

/* ------------ ADDONS ------------ */
.addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--charcoal-2);
}
@media (max-width: 900px) { .addons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .addons { grid-template-columns: 1fr; } }
.addon {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.addon:hover { background: rgba(255,255,255,0.02); }
.addons .addon:nth-child(3n) { border-right: none; }
.addons .addon:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 900px) {
  .addons .addon { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .addons .addon:nth-child(2n) { border-right: none; }
  .addons .addon:nth-last-child(-n+2) { border-bottom: none; }
}
.addon__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(30, 123, 255, 0.1);
  color: var(--blue-hot);
  border-radius: 12px;
  border: 1px solid rgba(30, 123, 255, 0.2);
}
.addon__body { flex: 1; min-width: 0; }
.addon__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.addon__name { font-weight: 600; font-size: 15px; }
.addon__price { font-family: "Archivo", sans-serif; font-weight: 800; color: var(--blue-hot); font-size: 18px; }
.addon__desc { color: var(--slate-2); font-size: 13px; line-height: 1.5; margin-top: 4px; }

/* ------------ GEAR ------------ */
.section--gear {
  background: var(--charcoal);
  max-width: none;
  padding-left: 0; padding-right: 0;
  border-top: 1px solid var(--line);
}
.section--gear > .shead, .section--gear > .gear { max-width: var(--maxw); margin-left: auto; margin-right: auto; padding-left: var(--pad); padding-right: var(--pad); }
.gear {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .gear { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .gear { grid-template-columns: 1fr 1fr; gap: 10px; } }
@media (max-width: 360px) { .gear { grid-template-columns: 1fr; } }
.gear__card {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.gear__card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.gear__media { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; margin-bottom: 14px; background: var(--charcoal-3); }
.gear__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gear__tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase;
  color: var(--blue-hot);
  background: rgba(30, 123, 255, 0.1);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 8px;
}
.gear__name { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.gear__spec { font-size: 12px; color: var(--slate-2); line-height: 1.5; }

/* ------------ PLACEHOLDER ------------ */
.ph {
  position: absolute; inset: 0;
  background: var(--charcoal-3);
  display: grid; place-items: center;
  color: var(--slate);
  overflow: hidden;
}
.gear__media .ph, .srv__media .ph, .hero__plate .ph { position: absolute; }
.ph--dark { background: var(--charcoal); }
.ph__stripes { position: absolute; inset: 0; width: 100%; height: 100%; }
.ph__label {
  position: relative;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--slate-2);
  letter-spacing: 0.05em;
  background: rgba(14, 17, 22, 0.8);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* ------------ FOOTER ------------ */
.footer { padding: 80px var(--pad) 32px; max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; }
@media (max-width: 720px) { .footer__top { grid-template-columns: 1fr; } }
.footer__bio { color: var(--bone-2); font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 360px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols > div { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--bone-2); }
.footer__cols a:hover { color: var(--blue-hot); }
.footer__social { display: inline-flex; align-items: center; gap: 8px; }
.footer__social svg { color: var(--pink); transition: color 0.2s; }
.footer__social:hover svg { color: var(--blue-hot); }
.footer__h { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone); margin-bottom: 4px; }
.footer__disclaim {
  margin-top: 56px;
  padding: 20px 24px;
  background: rgba(255, 77, 143, 0.06);
  border: 1px solid rgba(255, 77, 143, 0.25);
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone-2);
}
.site--no-pink .footer__disclaim { background: rgba(30, 123, 255, 0.06); border-color: rgba(30, 123, 255, 0.25); }
.footer__disclaim strong { color: var(--bone); }
.footer__bot {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12px; color: var(--slate-2); flex-wrap: wrap;
}

/* ------------ MODAL ------------ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 7, 10, 0.7);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__panel {
  position: relative;
  background: var(--charcoal-2);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  width: 100%; max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8);
  animation: modalIn 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: grid; place-items: center;
  font-size: 22px; line-height: 1;
  transition: background 0.2s;
}
.modal__close:hover { background: rgba(255,255,255,0.12); }
.modal__head { padding: 28px 28px 12px; }
.modal__eyebrow { font-size: 11px; letter-spacing: 0.16em; color: var(--blue-hot); font-weight: 600; }
.modal__title { font-size: 28px; line-height: 1.1; margin-top: 8px; text-transform: uppercase; }
.modal__progress { height: 3px; background: var(--charcoal-3); margin: 0 28px; border-radius: 2px; overflow: hidden; }
.modal__progress-bar { height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-hot)); transition: width 0.3s ease; }
.modal__body { padding: 24px 28px; display: flex; flex-direction: column; gap: 18px; }
.modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal__foot { padding: 20px 28px 28px; display: flex; gap: 12px; }
.modal__foot .btn { flex: 1; }
.modal__error {
  background: rgba(255, 77, 143, 0.08);
  border: 1px solid rgba(255, 77, 143, 0.35);
  color: #ffb3cc;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-2); font-weight: 600; }
.input {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  padding: 12px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.input:focus { outline: none; border-color: var(--blue); background: var(--charcoal-3); }
textarea.input { resize: vertical; min-height: 60px; }

.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 600px) { .seg { grid-template-columns: 1fr 1fr; } }
.seg__btn {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--charcoal);
  border: 1px solid var(--line-strong);
  text-align: left;
  font-size: 13px;
  transition: all 0.2s;
}
.seg__btn:hover { border-color: var(--blue); }
.seg__btn.is-on { border-color: var(--blue); background: rgba(30, 123, 255, 0.12); box-shadow: inset 0 0 0 1px var(--blue); }
.seg__price { font-family: "Archivo", sans-serif; font-weight: 700; color: var(--blue-hot); margin-top: 2px; }

.modal__body--confirm { text-align: center; align-items: center; }
.confirm__check {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(30, 123, 255, 0.15);
  border: 2px solid var(--blue);
  color: var(--blue-hot);
  display: grid; place-items: center;
  margin: 0 auto;
}
.modal__body--confirm h4 { font-family: "Archivo", sans-serif; font-size: 22px; }
.modal__body--confirm p { color: var(--bone-2); line-height: 1.6; max-width: 380px; }
.confirm__card {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
}
.confirm__card > div { display: flex; justify-content: space-between; gap: 16px; font-size: 13px; }
.confirm__card span { color: var(--slate-2); }
.confirm__disclaim { font-size: 12px; color: var(--slate-2); margin-top: 8px; }

/* ------------ GALLERY ------------ */
.section--gallery { background: linear-gradient(180deg, var(--charcoal-2) 0%, transparent 100%); max-width: none; padding-left: 0; padding-right: 0; }
.section--gallery > .shead, .section--gallery > .gal-group { max-width: var(--maxw); margin-left: auto; margin-right: auto; padding-left: var(--pad); padding-right: var(--pad); }

.gal-group { margin-top: 40px; }
.gal-group:first-of-type { margin-top: 0; }
.gal-group__head {
  display: flex; align-items: baseline; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.gal-group__label {
  font-family: "Archivo", sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--bone);
}
.gal-group:nth-of-type(1) .gal-group__label { color: var(--pink); }
.gal-group:nth-of-type(2) .gal-group__label { color: var(--blue-hot); }
.gal-group:nth-of-type(3) .gal-group__label { color: var(--bone); }
.gal-group__blurb {
  font-size: 13px; color: var(--slate-2);
  font-family: "JetBrains Mono", monospace;
}

.gal-grid {
  display: grid;
  gap: 12px;
}
.gal-grid--1 { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
.gal-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gal-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gal-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gal-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gal-grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gal-grid--5 .gal-card:nth-child(1),
.gal-grid--5 .gal-card:nth-child(2) { grid-column: span 1; }
@media (max-width: 900px) {
  .gal-grid--3, .gal-grid--5, .gal-grid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gal-grid--5 .gal-card:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 600px) {
  /* Stay at 2 cols on phones — keeps the framed gallery look instead of one tall column */
  .gal-grid--2, .gal-grid--3, .gal-grid--4, .gal-grid--5, .gal-grid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .gal-grid--5 .gal-card:nth-child(5) { grid-column: span 2; }
  .gal-card figcaption { padding: 6px 8px; font-size: 10px; }
}
@media (max-width: 360px) {
  /* Tiny phones get a single column so captions stay readable */
  .gal-grid--2, .gal-grid--3, .gal-grid--4, .gal-grid--5, .gal-grid--6 { grid-template-columns: 1fr; }
  .gal-grid--5 .gal-card:nth-child(5) { grid-column: span 1; }
}

.gal-card {
  position: relative;
  margin: 0;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.25s ease, border-color 0.2s, box-shadow 0.2s;
}
/* Single-column "Before" card stays landscape so it doesn't tower */
.gal-grid--1 .gal-card { aspect-ratio: 4/3; }
.gal-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.6);
}
.gal-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gal-card:hover img { transform: scale(1.04); }
.gal-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone);
  background: linear-gradient(180deg, transparent 0%, rgba(14, 17, 22, 0.85) 70%);
  font-family: "JetBrains Mono", monospace;
}
.gal-card { cursor: pointer; }
.gal-card:focus-visible { outline: 2px solid var(--blue-hot); outline-offset: 3px; }

/* ------------ LIGHTBOX ------------ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(5, 7, 10, 0.92);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  gap: 18px;
  animation: fadeIn 0.18s ease;
  cursor: zoom-out;
}
.lightbox__img {
  max-width: min(92vw, 1400px);
  max-height: 82vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.06);
  cursor: default;
  animation: lightboxIn 0.22s cubic-bezier(0.2, 0, 0.2, 1);
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox__caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--bone-2);
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 720px;
}
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 28px; line-height: 1;
  color: var(--bone);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); }
