/* ==========================================================================
   HARTZHEIM PERFORMANCE — hartzheimperformance.com
   Brand: black / white / red — heavy condensed athletic display
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root {
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-3:         #161616;
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.16);

  --text:         #f5f5f5;
  --text-dim:     #b8b8b8;
  --text-mute:    #8a8a8a;

  --red:          #e63946;
  --red-2:        #ff4757;
  --red-glow:     rgba(230,57,70,0.35);

  --radius:       14px;
  --radius-lg:    22px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow:       0 12px 32px rgba(0,0,0,0.5);
  --shadow-red:   0 12px 36px rgba(230,57,70,0.25);

  --display:      "Anton", "Oswald", Impact, "Arial Narrow Bold", system-ui, sans-serif;
  --body:         "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container:    1200px;
  --pad:          clamp(20px, 4vw, 40px);

  --ease:         cubic-bezier(.2,.8,.2,1);

  /* render native form controls (select dropdowns, scrollbars) in dark mode
     so options aren't white-on-white on mobile */
  color-scheme: dark;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* selection */
::selection { background: var(--red); color: #fff; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.section__head {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
}
.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 8px 0 14px;
}
.section__lede {
  color: var(--text-dim);
  font-size: clamp(16px, 1.6vw, 18px);
  max-width: 640px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 6px;
}
.eyebrow--red { color: var(--red); }
.text-red { color: var(--red); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  user-select: none;
}
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { background: var(--red-2); transform: translateY(-2px); box-shadow: 0 18px 44px var(--red-glow); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--red); color: #fff; transform: translateY(-2px); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom-color: var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; }
.brand__logo {
  height: 56px;
  width: auto;
  display: block;
  /* logo art has built-in black bg — blend it into the dark nav */
  mix-blend-mode: screen;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 28px; }
.nav__list a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav__list a:hover { color: #fff; }
.nav__list a:hover::after { width: 100%; }
.nav__cta { padding: 11px 20px; font-size: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--pad) 24px;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid var(--line);
}
/* the [hidden] attribute is toggled by JS; this beats the .mobile-menu
   display:flex above so the menu actually collapses when closed */
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  padding: 14px 0;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; margin-top: 8px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(230,57,70,0.18), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(230,57,70,0.10), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.6;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 30%, rgba(230,57,70,0.06), transparent 40%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
}
.hero__inner {
  position: relative;
  text-align: left;
  max-width: 980px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 116px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 14px 0 24px;
}
.hero__sub {
  color: var(--text-dim);
  font-size: clamp(16px, 1.7vw, 19px);
  max-width: 620px;
  margin: 0 0 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 36px);
  max-width: 640px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stats strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.hero__stats span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid var(--line-strong);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
  opacity: 0.7;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollBob 1.6s var(--ease) infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(8px); opacity: 1; }
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.about__badge {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex;
  flex-direction: column;
  background: rgba(230,57,70,0.95);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  z-index: 2;
  box-shadow: var(--shadow);
}
.about__badge strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about__badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}
.about__quote {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 28px;
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--red);
  font-style: normal;
}
.about__quote em { color: var(--red); font-style: normal; }

.check-list { display: grid; gap: 12px; margin: 0 0 32px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-dim);
}
.check-list .check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}
.check-list em { color: #fff; font-style: normal; font-weight: 600; }

/* ---------- PACKAGES ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.pricing { position: relative; }
.pricing--featured {
  background: linear-gradient(180deg, #1a0d10 0%, var(--bg-3) 70%);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.pricing--featured:hover { box-shadow: 0 18px 50px var(--red-glow); }
.pricing__ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: var(--shadow-red);
}
.pricing__head { padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.pricing__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 6px;
}
.pricing__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.pricing__price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.pricing__amt {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  color: #fff;
  line-height: 1;
}
.pricing__per { color: var(--text-mute); font-size: 14px; font-weight: 500; }

.pricing__tiers {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px dashed var(--line);
}
.pricing__tiers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-dim);
}
.pricing__tiers strong {
  color: #fff;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.pricing__feats { display: grid; gap: 10px; margin: 0 0 24px; }
.pricing__feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
}
.pricing__feats li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--red);
  font-weight: 800;
}
.pricing .btn { margin-top: auto; }

.pricing__fineprint {
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
  margin-top: 28px;
}

/* ---------- WHY GRID ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.why-item:hover { transform: translateY(-4px); border-color: var(--red); }
.why-item__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(230,57,70,0.12);
  color: var(--red);
  margin-bottom: 18px;
}
.why-item__icon svg { width: 24px; height: 24px; }
.why-item h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}
.why-item p { color: var(--text-dim); font-size: 15px; margin: 0; }
.why-item--cta {
  background: linear-gradient(135deg, var(--red) 0%, #b91d2a 100%);
  border-color: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-item--cta h3, .why-item--cta p { color: #fff; }
.why-item--cta p { opacity: 0.9; margin-bottom: 18px; }
.why-item--cta .btn--primary {
  background: #fff; color: var(--red); box-shadow: none;
  align-self: flex-start;
}
.why-item--cta .btn--primary:hover { background: #000; color: #fff; }

/* ---------- PRICE SUMMARY ---------- */
.price-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  margin-top: 28px;
}
.price-summary li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-summary__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.price-summary strong {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  color: var(--red);
  letter-spacing: 0.01em;
}
.price-summary__per {
  font-size: 13px;
  color: var(--text-mute);
}

