/* B23 Design · Direction A · Editorial / Cinematic */

:root {
  --bg: #0A0A0B;
  --bg-alt: #111113;
  --ink: #F6F1E6;
  --ink-dim: rgba(246,241,230,0.55);
  --ink-mute: rgba(246,241,230,0.35);
  --line: rgba(246,241,230,0.12);
  --accent: #C7A8FF;
  --accent-deep: #6B3FE0;

  --f-display: "Fraunces", "Canela", Georgia, serif;
  --f-ui: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(199,168,255,0.4); color: #fff; }

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

/* ── shared atoms ─────────────────────────────────────────── */
.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mono-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.display {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -1.8px;
  line-height: 0.95;
  color: var(--ink);
  margin: 0;
}

.display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.btn {
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.btn-primary {
  color: var(--bg);
  background: var(--ink);
}
.btn-primary:hover { transform: translateY(-1px); }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-accent {
  color: var(--bg);
  background: var(--accent);
}
.btn-accent:hover { transform: translateY(-1px); }

.btn .arrow {
  font-family: var(--f-display);
  font-style: italic;
}

/* Reveal: starts hidden, becomes visible when .is-visible applied by JS */
.reveal {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), opacity 900ms ease;
  will-change: transform, opacity;
}
.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Tilt: JS adds rotation inline. Wrapper needs transform-style + position. */
.tilt {
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.tilt-glare {
  position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 250ms ease;
  mix-blend-mode: screen;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 20;
  padding: 22px 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.6) 60%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-brand { display: flex; align-items: baseline; gap: 10px; }
.nav-brand .name {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.nav-brand .sub {
  font-family: var(--f-mono);
  font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.8px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 13px; color: var(--ink-dim);
}
.nav-links a { text-decoration: none; transition: color 200ms ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links .btn {
  padding: 10px 18px;
  font-size: 13px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 40px 56px 80px;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05) hue-rotate(-6deg);
}
.hero-bg .wash {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(42,20,71,0.25) 50%, rgba(10,10,11,0.85) 100%);
}
.hero-bg .vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at 50% 40%, transparent 35%, rgba(10,10,11,0.75) 100%);
}
.hero-bg .scanlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 3px;
  mix-blend-mode: overlay;
}
.hero-inner { position: relative; z-index: 2; }

.avail {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: 1.2px; text-transform: uppercase;
  padding-bottom: 60px; border-bottom: 1px solid var(--line);
}
.avail .dot {
  width: 7px; height: 7px; border-radius: 99px;
  background: #7CE495; box-shadow: 0 0 10px #7CE495;
  display: inline-block; margin-right: 8px;
}

.hero-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px;
  padding-top: 72px;
}

.hero-kicker { margin-bottom: 28px; }
h1.hero-head {
  font-family: var(--f-display); font-weight: 300;
  font-size: 118px; line-height: 0.92; letter-spacing: -3.5px;
  color: var(--ink); margin: 0; text-wrap: balance;
}
h1.hero-head em { font-style: italic; font-weight: 400; color: var(--accent); }

.hero-lede {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-dim); max-width: 440px;
  margin-top: 44px;
}

.hero-ctas { display: flex; gap: 14px; margin-top: 40px; }

/* hero image card */
.hero-card-wrap {
  position: relative;
  margin-top: 20px;
  animation: aHeroFloat 7s ease-in-out infinite;
}
.hero-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at 50% 50%, rgba(199,168,255,0.35) 0%, rgba(107,63,224,0.15) 40%, transparent 75%);
  filter: blur(30px);
  animation: aHeroGlow 5s ease-in-out infinite;
  z-index: 0;
}
.hero-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 50px 120px -20px rgba(199,168,255,0.28), 0 10px 40px rgba(0,0,0,0.6);
  z-index: 1;
}
.hero-card img {
  width: 108%; height: 108%;
  margin-left: -4%; margin-top: -4%;
  object-fit: cover;
  animation: aHeroPan 14s ease-in-out infinite;
}
.hero-card .shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.08) 48%, rgba(199,168,255,0.14) 52%, transparent 70%);
  background-size: 300% 100%;
  animation: aHeroShimmer 6s linear infinite;
  mix-blend-mode: screen;
}
.hero-card .caption {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10px;
  color: rgba(255,255,255,0.75); letter-spacing: 1.5px;
  text-transform: uppercase; mix-blend-mode: difference;
}
.hero-badge {
  position: absolute; top: -30px; left: -40px;
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 12px 16px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ink-dim);
  transform: rotate(-2deg);
  z-index: 2;
  animation: aHeroBadge 5s ease-in-out infinite;
}
.hero-badge .stars {
  color: var(--ink); font-size: 22px;
  font-family: var(--f-display); letter-spacing: -0.5px;
  text-transform: none; margin-bottom: 2px;
}

