/* ============================================================
   ORIGIN GYM, Baton Rouge, LA
   V2: dark editorial. Light over lines, space over boxes.
   Built by Ryluvo.
   ============================================================ */

:root {
  --bg: #06070b;
  --bg-2: #0a0c12;
  --panel: #0d1018;
  --line: rgba(255, 255, 255, 0.07);
  --ink: #eceef2;
  --muted: #9aa1ae;
  --violet: #8f6cf1;
  --violet-soft: rgba(143, 108, 241, 0.16);
  --blue: #4d7cfe;
  --blue-soft: rgba(77, 124, 254, 0.14);
  --red: #e14545;
  --glow-white: rgba(240, 240, 248, 0.85);
  --serif: "Marcellus", "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 96px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: var(--ink); text-decoration: none; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--violet); color: #fff; }

/* ---------- ambient background glow ---------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
}

.orb-violet {
  background: radial-gradient(circle, rgba(143, 108, 241, 0.09) 0%, transparent 65%);
  top: -30vw;
  right: -30vw;
}

.orb-blue {
  background: radial-gradient(circle, rgba(77, 124, 254, 0.06) 0%, transparent 65%);
  bottom: -35vw;
  left: -30vw;
}

main, .footer, .nav { position: relative; z-index: 1; }

/* ---------- brand ---------- */

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  letter-spacing: 0.22em;
}

.brand-ring {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  align-self: center;
  position: relative;
  flex: none;
}

.brand-ring::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(143, 108, 241, 0.0);
  transition: border-color 0.4s;
}

.brand:hover .brand-ring::after { border-color: rgba(143, 108, 241, 0.45); }

.brand-word {
  font-size: 20px;
  color: var(--ink);
  text-shadow: 0 0 18px rgba(240, 240, 248, 0.35);
}

.brand-sub {
  font-size: 20px;
  color: var(--ink);
  text-shadow: 0 0 18px rgba(240, 240, 248, 0.35);
}

.brand-img {
  display: block;
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(240, 240, 248, 0.35));
  transition: filter 0.4s;
}

.brand:hover .brand-img { filter: drop-shadow(0 0 16px rgba(143, 108, 241, 0.6)); }

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(6, 7, 11, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.4s;
}

.nav.scrolled { background: rgba(6, 7, 11, 0.88); }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-glowline {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(143, 108, 241, 0.5) 30%,
    rgba(77, 124, 254, 0.5) 70%,
    transparent 100%);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:not(.btn):hover {
  color: var(--ink);
  text-shadow: 0 0 12px rgba(240, 240, 248, 0.5);
}

.nav-links a[aria-current="page"]:not(.btn) {
  color: var(--ink);
  text-shadow: 0 0 12px rgba(240, 240, 248, 0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

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

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6; /* same as body, so <button class="btn"> matches <a class="btn"> */
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s, text-shadow 0.3s;
}

.btn-small { padding: 10px 20px; font-size: 12px; }

.btn-solid {
  background: linear-gradient(135deg, #f2f2f7, #d9d9e3);
  color: #0a0b10;
  box-shadow: 0 0 24px rgba(240, 240, 248, 0.18);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(240, 240, 248, 0.32);
}

/* ghost buttons: no full border. A single lit edge instead. */
.btn-ghost {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  padding: 14px 6px 12px;
  color: var(--ink);
  background: none;
}

.btn-ghost:hover {
  border-color: rgba(143, 108, 241, 0.85);
  box-shadow: 0 14px 26px -16px rgba(143, 108, 241, 0.6);
  text-shadow: 0 0 12px rgba(240, 240, 248, 0.45);
  transform: translateY(-2px);
}

.btn-small.btn-ghost { padding: 10px 4px 8px; }

/* ---------- type ---------- */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.06);
  animation: heroDrift 24s var(--ease) forwards;
}

@keyframes heroDrift {
  to { transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(6, 7, 11, 0) 0%, rgba(6, 7, 11, 0.45) 62%, rgba(6, 7, 11, 0.9) 100%),
    linear-gradient(180deg, rgba(6, 7, 11, 0.42) 0%, rgba(6, 7, 11, 0.12) 30%, rgba(6, 7, 11, 0.45) 72%, var(--bg) 100%);
}

.hero-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(143, 108, 241, 0.06) 45%,
    rgba(240, 240, 248, 0.10) 50%,
    rgba(77, 124, 254, 0.06) 55%,
    transparent 70%);
  transform: translateX(-120%);
  animation: sweep 2.6s 0.5s var(--ease) forwards;
}

@keyframes sweep {
  to { transform: translateX(120%); }
}

.hero-content {
  position: relative;
  padding: 140px 24px 120px;
  max-width: 900px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 104px);
  line-height: 1.02;
  letter-spacing: 0.06em;
  margin: 10px 0 26px;
}

.hero-title .sign { display: block; }

.sign-glow {
  color: #fff;
  text-shadow:
    0 0 8px rgba(240, 240, 248, 0.55),
    0 0 32px rgba(240, 240, 248, 0.35),
    0 0 90px rgba(143, 108, 241, 0.45);
  animation: signOn 1.6s 0.35s both;
}

@keyframes signOn {
  0% { opacity: 0; text-shadow: none; }
  38% { opacity: 0.4; text-shadow: none; }
  46% { opacity: 0.15; }
  54% { opacity: 0.75; }
  60% { opacity: 0.4; }
  100% { opacity: 1; }
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: rgba(236, 238, 242, 0.82);
  max-width: 520px;
  margin: 0 auto 38px;
}

