/* ─────────────────────────────────────────────────────────────
   Nav
   ───────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(250, 250, 250, 0.72);
  transition: box-shadow 240ms var(--ease-out), background 240ms var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(250, 250, 250, 0.92);
  box-shadow: 0 1px 0 var(--rule);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.nav__mark {
  display: block;
  height: 30px;
  transform: translateY(-1px);
  width: auto;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: var(--tracking-display);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  transition: color 200ms var(--ease-out);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}

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

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

.nav__cta {
  font-size: 13px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
}

.nav__cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ─────────────────────────────────────────────────────────────
   Button — primary editorial pill
   ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  transition:
    background 240ms var(--ease-out),
    color 240ms var(--ease-out),
    transform 240ms var(--ease-out);
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--paper);
}

.btn--light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: transparent;
  color: var(--paper);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 240ms var(--ease-out), top 240ms var(--ease-out);
}

.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top:  7px; }

.nav.is-open .nav__toggle span             { background: transparent; }
.nav.is-open .nav__toggle span::before     { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after      { top: 0; transform: rotate(-45deg); }

.nav__menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 72px);
  background: var(--paper);
  display: none;
  flex-direction: column;
  padding: 32px var(--gutter) 48px;
  gap: 4px;
}

.nav__menu a {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: var(--tracking-display);
  padding-block: 10px;
  border-bottom: 1px solid var(--rule);
}

.nav__menu a:last-child {
  border-bottom: 0;
}

.nav.is-open .nav__menu {
  display: flex;
}

@media (max-width: 880px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
}

/* ─────────────────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 96px;
  padding-bottom: 80px; /* leave room for the marquee strip below */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(122, 116, 113, 0.16), transparent 32%),
    radial-gradient(circle at 92% 92%, rgba(122, 116, 113, 0.10), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, #f4f1ec 100%);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 2.4vw, 32px);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__mark {
  display: grid;
  place-items: center;
  padding-block: clamp(8px, 1.4vw, 16px);
}

.hero__wordmark {
  width: min(520px, 64vw);
  height: auto;
  color: var(--ink);
}

.hero__wordmark path {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
}

/* Bridge Finale variant (from prototype):
   1. WAVE + O sweep in left-to-right; E reveals only its base letterform.
   2. The wave bridge that connects the E to the C sweeps in last and
      settles into place — landing the custom "C wave" as the final beat. */

.hero__wordmark .wav,
.hero__wordmark .o,
.hero__wordmark .c-wave {
  clip-path: url("#clip-full-sweep");
}

.hero__wordmark .e-wave {
  clip-path: url("#clip-e-base-sweep");
}

.hero__wordmark .e-bridge {
  clip-path: url("#clip-bridge-only");
}

.hero__wordmark .full-sweep-rect,
.hero__wordmark .e-base-sweep-rect,
.hero__wordmark .bridge-rect {
  transform-box: fill-box;
  transform-origin: left center;
}

.hero__wordmark .full-sweep-rect {
  animation: sweep-full 1500ms 160ms var(--ease-in-out) forwards;
}

.hero__wordmark .e-base-sweep-rect {
  animation: sweep-e-base 1500ms 160ms var(--ease-in-out) forwards;
}

.hero__wordmark .bridge-rect {
  animation: sweep-bridge 980ms 1420ms var(--ease-in-out) forwards;
}

.hero__wordmark .e-bridge {
  opacity: 0;
  animation: bridge-settle 760ms 1600ms var(--ease-out) forwards;
}

.hero__wordmark .subtitle {
  opacity: 0;
  transform: translateY(10px);
  animation: fade-rise 520ms 1820ms var(--ease-out) forwards;
}

@keyframes sweep-full {
  from { transform: translateX(-760px); }
  to   { transform: translateX(0); }
}

@keyframes sweep-e-base {
  from { transform: translateX(-430px); }
  to   { transform: translateX(0); }
}

@keyframes sweep-bridge {
  from { transform: translateX(-230px); }
  to   { transform: translateX(0); }
}