/* stat strip */
.stats {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats .cell { padding: 24px 0; border-right: 1px solid var(--line); }
.stats .cell:last-child { border-right: none; }
.stats .k {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 6px;
}
.stats .v {
  font-family: var(--f-display); font-size: 26px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.5px;
}

/* ── SERVICES ────────────────────────────────────────────── */
.services { padding: 140px 56px 120px; }
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px; border-bottom: 1px solid var(--line); padding-bottom: 28px;
}
.services-head .kicker { margin-bottom: 16px; display: block; }
.services-head h2 {
  font-family: var(--f-display); font-size: 72px; font-weight: 300;
  letter-spacing: -2px; line-height: 0.95; color: var(--ink); margin: 0;
}
.services-head h2 em { font-style: italic; color: var(--accent); }
.services-head .lede {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-dim); max-width: 320px; margin: 0;
}

.service-list { display: flex; flex-direction: column; }
.service {
  text-decoration: none; color: inherit;
  display: grid;
  grid-template-columns: 80px 180px 1fr 160px 120px;
  gap: 32px; align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  transition: background 250ms ease, padding 250ms ease;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service:hover {
  background: linear-gradient(90deg, rgba(199,168,255,0.04), transparent 80%);
  padding-left: 8px; padding-right: 8px;
}
.service .n {
  font-family: var(--f-mono); font-size: 12px; color: var(--ink-mute);
  letter-spacing: 1.5px;
}
.service .kicker2 {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
}
.service .title {
  font-family: var(--f-display); font-size: 30px; font-weight: 300;
  letter-spacing: -0.8px; color: var(--ink); margin-bottom: 6px; line-height: 1.1;
}
.service .desc {
  font-size: 13.5px; line-height: 1.5; color: var(--ink-dim); max-width: 540px;
}
.service .tag {
  font-size: 12px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 1.2px;
}
.service .price {
  text-align: right;
}
.service .price .from {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute);
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 4px;
}
.service .price .amount {
  font-family: var(--f-display); font-size: 34px; font-weight: 400;
  color: var(--ink); letter-spacing: -1px;
}

/* hourly callout */
.hourly {
  margin-top: 48px; padding: 28px 36px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 4px;
  display: flex; align-items: center; justify-content: space-between;
}
.hourly .kicker { margin-bottom: 6px; display: block; }
.hourly .line {
  font-family: var(--f-display); font-size: 22px; color: var(--ink);
  font-weight: 300; letter-spacing: -0.4px;
}
.hourly .line em { font-style: italic; color: var(--accent); }
.hourly .right { display: flex; align-items: center; gap: 24px; }
.hourly .rate {
  font-family: var(--f-display); font-size: 32px; color: var(--ink);
  font-weight: 400; letter-spacing: -1px;
}
.hourly .rate small { font-size: 14px; color: var(--ink-mute); }
.hourly .btn { padding: 12px 22px; font-size: 13px; }