.hero-cta {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(143, 108, 241, 0.7) 35%,
    rgba(77, 124, 254, 0.7) 65%,
    transparent);
  box-shadow: 0 0 22px rgba(143, 108, 241, 0.45);
}

/* scroll hint: a falling point of light on a thin line */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.05));
}

.scroll-hint span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 12px;
  transform: translate(-50%, 0);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 12px rgba(240, 240, 248, 0.8);
  animation: hint 2.2s infinite var(--ease);
}

@keyframes hint {
  0% { transform: translate(-50%, 0); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translate(-50%, 42px); opacity: 0; }
}

/* ---------- statement ---------- */

.statement { padding: 110px 0 90px; }

.statement-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  max-width: 860px;
}

/* index list: numerals and thin rules instead of pill chips */
.index-list {
  list-style: none;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(40px, 6vw, 90px);
}

.index-list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 2px;
  border-bottom: 1px solid var(--line);
}

.index-num {
  flex: none;
  min-width: 46px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  color: var(--violet);
  text-shadow: 0 0 20px rgba(143, 108, 241, 0.45);
}

.index-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.3s;
}

.index-list li:hover .index-text { color: var(--ink); }

/* ---------- LED divider ---------- */

.ledline {
  height: 1px;
  max-width: 1160px;
  margin: 0 auto;
  background: linear-gradient(90deg,
    transparent,
    rgba(143, 108, 241, 0.4) 30%,
    rgba(77, 124, 254, 0.4) 70%,
    transparent);
  position: relative;
}

.ledline::after {
  content: "";
  position: absolute;
  inset: -12px 0;
  background: radial-gradient(ellipse at center, rgba(143, 108, 241, 0.12), transparent 70%);
  pointer-events: none;
}

/* ---------- card (kept as a quiet primitive, borderless) ---------- */

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 2px;
  overflow: hidden;
}

/* ---------- the floor: full bleed editorial bands ---------- */

.floor { padding: 110px 0 130px; }

.band {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  margin-top: 96px;
}

.band-media {
  position: relative;
}

.band-media::before {
  content: "";
  position: absolute;
  inset: -70px -50px;
  background: radial-gradient(ellipse at center, rgba(143, 108, 241, 0.10), transparent 65%);
  pointer-events: none;
}

.band-media img {
  position: relative;
  width: 100%;
  height: clamp(380px, 58vh, 620px);
  object-fit: cover;
  filter: brightness(0.94);
  transition: filter 1.2s var(--ease);
}

.band:hover .band-media img { filter: brightness(1.04); }

.band-copy {
  position: relative;
  padding: 40px clamp(28px, 6vw, 90px);
  max-width: 620px;
}

.band.flip .band-media { order: 2; }
.band.flip .band-copy { order: 1; justify-self: end; }

.band-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.9;
  color: rgba(236, 238, 242, 0.10);
  text-shadow: 0 0 46px rgba(143, 108, 241, 0.28);
  margin-bottom: 4px;
  user-select: none;
}

.band-copy h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.band-copy p {
  color: var(--muted);
  font-size: 16px;
  max-width: 44ch;
}

/* ---------- recovery: light, not boxes ---------- */

.recovery { padding: 110px 0 130px; }

.recovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4.5vw, 60px);
  margin-top: 60px;
}

.recovery-card {
  position: relative;
}

/* offset middle column for an editorial stagger */
.recovery-card:nth-child(2) { margin-top: 56px; }

.recovery-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 150%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, var(--rc-glow, rgba(143, 108, 241, 0.14)), transparent 68%);
  pointer-events: none;
}

.glow-violet {
  --rc-glow: rgba(143, 108, 241, 0.18);
  --rc-shadow: rgba(143, 108, 241, 0.45);
  --rc-accent: #a68bf5;
}

.glow-red {
  --rc-glow: rgba(225, 69, 69, 0.14);
  --rc-shadow: rgba(225, 69, 69, 0.4);
  --rc-accent: #e14545;
}

.glow-blue {
  --rc-glow: rgba(77, 124, 254, 0.16);
  --rc-shadow: rgba(77, 124, 254, 0.42);
  --rc-accent: #6d92fe;
}

.recovery-img {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 34px 80px -34px var(--rc-shadow, rgba(143, 108, 241, 0.45));
}

.recovery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.recovery-card:hover .recovery-img img { transform: scale(1.05); }

.recovery-body {
  position: relative;
  padding: 24px 4px 0;
}

.recovery-body h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 8px;
}

.recovery-body h3::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: 3px;
  background: var(--rc-accent, var(--violet));
  box-shadow: 0 0 12px var(--rc-shadow, rgba(143, 108, 241, 0.45));
}

.recovery-body p { color: var(--muted); font-size: 15px; }

/* ---------- pricing: rules and space, not boxes ---------- */

.pricing { padding: 110px 0; }

.price-tabs {
  display: flex;
  gap: clamp(20px, 4vw, 44px);
  margin: 44px 0 0;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.price-tab {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 14px 2px 16px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
  white-space: nowrap;
}

.price-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(143, 108, 241, 0.9), rgba(77, 124, 254, 0.9));
  box-shadow: 0 0 14px rgba(143, 108, 241, 0.55);
  opacity: 0;
  transition: opacity 0.3s;
}

.price-tab:hover { color: var(--ink); }

.price-tab.active {
  color: #fff;
  text-shadow: 0 0 14px rgba(240, 240, 248, 0.35);
}

.price-tab.active::after { opacity: 1; }

.price-panel { display: none; }
.price-panel.active { display: block; animation: panelIn 0.5s var(--ease); }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(28px, 4vw, 52px);
  row-gap: 34px;
  margin-top: 48px;
}

