/* ============================================================
   XCLUSIV PROPERTIES — styles.css
   Single-page site. Fluid rem system: 1rem = 10px at 1920w.
   ============================================================ */

/* ---------- Fonts (self-hosted, latin subset) ---------- */
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/InstrumentSans-400.woff2') format('woff2'); }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/InstrumentSans-500.woff2') format('woff2'); }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/InstrumentSans-600.woff2') format('woff2'); }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/InstrumentSans-700.woff2') format('woff2'); }
@font-face { font-family: 'Lora'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/Lora-500.woff2') format('woff2'); }
@font-face { font-family: 'Lora'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/Lora-500-italic.woff2') format('woff2'); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Fluid root: 1rem = 10px @1920 ---------- */
html { font-size: 2.6666667vw; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (min-width: 768px) { html { font-size: .5208333vw; } }
@media (min-width: 1920px) { html { font-size: 10px; } }

:root {
  --ink: #151717;
  --white: #fff;
  --surface: #f1f1f1;
  --surface-2: #ededed;
  --muted: #b3b3b3;
  --muted-dark: hsla(0, 0%, 100%, .4);
  --line: rgba(21, 23, 23, .1);
  --line-dark: #383a3a;
  --red: #d92424;
  --font-primary: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-bounce: cubic-bezier(.34, 3.56, .64, 1);
  --header-h: 8.4rem;
}
@media (min-width: 768px) { :root { --header-h: 9.8rem; } }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  -webkit-tap-highlight-color: transparent;
  overflow-x: clip;
}

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

.container { max-width: 1920px; margin: 0 auto; padding: 0 2.5rem; }
@media (min-width: 768px) { .container { padding: 0 10rem; } }

/* Two-tone headline helper */
.dim { color: var(--muted); font-style: normal; }
.dark-bg .dim, .dim-ondark { color: var(--muted-dark); }

/* ---------- Buttons: pill + text roll-up ---------- */
.btn {
  position: relative;
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 1.4rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  background: none;
  transition: transform .3s;
  white-space: nowrap;
}
@media (min-width: 768px) { .btn { font-size: 1.8rem; line-height: 1.4; padding: 1.54rem 3rem; } }
@media (pointer: fine) {
  .btn:hover { transform: scaleX(1.02); transition: transform .7s var(--ease-bounce); }
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(21, 23, 23, .3); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: hsla(0, 0%, 100%, .5); }

/* roll-up inner text (span duplicated via data-text) */
.roll { display: block; overflow: hidden; }
.roll > span { position: relative; display: block; transition: transform .9s var(--ease-out); }
.roll > span::after { content: attr(data-text); position: absolute; top: 105%; left: 0; right: 0; display: block; }
@media (pointer: fine) {
  .btn:hover .roll > span, a:hover > .roll > span, button:hover > .roll > span { transform: translateY(-105%); }
}

/* round icon buttons (carousel/testimonial controls) */
.icon-btn {
  width: 5.2rem; height: 5.2rem;
  min-width: 5.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(21, 23, 23, .3);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: transform .3s, opacity .3s;
}
@media (min-width: 768px) { .icon-btn { width: 6.7rem; height: 6.7rem; min-width: 6.7rem; } }
.icon-btn svg { width: 2rem; height: 2rem; }
@media (min-width: 768px) { .icon-btn svg { width: 2.5rem; height: 2.5rem; } }
@media (pointer: fine) { .icon-btn:hover { transform: scaleX(1.06); transition: transform .7s var(--ease-bounce); } }
.icon-btn:disabled { opacity: .35; pointer-events: none; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--white);
  transition: transform .35s ease-in-out, background-color .3s;
}
.header.is-hidden { transform: translateY(-100%); }
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (min-width: 768px) { .header-inner { grid-template-columns: 32rem 1fr 32rem; } }

.brand { display: inline-flex; align-items: center; gap: 1.2rem; }
.brand svg.mark { width: 3.4rem; height: 3.4rem; }
@media (min-width: 768px) { .brand svg.mark { width: 3.8rem; height: 3.8rem; } }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark b { font-size: 2rem; font-weight: 700; letter-spacing: .06em; }
.brand .wordmark span { margin-top: .45em; font-size: .9rem; font-weight: 600; letter-spacing: .42em; color: var(--muted); }
@media (min-width: 768px) {
  .brand .wordmark b { font-size: 2.2rem; }
  .brand .wordmark span { font-size: 1rem; }
}

.nav { display: none; }
@media (min-width: 768px) {
  .nav { display: flex; gap: 4rem; justify-content: center; }
  .nav a { font-size: 1.9rem; font-weight: 500; line-height: 1.25; }
}
.header-actions { display: none; }
@media (min-width: 768px) { .header-actions { display: flex; justify-content: flex-end; align-items: center; } }

/* burger */
.burger {
  display: block; position: relative;
  width: 3rem; height: 2.2rem;
  background: none; border: none; cursor: pointer;
  margin-left: auto;
}
@media (min-width: 768px) { .burger { display: none; } }
.burger::before { content: ""; position: absolute; inset: -2.2rem -1rem; }
.burger span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 999px;
  transition: top .2s .25s, transform .3s;
}
.burger span:first-child { top: .4rem; }
.burger span:last-child { top: 1.6rem; }
.burger.is-active span { transition: top .2s, transform .3s .2s; }
.burger.is-active span:first-child { top: 1rem; transform: rotate(45deg); }
.burger.is-active span:last-child { top: 1rem; transform: rotate(-45deg); }

