/* ============================================================
   ASTON BUCK — WEB DESIGN STUDIO, LEEDS
   Monochrome editorial system — near-black, condensed caps,
   letterspaced serif accents. (Art direction ref: Wen Launch)
   ============================================================ */

:root {
  --bg: #0B0B0C;
  --panel: #121214;
  --ink: #F2F1ED;
  --ink-2: #98968E;
  --silver: #C9C7BF;
  --line: rgba(242, 241, 237, 0.13);
  --line-strong: rgba(242, 241, 237, 0.4);
  --accent: #F2F1ED;
  --accent-soft: rgba(242, 241, 237, 0.07);
  --black: #0B0B0C;
  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-cond: "Oswald", "Arial Narrow", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --nav-h: 76px;
  --pad-x: clamp(20px, 4.5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --r-pill: 999px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

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

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

h1, h2, h3 { font-weight: 500; }

.display {
  font-family: var(--font-cond);
  font-size: clamp(3rem, 9.5vw, 8rem);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  font-weight: 500;
}

.h2 {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1.0;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  font-weight: 500;
}

.h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* elegant serif accent — the "AGENCY" treatment */
.serif-i {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--silver);
}

.accent-t { color: inherit; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--line-strong);
  flex: none;
}

.lead { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--ink-2); line-height: 1.65; font-weight: 400; }
.muted { color: var(--ink-2); }

/* ---------- layout ---------- */

.wrap { padding-left: var(--pad-x); padding-right: var(--pad-x); max-width: 1480px; margin: 0 auto; }
section { position: relative; }
.section-pad { padding-top: clamp(76px, 10vw, 150px); padding-bottom: clamp(76px, 10vw, 150px); }
.hairline-top { border-top: 1px solid var(--line); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 72px);
  flex-wrap: wrap;
}
.section-head .eyebrow { margin-bottom: 18px; }

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 90;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 11, 12, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-side { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 40px); }
.nav-side.right { justify-content: flex-end; }

.logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  padding-left: 0.34em; /* optically recentre the letterspaced wordmark */
}
.logo:hover { color: var(--ink); }

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
}
.nav-cta:hover { background: var(--ink); color: var(--black); border-color: var(--ink); }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 10px 2px; z-index: 101; justify-self: end; }
.burger span { width: 26px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  color: var(--ink);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-x);
  gap: 4px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease);
}
.mobile-menu.open { clip-path: inset(0 0 0 0); }
.mobile-menu a {
  font-family: var(--font-cond);
  font-size: clamp(2.4rem, 10vw, 3.8rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a .num { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--ink-2); }
.mobile-menu .mm-foot { margin-top: 30px; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-2); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s, transform 0.15s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn-block { width: 100%; }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }
.btn:active { transform: scale(0.97); }
.btn:hover { background: var(--ink); border-color: var(--ink); color: var(--black); }

.btn-accent { background: var(--ink); border-color: var(--ink); color: var(--black); }
.btn-accent:hover { background: transparent; border-color: var(--line-strong); color: var(--ink); }

.btn-ghost { background: transparent; }