.price-grid.two { grid-template-columns: repeat(2, minmax(0, 420px)); }

.price-card {
  position: relative;
  padding: 30px 0 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* the top rule lights up violet: hover hints it, featured owns it */
.price-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  box-shadow: 0 0 18px rgba(143, 108, 241, 0.6);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.price-card:hover::before { opacity: 0.5; }

.price-card.featured::before { opacity: 1; }

.price-card.featured {
  background: linear-gradient(180deg, rgba(143, 108, 241, 0.07), transparent 75%);
}

.price-card .tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #cdbcff;
  text-shadow: 0 0 12px rgba(143, 108, 241, 0.55);
  margin-bottom: 8px;
}

.price-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.04em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 14px;
}

.price .amount {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 24px rgba(240, 240, 248, 0.25);
}

.price .per {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.price-card li {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-card li:last-child { border-bottom: 0; }

.price-card .btn { text-align: center; position: relative; z-index: 2; }

.price-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- gallery (v7: all 44 Dropbox photos, 12 shown until "Show all") ---------- */

.gallery { padding: 110px 0; }

/* uniform 3:4 tiles like .eq-card. The lit sign opens the set as a 2x2 block
   (a 3:4 crop of a near square photo) and the one landscape floor shot spans
   two tiles, so the rows fill at 4 columns (desktop) and 3 columns (tablet,
   which hides one more tile while collapsed): 16 cells collapsed, 48 open.
   On phones the lead sits alone on a full width row at its own ratio. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 48px;
  scroll-margin-top: 96px;
}

.gitem {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  cursor: zoom-in;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
}

.gitem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.84);
  transition: transform 1s var(--ease), filter 0.5s;
}

.gitem:hover, .gitem:focus-visible {
  border-color: rgba(143, 108, 241, 0.4);
  box-shadow: 0 24px 60px -36px rgba(143, 108, 241, 0.6);
  transform: translateY(-3px);
}

.gitem:hover img, .gitem:focus-visible img { transform: scale(1.04); filter: brightness(1); }

.gitem:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

.gitem-lead { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gitem-wide { grid-column: span 2; aspect-ratio: auto; }
/* the lead and wide tiles take their height from the 3:4 tiles beside them */
.gitem-lead img, .gitem-wide img { position: absolute; inset: 0; }

/* collapsed: tiles 13 to 44 are not rendered, so their lazy images never load */
.gallery-grid.is-collapsed .gitem:nth-child(n + 13) { display: none; }

.gallery-actions { margin-top: 36px; }

.gallery-more {
  margin-top: 30px;
  color: var(--muted);
  font-size: 14px;
}

.gallery-more a {
  color: var(--violet);
  transition: text-shadow 0.3s;
}

.gallery-more a:hover { text-shadow: 0 0 14px rgba(143, 108, 241, 0.6); }

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 3 columns only: the 2x2 lead + wide tile leave 16 cells, so hide one more tile
   while collapsed to land on 5 full rows (all 44 open = 48 cells = 16 rows).
   Phones keep all 12 (lead 2 + wide 2 + 10 = 14 cells = 7 rows). */
@media (min-width: 641px) and (max-width: 960px) {
  .gallery-grid.is-collapsed .gitem:nth-child(n + 12) { display: none; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* alone on their rows on phones, so they need their own height */
  .gitem-wide { aspect-ratio: 1600 / 1056; }
  .gitem-lead { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 1546 / 1600; }
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 5, 8, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

/* scroll lock while the viewer is open. html has overflow-x: clip, which makes
   the root the scroll container, so body { overflow: hidden } alone never
   reached the viewport; js/site.js toggles this class on <html> instead. */
html.lb-open, html.lb-open body { overflow: hidden; }

.lightbox img {
  /* leave room for the 48px arrows plus their 24px inset on each side */
  max-width: min(100vw - 168px, 1100px);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(143, 108, 241, 0.18);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(143, 108, 241, 0.18);
  box-shadow: 0 0 20px rgba(143, 108, 241, 0.3);
}

.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
  /* phones: the photo fills the width, so the arrows move below it on solid
     panels (faint circles vanished over light photos) and the close button
     keeps a band of its own above. The photo centres between the two bands. */
  .lightbox { padding: 72px 0 80px; }
  .lightbox img { max-width: calc(100vw - 32px); max-height: calc(100% - 24px); }
  .lb-close { top: 16px; right: 16px; }
  .lb-prev, .lb-next {
    top: auto;
    bottom: 16px;
    transform: none;
    background: var(--panel);
    border: 1px solid var(--line);
  }
  .lb-prev { left: calc(50% - 60px); }
  .lb-next { right: calc(50% - 60px); }
}

/* ---------- visit ---------- */

.visit { padding: 110px 0 130px; }

.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.visit-info > p { color: var(--muted); max-width: 460px; }

.visit-list {
  list-style: none;
  margin: 34px 0 38px;
}

.visit-list li {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
  align-items: baseline;
}

.visit-label {
  flex: none;
  width: 80px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.visit-list a { transition: color 0.3s, text-shadow 0.3s; }

.visit-list a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(240, 240, 248, 0.5);
}

.visit-list .dot { color: var(--muted); margin: 0 8px; }

.visit .hero-cta { justify-content: flex-start; }

.visit-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 90px -40px rgba(143, 108, 241, 0.45);
}

.visit-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

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

.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(143, 108, 241, 0.04));
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.footer-brand { justify-content: center; }

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-legal { font-size: 12px; color: rgba(154, 161, 174, 0.6); }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 960px) {
  .band {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .band .band-media img { height: 340px; }

  .band.flip .band-media { order: 0; }
  .band.flip .band-copy { order: 1; justify-self: start; }

  .band-copy { padding: 32px 24px 0; }

  .recovery-grid { grid-template-columns: 1fr; }
  .recovery-card:nth-child(2) { margin-top: 0; }
  .recovery-img { height: 300px; }

  .price-grid { grid-template-columns: repeat(2, 1fr); }

  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(6, 7, 11, 0.97);
    backdrop-filter: blur(18px);
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a:not(.btn) {
    padding: 12px 0;
    font-size: 16px;
    width: 100%;
  }

  .nav-links .btn { margin-top: 12px; }

  .index-list { grid-template-columns: 1fr; }

  .price-grid { grid-template-columns: 1fr; }
  .price-grid.two { grid-template-columns: 1fr; }

  .price-tabs {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .price-tabs::-webkit-scrollbar { display: none; }

  .statement, .recovery, .pricing, .gallery, .visit { padding: 80px 0; }

  .floor { padding: 80px 0 90px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-bg img, .hero-sweep, .sign-glow, .scroll-hint span { animation: none; }

  .hero-sweep { display: none; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   v2 ENHANCEMENTS — hero rise, reviews, gallery glow, founders
   ============================================================ */

/* ---- Hero: hold, then rise the text up (staggered) ---- */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .hr { opacity: 0; animation: heroRise 0.95s var(--ease) forwards; will-change: transform, opacity; }
.hero .hr.d1 { animation-delay: 0.80s; }
.hero .hr.d2 { animation-delay: 0.98s; }
.hero .hr.d3 { animation-delay: 1.14s; }
.hero .hr.d4 { animation-delay: 1.36s; }
.hero .hr.d5 { animation-delay: 1.56s; }
/* keep the glow text-shadow on BEGINS but rise instead of flicker */
.hero-title .sign-glow.hr { animation: heroRise 1s var(--ease) 1.14s forwards; }

/* ---- Reviews: horizontal scroll ---- */
.reviews { padding: 96px 0 92px; }
.reviews-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-top: 20px; flex-wrap: wrap;
}
.reviews-rating { display: flex; align-items: center; gap: 14px; }
.reviews-score { font-family: var(--serif); font-size: 46px; line-height: 1; color: #fff; }
.reviews-stars { color: var(--violet); letter-spacing: 3px; font-size: 20px; }
.reviews-src { color: var(--muted); font-size: 13px; }
.reviews-nav { display: flex; gap: 10px; }
.rev-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--panel); color: var(--ink); cursor: pointer; font-size: 20px; line-height: 1;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.rev-arrow:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
.reviews-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 30px 24px 10px; max-width: 1400px; margin: 0 auto;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.reviews-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start; flex: 0 0 340px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 10px; padding: 26px;
  display: flex; flex-direction: column; gap: 14px; transition: border-color 0.4s, transform 0.4s var(--ease);
}
.review-card:hover { border-color: rgba(143, 108, 241, 0.4); transform: translateY(-3px); }
.review-stars { color: var(--violet); letter-spacing: 2px; }
.review-text {
  color: rgba(236, 238, 242, 0.9); font-size: 15.5px; line-height: 1.62; flex: 1;
  /* clamp long reviews so every card sits at a similar height; the full text
     lives on Google (linked below the track) */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 9;
  line-clamp: 9; overflow: hidden;
}
.review-who { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--violet), #4a3cb4);
  display: grid; place-items: center; font-family: var(--serif); color: #fff;
}
.review-who b { display: block; font-size: 14px; }
.review-who small { color: var(--muted); font-size: 12px; }
.reviews-more { color: var(--muted); font-size: 14px; margin-top: 24px; }
.reviews-more a { color: var(--violet); }
.reviews-buildnote { display: block; color: rgba(143, 108, 241, 0.7); font-size: 12px; margin-top: 4px; }

/* ---- Gallery: purple spotlight glow border (ported from GlowCard) ---- */
.gallery-grid { --gx: 50vw; --gy: 40vh; }
/* bright spotlight ring that follows the cursor across the whole grid
   (v7: sized to the 1px border / 12px radius of the gallery tiles) */
.gitem::after {
  content: ""; position: absolute; inset: -1px; border-radius: 13px; padding: 2px;
  pointer-events: none; z-index: 3;
  background: radial-gradient(
    300px 300px at var(--gx) var(--gy),
    hsl(275 95% 70% / 1), hsl(266 90% 60% / 0.55) 40%, transparent 68%
  );
  background-attachment: fixed;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  filter: drop-shadow(0 0 6px rgba(143, 108, 241, 0.55));
}
/* soft inner wash near the cursor */
.gitem::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px; z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    240px 240px at var(--gx) var(--gy),
    hsl(276 90% 60% / 0.16), transparent 60%
  );
  background-attachment: fixed;
}