@keyframes bridge-settle {
  from { opacity: 0; transform: translateX(-5px) translateY(1px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes fade-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: var(--tracking-display);
  line-height: 1.25;
  color: var(--ink-soft);
  max-width: 24ch;
  margin: 0;
}

.hero__lede {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--taupe);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__scroll::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

@media (max-width: 720px) {
  .hero__scroll {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   Hero capability marquee
   ───────────────────────────────────────────────────────────── */

.hero__marquee {
  position: absolute;
  inset: auto 0 0 0;
  border-top: 1px solid var(--rule);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(122, 116, 113, 0.06)
  );
  opacity: 0;
  animation: fade-rise 800ms 2900ms var(--ease-out) forwards;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-track > span {
  padding: 18px clamp(20px, 3vw, 36px);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

.marquee-track > span[aria-hidden="true"] {
  padding-inline: 0;
  color: var(--taupe);
}

@media (prefers-reduced-motion: reduce) {
  .hero__marquee {
    opacity: 1;
    animation: none;
  }
}

/* Hero copy fades in after the bridge lands */
.hero__tagline,
.hero__lede,
.hero__actions {
  opacity: 0;
  transform: translateY(12px);
  animation: fade-rise 700ms 2400ms var(--ease-out) forwards;
}

.hero__lede    { animation-delay: 2550ms; }
.hero__actions { animation-delay: 2700ms; }

@media (prefers-reduced-motion: reduce) {
  .hero__wordmark .full-sweep-rect,
  .hero__wordmark .e-base-sweep-rect,
  .hero__wordmark .bridge-rect,
  .hero__wordmark .e-bridge,
  .hero__wordmark .subtitle,
  .hero__tagline,
  .hero__lede,
  .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   Intro bridge
   ───────────────────────────────────────────────────────────── */

.intro {
  padding-block: clamp(80px, 11vw, 140px);
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.intro__title {
  font-size: clamp(32px, 4vw, 56px);
  max-width: 14ch;
}

.intro__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 56ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  padding-top: 14px;
}

@media (max-width: 880px) {
  .intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ─────────────────────────────────────────────────────────────
   Proof strip
   ───────────────────────────────────────────────────────────── */

.proof {
  border-block: 1px solid var(--rule);
  padding-block: 28px;
}

.proof__inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 5vw, 72px);
  flex-wrap: wrap;
  justify-content: space-between;
}

.proof__label {
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--taupe);
}

.proof__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(24px, 5vw, 56px);
}

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

.proof__brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: var(--tracking-display);
  color: var(--ink);
}

.proof__brand-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--taupe);
}

/* ─────────────────────────────────────────────────────────────
   Section heads
   ───────────────────────────────────────────────────────────── */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 8vw, 96px);
}

.section-head__title {
  font-size: clamp(36px, 4.6vw, 64px);
  max-width: 14ch;
  line-height: 1.05;
}

@media (max-width: 720px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─────────────────────────────────────────────────────────────
   Work
   ───────────────────────────────────────────────────────────── */

.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.case {
  position: relative;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  transition: transform 480ms var(--ease-out), border-color 480ms var(--ease-out);
}

.case:hover {
  transform: translateY(-3px);
  border-color: var(--rule-strong);
}

.case--flagship {
  grid-column: span 12;
  min-height: 280px;
  background: var(--ink);
  color: var(--paper);
  border-color: transparent;
}

.case--flagship .case__media {
  aspect-ratio: 24 / 9;
}

.case--flagship .case__meta,
.case--flagship .case__expand {
  color: rgba(250, 250, 250, 0.7);
}

.case--flagship .case__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  transition:
    margin 520ms var(--ease-out),
    padding 520ms var(--ease-out),
    background-color 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}

.case--flagship .case__details {
  order: 1;
}

.case--flagship .case__expand {
  order: 2;
}

.case__media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: calc(-1 * clamp(24px, 2.6vw, 36px));
  margin-bottom: clamp(8px, 1.4vw, 20px);
  overflow: hidden;
  isolation: isolate;
}


.case__media-label {
  position: absolute;
  inset: auto auto 18px 22px;
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.4);
}

.case__media--brars {
  background:
    url("/assets/brars/brars-logo-gold.png") center / auto 56% no-repeat,
    radial-gradient(circle at 28% 32%, rgba(250, 250, 250, 0.08), transparent 55%),
    linear-gradient(140deg, rgba(122, 116, 113, 0.18), rgba(26, 24, 22, 0.4) 65%);
}

