/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --black:     #060606;
  --black-2:   #0e0e0e;
  --black-3:   #1a1a1a;
  --white:     #f5f4f1;
  --white-2:   #c8c6c2;
  --white-3:   #787470;
  --white-4:   #3a3836;
  --rule:      rgba(245,244,241,0.10);
  --rule-2:    rgba(245,244,241,0.05);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1080px;
  --gutter: 80px;
  --section-py: 140px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── LABEL TAG ─────────────────────────────────────── */
.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-3);
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Desaturate the image to pure B&W */
  filter: grayscale(100%) brightness(0.45) contrast(1.15);
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,0.35) 0%,
    rgba(6,6,6,0.20) 40%,
    rgba(6,6,6,0.65) 80%,
    rgba(6,6,6,0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px var(--gutter) 56px;
}

/* Nav */
.hero__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
}

.hero__nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-3);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.hero__nav-link:hover {
  color: var(--white-2);
  border-color: rgba(245,244,241,0.20);
}

.hero__nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,244,241,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero__nav-cta:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Body */
.hero__body {
  max-width: 760px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-3);
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--white);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--white-2);
  max-width: 420px;
  line-height: 1.7;
}

/* Scroll hint */
.hero__scroll-hint {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--white-3));
  animation: scroll-fade 2.4s ease-in-out infinite;
}

@keyframes scroll-fade {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* ─── MATH ─────────────────────────────────────────── */
.math {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.math__inner {
  max-width: var(--max-w);
}

.math__label {
  margin-bottom: 56px;
}

.math__statement {
  margin-bottom: 72px;
}

.math__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.math__headline em {
  font-style: italic;
}

.math__grid {
  border-top: 1px solid var(--rule);
  padding-top: 64px;
}

.math__row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: start;
  gap: 32px;
  margin-bottom: 64px;
}

.math__row-left,
.math__row-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.math__row-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
}

.math__row-desc {
  font-size: 13px;
  color: var(--white-3);
  letter-spacing: 0.01em;
  max-width: 280px;
  line-height: 1.5;
}

.math__row-symbol {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white-4);
  padding-top: 12px;
  text-align: center;
}

.math__divider {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin-bottom: 64px;
}

.math__conclusion {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.math__conclusion-text {
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.85;
  max-width: 560px;
}

.math__conclusion-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  border-left: 1px solid var(--rule);
  padding-left: 48px;
}

.math__big-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

.math__big-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-3);
  text-align: right;
  max-width: 160px;
  line-height: 1.4;
}

/* ─── CAPABILITIES ──────────────────────────────────── */
.capabilities {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black-2);
}

.capabilities__inner {
  max-width: var(--max-w);
}

.capabilities__header {
  margin-bottom: 80px;
}

.capabilities__header .label-tag {
  display: block;
  margin-bottom: 32px;
}

.capabilities__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 520px;
}

.capabilities__headline em {
  font-style: italic;
}

.capabilities__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.capabilities__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.capabilities__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--white-4);
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.capabilities__item-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--white);
}

.capabilities__item-desc {
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.85;
  max-width: 600px;
}

/* ─── STANDARD (Proof) ───────────────────────────────── */
.standard {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.standard__inner {
  max-width: var(--max-w);
}

.standard__header {
  margin-bottom: 72px;
}

.standard__intro {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--white-2);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.standard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.standard__tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.standard__tile--wide {
  grid-column: span 2;
}

.standard__img-wrap {
  overflow: hidden;
  aspect-ratio: unset;
  background: var(--black-2);
}

.standard__tile:nth-child(1) .standard__img-wrap {
  aspect-ratio: 4 / 3;
}

.standard__tile:nth-child(2) .standard__img-wrap {
  aspect-ratio: 3 / 4;
}

.standard__tile:nth-child(3) .standard__img-wrap {
  aspect-ratio: 4 / 3;
}

.standard__tile:nth-child(4) .standard__img-wrap {
  aspect-ratio: 3 / 4;
}

.standard__tile:nth-child(5) .standard__img-wrap {
  aspect-ratio: 16 / 9;
}

.standard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
  filter: grayscale(100%) brightness(0.88) contrast(1.08);
}