.btn-sm { padding: 11px 18px; font-size: 0.68rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 6px;
  transition: gap 0.3s var(--ease), border-color 0.3s;
}
.text-link:hover { gap: 16px; border-color: var(--ink); }

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

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-ghost {
  position: absolute;
  bottom: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(200px, 38vw, 640px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(242, 241, 237, 0.02);
  -webkit-text-stroke: 1px rgba(242, 241, 237, 0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* soft shadowed black/grey "bubble" atmosphere */
.hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bubbles .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.6;
  will-change: transform;
}
.orb-1 {
  width: 54vw; height: 54vw;
  left: -14vw; top: -20vw;
  background: radial-gradient(circle at 35% 35%, #303036 0%, #1B1B1F 46%, transparent 72%);
  animation: orb-drift 28s ease-in-out infinite alternate;
}
.orb-2 {
  width: 46vw; height: 46vw;
  right: -15vw; top: 4vh;
  background: radial-gradient(circle at 60% 40%, #2A2A30 0%, #18181C 50%, transparent 74%);
  animation: orb-drift 34s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  width: 40vw; height: 40vw;
  left: 26vw; bottom: -18vw;
  background: radial-gradient(circle at 50% 45%, #26262B 0%, #151519 52%, transparent 75%);
  animation: orb-drift 40s ease-in-out infinite alternate;
}
@keyframes orb-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(5vw, 4vh, 0) scale(1.14); }
}

.hero > .wrap { position: relative; z-index: 1; width: 100%; }

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: clamp(20px, 3.5vh, 44px);
}
.hero-tag {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-2);
  max-width: 12ch;
  line-height: 1.9;
}
.hero-arrow { color: var(--ink); transition: transform 0.4s var(--ease); }
.hero-arrow svg { width: clamp(40px, 4.5vw, 64px); height: auto; }
.hero-arrow:hover { transform: translate(6px, -6px); }

.hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 4vh, 56px) 0;
}
.hero-h { display: flex; flex-direction: column; align-items: center; }
.hero-h .hl-line {
  font-family: "Jost", var(--font-sans);
  font-weight: 300;
  font-size: clamp(2.7rem, 8.2vw, 7rem);
  line-height: 1.08;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.hero-h .hl-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 5.3vw, 4.5rem);
  line-height: 1.16;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: clamp(8px, 1.2vh, 18px);
  padding-left: 0.24em; /* optically recentre letterspaced line */
}

.hero-low {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 28px;
  padding-bottom: clamp(20px, 3.5vh, 44px);
}
.hero-ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero-sub {
  justify-self: end;
  text-align: right;
  max-width: 34ch;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.75;
}
.hero-sub b { color: var(--ink); font-weight: 600; }

/* rotating scroll badge */
.scroll-badge {
  justify-self: center;
  position: relative;
  width: clamp(104px, 10vw, 136px);
  height: clamp(104px, 10vw, 136px);
  display: grid;
  place-items: center;
}
.scroll-badge .ring { position: absolute; inset: 0; animation: badge-spin 16s linear infinite; }
.scroll-badge .ring text {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  fill: var(--ink-2);
}
.scroll-badge:hover .ring text { fill: var(--ink); }
.scroll-badge .down { color: var(--ink); transition: transform 0.35s var(--ease); }
.scroll-badge:hover .down { transform: translateY(5px); }
@keyframes badge-spin { to { transform: rotate(360deg); } }

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--ink-2);
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
}
.hero-meta .dot-live {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ink);
  margin-right: 10px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ---------- marquee ---------- */

