/* ============================================================
   REYNOLDS PHYSIOTHERAPY — FORGE
   Sporty / performance / hands-on physio for people who train
   ============================================================ */

:root {
  --ink: #0A0A09;
  --ink-2: #141413;
  --ink-3: #1E1E1C;
  --dim: #7A766C;
  --bone: #F2EFE8;
  --orange: #FF5A1F;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: #fff;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--orange); color: var(--ink); }

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ---------- TYPE PRIMITIVES ---------- */
.display {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.label--w-rule {
  display: flex;
  align-items: center;
  gap: 10px;
}
.label--w-rule::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}

/* ---------- LAYOUT WRAP ---------- */
.w {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- BUTTONS — skewed slab ---------- */
.btn {
  display: inline-block;
  padding: 16px 26px;
  font-family: "Archivo Black", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transform: skewX(-8deg);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}
.btn > span { display: inline-block; transform: skewX(8deg); }
.btn--primary { background: var(--orange); color: var(--ink); }
.btn--primary:hover { background: #fff; transform: skewX(-8deg) translateY(-2px); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--orange); transform: skewX(-8deg) translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: none;
  padding: 16px 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--ink { background: var(--ink); color: var(--orange); }
.btn--ink:hover { background: #fff; color: var(--ink); }

/* ---------- TOP UTILITY BAR ---------- */
.util {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 9px 40px;
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  background: var(--ink);
  position: relative;
  z-index: 50;
}
.util__live { color: var(--orange); }
.util__live::before {
  content: "●";
  margin-right: 4px;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 60%, 100% { opacity: 1; }
  70%, 90% { opacity: 0.3; }
}

/* ---------- NAV ---------- */
.head {
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 9, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo__mark {
  width: 34px;
  height: 34px;
  background: var(--orange);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  transform: skewX(-8deg);
}
.logo__mark > span { display: inline-block; transform: skewX(8deg); }
.logo__name {
  font-family: "Archivo Black", sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo__sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.18em;
  margin-top: 3px;
}
.head__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.head__links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.head__links a:hover { opacity: 1; color: var(--orange); }
.head__links .btn { padding: 10px 18px; font-size: 10px; }
.ham {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

/* ---------- HERO ---------- */
.hero {
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
  position: relative;
}
.hero__grid::before {
  content: "";
  position: absolute;
  top: 0; bottom: 60px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12) 20%, rgba(255,255,255,.12) 80%, transparent);
  transform: translateX(-20px);
  pointer-events: none;
}
.hero__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(64px, 9.5vw, 148px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.hero__title .stroke {
  color: var(--ink);
  -webkit-text-stroke: 1.5px var(--orange);
  font-style: italic;
  margin-left: clamp(20px, 3vw, 60px);
  display: inline-block;
}
.hero__title .accent { color: var(--orange); }
.hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: #C9C5BC;
  max-width: 480px;
  margin-top: 32px;
}
.hero__cta {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero stats row */
.stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.stat {
  padding: 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child { border-right: none; }
.stat:not(:first-child) { padding-left: 20px; }
.stat__v {
  font-family: "Archivo Black", sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.stat__l {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 8px;
}

/* Hero imagery — push portrait full-bleed to the right edge */
.hero__media {
  position: relative;
  min-height: 720px;
  /* break out of the 1280 wrap to the right viewport edge */
  margin-right: calc(-1 * (100vw - min(100vw, 1280px)) / 2 - 40px);
}
.hero__img-1 {
  position: absolute;
  top: 0;
  right: 0;
  left: 140px;
  height: 720px;
  background: #222;
  overflow: hidden;
}
.hero__img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: grayscale(0.18) contrast(1.06);
  transition: transform 6s ease;
}
.hero__img-1:hover img { transform: scale(1.03); }
/* dramatic dark gradient bottom of portrait for type to sit on */
.hero__img-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,9,0.7) 100%);
  pointer-events: none;
}
/* huge name watermark over portrait */
.hero__watermark {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.hero__watermark .em { color: var(--orange); }
.hero__watermark small {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  font-weight: 400;
  text-shadow: none;
}
.hero__tag-tl,
.hero__tag-br {
  position: absolute;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 10px;
}
.hero__tag-tl {
  top: 14px;
  left: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}
.hero__tag-br {
  bottom: 14px;
  right: 14px;
  color: var(--orange);
}
.hero__img-2 {
  position: absolute;
  top: 320px;
  left: -20px;
  width: 170px;
  aspect-ratio: 0.78;
  background: #222;
  border: 4px solid var(--ink);
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.hero__img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) contrast(1.1);
}
.hero__stamp {
  position: absolute;
  top: 40px;
  right: 24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(10, 10, 9, 0.85);
  animation: rot 22s linear infinite;
  z-index: 2;
}
.hero__stamp::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 90, 31, 0.35);
  border-radius: 50%;
}
@keyframes rot {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  margin-top: 56px;
  padding: 18px 0;
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.marquee__track {
  display: inline-block;
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION HEADER PATTERN ---------- */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.sec-head .label { margin-bottom: 18px; }
.sec-head h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.sec-head__aside {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.12em;
  max-width: 240px;
  text-align: right;
  line-height: 1.7;
}
.sec-head__aside a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- CONDITIONS ---------- */
.cond { padding: 140px 0 100px; }
.cond__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cc {
  background: var(--ink);
  color: #fff;
  padding: 36px 28px 28px;
  cursor: pointer;
  transition: color 0.25s;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  text-decoration: none;
}
.cc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 0;
}
.cc:hover::after { transform: translateY(0); }
.cc > * { position: relative; z-index: 1; }
.cc:hover { color: var(--ink); }
.cc__meta {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--dim);
  margin-bottom: 36px;
  transition: color 0.25s;
}
.cc:hover .cc__meta { color: rgba(10, 10, 9, 0.6); }
.cc__title {
  font-family: "Archivo Black", sans-serif;
  font-size: 44px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.cc__list {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  margin-top: 16px;
  color: #C9C5BC;
  line-height: 1.7;
  transition: color 0.25s;
}
.cc:hover .cc__list { color: var(--ink); }
.cc__arr {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 24px;
  color: var(--orange);
  transition: color 0.25s, transform 0.25s;
}
.cc:hover .cc__arr {
  color: var(--ink);
  transform: translate(4px, -4px);
}
.cond__foot {
  margin-top: 32px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
}

/* ---------- PROOF / CASES ---------- */
.proof {
  padding: 140px 0 100px;
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.case:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.case__meta {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--dim);
}
.case__dx { color: var(--orange); }
.case__kpi {
  font-family: "Archivo Black", sans-serif;
  font-size: 88px;
  line-height: 0.85;
  color: var(--orange);
  letter-spacing: -0.05em;
  margin-top: 24px;
}
.case__kpi small {
  font-size: 48px;
}
.case__kpi-l {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #fff;
  margin-top: 12px;
  text-transform: uppercase;
}
.case__quote {
  font-size: 14px;
  line-height: 1.7;
  color: #C9C5BC;
  margin-top: 24px;
  flex: 1;
}
.case__who {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.case__av {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 11px;
  transform: skewX(-8deg);
}
.case__av > span { display: inline-block; transform: skewX(8deg); }
.case__nm {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.case__nm small {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.15em;
  margin-top: 3px;
  text-transform: uppercase;
}
.proof__disclaimer {
  margin-top: 32px;
  font-style: italic;
}

/* ---------- METHOD ---------- */
.method { padding: 140px 0; }
.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.step {
  padding: 40px 28px 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.step:last-child { border-right: none; }
.step__n {
  font-family: "Archivo Black", sans-serif;
  font-size: 140px;
  line-height: 0.9;
  color: var(--orange);
  letter-spacing: -0.05em;
  opacity: 0.95;
}
.step__t {
  font-family: "Archivo Black", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 16px 0 18px;
}
.step__p {
  font-size: 14px;
  line-height: 1.75;
  color: #C9C5BC;
  max-width: 320px;
}
.step__meta {
  margin-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--dim);
  text-transform: uppercase;
}
.step__meta strong {
  color: var(--orange);
  font-weight: 400;
}

/* ---------- HARRY ---------- */
.harry {
  padding: 140px 0;
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.harry__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.harry__media { position: relative; }
.harry__media img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.05);
}
.harry__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 10px;
}
.harry__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--ink);
  padding: 14px 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: skewX(-8deg);
  line-height: 1.4;
}
.harry__badge > span { display: inline-block; transform: skewX(8deg); }
.harry__badge strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 2px;
}
.harry h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.harry__creds {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--dim);
  margin-top: 14px;
}
.harry p {
  font-size: 16px;
  line-height: 1.75;
  color: #D9D5CC;
  margin-top: 28px;
  max-width: 580px;
}
.harry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 32px;
}
.htag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--orange);
  padding: 7px 11px;
  border: 1px solid var(--orange);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.htag:hover { background: var(--orange); color: var(--ink); }