.standard__tile:hover .standard__img {
  transform: scale(1.035);
  opacity: 0.85;
}

.standard__caption {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-3);
}

/* ─── SELECTIVITY ────────────────────────────────────── */
.selectivity {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.selectivity__inner {
  max-width: var(--max-w);
}

.selectivity__label {
  margin-bottom: 56px;
}

.selectivity__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.selectivity__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.selectivity__headline em {
  font-style: italic;
}

.selectivity__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
}

.selectivity__body p {
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.85;
}

.selectivity__criteria {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
  border-left: 1px solid var(--rule);
  padding-left: 48px;
}

.selectivity__criterion {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.5;
}

.selectivity__criterion-mark {
  color: var(--white-4);
  font-family: var(--font-display);
  font-size: 18px;
  flex-shrink: 0;
}

/* ─── TRAJECTORY ─────────────────────────────────────── */
.trajectory {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black-2);
}

.trajectory__inner {
  max-width: var(--max-w);
}

.trajectory__label {
  margin-bottom: 56px;
}

.trajectory__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.trajectory__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.trajectory__headline em {
  font-style: italic;
}

.trajectory__body p {
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.9;
  padding-top: 8px;
}

/* ─── WHAT'S NEXT ─────────────────────────────────────── */
.whats-next {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.whats-next__inner {
  max-width: var(--max-w);
}

.whats-next__header {
  margin-bottom: 56px;
}

.whats-next__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 88px;
}

.whats-next__headline em {
  font-style: italic;
}

.whats-next__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.whats-next__step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whats-next__step:last-child {
  border-right: none;
  padding-right: 0;
}

.whats-next__step:not(:first-child) {
  padding-left: 32px;
}

.whats-next__step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--white-4);
  font-variant-numeric: tabular-nums;
}

.whats-next__step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.3;
}

.whats-next__step-body {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 300;
  color: var(--white-2);
  line-height: 1.85;
}

/* ─── CONTACT ─────────────────────────────────────────── */
.contact {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black-3);
}

.contact__inner {
  max-width: var(--max-w);
}

.contact__label {
  margin-bottom: 56px;
}

.contact__content {
  max-width: 640px;
}

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.contact__headline em {
  font-style: italic;
}

.contact__sub {
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.75;
  margin-bottom: 56px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__label-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-3);
}

.contact__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.contact__input::placeholder {
  color: var(--white-4);
}

.contact__input:focus {
  border-color: rgba(245,244,241,0.40);
}

.contact__textarea {
  resize: none;
  line-height: 1.65;
}

.contact__submit {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(245,244,241,0.25);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-top: 8px;
}

.contact__submit:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  padding: 48px var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.footer__inner {
  max-width: var(--max-w);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer__sub {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--white-3);
}

.footer__nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__nav-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav-link:hover {
  color: var(--white-2);
}

.footer__copy {
  font-size: 12px;
  color: var(--white-4);
  letter-spacing: 0.08em;
}

/* ─── SELECTED WORK ──────────────────────────────────── */
.sw {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.sw__inner {
  max-width: var(--max-w);
}

.sw__header {
  text-align: center;
  margin-bottom: 96px;
}

.sw__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.sw__subhead {
  color: var(--white-3);
  letter-spacing: 0.22em;
}

/* Artifact block */
.sw__artifact {
  padding: 72px 0;
  border-top: 1px solid var(--rule);
}

.sw__artifact:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* Film frame */
.sw__film-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black-2);
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle grid pattern */
.sw__film-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,244,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,244,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.sw__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.sw__film-badge {
  position: absolute;
  z-index: 3;
  opacity: 0.9;
}

.sw__film-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 36px 24px;
  background: linear-gradient(to top, rgba(6,6,6,0.88) 0%, transparent 100%);
  z-index: 3;
}

.sw__film-label-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 0.14em;
  color: rgba(245,244,241,0.65);
  text-transform: lowercase;
}

/* Brand system grid */
.sw__brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.sw__brand-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: var(--black-2);
  border: 1px solid var(--rule);
  padding: 24px;
}