.marquee {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 17px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "";
  width: 7px; height: 7px;
  border: 1px solid var(--line-strong);
  transform: rotate(45deg);
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- work cards ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.work-card { grid-column: span 6; display: block; }
.work-card.wide { grid-column: span 12; }
.work-card.third { grid-column: span 4; }
/* compact cards: tighten the in-frame caption, hide category on narrow thirds */
.work-card.third .wc-cap { padding: 8px 8px 8px 16px; }
.work-card.third .wc-cap .cap-t { font-size: 0.7rem; }
.work-card.third .wc-cap .cap-c { display: none; }

.wc-frame {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  overflow: hidden;
  position: relative;
}
.wc-frame svg, .wc-frame img { width: 100%; height: auto; display: block; transition: transform 0.9s var(--ease); }
.work-card:hover .wc-frame svg, .work-card:hover .wc-frame img { transform: scale(1.03); }

.wc-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(11, 11, 12, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 8px 15px;
  z-index: 2;
}
.wc-tag.gold { background: var(--ink); color: var(--black); border-color: var(--ink); }

/* in-frame caption pill — project name / category / circular arrow */
.wc-cap {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(11, 11, 12, 0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(242, 241, 237, 0.14);
  border-radius: var(--r-pill);
  padding: 9px 9px 9px 20px;
  z-index: 2;
}
.wc-cap .cap-t {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wc-cap .cap-c {
  flex: 1;
  min-width: 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wc-cap .cap-arrow {
  flex: none;
  width: 36px; height: 36px;
  border: 1px solid rgba(242, 241, 237, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.work-card:hover .cap-arrow { background: var(--ink); color: var(--black); transform: rotate(45deg); }

.wc-desc {
  padding: 18px 6px 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 76ch;
}
.wc-desc b { color: var(--ink); font-weight: 600; }

.more-projects { margin-top: clamp(28px, 4vw, 48px); }

/* ---------- flagship case study ---------- */

.case-flag {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 9px 17px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--ink);
}
.chip.solid { background: var(--ink); border-color: var(--ink); color: var(--black); }

/* ---------- packages ---------- */

.pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 40px);
  align-items: stretch;
}
.pack {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.2vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  background: linear-gradient(160deg, #17171B 0%, #101013 60%, #131316 100%);
  transition: border-color 0.35s var(--ease), transform 0.4s var(--ease);
}
.pack:hover { border-color: var(--line-strong); transform: translateY(-6px); }
.pack.featured { border-color: rgba(242, 241, 237, 0.45); }

.pk-flag {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--ink);
  color: var(--black);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: var(--r-pill);
}
.pk-name { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3em; color: var(--ink-2); text-align: center; }
.pk-price {
  font-family: var(--font-cond);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-top: 12px;
  text-align: center;
}
.pk-price .once { font-family: var(--font-serif); font-style: italic; font-size: 0.34em; font-weight: 400; letter-spacing: 0.06em; text-transform: none; opacity: 0.6; }
.pk-desc { font-size: 0.92rem; color: var(--ink-2); margin-top: 14px; line-height: 1.65; text-align: center; max-width: 40ch; margin-left: auto; margin-right: auto; }

.pk-feat { list-style: none; display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 18px; }
.pk-feat li {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 7px 0;
  font-size: 0.92rem;
}
.pk-feat li .tick {
  flex: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.55rem;
  color: var(--ink);
}
.pack .btn { margin-top: auto; width: 100%; }

/* custom project card (ref: wide rounded strip under the packages) */
.custom-card {
  margin-top: clamp(20px, 2.5vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.custom-card h3 { font-family: var(--font-cond); font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 500; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; }
.custom-card p { color: var(--ink-2); font-size: 0.95rem; line-height: 1.7; max-width: 52ch; }
.custom-card .cc-right { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.custom-card .cc-price { text-align: right; }
.custom-card .cc-price .ccl { display: block; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.26em; color: var(--ink-2); margin-bottom: 6px; }
.custom-card .cc-price .ccv { font-family: var(--font-cond); font-size: 2rem; font-weight: 400; line-height: 1; }

.pay-note {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--ink-2);
  margin-top: clamp(20px, 2.5vw, 40px);
  line-height: 1.7;
}
.pay-note b { color: var(--ink); font-weight: 600; }
.pay-note a { text-decoration: underline; text-underline-offset: 3px; }
.pay-note .half {
  flex: none;
  width: 26px; height: 26px;
  background: linear-gradient(90deg, var(--ink) 50%, transparent 50%);
  border: 1px solid var(--ink);
}

/* ---------- process ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }
.step {
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
  position: relative;
  transition: border-color 0.3s;
}
.step:hover { border-top-color: var(--ink); }
.step .day {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: block;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; font-family: var(--font-cond); text-transform: uppercase; font-weight: 500; font-size: 1.35rem; letter-spacing: 0.02em; }
.step p { font-size: 0.9rem; color: var(--ink-2); line-height: 1.7; }
.step .big-n {
  position: absolute;
  top: 16px; right: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.6rem;
  color: rgba(242, 241, 237, 0.14);
  line-height: 1;
}

/* ---------- stats ---------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--panel); }
.stat {
  padding: clamp(26px, 3vw, 48px) clamp(18px, 2vw, 34px);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: var(--font-cond);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.stat .n small { font-size: 0.5em; }
.stat .l { margin-top: 12px; font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.26em; color: var(--ink-2); }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  transition: color 0.25s, padding-left 0.3s var(--ease);
}
.faq-q:hover { padding-left: 10px; }
.faq-q .fx { flex: none; width: 18px; height: 18px; position: relative; }
.faq-q .fx::before, .faq-q .fx::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.35s var(--ease);
}
.faq-q .fx::before { left: 0; top: 8.5px; width: 18px; height: 1px; }
.faq-q .fx::after { left: 8.5px; top: 0; width: 1px; height: 18px; }
.faq-item.open .fx::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 0 26px; color: var(--ink-2); max-width: 64ch; line-height: 1.75; }

/* ---------- compare table ---------- */

.compare { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare th, .compare td { padding: 15px 18px; border: 1px solid var(--line); text-align: left; }
.compare td { color: var(--ink-2); }
.compare td:first-child { color: var(--ink); }
.compare th { font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; }
.compare th.hl, .compare td.hl { background: var(--accent-soft); color: var(--ink); }
.compare td.yes { color: var(--ink); font-weight: 600; }
.compare td.no { color: var(--ink-2); }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
.portrait {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--panel);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.portrait svg { width: 100%; height: auto; }

.value-list { border-top: 1px solid var(--line); }
.value-item { display: grid; grid-template-columns: 80px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.value-item .vn { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--silver); }
.value-item h3 { margin-bottom: 8px; font-family: var(--font-cond); text-transform: uppercase; font-weight: 500; font-size: 1.4rem; letter-spacing: 0.02em; }
.value-item p { color: var(--ink-2); font-size: 0.95rem; max-width: 58ch; line-height: 1.7; }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 88px); align-items: start; }

.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.field label { font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.26em; color: var(--ink-2); }
.field input, .field textarea, .field select {
  font: inherit;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ink);
  padding: 15px 17px;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(242, 241, 237, 0.28); }
.field textarea { resize: vertical; min-height: 132px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--accent-soft);
}
.pk-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pk-pick input { position: absolute; opacity: 0; pointer-events: none; }
.pk-pick label.opt {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--ink);
}
.pk-pick label.opt small { font-weight: 400; color: var(--ink-2); }
.pk-pick input:checked + label.opt { background: var(--ink); border-color: var(--ink); color: var(--black); }
.pk-pick input:checked + label.opt small { color: rgba(11, 11, 12, 0.55); }

.contact-aside .block { border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; margin-bottom: 18px; background: var(--panel); }
.contact-aside .block .bl { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; color: var(--ink-2); margin-bottom: 12px; }
.contact-aside .block .bv { font-size: 1.1rem; font-weight: 500; display: block; }
.contact-aside .block a.bv:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- add-ons ---------- */

.addons { border-top: 1px solid var(--line-strong); }
.addon {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(14px, 2.5vw, 36px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.35s var(--ease);
}
.addon:hover { background: var(--accent-soft); padding-left: 16px; }
.addon .an { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--silver); }
.addon h3 { font-family: var(--font-cond); font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 500; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 5px; }
.addon p { font-size: 0.9rem; color: var(--ink-2); max-width: 50ch; line-height: 1.7; }
.addon .ap { font-family: var(--font-cond); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 500; white-space: nowrap; }
.addon .ap small { font-family: var(--font-serif); font-style: italic; font-size: 0.55em; color: var(--ink-2); font-weight: 400; }

/* ---------- quote builder ---------- */

.qb {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}
.qb-left { padding: clamp(24px, 3vw, 48px); border-right: 1px solid var(--line); }
.qb-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-2);
  margin: 28px 0 14px;
}
.qb-label:first-child { margin-top: 0; }

