/* ═══════════════════════════════════════════════════
   L15 — Amazon & Noon Account Management · l15.solutions
   Design tokens
═══════════════════════════════════════════════════ */
:root {
  /* Palette — marketplace ink, bone type, Amazon orange → noon yellow signal,
     one electric-cyan contrast. Amazon squid ink #232F3E · Amazon orange #FF9900
     · noon yellow ≈#FFE500 · noon slate #404553 */
  --bg: #121a24;
  --bg-raised: #1b2430;
  --bg-card: #232f3e;
  --ink: #f7f4ef;
  --ink-dim: #a9b4c2;
  --ink-faint: #6b7889;
  --amber: #ff9900;
  --amber-bright: #ffe500;
  --amber-deep: #b36b00;
  --cobalt: #00c2ff;
  --line: rgba(247, 244, 239, 0.12);

  /* Semantic aliases — prefer these in new rules */
  --ink-deep: var(--bg);
  --surface: var(--bg-card);
  --signal: var(--amber);
  --signal-hi: var(--amber-bright);
  --electric: var(--cobalt);
  --bone: #f7f4ef;
  --signal-grad: linear-gradient(100deg, var(--amber) 0%, var(--amber-bright) 100%);

  /* Light break */
  --ivory: #f7f4ef;
  --ivory-ink: #121a24;

  /* Type — display is a heavy grotesk now, not a serif */
  --serif: "Archivo", "Inter", -apple-system, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4.5rem, 10vh, 7.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════ Reset & base ═══════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

::selection {
  background: var(--amber);
  color: var(--bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* The hidden attribute must always win over component display rules */
[hidden] {
  display: none !important;
}

em {
  font-style: italic;
}

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

/* Film-grain overlay for depth */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════ Typography helpers ═══════════════ */
.eyebrow,
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.section-eyebrow {
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.section-eyebrow::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.section-title,
.statement,
.hero-title {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.statement {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 2rem;
}

.section-title em,
.statement em,
.hero-title em {
  font-style: normal;
  background: var(--signal-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

a:hover .arrow,
button:hover .arrow {
  transform: translateX(0.3em);
}

/* ═══════════════ Buttons ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95em 1.9em;
  border: 1px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-solid {
  background: var(--ink);
  color: var(--bg);
}

.btn-solid:hover {
  background: var(--amber-bright);
  color: #221a0e;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-ghost {
  color: var(--ink-dim);
  padding-inline: 0.5em;
}

.btn-ghost:hover {
  color: var(--ink);
}

.btn-gold {
  background: var(--amber);
  color: #221a0e;
  border-color: var(--amber);
}

.btn-gold:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  transform: translateY(-2px);
}

/* ═══════════════ Header ═══════════════ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 1.3rem;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 10, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 0.8rem;
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: font-size 0.4s var(--ease);
}

.site-header.is-scrolled .brand {
  font-size: 2.5rem;
}

.brand-15 {
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  margin-left: auto;
}

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

/* ═══════════════ Hero ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52rem 36rem at 82% 8%, rgba(0, 194, 255, 0.12), transparent 60%),
    radial-gradient(50rem 36rem at 4% 92%, rgba(255, 153, 0, 0.16), transparent 62%),
    linear-gradient(180deg, #0d141c 0%, var(--bg) 55%);
}

/* Oversized ghost monogram */
.hero-ghost {
  position: absolute;
  right: -4vw;
  bottom: -8vh;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18rem, 42vw, 40rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 238, 227, 0.07);
  user-select: none;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding-block: 8rem 6rem;
  max-width: 58rem;
}

.hero-title {
  font-size: clamp(3rem, 8.4vw, 6.4rem);
  margin: 1.6rem 0 1.8rem;
}

.hero-sub {
  max-width: 33rem;
  color: var(--ink-dim);
  font-size: 1.05rem;
  margin-bottom: 2.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.hero-cities {
  margin-top: 2.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--amber);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  translate: -50% 0;
  width: 1px;
  height: 4rem;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 40%;
  background: var(--amber);
  animation: cue 2.2s var(--ease) infinite;
}

@keyframes cue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}

/* ═══════════════ Which one is you ═══════════════ */
.door-list {
  border-top: 1px solid var(--line);
}

.door {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3.5vw, 2.2rem) 0.4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.4s var(--ease);
}

.door:hover {
  padding-left: 1.4rem;
}

.door::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.door:hover::after {
  transform: scaleX(1);
}

.door h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
}

.door .arrow {
  color: var(--amber);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

/* ═══════════════ Category shelf ═══════════════ */
.shelf {
  border-block: 1px solid var(--line);
  background: var(--bg-raised);
  padding-block: var(--section-pad);
  overflow: hidden;
}

.shelf .section-title {
  margin-bottom: 2.4rem;
}

.shelf-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.shelf-viewport::-webkit-scrollbar {
  display: none;
}

.shelf-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  padding-inline: var(--gutter);
  animation: shelf-drift 90s linear infinite alternate;
}

.shelf-viewport:hover .shelf-track,
.shelf-viewport:focus-within .shelf-track {
  animation-play-state: paused;
}

@keyframes shelf-drift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% + 100vw - var(--gutter) * 2)); }
}