/* Logotype tile */
.sw__brand-tile--logotype {
  justify-content: center;
}

.sw__logotype {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sw__logomark {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 40px;
}

.sw__logomark-block {
  background: var(--white);
  width: 12px;
}

.sw__logomark-block--1 {
  height: 40px;
}

.sw__logomark-block--2 {
  height: 24px;
}

.sw__logoname {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--white);
  text-transform: uppercase;
}

/* Swatch tile */
.sw__swatch-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.sw__swatch-strip {
  display: flex;
  height: 32px;
}

.sw__swatch-chip {
  flex: 1;
}

.sw__swatch-chip--black {
  background: #0a0a0a;
}

.sw__swatch-chip--ivory {
  background: #f0ece6;
}

.sw__swatch-chip--accent {
  background: #8a8174;
}

.sw__swatch-type {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sw__swatch-display {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}

.sw__swatch-labels {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-3);
}

.sw__swatch-divider {
  opacity: 0.4;
}

/* Stationery tile */
.sw__brand-tile--stationery {
  justify-content: center;
}

.sw__stationery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.sw__stationery-card {
  background: var(--black-3);
  border: 1px solid rgba(245,244,241,0.12);
  padding: 16px;
  width: 100%;
  max-width: 140px;
}

.sw__stationery-letterhead {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.sw__stationery-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.sw__stationery-tagline {
  font-family: var(--font-display);
  font-size: 10px;
  font-style: italic;
  color: var(--white-3);
  letter-spacing: 0.08em;
}

.sw__stationery-line {
  height: 1px;
  background: rgba(245,244,241,0.1);
  margin-bottom: 12px;
}

.sw__stationery-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sw__stationery-meta-line {
  height: 6px;
  background: rgba(245,244,241,0.08);
  width: 100%;
}

.sw__stationery-meta-line--short {
  width: 65%;
}

.sw__stationery-sig {
  width: 100px;
}

.sw__sig-svg {
  width: 100%;
  height: auto;
}

.sw__brand-tile-caption {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-3);
}

/* Social phones */
.sw__social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  align-items: end;
}

.sw__phone {
  display: flex;
  justify-content: center;
}

.sw__phone-frame {
  width: 180px;
  background: var(--black-3);
  border-radius: 28px;
  border: 1px solid rgba(245,244,241,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(245,244,241,0.05),
    0 20px 48px rgba(0,0,0,0.5);
}

.sw__phone-notch {
  width: 80px;
  height: 22px;
  background: var(--black-3);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(245,244,241,0.08);
}

.sw__phone-screen {
  padding: 16px 12px;
}

.sw__phone-homebar {
  width: 80px;
  height: 4px;
  background: rgba(245,244,241,0.2);
  border-radius: 4px;
  margin: 8px auto;
}

/* Social post */
.sw__social-post {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--black-2);
  border: 1px solid rgba(245,244,241,0.07);
  aspect-ratio: 1 / 1;
  justify-content: space-between;
}

.sw__social-post-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sw__social-status {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-4);
}

.sw__social-post-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.sw__social-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
}

.sw__social-sqft {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--white-3);
  text-transform: uppercase;
}

.sw__social-post-bot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sw__social-location {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  color: var(--white-2);
}

.sw__social-tag {
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-4);
}

/* Post 2: different styling */
.sw__social-post--2 .sw__social-price {
  font-size: 16px;
  text-align: center;
}

.sw__social-post--2 .sw__social-post-mid {
  flex-direction: column;
}

/* Post 3: different styling */
.sw__social-post--3 .sw__social-price {
  font-size: 12px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* Caption */
.sw__caption {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--white-2);
  line-height: 1.75;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* Image grid */
.sw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.sw__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sw__img-wrap {
  overflow: hidden;
  background: var(--black-2);
}

.sw__item:nth-child(1) .sw__img-wrap {
  aspect-ratio: 4 / 3;
}

.sw__item:nth-child(2) .sw__img-wrap {
  aspect-ratio: 3 / 4;
}

.sw__item:nth-child(3) .sw__img-wrap {
  aspect-ratio: 16 / 9;
}

.sw__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
  filter: grayscale(100%) brightness(0.88) contrast(1.08);
}