/* ── SHOWCASE ────────────────────────────────────────────── */
.showcase { padding: 40px 56px 140px; }
.showcase-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
}
.showcase-head .kicker { margin-bottom: 14px; display: block; }
.showcase-head h2 {
  font-family: var(--f-display); font-size: 64px; font-weight: 300;
  letter-spacing: -1.8px; color: var(--ink); margin: 0; line-height: 1;
}
.showcase-head .count {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-mute);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.plate-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 340px;
  gap: 14px;
}
.plate {
  position: relative; overflow: hidden; border-radius: 4px;
  background: #1a1a1c;
  cursor: pointer;
}
.plate img { width: 100%; height: 100%; object-fit: cover; }
.plate .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 90px; font-weight: 300;
  color: rgba(255,255,255,0.16); letter-spacing: -2px;
}
.plate .gloss {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  transition: opacity 350ms ease;
}
.plate:hover .gloss { opacity: 0.6; }
.plate .meta {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.plate .meta .t { opacity: 0.6; }

/* ── CASE STUDY ──────────────────────────────────────────── */
.case {
  padding: 140px 56px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.case-head .kicker { display: block; margin-bottom: 18px; }
.case-head h2 {
  font-family: var(--f-display); font-size: 64px; font-weight: 300;
  letter-spacing: -1.8px; color: var(--ink); margin: 0; line-height: 0.95;
}
.case-head h2 em { font-style: italic; color: var(--accent); }
.case-head .meta {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-mute);
  letter-spacing: 1.2px; text-transform: uppercase;
  max-width: 280px; text-align: right;
}
.brief-card {
  padding: 32px; background: var(--bg);
  border: 1px solid var(--line); border-radius: 4px;
  margin-bottom: 24px;
  display: grid; grid-template-columns: 140px 1fr 140px 1fr; gap: 32px;
}
.brief-card .k {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.brief-card .v {
  font-family: var(--f-display); font-size: 18px; color: var(--ink);
  font-weight: 300; letter-spacing: -0.3px; line-height: 1.4;
}
.brief-card .v.italic { font-style: italic; }

.iter-grid {
  display: grid; grid-template-columns: repeat(3, 1fr) 1.4fr; gap: 16px;
}
.iter {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.iter .label-big {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 120px; font-weight: 300;
  color: rgba(255,255,255,0.18); letter-spacing: -3px;
}
.iter .tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--ink); letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6); padding: 4px 8px; border-radius: 2px;
}
.iter .note {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-family: var(--f-mono); font-size: 10px;
  color: rgba(255,255,255,0.7); letter-spacing: 1px;
  text-transform: uppercase;
}
.iter.has-photo { background: var(--bg-alt); }
.iter.has-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.iter.has-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 22%, transparent 68%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.iter.has-photo .tag,
.iter.has-photo .note { z-index: 2; }

.iter.final {
  border: 2px solid var(--accent);
  box-shadow: 0 0 60px rgba(199,168,255,0.3);
}
.iter.final img { width: 100%; height: 100%; object-fit: cover; }
.iter.final .tag {
  color: #000; background: var(--accent);
  padding: 4px 10px; font-weight: 600; letter-spacing: 1.5px;
}
.iter.final .meta {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-family: var(--f-mono); font-size: 10px;
  color: rgba(255,255,255,0.9); letter-spacing: 1px;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 140px 56px;
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: center;
}
.portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--bg-alt) 0%, #2A1447 100%);
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.portrait.has-photo { background: var(--bg-alt); }
.portrait.has-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.portrait.has-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,11,0.75) 100%);
  pointer-events: none;
}
.portrait.has-photo .cap {
  z-index: 2;
  color: var(--ink);
}
.portrait .initials {
  font-family: var(--f-display); font-size: 180px; font-weight: 300;
  color: var(--accent); opacity: 0.4; letter-spacing: -4px;
}
.portrait .cap {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--ink-dim); letter-spacing: 1.2px;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.about h2 {
  font-family: var(--f-display); font-size: 64px; font-weight: 300;
  letter-spacing: -1.8px; line-height: 0.98;
  color: var(--ink); margin: 0;
}
.about h2 em { font-style: italic; color: var(--accent); }
.about .body {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-dim); margin-top: 36px; max-width: 520px;
}
.about .body p { margin: 0 0 18px; }
.about .body p:last-child { margin: 0; }
.about .facts {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 28px 48px;
  margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.about .facts .fact:nth-child(4) { grid-column: 1 / -1; }
.about .facts .fact .k {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute);
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 6px;
}
.about .facts .fact .v {
  font-family: var(--f-display); font-size: 17px;
  color: var(--ink); letter-spacing: -0.2px;
}
.about .kicker { display: block; margin-bottom: 20px; }