.qb-packs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qb-pack {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 16px 18px;
  text-align: left;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.qb-pack .qp-n { font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; display: block; margin-bottom: 6px; color: var(--ink-2); }
.qb-pack .qp-p { font-family: var(--font-cond); font-size: 1.7rem; font-weight: 500; }
.qb-pack.sel { background: var(--ink); color: var(--black); border-color: var(--ink); }
.qb-pack.sel .qp-n { color: rgba(11, 11, 12, 0.55); }

.qb-addon {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.92rem;
}
.qb-addon:last-of-type { border-bottom: 0; }
.qb-addon .box {
  flex: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.qb-addon.sel .box { background: var(--ink); border-color: var(--ink); }
.qb-addon.sel .box::after {
  content: "";
  position: absolute;
  left: 6px; top: 2.5px;
  width: 4px; height: 9px;
  border: solid var(--black);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.qb-addon .qa-price small { font-size: 0.78em; color: var(--ink-2); font-weight: 500; }
.qb-addon .qa-name { flex: 1; }
.qb-addon .qa-price { font-weight: 600; white-space: nowrap; color: var(--ink-2); }
.qb-addon.sel .qa-price { color: var(--ink); }

.qb-right {
  background: var(--ink);
  color: var(--black);
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.qb-right .qb-label { color: rgba(11, 11, 12, 0.5); }
.qb-total {
  font-family: var(--font-cond);
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
  margin: 8px 0 6px;
}
.qb-once { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: rgba(11, 11, 12, 0.55); }
.qb-split { margin-top: 28px; border-top: 1px solid rgba(11, 11, 12, 0.18); }
.qb-split .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(11, 11, 12, 0.18);
  font-size: 0.9rem;
}
.qb-split .row b { font-weight: 600; }
.qb-split .row .rl { color: rgba(11, 11, 12, 0.55); }
.qb-right .btn { margin-top: 30px; justify-content: center; background: var(--black); border-color: var(--black); color: var(--ink); }
.qb-right .btn:hover { background: transparent; border-color: rgba(11, 11, 12, 0.6); color: var(--black); }
.qb-note { margin-top: 14px; font-size: 0.76rem; color: rgba(11, 11, 12, 0.5); text-align: center; }

/* ---------- referral band (inverted light) ---------- */

.ref-band {
  background: var(--ink);
  color: var(--black);
  overflow: hidden;
  position: relative;
}
.ref-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: clamp(52px, 7vw, 100px);
  padding-bottom: clamp(52px, 7vw, 100px);
  position: relative;
  z-index: 1;
}
.ref-band .eyebrow { color: rgba(11, 11, 12, 0.5); }
.ref-band .eyebrow::before { background: rgba(11, 11, 12, 0.4); }
.ref-band h2 { max-width: 16ch; }
.ref-band .lead { color: rgba(11, 11, 12, 0.6); max-width: 42ch; }
.ref-band .btn { background: var(--black); border-color: var(--black); color: var(--ink); }
.ref-band .btn:hover { background: transparent; border-color: rgba(11, 11, 12, 0.6); color: var(--black); }
.ref-badge {
  font-family: var(--font-cond);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 600;
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11, 11, 12, 0.8);
  white-space: nowrap;
  user-select: none;
  text-transform: uppercase;
}
.ref-band .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 11, 12, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 12, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 85% 50%, black, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 90% at 85% 50%, black, transparent 70%);
}