.sw__item:hover .sw__img {
  transform: scale(1.035);
  opacity: 0.85;
}

/* Caption (image) */
.sw__caption {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-3);
  text-align: center;
}

/* Disclaimer */
.sw__disclaimer {
  text-align: center;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  color: var(--white-4);
  letter-spacing: 0.18em;
}

/* ─── WHY AGENTS HIRE VANTA ──────────────────────────── */
.wv {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black-2);
}

.wv__inner {
  max-width: var(--max-w);
}

.wv__header {
  margin-bottom: 56px;
}

/* Lede */
.wv__lede {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule);
}

.wv__lede p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--white);
  max-width: 780px;
}

/* Four-point grid */
.wv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule);
}

.wv__point-num {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-4);
  margin-bottom: 20px;
}

.wv__point-head {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 16px;
}

.wv__point-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--white-2);
  line-height: 1.85;
}

/* Comparison table */
.wv__compare {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--white-2);
  border-collapse: collapse;
  width: 100%;
}

.wv__compare-header .wv__compare-col {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--white-4);
  padding-bottom: 20px;
  vertical-align: bottom;
}

.wv__compare-row {
  border-top: 1px solid var(--rule-2);
}

.wv__compare-row--last {
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
}

.wv__compare-col {
  padding: 20px 16px 20px 0;
  vertical-align: top;
  line-height: 1.5;
}

.wv__compare-col--label {
  font-size: 12px;
  color: var(--white-3);
  width: 160px;
  flex-shrink: 0;
}

.wv__compare-col--vanta {
  color: var(--white);
  font-weight: 400;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  :root {
    --gutter: 40px;
    --section-py: 100px;
  }

  .hero__content {
    padding: 32px var(--gutter) 48px;
  }

  .math__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .math__row-symbol {
    display: none;
  }

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

  .math__conclusion-stat {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
    align-items: flex-start;
  }

  .math__big-label {
    text-align: left;
  }

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

  .selectivity__criteria {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
  }

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

  .capabilities__item {
    grid-template-columns: 48px 1fr;
    gap: 24px;
  }

  .contact__field-group {
    grid-template-columns: 1fr;
  }

  .whats-next__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .whats-next__step {
    padding: 48px 24px 48px 0;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .whats-next__step:nth-child(2n) {
    border-right: none;
    padding-left: 24px;
    padding-right: 0;
  }

  .whats-next__step:nth-child(3),
  .whats-next__step:nth-child(4) {
    border-bottom: none;
  }

  .wv__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wv__compare {
    font-size: 12px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 24px;
    --section-py: 72px;
  }

  .hero__headline {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero__nav-cta {
    display: none;
  }

  .capabilities__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .capabilities__num {
    display: none;
  }

  .standard__grid {
    grid-template-columns: 1fr 1fr;
  }

  .standard__tile--wide {
    grid-column: span 2;
  }

  .sw__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sw__item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .sw__item:nth-child(3) .sw__img-wrap {
    aspect-ratio: 16 / 9;
  }

  .whats-next__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .whats-next__step {
    padding: 48px 0 48px 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .whats-next__step:not(:first-child) {
    padding-left: 0;
  }

  .whats-next__step:last-child {
    border-bottom: none;
  }

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

  .wv__compare-col--label {
    width: 120px;
  }

  .whats-next__step-num {
    display: block;
  }

  .faq__headline {
    font-size: clamp(36px, 8vw, 56px);
  }

  .faq__question {
    padding: 28px 0;
    font-size: 20px;
  }
}

/* ─── JOURNAL SHARED HEADER ─────────────────────────── */
.journal-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--rule);
  padding: 20px var(--gutter);
}

.journal-site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.journal-site-header__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}

.journal-site-header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.journal-site-header__nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.journal-site-header__nav-link:hover {
  color: var(--white);
  border-color: rgba(245,244,241,0.35);
}