@media (min-width: 880px) {
  .case--flagship {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
    gap: 0;
    overflow: hidden;
  }
  .case--flagship {
    min-height: 220px;
  }
  .case--flagship .case__media {
    aspect-ratio: 16 / 3.4;
    margin-bottom: 0;
  }
  .case__media--brars {
    background-size: auto 45%, auto, auto;
  }
  .case--flagship .case__body {
    margin: 0 calc(-1 * clamp(24px, 2.6vw, 36px)) 0;
    padding: clamp(24px, 2.6vw, 36px) clamp(24px, 2.6vw, 36px) 0;
    background: rgba(26, 24, 22, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.34);
  }
  .case--flagship.is-expanded .case__body {
    margin-top: -112px;
  }
  .case--flagship.is-expanded .case__details-inner {
    gap: 18px 22px;
    padding-top: 18px;
    margin-top: 18px;
  }
  .case--flagship.is-expanded .case__detail h4 {
    margin-bottom: 8px;
  }
  .case--flagship.is-expanded .case__detail p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.case--flagship .eyebrow {
  color: rgba(250, 250, 250, 0.6);
}

.case--half {
  grid-column: span 6;
  background:
    radial-gradient(circle at 88% 12%, rgba(122, 116, 113, 0.13), transparent 48%),
    linear-gradient(160deg, var(--paper) 0%, var(--paper-warm) 100%);
}

@media (min-width: 880px) {
  .case--half {
    grid-column: 8 / -1;
  }
  .case--half:nth-of-type(2) {
    grid-row: 1;
  }
  .case--half:nth-of-type(3) {
    grid-row: 2;
  }
  .case--half .case__expand {
    display: none;
  }
  .case--half .case__details {
    grid-template-rows: 1fr;
  }
}

.case--half .case__meta {
  margin: calc(-1 * clamp(24px, 2.6vw, 36px));
  margin-bottom: 0;
  padding: clamp(10px, 1.2vw, 14px) clamp(24px, 2.6vw, 36px);
  border-bottom: 1px solid var(--rule);
}

.case__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 1.35;
}

.case__title {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.case--half .case__title {
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.22;
  max-width: 30ch;
}

/* The brand name acts as the visual anchor on half cards since they no
   longer carry a logo asset — bump the eyebrow accordingly. */
.case--half > .eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink);
  gap: 14px;
}

.case--half > .eyebrow::before {
  width: 32px;
  opacity: 0.45;
}

.case--flagship .case__title,
.case--flagship .case__detail h4 {
  color: var(--paper);
}

.case--flagship .case__title {
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.16;
  max-width: 29ch;
}

.case--flagship .case__angle {
  font-size: 15px;
  max-width: 58ch;
}

.case__angle {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 52ch;
  color: var(--ink-soft);
}

.case--flagship .case__angle {
  color: rgba(250, 250, 250, 0.78);
}

.case__expand {
  margin-top: auto;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.case__expand[aria-expanded="true"] .case__expand-icon {
  transform: rotate(45deg);
}

.case__expand-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  transition: transform 280ms var(--ease-out);
}

.case__expand-icon::before,
.case__expand-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.case__expand-icon::before {
  inset: 5px 0;
  height: 1px;
}

.case__expand-icon::after {
  inset: 0 5px;
  width: 1px;
}

.case__details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 520ms var(--ease-out);
}

.case__details > div {
  overflow: hidden;
}

.case__details.is-open {
  grid-template-rows: 1fr;
}

.case__details-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(250, 250, 250, 0.18);
}

.case__detail h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(250, 250, 250, 0.6);
}

.case__detail p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.72);
}

/* Half-card expandable copy (single paragraph on light background) */
.case--half .case__details-copy {
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--rule);
}

.case--half .case__details-copy p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(43, 39, 37, 0.72);
  max-width: 56ch;
}

/* Stats footer — three big numbers + uppercase units */
.case-stats {
  list-style: none;
  margin: 0;
  margin-top: auto;
  padding: 20px 0 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.case-stat__value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.case-stat__label {
  font-size: 9px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 1.3;
}

/* On half cards, keep the expand button close to the title (stats own the bottom) */
.case--half .case__expand {
  margin-top: 4px;
}

@media (max-width: 880px) {
  .case__media--brars {
    background-size: auto 46%, auto, auto;
  }
  .case--flagship .case__expand {
    order: 1;
  }
  .case--flagship .case__details {
    order: 2;
  }
  .case--half {
    grid-column: span 12;
  }
  .case__details-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ─────────────────────────────────────────────────────────────
   Services — dark Midnight Umber section
   ───────────────────────────────────────────────────────────── */

.services {
  background: var(--ink);
  color: var(--paper);
}

.services .section-head__title,
.services h3 {
  color: var(--paper);
}

.services .lede {
  color: rgba(250, 250, 250, 0.7);
}

.services .eyebrow {
  color: rgba(250, 250, 250, 0.5);
}

/* Manifesto-style service list — no tabs, no panels.
   Four rows, hairline-divided, all visible at once. */

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(250, 250, 250, 0.18);
}

.services-list__row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.1fr) minmax(24ch, 0.85fr);
  gap: clamp(20px, 4.5vw, 72px);
  align-items: start;
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-bottom: 1px solid rgba(250, 250, 250, 0.12);
  transition: padding-left 320ms var(--ease-out);
}