/* ── PRICE ESTIMATOR ─────────────────────────────────────── */
.estimator { padding: 140px 56px; }
.estimator-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.estimator-head .kicker { display: block; margin-bottom: 18px; }
.estimator-head h2 {
  font-family: var(--f-display); font-size: 64px; font-weight: 300;
  letter-spacing: -1.8px; color: var(--ink); margin: 0; line-height: 0.95;
}
.estimator-head h2 em { font-style: italic; color: var(--accent); }
.estimator-head .lede {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-dim); max-width: 320px; margin: 0;
}
.estimator-box {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  padding: 40px; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 4px;
}
.est-group { margin-bottom: 32px; }
.est-group:last-child { margin-bottom: 0; }
.est-group .label {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--f-ui); font-size: 13px; font-weight: 500;
  padding: 14px 20px; border-radius: 999px;
  background: transparent; color: var(--ink-dim);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 200ms ease;
}
.chip:hover { border-color: var(--ink-dim); color: var(--ink); }
.chip.active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.est-result {
  background: var(--bg); border-radius: 4px; padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.est-result::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 0%, rgba(199,168,255,0.18) 0%, transparent 60%);
}
.est-result-inner { position: relative; }
.est-result .k {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.est-result .price {
  font-family: var(--f-display); font-size: 88px; font-weight: 300;
  color: var(--ink); letter-spacing: -3px; line-height: 1;
}
.est-result .combo {
  font-size: 13px; color: var(--ink-dim); margin-top: 12px;
}
.est-result .btn {
  margin-top: 36px; justify-content: center; position: relative;
  padding: 16px 24px;
  font-size: 14px;
}

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews {
  padding: 120px 56px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
}
.reviews .kicker { display: block; margin-bottom: 20px; }
.reviews h2 {
  font-family: var(--f-display); font-size: 64px; font-weight: 300;
  letter-spacing: -1.8px; color: var(--ink); margin: 0; line-height: 0.95;
}
.reviews h2 em { font-style: italic; color: var(--accent); }
.reviews .lede {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-dim); margin-top: 32px; max-width: 280px;
}
.review-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.review {
  padding: 32px; background: var(--bg);
  border: 1px solid var(--line); border-radius: 4px;
  display: flex; flex-direction: column;
}
.review-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.review .avatar {
  width: 36px; height: 36px; border-radius: 99px;
  background: var(--accent); color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 500; font-size: 16px;
}
.review .who { flex: 1; }
.review .who .n {
  font-size: 13px; font-weight: 500; color: var(--ink);
}
.review .who .c {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--ink-mute); letter-spacing: 1px;
  text-transform: uppercase; margin-top: 2px;
}
.review .ago {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute);
}
.review .stars {
  font-size: 11px; color: var(--accent);
  letter-spacing: 2px; margin-bottom: 12px;
}
.review p {
  font-family: var(--f-display); font-size: 18px; line-height: 1.4;
  color: var(--ink); font-weight: 300; letter-spacing: -0.3px;
  margin: 0; text-wrap: pretty;
}

/* ── PROCESS ────────────────────────────────────────────── */
.process { padding: 140px 56px; }
.process .kicker { display: block; margin-bottom: 18px; }
.process h2 {
  font-family: var(--f-display); font-size: 64px; font-weight: 300;
  letter-spacing: -1.8px; color: var(--ink); margin: 0;
  line-height: 0.95; margin-bottom: 60px;
}
.process h2 em { font-style: italic; color: var(--accent); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
}
.step:last-child { border-right: none; }
.step:not(:first-child) { padding-left: 28px; }
.step .n {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-mute);
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.step .t {
  font-family: var(--f-display); font-size: 34px; font-weight: 300;
  color: var(--ink); letter-spacing: -0.8px; margin-bottom: 12px;
}
.step .d {
  font-size: 14px; line-height: 1.55; color: var(--ink-dim);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq { padding: 140px 56px; }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.faq .kicker { display: block; margin-bottom: 20px; }
.faq h2 {
  font-family: var(--f-display); font-size: 64px; font-weight: 300;
  letter-spacing: -1.8px; color: var(--ink); margin: 0; line-height: 0.95;
}
.faq h2 em { font-style: italic; color: var(--accent); }
.faq .lede {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-dim); margin-top: 24px; max-width: 280px;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: transparent; border: none;
  padding: 28px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; color: inherit;
}
.faq-q .txt {
  font-family: var(--f-display); font-size: 26px; font-weight: 300;
  color: var(--ink); letter-spacing: -0.6px;
}
.faq-q .plus {
  font-family: var(--f-display); font-size: 28px; font-weight: 300;
  color: var(--accent); transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 500ms cubic-bezier(.2,.7,.2,1), opacity 400ms ease;
  opacity: 0;
}
.faq-item.open .faq-a { max-height: 260px; opacity: 1; }
.faq-a-inner {
  font-size: 16px; line-height: 1.6;
  color: var(--ink-dim); padding-bottom: 28px; max-width: 620px;
}

/* ── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  padding: 140px 56px;
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(199,168,255,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .inner { position: relative; }
.final-cta .kicker { display: block; margin-bottom: 24px; }
.final-cta h2 {
  font-family: var(--f-display); font-size: 128px; font-weight: 300;
  letter-spacing: -4px; color: var(--ink); margin: 0; line-height: 0.9;
  text-wrap: balance;
}
.final-cta h2 em { font-style: italic; color: var(--accent); }
.final-cta .cta-row { margin-top: 56px; display: inline-flex; gap: 14px; }
.final-cta .cta-row .btn { padding: 18px 32px; font-size: 15px; }
.final-cta .note {
  margin-top: 24px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: 1.2px; text-transform: uppercase;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 32px 56px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.footer a { color: var(--accent); text-decoration: none; }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 280ms ease;
  padding: 48px;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lb-frame {
  position: relative;
  max-width: min(1400px, 96vw);
  max-height: 88vh;
  margin: 0;
  display: flex; flex-direction: column; align-items: center;
  transform: scale(0.96);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.lightbox.is-open .lb-frame { transform: scale(1); }
.lb-frame img {
  max-width: 100%;
  max-height: 82vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(199,168,255,0.15);
  display: block;
}
.lb-caption {
  display: flex; align-items: baseline; gap: 16px;
  margin-top: 20px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-dim); letter-spacing: 1.5px; text-transform: uppercase;
}
.lb-label { color: var(--ink); font-weight: 500; }
.lb-tag { color: var(--accent); }
.lb-index { margin-left: auto; color: var(--ink-mute); }
.lb-btn {
  position: absolute;
  background: rgba(10,10,11,0.6);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--f-display); font-weight: 300;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lb-btn:hover {
  background: rgba(199,168,255,0.2);
  border-color: var(--accent);
}
.lb-close {
  top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 99px;
  font-size: 28px; line-height: 1;
}
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 99px;
  font-size: 36px; line-height: 1; padding-bottom: 4px;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.05); }

body.lb-locked { overflow: hidden; }

@media (max-width: 1100px) {
  .lightbox { padding: 16px; }
  .lb-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 24px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 26px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-caption { font-size: 10px; flex-wrap: wrap; gap: 8px; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes aHeroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.3deg); }
}
@keyframes aHeroPan {
  0%, 100% { transform: scale(1.02) translate(0, 0); }
  50% { transform: scale(1.06) translate(-1.5%, -1%); }
}
@keyframes aHeroGlow {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes aHeroShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
@keyframes aHeroBadge {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-6px); }
}
/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav { padding: 16px 28px; }
  .nav-links { gap: 20px; font-size: 12px; }
  .hero { padding: 24px 28px 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; padding-top: 40px; }
  h1.hero-head { font-size: 72px; letter-spacing: -2px; }
  .hero-badge { top: -20px; left: -20px; }
  .avail { flex-wrap: wrap; gap: 12px; font-size: 10px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .cell:nth-child(2) { border-right: none; }
  .services, .showcase, .case, .about, .estimator, .reviews, .process, .faq, .final-cta {
    padding-left: 28px; padding-right: 28px;
  }
  .services-head, .case-head, .estimator-head, .showcase-head {
    flex-direction: column; align-items: flex-start; gap: 24px;
  }
  .service {
    grid-template-columns: 60px 1fr; grid-template-rows: auto auto;
    gap: 16px;
  }
  .service .kicker2, .service .tag { display: none; }
  .service .price { grid-column: 2; text-align: left; }
  .service .title { font-size: 24px; }
  .plate-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .plate-grid .plate { grid-column: auto !important; grid-row: auto !important; }
  .iter-grid { grid-template-columns: repeat(2, 1fr); }
  .brief-card { grid-template-columns: 1fr; gap: 8px; }
  .about-grid, .reviews-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .review-cards { grid-template-columns: 1fr; }
  .about h2, .reviews h2, .faq h2, .case-head h2, .showcase-head h2,
  .services-head h2, .estimator-head h2, .process h2 {
    font-size: 44px; letter-spacing: -1.2px;
  }
  .final-cta h2 { font-size: 68px; letter-spacing: -2px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; padding: 28px 0 !important; border-bottom: 1px solid var(--line); }
  .estimator-box { grid-template-columns: 1fr; }
  .est-result .price { font-size: 64px; letter-spacing: -2px; }
  .hourly { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer { flex-direction: column; gap: 8px; }
}