/* ─── JOURNAL INDEX ──────────────────────────────────── */
.journal-index {
  padding: 100px var(--gutter) 140px;
  background: var(--black);
  min-height: calc(100vh - 61px);
}

.journal-index__inner {
  max-width: 760px;
  margin: 0 auto;
}

.journal-index__masthead {
  margin-bottom: 64px;
}

.journal-index__eyebrow {
  display: block;
  margin-bottom: 32px;
}

.journal-index__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.journal-index__dek {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 21px);
  font-style: italic;
  font-weight: 300;
  color: var(--white-3);
  line-height: 1.6;
}

.journal-index__rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 0;
}

.journal-index__list {
  list-style: none;
}

.journal-index__item {
  border-bottom: 1px solid var(--rule);
}

.journal-index__post-link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 48px 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.journal-index__post-link:hover {
  opacity: 0.75;
}

.journal-index__post-meta {
  padding-top: 6px;
}

.journal-index__post-date {
  display: block;
}

.journal-index__post-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 14px;
}

.journal-index__post-dek {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--white-3);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 520px;
}

.journal-index__post-read {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-4);
}

/* ─── JOURNAL ARTICLE ────────────────────────────────── */
.journal-article {
  padding: 80px var(--gutter) 120px;
  background: var(--black);
}

.journal-article__inner {
  max-width: 680px;
  margin: 0 auto;
}

.journal-article__back {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--white-3);
  text-decoration: none;
  transition: color 0.2s;
}

.journal-article__back:hover {
  color: var(--white-2);
}

.journal-article__header {
  margin-bottom: 48px;
}

.journal-article__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.journal-article__dek {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--white-2);
  line-height: 1.55;
  margin-bottom: 28px;
}

.journal-article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.journal-article__meta-sep {
  color: var(--white-4);
  font-size: 11px;
}

.journal-article__rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 56px;
}

.journal-article__rule--bottom {
  margin-top: 72px;
  margin-bottom: 48px;
}

/* Article body — reading typography */
.journal-article__body {
  color: var(--white-2);
}

.journal-article__lede {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 32px;
}

.journal-article__body p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-2);
  margin-bottom: 28px;
}

/* p is handled above; lede has its own rule so exclude it from default p margin override */
.journal-article__body .journal-article__lede {
  margin-bottom: 32px;
}

.journal-article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: 64px;
  margin-bottom: 24px;
}

.journal-article__body h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 20px;
}

.journal-article__footer {
  text-align: center;
}

.journal-article__close-line {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--white-3);
  line-height: 1.6;
}

.journal-article__apply-link {
  color: var(--white-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,244,241,0.25);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.journal-article__apply-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ─── JOURNAL FOOTER ─────────────────────────────────── */
.journal-footer {
  padding: 48px var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.journal-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.journal-footer__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.journal-footer__logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
}

.journal-footer__sub {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--white-3);
}

.journal-footer__nav {
  display: flex;
  gap: 28px;
}

.journal-footer__nav-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-3);
  text-decoration: none;
  transition: color 0.2s;
}

.journal-footer__nav-link:hover {
  color: var(--white-2);
}

.journal-footer__copy {
  font-size: 12px;
  color: var(--white-4);
  letter-spacing: 0.08em;
}

/* ─── JOURNAL RESPONSIVE ─────────────────────────────── */
@media (max-width: 600px) {
  .journal-index__post-link {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }

  .journal-site-header__nav {
    gap: 20px;
  }

  .journal-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  padding: var(--section-py) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--black);
}

.faq__inner {
  max-width: var(--max-w);
}

.faq__header {
  margin-bottom: 48px;
}

.faq__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 80px;
}

.faq__headline em {
  font-style: italic;
}

.faq__list {
  border-top: 1px solid var(--rule);
}

.faq__item {
  border-bottom: 1px solid var(--rule);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--white-2);
}

.faq__toggle {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--white-3);
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  width: 20px;
  text-align: center;
}

.faq__question[aria-expanded="true"] .faq__toggle {
  color: var(--white);
}

.faq__answer {
  padding: 0 0 36px 0;
  max-width: 720px;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-2);
}