/* mobile slide-in menu panel (house pattern) */
.menu-panel {
  position: fixed; inset: 0; z-index: 49;
  pointer-events: none;
}
.menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(21, 23, 23, .4);
  opacity: 0; transition: opacity .4s;
}
.menu-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(42rem, 88vw);
  background: var(--white);
  transform: translateX(102%);
  transition: transform .6s var(--ease-out);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 2rem) 3.5rem 4rem;
  overflow-y: auto;
}
.menu-panel.is-open { pointer-events: auto; }
.menu-panel.is-open .menu-backdrop { opacity: 1; }
.menu-panel.is-open .menu-drawer { transform: translateX(0); }
.menu-nav { display: flex; flex-direction: column; gap: 2.8rem; }
.menu-nav a { font-size: 2.8rem; font-weight: 500; line-height: 1; }
.menu-cta { margin-top: auto; padding-top: 4rem; }
.menu-cta .btn { display: block; text-align: center; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 260vh; }
.hero-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.hero-house {
  position: absolute;
  left: 50%;
  width: 130vw;
  margin-left: -65vw;
  top: calc(68vh - 31.4vw);
  z-index: 1;
  transform-origin: center 60%;
}
.hero-house img { width: 100%; height: auto; }
@media (max-width: 767px) {
  .hero-house { width: 250vw; margin-left: -125vw; top: calc(72vh - 60.5vw); }
}
.hero-clouds {
  position: absolute; left: -6%; right: -6%; bottom: -6%;
  height: 46vh;
  z-index: 2;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 42%);
  mask-image: linear-gradient(180deg, transparent, #000 42%);
}
.hero-clouds img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 12rem; z-index: 4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}
@media (min-width: 768px) { .hero-fade { height: 22rem; } }
.hero-content {
  position: relative; z-index: 3;
  display: grid; align-content: start; justify-items: center;
  height: 100%;
  padding-top: calc(var(--header-h) + 5vh);
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content { align-content: center; padding-top: 0; padding-bottom: 36vh; }
}
.hero h1 {
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1.02;
  letter-spacing: -.02em;
}
@media (min-width: 768px) { .hero h1 { font-size: 12.5rem; letter-spacing: -.03em; } }
.hero-sub {
  margin: 2rem auto 0;
  max-width: 88rem;
  font-size: 1.7rem;
  line-height: 1.5;
  text-wrap: balance;
}
@media (min-width: 768px) { .hero-sub { margin-top: 2.5rem; font-size: 2.6rem; line-height: 1.35; letter-spacing: -.01em; } }
.hero-actions { margin-top: 3rem; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
@media (min-width: 768px) { .hero-actions { margin-top: 4rem; } }

/* hero intro line-mask animation */
.mask-line { display: block; overflow: hidden; }
.mask-line > span { display: block; transform: translateY(110%); }

/* ---------- Section base ---------- */
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 15rem 0; } }