/* ---- Founders teaser band ---- */
.founders-band { padding: 90px 0; }
.founders-inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 60px); align-items: center;
}
.founders-photo { border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--line); position: relative; }
.founders-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); transition: transform 1s var(--ease); }
.founders-photo:hover img { transform: scale(1.04); }
.founders-copy p { color: var(--muted); margin: 14px 0 24px; max-width: 52ch; }
.founders-copy strong { color: var(--ink); font-weight: 600; }

@media (max-width: 820px) {
  .founders-inner { grid-template-columns: 1fr; }
  .founders-photo { aspect-ratio: 16 / 10; }
  .review-card { flex-basis: 80%; }
}

@media (hover: none) {
  .gitem::after, .gitem::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero .hr { opacity: 1; transform: none; animation: none; }
  .gitem::after, .gitem::before { display: none; }
  .reviews-track { scroll-behavior: auto; }
}

/* ---- scroll progress bar ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--violet);
  box-shadow: 0 0 10px rgba(143, 108, 241, 0.85), 0 0 3px rgba(143, 108, 241, 1);
  z-index: 500; pointer-events: none;
  transition: width 0.08s linear;
}

/* ---- reviews: purple spotlight glow border (same effect as the gallery) ---- */
.reviews-track { --gx: 50vw; --gy: 50vh; }
.review-card { position: relative; border-color: rgba(143, 108, 241, 0.30); }
.review-card::after {
  content: ""; position: absolute; inset: -1px; border-radius: 11px; padding: 2px;
  pointer-events: none; z-index: 4;
  background: radial-gradient(
    300px 300px at var(--gx) var(--gy),
    hsl(275 95% 70% / 1), hsl(266 90% 60% / 0.5) 42%, transparent 68%
  );
  background-attachment: fixed;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  filter: drop-shadow(0 0 6px rgba(143, 108, 241, 0.5));
}
@media (prefers-reduced-motion: reduce) {
  .review-card::after { display: none; }
  .scroll-progress { transition: none; }
}