.shelf-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(13rem, 22vw, 16rem);
  aspect-ratio: 7 / 9;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-card);
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}

.shelf-card:hover {
  border-color: rgba(227, 162, 74, 0.55);
  transform: translateY(-4px);
}

.shelf-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}

.shelf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shelf-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 10, 9, 0.88) 100%);
}

.shelf-name {
  position: absolute;
  inset-inline: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  transition: opacity 0.4s var(--ease);
}

/* Back face: the field note */
.shelf-note {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  background: linear-gradient(165deg, #1d1710 0%, #100d0a 80%);
  border-top: 2px solid var(--amber);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.shelf-card.is-flipped .shelf-note {
  opacity: 1;
  visibility: visible;
}

.shelf-card.is-flipped figure {
  transform: scale(1.04);
}

.shelf-note em[data-check-link] {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.shelf-note em[data-check-link]:hover {
  color: var(--amber-bright);
}

/* ═══════════════ The climb — scroll story ═══════════════ */
.climb {
  position: relative;
  height: 280vh;
  border-block: 1px solid var(--line);
}

.climb-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(44rem 30rem at 85% 100%, rgba(227, 162, 74, 0.08), transparent 60%),
    var(--bg);
}

.climb-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.climb-title {
  margin-bottom: 1.6rem;
}

.climb-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--ink-dim);
  max-width: 24rem;
  min-height: 3.2em;
  transition: opacity 0.4s var(--ease);
}

.climb-caption.is-swapping {
  opacity: 0;
}

/* Stylized search results */
.serp {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.serp-bar {
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  padding-inline: 0.8rem;
}

.serp-bar span {
  width: 38%;
  height: 6px;
  border-radius: 3px;
  background: rgba(243, 238, 227, 0.14);
}

.serp-rows {
  position: relative;
  display: grid;
  gap: 0.7rem;
}

.serp-row {
  height: 3.4rem;
  border-radius: 3px;
}

.serp-row--ghost {
  background: rgba(243, 238, 227, 0.045);
  border: 1px solid rgba(243, 238, 227, 0.05);
}

.serp-rows {
  --serp-step: 4.1rem;
}

.serp-row--you {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-inline: 0.8rem;
  background: linear-gradient(90deg, #221b12, #1a1510);
  border: 1px solid var(--amber);
  box-shadow: 0 10px 30px rgba(227, 162, 74, 0.12);
  transform: translateY(calc(var(--climb-slot, 5) * var(--serp-step)));
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.you-thumb {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 2px;
  background: linear-gradient(160deg, var(--amber), #7a5726);
  flex: 0 0 auto;
}

.you-meta {
  display: grid;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.you-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1;
}

.you-stars {
  position: relative;
  width: 5.4em;
  height: 1em;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.you-stars::before,
.you-stars i::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  color: rgba(243, 238, 227, 0.18);
}

.you-stars i {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: calc(var(--climb-stars, 0) * 100%);
}

.you-stars i::before {
  color: var(--amber);
  width: 5.4em;
}

.you-badge {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #221a0e;
  background: var(--amber);
  padding: 0.35em 0.7em;
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.you-badge.is-on {
  opacity: 1;
  transform: none;
}

/* ═══════════════ What we take off your plate ═══════════════ */
.service-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}

.service-col {
  position: relative;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.service-col::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--amber);
  transition: width 0.5s var(--ease);
}

.service-col:hover::before {
  width: 100%;
}

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--amber);
}

.service-col h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0.5rem 0 0.6rem;
}

.service-col p {
  color: var(--ink-dim);
  font-size: 0.92rem;
}

/* ═══════════════ Shelf Check ═══════════════ */
.check {
  position: relative;
  background: var(--bg-raised);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.check-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(46rem 30rem at 50% 120%, rgba(227, 162, 74, 0.1), transparent 65%);
  pointer-events: none;
}

.check-inner {
  position: relative;
  text-align: center;
  max-width: 46rem;
}

.check .section-eyebrow::after {
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.check-sub {
  color: var(--ink-dim);
  margin: -1.4rem 0 2.6rem;
}

.check-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  text-align: left;
}

.check-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.check-progress span {
  height: 2px;
  flex: 1;
  background: var(--line);
  transition: background 0.4s;
}

.check-progress span.is-done {
  background: var(--amber);
}