.eyebrow { font-size: 1.8rem; font-weight: 600; line-height: 1.4; }
@media (min-width: 768px) { .eyebrow { font-size: 2rem; } }

.h2 {
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 1.02;
  letter-spacing: -.02em;
}
@media (min-width: 768px) { .h2 { font-size: 7.2rem; letter-spacing: -.04em; } }

/* asymmetric split: label left, content right */
.split { display: grid; gap: 3rem; }
@media (min-width: 768px) { .split { grid-template-columns: auto 97.6rem; gap: 4rem; } }
.split > .split-label { display: block; }

/* ---------- Why section ---------- */
.why-statement {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -.01em;
}
@media (min-width: 768px) { .why-statement { font-size: 5.6rem; letter-spacing: -.03em; } }
.why-body {
  margin-top: 3rem;
  max-width: 76rem;
  font-size: 1.7rem;
  line-height: 1.55;
}
@media (min-width: 768px) { .why-body { margin-top: 4rem; font-size: 2.2rem; line-height: 1.5; } }
.why-media { margin-top: 5rem; }
@media (min-width: 768px) { .why-media { margin-top: 8rem; } }
.why-media .frame { aspect-ratio: 365/450; overflow: hidden; margin: 0 -2.5rem; }
@media (min-width: 768px) { .why-media .frame { aspect-ratio: 976/560; margin: 0; } }
.why-media img { width: 100%; height: 100%; object-fit: cover; }