/* ============================================================
   v3 — uniform gallery, hovers, visit redesign, chatbot,
   stronger dividers + scroll/hero animation
   ============================================================ */

/* nav: brand far-left, links grouped far-right, wide clear gap (Ryluvo-style) */
.nav-inner { max-width: 1600px; padding-left: 44px; padding-right: 44px; }
.nav-links { gap: 26px; margin-left: auto; }
@media (max-width: 760px) { .nav-inner { padding-left: 22px; padding-right: 22px; } }

/* stronger scroll reveal (clearer rise-up) */
.reveal { transform: translateY(42px); transition: opacity 1s var(--ease), transform 1s var(--ease); }

/* hero: hold ~0.9s, then lift the text up */
@keyframes heroRise { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: translateY(0); } }
.hero .hr.d1 { animation-delay: 0.90s; }
.hero .hr.d2 { animation-delay: 1.08s; }
.hero .hr.d3 { animation-delay: 1.24s; }
.hero .hr.d4 { animation-delay: 1.48s; }
.hero .hr.d5 { animation-delay: 1.68s; }

/* section divider: violet node on the line */
.ledline { margin-block: 6px; }
.ledline::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px; transform: translate(-50%, -50%) rotate(45deg);
  background: var(--violet); border-radius: 1px;
  box-shadow: 0 0 14px 2px rgba(143, 108, 241, 0.85);
}
.recovery, .pricing, .founders-band {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.016) 14%, rgba(255,255,255,0.016) 86%, transparent);
}

/* hover micro-interactions */
.band-media { overflow: hidden; }
.band-media img { transition: transform 1.2s var(--ease); }
.band:hover .band-media img { transform: scale(1.05); }
.recovery-card { transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.recovery-card:hover { transform: translateY(-6px); }
.price-card { transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(143, 108, 241, 0.65); }
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--violet); box-shadow: 0 0 8px var(--violet);
  transition: width 0.32s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.index-list li { transition: transform 0.3s var(--ease); }
.index-list li:hover { transform: translateX(6px); }

/* visit: map + info rows (reference layout) */
.visit-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.visit-map { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; min-height: 440px; position: relative; }
.visit-info { align-self: center; }
.visit-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.92) brightness(0.95); }
.info-rows { list-style: none; margin: 26px 0 6px; padding: 0; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line); }
.info-row:first-child { border-top: 0; padding-top: 6px; }
.info-ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  color: var(--violet); background: var(--violet-soft); border: 1px solid rgba(143, 108, 241, 0.28);
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
}
.info-ic svg { width: 20px; height: 20px; }
.info-row:hover .info-ic { transform: translateY(-2px); background: rgba(143, 108, 241, 0.24); box-shadow: 0 8px 20px -10px rgba(143, 108, 241, 0.8); }
.info-body { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.info-body a, .info-hi { color: var(--ink); font-size: 17px; transition: color 0.3s; }
.info-body a:hover { color: var(--violet); }
.info-sub { color: var(--muted); font-size: 13px; }
.visit-cta { display: flex; gap: 18px; align-items: center; margin-top: 28px; flex-wrap: wrap; }
.serving { margin-top: 30px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, 0.02); }
.serving-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet); margin-bottom: 6px; }
.serving-cities { color: var(--muted); font-size: 14px; line-height: 1.7; }
@media (max-width: 960px) { .visit-grid { grid-template-columns: 1fr; } .visit-map, .visit-map iframe { min-height: 320px; } }

/* AI chatbot */
.chat-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 480;
  width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer; color: #fff;
  background: linear-gradient(180deg, var(--violet), #6a5ae0);
  box-shadow: 0 12px 30px -8px rgba(143, 108, 241, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: grid; place-items: center; animation: chatBreath 3.6s var(--ease) infinite;
  transition: transform 0.3s var(--ease);
}
.chat-fab svg { width: 24px; height: 24px; }
.chat-fab:hover { transform: scale(1.09); }
@keyframes chatBreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.chat-panel {
  position: fixed; bottom: 94px; right: 24px; z-index: 480;
  width: min(370px, calc(100vw - 40px)); background: var(--panel);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.75);
  transform: translateY(16px) scale(0.97); opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px; background: rgba(255, 255, 255, 0.03); border-bottom: 1px solid var(--line); }