/* ---------- PAY BUTTON ---------- */
.pricing__pay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.pricing__pay-note {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ---------- PAYMENT MODAL ---------- */
.pay-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pay-modal[hidden] { display: none; }
.pay-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(3px);
  animation: payFade 0.2s ease;
}
.pay-modal__panel {
  position: relative;
  width: min(440px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg-2, #141414);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  padding: clamp(24px, 4vw, 36px);
  animation: payRise 0.25s ease;
}
.pay-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-mute);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease;
}
.pay-modal__close:hover { color: #fff; }
.pay-modal__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 6vw, 38px);
  text-transform: uppercase;
  margin: 6px 0 10px;
  letter-spacing: 0.01em;
}
.pay-modal__lede {
  color: var(--text-mute);
  font-size: 15px;
  margin-bottom: 18px;
}
.pay-modal__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pay-modal__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.pay-modal__list a:hover,
.pay-modal__list a:focus-visible {
  border-color: var(--red);
  background: rgba(230, 57, 70, 0.1);
}
.pay-modal__list a:active { transform: scale(0.99); }
.pay-modal__list a strong {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}
.pay-modal__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
}
@keyframes payFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes payRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SUPPLEMENTS CALLOUT ---------- */
.supps__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  background: linear-gradient(135deg, #1a0d10 0%, var(--bg-3) 70%);
  border: 1px solid var(--red);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-red);
}
.supps__copy { flex: 1 1 380px; }
.supps__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 6px 0 12px;
}
.supps__lede { color: var(--text-dim); font-size: clamp(15px, 1.6vw, 17px); margin: 0; max-width: 560px; }
.supps__card .btn { flex-shrink: 0; }

/* ---------- CONTACT ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.contact__lede { color: var(--text-dim); margin: 0 0 28px; font-size: 17px; }
.contact__list { display: grid; gap: 12px; }
.contact__list li { display: flex; align-items: center; gap: 12px; color: var(--text-dim); }
.contact__list a:hover { color: var(--red); }
.contact__icon { color: var(--red); font-size: 18px; }

.contact__form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 16px;
}
.field { display: grid; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field .optional { color: var(--text-mute); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.18);
}
.field textarea { resize: vertical; min-height: 100px; }

/* dropdowns — reset native chrome, draw our own caret, and force dark
   option colors so the list is never white-on-white */
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b8b8b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field select option { background: var(--bg-2); color: var(--text); }
.form-note { margin: 0; font-size: 13px; color: var(--text-mute); text-align: center; }
.form-note.is-success { color: #6ee7b7; }
.form-note.is-error { color: var(--red); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
}
.footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: 14px;
  mix-blend-mode: screen;
}
.footer__brand p { color: var(--text-mute); margin: 0; font-size: 14px; max-width: 320px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer__nav a:hover { color: var(--red); }
.footer__contact { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.footer__contact a { color: var(--text-dim); }
.footer__contact a:hover { color: var(--red); }
.footer__address { font-style: normal; color: var(--text-mute); }

.footer__legal {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 12px;
  color: var(--text-mute);
}
.footer__legal .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer__tag { letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); }

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 440px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap { height: 64px; }
  .brand__logo { height: 42px; }
  .footer__logo { height: 52px; }
  .hero { padding-top: 110px; padding-bottom: 72px; min-height: auto; }
  .hero__title { font-size: clamp(38px, 11vw, 64px); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; }
  .hero__stats li { flex-direction: row; justify-content: space-between; align-items: baseline; }
  .hero__scroll { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .supps__card { flex-direction: column; align-items: flex-start; text-align: left; }
  .supps__card .btn { width: 100%; }
  .footer__legal .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .section { padding: 64px 0; }
}
@media (min-width: 761px) {
  .mobile-menu { display: none !important; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