.services-list__row:hover {
  padding-left: 4px;
}

.services-list__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.42);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  padding-top: 0.55em;
}

.services-list__title {
  font-size: clamp(29px, 3.25vw, 48px);
  font-weight: 300;
  letter-spacing: var(--tracking-display);
  color: var(--paper);
  line-height: 0.98;
  margin: 0;
  max-width: 15ch;
}

.services-list__title span {
  display: block;
  font-style: italic;
  color: rgba(250, 250, 250, 0.72);
}

.services-list__desc {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.58;
  color: rgba(250, 250, 250, 0.66);
  margin: 0;
  max-width: 34ch;
  padding-top: 0.25em;
}

.services-list__desc span {
  color: rgba(250, 250, 250, 0.86);
}

@media (max-width: 880px) {
  .services-list__row {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas:
      "num   title"
      "num   desc";
    gap: 6px 16px;
    padding-block: 24px;
  }
  .services-list__row:hover {
    padding-left: 0;
  }
  .services-list__num {
    grid-area: num;
    font-size: 10px;
    align-self: start;
    padding-top: 7px;
  }
  .services-list__title {
    grid-area: title;
    font-size: 26px;
    max-width: none;
  }
  .services-list__title span {
    white-space: nowrap;
  }
  .services-list__desc {
    grid-area: desc;
    font-size: 14px;
    max-width: none;
    padding-top: 8px;
  }
}

/* ─────────────────────────────────────────────────────────────
   Perspective (Simran)
   ───────────────────────────────────────────────────────────── */

.perspective {
  background: var(--paper-warm);
}

.perspective__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.perspective__portrait {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}

.perspective__portrait picture {
  display: block;
  position: absolute;
  inset: 0;
}

.perspective__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.perspective__body h2 {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 14ch;
  margin-top: clamp(18px, 1.8vw, 28px);
  margin-bottom: 32px;
}

.perspective__body p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 20px;
}

.perspective__signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: var(--tracking-display);
}

@media (max-width: 880px) {
  .perspective__inner {
    grid-template-columns: 1fr;
  }
  .perspective__portrait {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }
}

/* ─────────────────────────────────────────────────────────────
   Contact
   ───────────────────────────────────────────────────────────── */

.contact {
  background: var(--ink);
  color: var(--paper);
}

.contact h2,
.contact h3,
.contact h4 {
  color: var(--paper);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact__intro > h2 {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 12ch;
  margin-bottom: 24px;
}

.contact__intro > p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.75);
  max-width: 44ch;
}

/* Qualifying "is this you" list */

.fit-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(250, 250, 250, 0.16);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 44ch;
}

.fit-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}

.fit-list__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: var(--tracking-display);
  color: var(--taupe);
}

.fit-list li h4 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: var(--tracking-display);
  color: var(--paper);
  margin-bottom: 4px;
}

.fit-list li p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.65);
}

/* The form card — lifted onto the dark section as a Soft Veil island */

.contact__card {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 3.4vw, 48px);
  border-radius: 4px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__card-head h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 8px;
}

.contact__card-head p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 48ch;
}

.contact__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--taupe);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  letter-spacing: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  padding: 10px 0;
  outline: none;
  transition: border-color 200ms var(--ease-out);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(26, 24, 22, 0.36);
}

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

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 8px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.field select option {
  color: var(--ink);
}

.contact__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.contact__fineprint {
  font-size: 12px;
  color: var(--ink-muted);
}

.contact__success {
  display: none;
  padding: 32px 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  max-width: 30ch;
}

.contact.is-success .contact__form,
.contact.is-success .contact__card-head {
  display: none;
}

.contact.is-success .contact__success {
  display: block;
}

@media (max-width: 880px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact__form {
    grid-template-columns: 1fr;
  }
  .contact__submit {
    flex-direction: column;
    align-items: flex-start;
  }
  .fit-list {
    max-width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: rgba(250, 250, 250, 0.7);
  padding-block: 56px 32px;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer__wordmark {
  width: 220px;
  height: auto;
  color: var(--paper);
  display: block;
}

.footer__tag {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: var(--tracking-display);
  color: var(--paper);
  max-width: 28ch;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: rgba(250, 250, 250, 0.85);
  transition: color 200ms var(--ease-out);
}

.footer__col a:hover {
  color: var(--paper);
}

.footer__base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250, 250, 250, 0.45);
}

@media (max-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__base {
    flex-direction: column;
    gap: 8px;
  }
}