.check-q {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.check-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.check-opt {
  font: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  background: rgba(243, 238, 227, 0.04);
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 0.65em 1.3em;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.check-opt:hover {
  border-color: var(--amber);
  transform: translateY(-1px);
}

.check-back {
  margin-top: 1.6rem;
  background: none;
  border: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  cursor: pointer;
}

.check-back:hover {
  color: var(--ink-dim);
}

/* Result */
.check-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: center;
}

.check-seal {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 2px solid var(--amber);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--amber);
  position: relative;
  animation: seal-stamp 0.6s var(--ease);
}

.check-seal::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(227, 162, 74, 0.5);
}

@keyframes seal-stamp {
  0% { transform: scale(1.6); opacity: 0; }
  60% { transform: scale(0.94); opacity: 1; }
  100% { transform: scale(1); }
}

.check-verdict {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.check-insights {
  display: grid;
  gap: 0.5rem;
  color: var(--ink-dim);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}

.check-insights li {
  padding-left: 1.1rem;
  position: relative;
}

.check-insights li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--amber);
}

.check-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* ═══════════════ Testimonials (scaffold) ═══════════════ */
.testimonials {
  background: var(--bg-raised);
  border-block: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2rem;
  background: var(--bg-card);
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.4;
}

.testimonial-card cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ═══════════════ Free audit — the ivory break ═══════════════ */
.audit {
  background: var(--ivory);
  color: var(--ivory-ink);
  padding-block: var(--section-pad);
  text-align: center;
}

.audit-inner {
  max-width: 52rem;
}

.audit-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 1.4rem;
}

.audit-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.audit-title em {
  color: var(--amber-deep);
}

.audit-sub {
  margin: 1.4rem auto 2.6rem;
  max-width: 30rem;
  color: #57503f;
  font-size: 1rem;
}

.audit-form {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

.audit-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  width: 100%;
}

.audit-promise {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #6f6650;
}

/* ═══════════════ Fields ═══════════════ */
.field {
  position: relative;
  width: min(100%, 30rem);
}

.field input,
.field textarea {
  width: 100%;
  padding: 1em 1.1em;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(243, 238, 227, 0.04);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--amber);
}

.field label {
  position: absolute;
  left: 1.1em;
  top: 1.35em;
  translate: 0 -50%;
  font-size: 0.9rem;
  color: var(--ink-dim);
  pointer-events: none;
  transition: all 0.25s var(--ease);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--bg);
  padding-inline: 0.5em;
}

.field--light input {
  background: rgba(23, 19, 14, 0.04);
  border-color: rgba(23, 19, 14, 0.22);
  color: var(--ivory-ink);
}

.field--light input:focus {
  border-color: var(--amber-deep);
}

.field--light label {
  color: #6f6650;
}

.field--light input:focus + label,
.field--light input:not(:placeholder-shown) + label {
  color: var(--amber-deep);
  background: var(--ivory);
}

.form-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--amber);
  min-height: 1.5em;
}

.form-note.is-error {
  color: #d98787;
}

.form-note--light {
  color: var(--amber-deep);
}

.form-note--light.is-error {
  color: #a33a3a;
}

/* ═══════════════ Contact ═══════════════ */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(50rem 32rem at 50% 115%, rgba(227, 162, 74, 0.12), transparent 65%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  text-align: center;
  max-width: 46rem;
}

.contact .section-eyebrow::after {
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

.contact-promise {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}

/* ═══════════════ Footer ═══════════════ */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 3.5rem;
  background: var(--bg-raised);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  text-align: center;
}

.brand--footer {
  font-size: 3rem;
}