.stat-row {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 768px) { .stat-row { margin-top: 8rem; grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.stat { border-top: 1px solid var(--line); padding-top: 2.5rem; }
.stat b { display: block; font-weight: 500; font-size: 5rem; line-height: 1; letter-spacing: -.03em; }
@media (min-width: 768px) { .stat b { font-size: 7.6rem; } }
.stat span { display: block; margin-top: 1.2rem; font-size: 1.6rem; line-height: 1.5; }
@media (min-width: 768px) { .stat span { font-size: 1.9rem; max-width: 30rem; } }

/* ---------- Chevron statement section ---------- */
.chev-section { text-align: left; }
.chev-title { display: block; margin: 0 0 4rem; text-align: center; }
@media (min-width: 768px) { .chev-title { margin-bottom: 8rem; } }
.chev-row {
  display: flex; justify-content: center;
  margin-left: 1.8rem;
}
@media (min-width: 768px) { .chev-row { margin-left: 6.7rem; } }
.chev {
  flex-shrink: 0;
  width: 9.3rem; height: 11.8rem;
  margin-left: -1.8rem;
  -webkit-mask: url('../images/chev-mask.svg') center / 100% 100% no-repeat;
  mask: url('../images/chev-mask.svg') center / 100% 100% no-repeat;
  overflow: hidden;
}
@media (min-width: 768px) { .chev { width: 30rem; height: 38rem; margin-left: -6rem; } }
.chev img { width: 100%; height: 100%; object-fit: cover; }
.chev-text {
  margin: 4rem auto 0;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .chev-text { margin-top: 8rem; max-width: 92rem; font-size: 3.2rem; letter-spacing: -.01em; text-align: center; text-wrap: balance; }
}

/* ---------- Services (dark) ---------- */
.services { background: var(--ink); color: var(--white); }
.services .split { margin-bottom: 6rem; }
@media (min-width: 768px) { .services .split { margin-bottom: 10rem; } }
.svc-list { border-bottom: 1px solid var(--line-dark); }
.svc-row {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  color: inherit;
}
.svc-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  min-height: 34rem;
  padding: 4.5rem 0 4rem;
}
@media (min-width: 768px) {
  .svc-grid { grid-template-columns: 4.6rem auto 97.6rem; gap: 6rem; min-height: 40rem; padding: 6rem 0 5.2rem; }
}
.svc-bg {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: .28;
}
.svc-bg img { width: 100%; height: 100%; object-fit: cover; }
@media (pointer: fine) {
  .svc-bg {
    opacity: 0;
    transform: scale(1.05);
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
    transition: opacity .4s, transform 4s cubic-bezier(.5, 1, .89, 1), clip-path 1s var(--ease-out), -webkit-clip-path 1s var(--ease-out);
  }
  .svc-row:hover .svc-bg { opacity: .38; transform: scale(1); -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
}
.svc-num {
  position: relative; z-index: 1;
  display: none;
  width: 4.6rem; height: 4.6rem;
  border: 1px solid currentColor; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 1.6rem;
}
@media (min-width: 768px) { .svc-num { display: grid; place-content: center; } }
.svc-desc {
  position: relative; z-index: 1;
  font-size: 1.6rem; line-height: 1.5;
  align-self: start;
  max-width: 40rem;
}
@media (min-width: 768px) { .svc-desc { font-size: 2.3rem; letter-spacing: -.01em; text-wrap: balance; } }
.svc-word {
  position: relative; z-index: 1;
  align-self: end;
  font-size: 9rem;
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.04em;
  white-space: nowrap;
  display: flex; align-items: baseline; justify-content: space-between; gap: 2rem;
}
@media (min-width: 768px) { .svc-word { align-self: start; font-size: 17rem; letter-spacing: -.05em; } }
.svc-word .w { position: relative; display: inline-block; }
@media (pointer: fine) {
  .svc-word .w::after {
    content: ""; position: absolute; left: .05em; right: 0; bottom: .02em;
    border-top: .035em solid currentColor;
    transform: scaleX(0); transform-origin: left center;
    transition: transform 1s var(--ease-out);
  }
  .svc-row:hover .svc-word .w::after { transform: scaleX(1); }
  .svc-word svg { opacity: 0; transform: translateX(-12%); transition: opacity .4s, transform .8s; }
  .svc-row:hover .svc-word svg { opacity: 1; transform: translateX(0); }
}
.svc-word svg { width: .55em; height: .55em; flex-shrink: 0; align-self: center; }
.svc-brief {
  margin-top: 6rem;
  font-size: 2.1rem;
  line-height: 1.3;
  font-weight: 500;
}
@media (min-width: 768px) { .svc-brief { max-width: 96rem; font-size: 4.4rem; line-height: 1.15; letter-spacing: -.02em; } }
.svc-action { margin-top: 4rem; }

/* ---------- How it works ---------- */
.steps { counter-reset: step; margin-top: 4rem; }
@media (min-width: 768px) { .steps { margin-top: 10rem; } }
.step {
  counter-increment: step;
  display: flex; flex-direction: column;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .step { flex-direction: row; align-items: flex-start; padding: 7rem 0; min-height: 30rem; } }
.step::before {
  content: "0" counter(step);
  font-size: 1.4rem; color: var(--muted); font-weight: 500;
}
@media (min-width: 768px) {
  .step::before {
    content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 4.6rem; height: 4.6rem; min-width: 4.6rem;
    border: 1px solid var(--ink); border-radius: 50%;
    color: var(--ink); font-size: 1.6rem;
  }
}
.step-title {
  margin-top: 2.5rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.12;
  letter-spacing: -.01em;
}
@media (min-width: 768px) {
  .step-title { margin: 0 0 0 32rem; font-size: 4.4rem; letter-spacing: -.02em; max-width: 47rem; flex: 1 0 auto; }
}
.step-desc { margin-top: 1.5rem; font-size: 1.6rem; line-height: 1.5; }
@media (min-width: 768px) { .step-desc { margin-top: .8rem; font-size: 2rem; flex: 0 1 47rem; margin-left: auto; } }

/* ---------- Carousel strip ---------- */
.carousel-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .carousel-head { margin-bottom: 6rem; } }
.carousel-controls { display: flex; gap: 1.2rem; }
.strip {
  display: flex; gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -2.5rem; padding: 0 2.5rem;
}
.strip::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .strip { gap: 2rem; margin: 0 -10rem; padding: 0 10rem; } }
.strip-item {
  flex: 0 0 82%;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) { .strip-item { flex: 0 0 62rem; } }