.harry__bio {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.harry__bio dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.harry__bio dd {
  font-size: 13px;
  line-height: 1.7;
  color: #C9C5BC;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 140px 0;
  background: var(--orange);
  color: var(--ink);
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.pricing h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.pricing__lead {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 320px;
}
.pricing .label { color: var(--ink); }
.pricing__cta { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--ink);
}
.price-row:first-child { border-top: 2px solid var(--ink); }
.price-row:last-child { border-bottom: 2px solid var(--ink); }
.price-row__title {
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-row__pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--orange);
  letter-spacing: 0.12em;
  transform: skewX(-8deg);
}
.price-row__pill > span { display: inline-block; transform: skewX(8deg); }
.price-row__sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  margin-top: 6px;
  opacity: 0.7;
  letter-spacing: 0.05em;
}
.price-row__v {
  font-family: "Archivo Black", sans-serif;
  font-size: 36px;
}
.pricing__foot {
  margin-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  opacity: 0.6;
  letter-spacing: 0.1em;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 140px 0;
  background: var(--ink);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  cursor: pointer;
}
.faq__item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq__q h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.faq__plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--orange);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq__item.is-open .faq__plus {
  background: var(--orange);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq__a {
  font-size: 14px;
  line-height: 1.75;
  color: #C9C5BC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}
.faq__item.is-open .faq__a {
  max-height: 240px;
  margin-top: 16px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 140px 0 80px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.contact__lead {
  font-size: 17px;
  line-height: 1.75;
  color: #D9D5CC;
  margin-top: 24px;
  max-width: 460px;
}
.contact__info {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}
.ci-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ci-row__k {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
}
.ci-row a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.ci-row a:hover { color: var(--orange); }
.contact__cta {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.contact__note {
  margin-top: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.1em;
}

.map {
  background: #1a1a18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map__cap {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #fff;
}
.map__pc {
  color: var(--orange);
  font-size: 18px;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.01em;
}
.map__co {
  margin-top: 6px;
  opacity: 0.6;
  font-size: 10px;
}
.map__bz {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--orange);
}
.map__bz::before { content: "◉ "; }

/* ---------- FOOTER ---------- */
.bot {
  padding: 36px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.bot__brand {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bot__meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ---------- REVEAL ON SCROLL ---------- */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rv.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__grid,
  .pricing__grid,
  .faq__grid,
  .contact__grid,
  .harry__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__media { min-height: 540px; margin-top: 40px; }
  .cond__grid,
  .proof__grid,
  .method__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .util { flex-wrap: wrap; gap: 6px; }
  .util > span:nth-child(3) { display: none; }
  .head__links a:not(.btn) { display: none; }
}
@media (max-width: 640px) {
  .w { padding: 0 20px; }
  .head,
  .util { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 40px; }
  .hero__title .stroke { margin-left: 20px; }
  .cond__grid,
  .proof__grid,
  .method__grid { grid-template-columns: 1fr; }
  .step { border-right: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__stamp { display: none; }
  .hero__img-2 { display: none; }
  .hero__img-1 { width: 100%; position: relative; }
  .hero__media { min-height: auto; }
  .harry__bio { grid-template-columns: 1fr; }
  .price-row { flex-wrap: wrap; gap: 12px; }
  .price-row__v { font-size: 28px; }
  .bot { justify-content: center; text-align: center; }
}