.footer-tag {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.footer-cities {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-block: 0.6rem;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

/* ═══════════════ Toast ═══════════════ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  translate: -50% 1rem;
  z-index: 70;
  padding: 0.9em 1.6em;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), translate 0.4s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  translate: -50% 0;
}

/* ═══════════════ Reveal animation ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  .shelf-track { animation: none; }
  .climb { height: auto; }
  .climb-sticky { position: static; height: auto; padding-block: var(--section-pad); }
  .serp-row--you { transform: translateY(0); }
  .you-stars i { width: 100%; }
  .you-badge { opacity: 1; transform: none; }
}

/* ═══════════════ Responsive ═══════════════ */
@media (max-width: 900px) {
  .door-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 2.6rem 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .audit-fields {
    grid-template-columns: 1fr;
  }

  .service-cols {
    grid-template-columns: 1fr;
  }

  .climb {
    height: 220vh;
  }

  .climb-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .climb-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    margin-bottom: 0.8rem;
  }

  .climb-caption {
    font-size: 1.1rem;
    min-height: 2.6em;
    max-width: none;
  }

  /* Compact search mock so copy + mock fit one small screen together */
  .serp {
    padding: 0.8rem;
  }

  .serp-bar {
    height: 1.8rem;
    margin-bottom: 0.7rem;
  }

  .serp-rows {
    --serp-step: 3.2rem;
    gap: 0.5rem;
  }

  .serp-row,
  .serp-row--you {
    height: 2.7rem;
  }

  .you-thumb {
    width: 1.8rem;
    height: 1.8rem;
  }

  .you-name {
    font-size: 0.95rem;
  }

  .check-result {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .check-insights li {
    text-align: left;
  }

  .check-actions {
    justify-content: center;
  }
}

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

  .nav-toggle {
    display: flex;
    z-index: 55;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 54;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    background: rgba(12, 10, 9, 0.97);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links .nav-link {
    font-size: 1rem;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4.25px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .hero-ghost {
    right: -12vw;
    font-size: 16rem;
  }
}

/* ═══════════════════════════════════════════════════
   v7 — Seller-first rebuild
   Hero split, photo placeholders, handoff band, audit split
═══════════════════════════════════════════════════ */

/* ─────────── Hero: copy left, seller right ─────────── */
.hero-grid {
  position: relative;
  padding-block: 9rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  max-width: 34rem;
}

.hero-title {
  font-size: clamp(2.9rem, 6.6vw, 5.4rem);
}

.hero-sub {
  max-width: 31rem;
}

/* ─────────── Photo placeholders ───────────
   Drop the real image in and delete .shot-frame.
   Keep .hero-shot / .audit-shot as the wrapper. */
.shot-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.9rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  padding-top: 4rem;
  border-radius: 4px;
  border: 1.5px dashed rgba(255, 153, 0, 0.45);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 153, 0, 0.05) 0 12px,
      transparent 12px 24px
    ),
    var(--bg-raised);
}

.shot-frame--hero { aspect-ratio: 5 / 6; }
.shot-frame--audit { aspect-ratio: 1 / 1; }

.shot-tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-deep);
  background: var(--signal-grad);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

.shot-brief {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-dim);
}

.shot-brief strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.shot-ratio {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Light-background variants (audit block) */
.shot-tag--light { color: var(--ivory-ink); }
.shot-brief--light { color: #5b6470; }
.shot-brief--light strong { color: var(--ivory-ink); }
.shot-ratio--light { color: #8a94a1; }

.shot-frame--audit {
  border-color: rgba(35, 47, 62, 0.28);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(35, 47, 62, 0.045) 0 12px,
      transparent 12px 24px
    ),
    rgba(255, 255, 255, 0.5);
}

/* Once a real <img> is dropped in, this styles it */
.hero-shot img,
.audit-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ─────────── Category strip label ─────────── */
.strip-label {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ─────────── Handoff band ─────────── */
.handoff {
  background: var(--bg-card);
  border-block: 1px solid var(--line);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.handoff-lead {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
}

.handoff-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.handoff-num {
  display: block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  background: var(--signal-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.85rem;
}

.handoff-col h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.handoff-col p {
  font-size: 0.9rem;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* ─────────── Audit: form left, photo right ─────────── */
.audit { text-align: left; }

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.audit-copy { max-width: 36rem; }

.audit-title {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.audit-title em {
  font-style: normal;
  background: linear-gradient(100deg, #c25e00 0%, #a67c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.audit-sub {
  margin: 1.3rem 0 2.4rem;
  max-width: 32rem;
  color: #55606d;
}

.audit-form { justify-items: start; }

.audit-fields {
  grid-template-columns: 1fr;
  max-width: 30rem;
}

.audit-promise { color: #6b7684; }

.audit-promise a {
  color: var(--amber-deep);
  border-bottom: 1px solid currentColor;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 900px) {
  .hero-grid,
  .audit-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding-block: 7.5rem 4rem; }

  .hero-shot { order: -1; }
  .shot-frame--hero { aspect-ratio: 4 / 3; }

  .handoff-cols { grid-template-columns: 1fr; }
}

/* ─────────── v8 · Pain → outcome rows ─────────── */
.flip-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.flip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.1fr);
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.1rem, 2.6vw, 1.7rem);
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: background 0.35s var(--ease), padding-inline 0.35s var(--ease);
}

.flip-row:hover,
.flip-row:focus-visible {
  background: rgba(255, 153, 0, 0.05);
  padding-inline: 1rem;
}

.flip-from {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--ink-faint);
  letter-spacing: 0.005em;
}

.flip-arrow {
  font-size: 0.9rem;
  color: var(--ink-faint);
  transition: transform 0.35s var(--ease), color 0.35s;
}

.flip-row:hover .flip-arrow {
  transform: translateX(0.25em);
  color: var(--signal);
}

.flip-to {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  background: var(--signal-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 640px) {
  .flip-row {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "from from"
      "arrow to";
    gap: 0.35rem 0.6rem;
  }
  .flip-from { grid-area: from; }
  .flip-arrow { grid-area: arrow; }
  .flip-to { grid-area: to; }
}