.strip-item img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
@media (pointer: fine) { .strip-item:hover img { transform: scale(1.04); } }
.strip-cap { margin-top: 1.6rem; font-size: 1.5rem; color: var(--ink); display: flex; gap: 1rem; align-items: baseline; }
@media (min-width: 768px) { .strip-cap { font-size: 1.8rem; } }
.strip-cap i { font-style: normal; color: var(--muted); font-size: .85em; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--surface); }
.testimonials .h2 { margin-bottom: 4rem; }
@media (min-width: 768px) { .testimonials .h2 { margin-bottom: 10rem; } }
.tst-grid { display: grid; gap: 4rem; }
@media (min-width: 768px) { .tst-grid { grid-template-columns: 65.2rem auto; gap: 9.2rem; align-items: start; } }
.tst-media { aspect-ratio: 400/365; overflow: hidden; }
@media (min-width: 768px) { .tst-media { aspect-ratio: 976/688; } }
.tst-media img { width: 100%; height: 100%; object-fit: cover; }
.tst-col { border-top: 1px solid var(--ink); }
.tst-carousel { position: relative; margin-top: 4rem; min-height: 24rem; }
@media (min-width: 768px) { .tst-carousel { margin-top: 5rem; min-height: 30rem; } }
.tst-slide { position: absolute; inset: 0 0 auto; opacity: 0; visibility: hidden; transition: opacity .6s, visibility .6s; }
.tst-slide.is-active { opacity: 1; visibility: visible; position: relative; }
.tst-quote {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: -.01em;
}
@media (min-width: 768px) { .tst-quote { font-size: 3.2rem; letter-spacing: -.02em; } }
.tst-meta { margin-top: 3rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1.6rem; }
@media (min-width: 768px) { .tst-meta { margin-top: 5rem; gap: 3rem; } }
.tst-author {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .tst-author { font-size: 1.8rem; } }
.tst-stars { display: inline-flex; gap: .3rem; }
.tst-stars svg { width: 1.6rem; height: 1.6rem; fill: var(--ink); }
@media (min-width: 768px) { .tst-stars svg { width: 2rem; height: 2rem; } }
.tst-controls { margin-top: 4rem; display: flex; gap: 1.2rem; }

/* ---------- Book a call / form ---------- */
.book .split-label { max-width: 36rem; }
.book-blurb { margin-top: 2rem; font-size: 1.6rem; line-height: 1.55; color: var(--ink); }
@media (min-width: 768px) { .book-blurb { font-size: 1.9rem; max-width: 34rem; } }
.book-points { margin-top: 3rem; display: grid; gap: 1.6rem; }
.book-points li { position: relative; padding-left: 2.4rem; font-size: 1.5rem; line-height: 1.5; }
@media (min-width: 768px) { .book-points li { font-size: 1.8rem; } }
.book-points li::before { content: ""; position: absolute; left: 0; top: .6em; width: 1.2rem; height: 1px; background: var(--ink); }

.form { display: grid; gap: 2.4rem; }
.form-grid { display: grid; gap: 2.4rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 3rem 2.4rem; } }
.field { display: grid; gap: 1rem; }
.field label { font-size: 1.4rem; font-weight: 600; }
@media (min-width: 768px) { .field label { font-size: 1.5rem; } }
.field input, .field select, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(21, 23, 23, .25);
  border-radius: 0;
  background: transparent;
  padding: 1.2rem 0;
  font-size: 1.7rem;
  font-weight: 500;
  transition: border-color .3s;
  -webkit-appearance: none;
  appearance: none;
}
@media (min-width: 768px) { .field input, .field select, .field textarea { font-size: 1.9rem; } }
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23151717' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .2rem center; background-size: 1.2rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field.has-error input, .field.has-error select { border-color: var(--red); }
textarea { resize: vertical; min-height: 10rem; }