.chat-ava { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), #4a3cb4); display: grid; place-items: center; font-family: var(--serif); color: #fff; }
.chat-id b { font-family: var(--serif); font-weight: 400; font-size: 16px; display: block; letter-spacing: 0.04em; }
.chat-id small { color: var(--violet); font-size: 12px; display: flex; align-items: center; gap: 5px; }
.chat-id small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.chat-close { margin-left: auto; background: none; border: 0; color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; }
.chat-close:hover { color: var(--ink); }
.chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; }
.msg { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; animation: msgPop 0.35s var(--ease); }
@keyframes msgPop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.msg-bot { align-self: flex-start; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); border-top-left-radius: 4px; }
.msg-bot a { color: var(--violet); text-decoration: underline; }
.msg-user { align-self: flex-end; background: var(--violet); color: #fff; border-top-right-radius: 4px; }
.chat-typing { align-self: flex-start; display: flex; gap: 4px; padding: 12px 14px; background: rgba(255, 255, 255, 0.05); border-radius: 14px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); animation: blink 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }
.chip { font-size: 12.5px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; background: none; color: var(--muted); cursor: pointer; transition: border-color 0.25s, color 0.25s; }
.chip:hover { border-color: var(--violet); color: var(--violet); }
.chat-input { display: flex; gap: 8px; padding: 14px 16px; border-top: 1px solid var(--line); }
.chat-input input { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 11px 13px; color: var(--ink); font-family: var(--sans); font-size: 14px; }
.chat-input input:focus { outline: none; border-color: var(--violet); }
.chat-input button { flex: none; width: 42px; border: 0; border-radius: 8px; background: var(--violet); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background 0.25s; }
.chat-input button:hover { background: #7a68ec; }
@media (prefers-reduced-motion: reduce) { .chat-fab { animation: none; } }

/* ============================================================
   v4 — How It Works, section leads, equipment brands, FAQ,
   footer nav (owner-notes revision)
   ============================================================ */

/* shared intro sentence under a section title */
.section-lead {
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  max-width: 66ch;
  margin-top: -2px;
}

/* ---- How It Works ---- */
.how { padding: 110px 0; }
.how-lead {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 60ch;
}
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 38px);
  margin-top: 56px;
}
.how-step {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.how-step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  box-shadow: 0 0 18px rgba(143, 108, 241, 0.6);
  opacity: 0;
  transition: opacity 0.4s;
}
.how-step:hover::before { opacity: 0.6; }
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(143, 108, 241, 0.4);
  background: var(--violet-soft);
  color: var(--violet);
  font-family: var(--serif);
  font-size: 24px;
  box-shadow: 0 0 26px rgba(143, 108, 241, 0.28);
  margin-bottom: 20px;
}
.how-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.how-body p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.how-cta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-top: 52px; }