/* ---------- guarantee strip ---------- */

.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 22px 26px;
}
.guarantee .g-seal {
  flex: none;
  width: 54px; height: 54px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 1.05rem;
  animation: seal-spin 14s linear infinite;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
.guarantee .g-seal span { animation: seal-spin 14s linear infinite reverse; }
.guarantee b { font-weight: 600; }
.guarantee p { font-size: 0.88rem; color: var(--ink-2); line-height: 1.65; }

/* ---------- big CTA / footer ---------- */

.cta-band .display { max-width: 18ch; }

.footer { border-top: 1px solid var(--line); }
.footer .f-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: clamp(56px, 7vw, 100px);
  padding-bottom: clamp(40px, 5vw, 76px);
}
.footer .f-col .fl { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3em; color: var(--ink-2); margin-bottom: 18px; }
.footer .f-col a { display: block; padding: 5px 0; color: var(--silver); font-size: 0.92rem; transition: color 0.25s, transform 0.25s var(--ease); }
.footer .f-col a:hover { color: var(--ink); transform: translateX(4px); }
.footer .f-col .fv { color: var(--silver); font-size: 0.92rem; padding: 5px 0; }

.f-word {
  font-family: var(--font-cond);
  font-size: clamp(3.6rem, 13.5vw, 12.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 241, 237, 0.22);
  white-space: nowrap;
  transition: color 0.6s var(--ease);
  user-select: none;
  text-transform: uppercase;
}
.f-word:hover { color: var(--ink); }
.f-word .dotb { color: var(--ink); -webkit-text-stroke: 0; }