.consent { display: flex; gap: 1.4rem; align-items: flex-start; }
.consent input {
  width: 1.8rem; height: 1.8rem; min-width: 1.8rem;
  margin-top: .3rem;
  accent-color: var(--ink);
  cursor: pointer;
}
.consent label { font-size: 1.3rem; line-height: 1.5; font-weight: 400; color: rgba(21, 23, 23, .75); cursor: pointer; }
@media (min-width: 768px) { .consent label { font-size: 1.4rem; } }
.consent a { text-decoration: underline; }

.form-actions { display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; }
.form-note {
  padding: 1.6rem 2rem;
  background: var(--surface);
  font-size: 1.5rem;
  line-height: 1.5;
}
.form-note.is-error { background: #fdeaea; color: var(--ink); }
.form-note a { text-decoration: underline; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; pointer-events: none; }

/* ---------- Outro ---------- */
.outro {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 56rem;
  color: var(--white);
  overflow: hidden;
}
@media (min-width: 768px) { .outro { height: 88rem; } }
.outro-bg { position: absolute; inset: 0; }
.outro-bg::after { content: ""; position: absolute; inset: 0; background: rgba(21, 23, 23, .78); }
.outro-bg img { width: 100%; height: 100%; object-fit: cover; }
.outro-content { position: relative; text-align: center; padding: 0 2.5rem; }
.outro-title {
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-wrap: balance;
}
@media (min-width: 768px) { .outro-title { font-size: 7.2rem; line-height: 1.04; letter-spacing: -.03em; } }
.outro-title .dim { color: hsla(0, 0%, 100%, .65); }
.outro-actions { margin-top: 3rem; }
@media (min-width: 768px) { .outro-actions { margin-top: 4rem; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--white); }
.footer-grid {
  padding: 6rem 0 0;
  display: grid;
  gap: 6rem;
}
@media (min-width: 768px) { .footer-grid { padding: 12rem 0 0; grid-template-columns: 1fr auto; gap: 8rem; } }
.footer-lede { font-size: 2.2rem; line-height: 1.3; max-width: 70rem; letter-spacing: -.01em; }
@media (min-width: 768px) { .footer-lede { font-size: 3.2rem; line-height: 1.15; } }
.footer-contacts { margin-top: 5rem; display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 768px) { .footer-contacts { flex-direction: row; gap: 10rem; margin-top: 8rem; } }
.footer-contact span { display: block; font-size: 1.5rem; color: var(--muted-dark); margin-bottom: 1rem; }
.footer-contact a, .footer-contact b { font-size: 1.8rem; font-weight: 500; }
@media (min-width: 768px) { .footer-contact a, .footer-contact b { font-size: 2rem; } }
.footer-nav { display: flex; flex-direction: column; gap: 2.2rem; }
.footer-nav a { font-size: 2.8rem; font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }
@media (min-width: 768px) { .footer-nav a { font-size: 3.2rem; } }
.footer-logo { margin-top: 7rem; padding-top: 5rem; border-top: 1px solid var(--line-dark); overflow: hidden; }
.footer-logo svg { width: 100%; height: auto; display: block; }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  justify-content: space-between;
  padding: 3rem 0 4rem;
  font-size: max(12px, 1.4rem);
  color: hsla(0, 0%, 100%, .58);
}
.footer-base a { color: hsla(0, 0%, 100%, .58); text-decoration: none; }
.footer-base a:hover { color: var(--white); }
.footer-links a { text-decoration: underline; }

/* ---------- Reveal utilities ---------- */
.rv { opacity: 0; transform: translateY(4rem); transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }
/* keep hover transforms alive after reveal (gotcha: reveal transform beats hover) */
.strip-item.rv.in:hover img { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .mask-line > span { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero { height: auto; }
  .hero-stage { position: relative; height: 100svh; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .2s !important; }
}