/* ---- Equipment brands ---- */
.brands { padding: 100px 0; }
.brand-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.brand-tile {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.brand-tile:hover {
  border-color: rgba(143, 108, 241, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -26px rgba(143, 108, 241, 0.6);
}
.brand-logo {
  font-family: var(--serif);
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: 0.12em;
  text-align: center;
  color: rgba(236, 238, 242, 0.76);
  transition: color 0.4s, text-shadow 0.4s;
}
.brand-tile:hover .brand-logo { color: #fff; text-shadow: 0 0 16px rgba(240, 240, 248, 0.4); }
.brands-note { margin-top: 22px; color: var(--muted); font-size: 13px; letter-spacing: 0.02em; }

/* ---- FAQ ---- */
.faq { padding: 110px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 48px;
  align-items: start;
}
.faq-video-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--violet); margin-bottom: 12px; }
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(143, 108, 241, 0.18), transparent 70%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed.has-video { background: #000; }
.video-embed.has-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; }
.video-play {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--violet), #6a5ae0);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(143, 108, 241, 0.7);
}
.video-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-soon { color: var(--muted); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.faq-video-cap { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 40ch; }

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 2px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.3s, text-shadow 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
  color: var(--violet);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: #fff; text-shadow: 0 0 12px rgba(240, 240, 248, 0.4); }
.faq-a { padding: 0 2px 22px; }
.faq-item[open] .faq-a { animation: panelIn 0.4s var(--ease); }
.faq-a p { color: var(--muted); font-size: 15.5px; max-width: 60ch; }
.faq-a a { color: var(--violet); }

/* ---- footer nav ---- */
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin: 2px 0 4px; }
.footer-nav a { color: var(--muted); font-size: 13px; letter-spacing: 0.04em; transition: color 0.3s, text-shadow 0.3s; }
.footer-nav a:hover { color: #fff; text-shadow: 0 0 12px rgba(240, 240, 248, 0.4); }

/* ---- v4 responsive ---- */
@media (max-width: 960px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .how-body p { max-width: none; }
}
@media (max-width: 640px) {
  .how-steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .how, .brands, .faq { padding: 80px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-a { animation: none; }
}

/* ============================================================
   v5 — hero hierarchy, nav dropdown, scrolling equipment
   galleries, scattered brand logos, locations + contact
   ============================================================ */

/* ---- hero type hierarchy: ORIGIN GYM big, tagline small, punchline medium ---- */
.hero-title { margin: 10px 0 6px; line-height: 1; }
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(13px, 1.8vw, 17px);
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
  padding-left: 0.44em; /* optically balance the tracking */
}
.hero-punch {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(18px, 2.6vw, 29px);
  line-height: 1.35;
  color: rgba(236, 238, 242, 0.92);
  max-width: 640px;
  margin: 0 auto 38px;
}

/* ---- nav: Locations dropdown ---- */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-drop-btn:hover, .nav-drop.open .nav-drop-btn { color: var(--ink); text-shadow: 0 0 12px rgba(240, 240, 248, 0.4); }
.nav-caret { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.nav-drop.open .nav-caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 244px;
  background: rgba(10, 12, 18, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7);
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: 8px; transition: background 0.25s; }
.nav-drop-menu a:hover { background: rgba(143, 108, 241, 0.14); }
.nav-drop-menu a::after { display: none !important; } /* cancel the underline sweep inside the menu */
.nd-name { font-size: 15px; color: var(--ink); font-weight: 500; }
.nd-meta { font-size: 12px; color: var(--muted); }

/* ---- scrolling equipment / amenity gallery (hover to reveal description) ---- */
.eq-gallery { position: relative; margin-top: 52px; }
.eq-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 8px clamp(16px, 6vw, 90px) 26px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.eq-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.eq-track::-webkit-scrollbar { display: none; }
.eq-track:focus-visible { outline: 2px solid var(--violet-light, #b9afff); outline-offset: 4px; }
.eq-card {
  position: relative;
  flex: 0 0 clamp(260px, 30vw, 356px);
  scroll-snap-align: center;
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.eq-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82); transition: transform 1s var(--ease), filter 0.5s; }
/* tall photos whose subject sits at the top (the sign above the refill station) */
.eq-card img.pos-top { object-position: 50% 0; }
.eq-card:hover img { transform: scale(1.06); filter: brightness(0.58); }
.eq-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, transparent, rgba(6, 7, 11, 0.5) 34%, rgba(6, 7, 11, 0.95));
}
.eq-cap h3 { font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: 0.02em; margin-bottom: 6px; }
.eq-cap p { color: rgba(236, 238, 242, 0.82); font-size: 14px; line-height: 1.55; }
@media (hover: hover) {
  .eq-cap p { opacity: 0; max-height: 0; transform: translateY(8px); overflow: hidden;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), max-height 0.4s var(--ease); }
  .eq-card:hover .eq-cap p, .eq-card:focus-within .eq-cap p { opacity: 1; max-height: 160px; transform: none; }
}
.eq-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(13, 16, 24, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.eq-nav:hover { border-color: var(--violet); color: var(--violet); }
.eq-prev { left: clamp(4px, 3vw, 30px); }
.eq-next { right: clamp(4px, 3vw, 30px); }
.eq-prev:hover { transform: translateY(-50%) translateX(-2px); }
.eq-next:hover { transform: translateY(-50%) translateX(2px); }
@media (hover: none) { .eq-nav { display: none; } }

/* ---- equipment brands: uniform monochrome logo wall (swap wordmarks for real logos) ---- */
.brand-wall {
  list-style: none;
  display: grid;
  /* 16 marks: 4 x 4 from tablet up, 2 x 8 on phones, so no row is left with an orphan */
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 4vw, 52px) clamp(22px, 3vw, 40px);
  align-items: center;
  margin-top: 52px;
}
.brand-wall li { display: grid; place-items: center; min-height: 46px; padding: 4px; }
.bmk {
  color: rgba(236, 238, 242, 0.6);
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  transition: color 0.35s, text-shadow 0.35s, transform 0.35s var(--ease);
}
.brand-wall li:hover .bmk { color: #fff; text-shadow: 0 0 18px rgba(143, 108, 241, 0.5); transform: translateY(-3px); }
.bmk-heavy { font-family: var(--sans); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.bmk-thin  { font-family: var(--sans); font-weight: 300; letter-spacing: 0.42em; text-transform: uppercase; }
.bmk-wide  { font-family: var(--sans); font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; }
.bmk-cond  { font-family: var(--sans); font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; font-size: 20px; }
.bmk-mixed { font-family: var(--sans); font-weight: 700; letter-spacing: 0.01em; }
.bmk-serif { font-family: var(--serif); font-weight: 400; letter-spacing: 0.08em; }
.bmk-num   { font-family: var(--sans); font-weight: 700; letter-spacing: 0.02em; }
.bmk-num sup { font-size: 0.6em; }
/* real logo images: forced to uniform white silhouettes so mixed-color marks
   sit together on the dark wall; hover lifts them to full white + LED glow */
.bmk-img { height: 30px; width: auto; max-width: min(158px, 100%); object-fit: contain; filter: brightness(0) invert(1); opacity: 0.62; transition: opacity 0.35s, filter 0.35s, transform 0.35s var(--ease); }
.brand-wall li:hover .bmk-img { opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(143, 108, 241, 0.55)); transform: translateY(-3px); }
/* icon + text lockup (REP: brand icon beside the name) */
.bmk-lockup { display: flex; align-items: center; justify-content: center; gap: 10px; }
.bmk-lockup .bmk-img { height: 24px; }
@media (max-width: 640px) { .brand-wall { grid-template-columns: repeat(2, 1fr); } }

/* ---- shared location "View Location" button rows ---- */
.loc-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 2px; }

.price-kickers { display: flex; gap: 12px; flex-wrap: wrap; margin: 2px 0 4px; }
.price-kickers span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cdbcff;
  padding: 6px 13px;
  border: 1px solid rgba(143, 108, 241, 0.3);
  border-radius: 99px;
  background: var(--violet-soft);
}