.f-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding: 22px 0 32px;
  font-size: 0.64rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--ink-2);
}

/* ---------- page hero (subpages) ---------- */

.page-hero {
  padding-top: calc(var(--nav-h) + clamp(52px, 10vh, 120px));
  padding-bottom: clamp(44px, 6vh, 88px);
  position: relative;
  overflow: hidden;
}
.page-hero .display { max-width: 16ch; position: relative; z-index: 1; }
.page-hero .lead { max-width: 54ch; margin-top: 26px; position: relative; z-index: 1; }
.page-hero .eyebrow { position: relative; z-index: 1; }

/* ---------- reveal animations ---------- */

.rv { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .marquee-track, .scroll-badge .ring, .g-seal, .g-seal span, .hero-bubbles .orb { animation: none; }
  html { scroll-behavior: auto; }
}

/* ?noanim URL flag — skip entrance animations (debugging / screenshots) */
html.noanim .rv { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- custom cursor ---------- */

.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  .cursor-dot { width: 6px; height: 6px; background: #F2F1ED; border-radius: 50% !important; }
  .cursor-ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(242, 241, 237, 0.7);
    border-radius: 50% !important;
    transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s, background 0.25s;
    opacity: 0.5;
  }
  .cursor-ring.hov { width: 58px; height: 58px; background: rgba(242, 241, 237, 0.1); opacity: 1; }
}

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

@media (max-width: 960px) {
  .nav-side { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .logo { text-align: left; padding-left: 0; justify-self: start; }
  .burger { display: flex; }
  .work-card, .work-card.third { grid-column: span 12; }
  .work-card.third .wc-cap .cap-c { display: block; }
  .work-card.third .wc-cap .cap-t { font-size: 0.76rem; }
  .case-flag { grid-template-columns: 1fr; }
  .pack-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .portrait { position: static; max-width: 420px; }
  .compare-scroll { overflow-x: auto; }
  .compare { min-width: 620px; }
  .qb { grid-template-columns: 1fr; }
  .qb-left { border-right: 0; border-bottom: 1px solid var(--line); }
  .qb-right { position: static; }
  .addon { grid-template-columns: 44px 1fr auto; }
  .addon .an { font-size: 1.2rem; }
  .ref-badge { -webkit-text-stroke-width: 1px; }
  .hero-low { grid-template-columns: 1fr; justify-items: start; row-gap: 24px; }
  .scroll-badge { display: none; }
  .hero-sub { justify-self: start; text-align: left; }
  .hero-arrow svg { width: 36px; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .pk-pick { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .hero-h .hl-serif { letter-spacing: 0.14em; padding-left: 0.14em; }
  .wc-cap { left: 10px; right: 10px; bottom: 10px; padding: 8px 8px 8px 15px; }
  .wc-cap .cap-c { display: none; }
  .wc-cap .cap-t { white-space: normal; font-size: 0.64rem; letter-spacing: 0.15em; line-height: 1.5; }
  .wc-cap .cap-arrow { width: 32px; height: 32px; }
  .wc-tag { font-size: 0.52rem; letter-spacing: 0.18em; padding: 7px 12px; }
  .pk-flag { position: static; order: -1; align-self: center; margin-bottom: 2px; }
}