/* ---- locations ---- */
.locations { padding: 110px 0; }
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); margin-top: 48px; }
.loc-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.loc-card:hover { border-color: rgba(143, 108, 241, 0.4); transform: translateY(-4px); box-shadow: 0 30px 70px -40px rgba(143, 108, 241, 0.6); }
.loc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.loc-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.loc-media-soon {
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at center, rgba(143, 108, 241, 0.18), transparent 70%), linear-gradient(180deg, var(--panel), var(--bg-2));
}
.loc-soon-word { font-family: var(--serif); font-size: clamp(30px, 6vw, 58px); letter-spacing: 0.14em; color: rgba(236, 238, 242, 0.13); }
.loc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 99px;
}
.loc-badge.open { background: rgba(74, 222, 128, 0.16); color: #7ff0a8; border: 1px solid rgba(74, 222, 128, 0.4); }
.loc-badge.soon { background: var(--violet-soft); color: #cdbcff; border: 1px solid rgba(143, 108, 241, 0.45); }
.loc-body { display: flex; flex-direction: column; gap: 14px; flex: 1; padding: clamp(22px, 3vw, 34px); }
.loc-body h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3vw, 30px); letter-spacing: 0.02em; }
.loc-overview { color: var(--muted); font-size: 15px; }
.loc-facts { list-style: none; display: flex; flex-direction: column; }
.loc-facts li { display: flex; gap: 14px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.loc-facts li:first-child { border-top: 0; }
.loc-k { flex: none; width: 74px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.loc-facts a { color: var(--ink); transition: color 0.3s; }
.loc-facts a:hover { color: var(--violet); }
.loc-map { position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.loc-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.92) brightness(0.95); }
.loc-card .btn { align-self: flex-start; margin-top: 2px; }

/* ---- contact ---- */
.contact { padding: 100px 0 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); margin-top: 44px; align-items: start; }
.contact .info-rows { margin: 0; }
.contact-side { display: flex; flex-direction: column; gap: 26px; }

/* ---- v5 responsive ---- */
@media (max-width: 860px) {
  .loc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .locations, .contact { padding: 80px 0; }
  .brand-mark { transform: none !important; }

  /* nav dropdown collapses inline inside the mobile menu */
  .nav-drop { width: 100%; }
  .nav-drop-btn { width: 100%; justify-content: space-between; padding: 12px 0; font-size: 16px; }
  .nav-drop-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    min-width: 0;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 14px;
    display: none;
    transition: none;
  }
  .nav-drop.open .nav-drop-menu { display: block; }
  .nav-drop:hover .nav-drop-menu { transform: none; } /* no hover-open on touch */
}

/* ============================================================
   v6 — location detail pages (location-*.html)
   ============================================================ */
.lp-hero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; }
.lp-hero-bg { position: absolute; inset: 0; }
.lp-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: brightness(0.5); }
.lp-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,7,11,0.5) 0%, rgba(6,7,11,0.25) 40%, rgba(6,7,11,0.96) 100%); }
.lp-hero.soon { background: radial-gradient(ellipse at 50% 18%, rgba(143,108,241,0.22), transparent 60%), linear-gradient(180deg, var(--bg-2), var(--bg)); }
.lp-hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(3rem, 7vw, 6rem); }
.lp-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 13px; border-radius: 99px; margin-bottom: 16px; }
.lp-badge.open { background: rgba(74,222,128,0.16); color: #7ff0a8; border: 1px solid rgba(74,222,128,0.4); }
.lp-badge.soon { background: var(--violet-soft); color: #cdbcff; border: 1px solid rgba(143,108,241,0.45); }
.lp-title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 7vw, 82px); line-height: 1.02; letter-spacing: 0.02em; }
.lp-sub { color: var(--muted); font-size: clamp(16px, 2vw, 19px); margin-top: 14px; max-width: 60ch; }
.lp-body { padding: clamp(3rem, 7vw, 6rem) 0; }
.lp-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.lp-grid p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.05rem; }
.lp-grid p strong { color: var(--ink); font-weight: 600; }
.lp-facts { list-style: none; margin: 22px 0 30px; }
.lp-facts li { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; align-items: baseline; }
.lp-facts li:first-child { border-top: 0; }
.lp-facts .k { flex: none; width: 84px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.lp-facts a { color: var(--ink); transition: color 0.3s; }
.lp-facts a:hover { color: var(--violet); }
.lp-map { position: relative; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; }
.lp-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.92) brightness(0.95); }
.lp-soon-panel { border: 1px solid var(--line); border-radius: 12px; aspect-ratio: 4 / 3; display: grid; place-items: center; background: radial-gradient(ellipse at center, rgba(143,108,241,0.16), transparent 70%), linear-gradient(180deg, var(--panel), var(--bg-2)); }
.lp-soon-panel span { font-family: var(--serif); font-size: clamp(28px, 5vw, 48px); letter-spacing: 0.14em; color: rgba(236,238,242,0.14); }
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(2.5rem, 5vw, 4rem); }
.lp-feature { border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); transition: border-color 0.4s, transform 0.4s var(--ease); }
.lp-feature:hover { border-color: rgba(143,108,241,0.4); transform: translateY(-4px); }
.lp-feature h3 { font-family: var(--serif); font-weight: 400; font-size: 18px; margin-bottom: 6px; }
.lp-feature p { color: var(--muted); font-size: 14px; margin: 0; }
.lp-cta-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-top: 30px; }
@media (max-width: 860px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-features { grid-template-columns: 1fr; }
}

/* ---- v8 hero: Kirsten's lit sign photo is the title ---- */
.hero { align-items: flex-end; }
.hero-content { padding: 46svh 24px 11svh; }
.hero-title-photo {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.hero .eyebrow.hr { margin-bottom: 14px; }
.hero-tagline { color: rgba(236, 238, 242, 0.78); }
@media (max-width: 760px) {
  .hero-bg img { object-position: 50% 30%; }
  .hero-content { padding: 52svh 22px 12svh; }
  .scroll-hint { display: none; }
}
