/* =========================================================
   Arcangelo Caiazzo — editorial landing
   Minimal & elegant. Cream + ink. Playfair Display + Hanken Grotesk.
   ========================================================= */

:root {
  --bg: #faf8f4;
  --bg-deep: #f2eee7;
  --ink: #181613;
  --ink-soft: #4c473f;
  --muted: #8d877c;
  --faint: #bdb6aa;
  --line: rgba(24, 22, 19, 0.14);
  --line-soft: rgba(24, 22, 19, 0.08);
  --accent: #181613;            /* monochrome by default; tweakable */
  --paper: #fffdf9;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(15px, 3.5vw, 60px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- type helpers ---------- */
.serif { font-family: var(--font-display); font-weight: 500; }
.it { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.012em;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  margin: 0;
}

.lead {
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- nav ---------- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 56px;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-mark .dot { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.nav-links a { color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.4s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a.btn { padding: 0.6em 1.2em; }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6ch;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.7em 1.35em;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }

/* ---------- hero ---------- */
.hero {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 12vh, 140px) 0;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-title .it { font-weight: 500; }
.hero-title .hero-accent { color: var(--muted); }

/* ---------- generic section ---------- */
section { position: relative; }

/* ---------- about / chi sono ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 1.2rem 0 1.6rem;
  max-width: 18ch;
  text-wrap: balance;
}
.about-title .it { color: var(--muted); }
.about-body p {
  font-size: clamp(0.95rem, 1.05vw, 1.06rem);
  line-height: 1.66;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
  max-width: 52ch;
}
.about-body strong { color: var(--ink); font-weight: 600; }
.about-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.about-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-top: 1px solid var(--line-soft);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.5;
  color: var(--ink-soft);
}
.about-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.about-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.about-list strong { color: var(--ink); font-weight: 600; }
.about-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.about-meta .am dt {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.about-meta .am dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  font-family: var(--font-display);
}
.portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
}
img.portrait {
  object-fit: cover;
  object-position: 52% 30%;
}
image-slot { --is-bg: var(--bg-deep); }
.portrait-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(24,22,19,0.4);
}
.about-photo image-slot::part(image) {
  filter: none;
}

.block { padding: clamp(45px, 7.7vh, 105px) 0; }
.block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(24px, 3.5vw, 45px);
  flex-wrap: wrap;
}
.block-head .lead { margin-top: 1rem; }

/* ---------- brand wall ---------- */
/* ---------- brand marquee ---------- */
.brand-block { overflow: hidden; }
.brand-heading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 0 auto clamp(24px, 3vw, 38px);
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 3.5vw, 44px) 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.m-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(28px, 4.5vw, 64px);
}
.m-logo img {
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.55;
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease);
}
.m-logo:hover img { opacity: 1; filter: none; }
/* College Life Italia is a full-colour crest — greyscale by default (silhouette would be a blob), colour on hover */
.m-logo--color img { filter: grayscale(1) contrast(1.05); opacity: 0.6; }
.m-logo--color:hover img { filter: grayscale(0); opacity: 1; }
/* optical size balancing per brand (sets repeat every 16) */
.m-logo:nth-child(16n+1) img { height: 30px; }  /* TikTok */
.m-logo:nth-child(16n+2) img { height: 22px; }  /* Revolut */
.m-logo:nth-child(16n+3) img { height: 27px; }  /* NordVPN */
.m-logo:nth-child(16n+4) img { height: 42px; }  /* Prime Video */
.m-logo:nth-child(16n+5) img { height: 24px; }  /* Fiscozen */
.m-logo:nth-child(16n+6) img { height: 30px; }  /* Babbel */
.m-logo:nth-child(16n+7) img { height: 28px; }  /* Far Cry 6 */
.m-logo:nth-child(16n+8) img { height: 19px; }  /* Degiro (very wide) */
.m-logo:nth-child(16n+9) img { height: 30px; }  /* XTB */
.m-logo:nth-child(16n+10) img { height: 26px; } /* Qonto */
.m-logo:nth-child(16n+11) img { height: 23px; } /* WaterDrop */
.m-logo:nth-child(16n+12) img { height: 26px; } /* Flowe */
.m-logo:nth-child(16n+13) img { height: 26px; } /* Ecovacs */
.m-logo:nth-child(16n+14) img { height: 30px; } /* Plum */
.m-logo:nth-child(16n+15) img { height: 52px; } /* College Life (square crest) */
.m-logo:nth-child(16n+0) img { height: 26px; }  /* GS Loft */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.brand-secondary {
  margin-top: clamp(34px, 5vw, 56px);
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
}
.brand-secondary .label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.chip {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.4em 0.9em;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.chip:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- people / creators ---------- */
.creators { background: var(--bg-deep); }
.people-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  text-align: center;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-wrap: balance;
}
.people-title .it { color: var(--muted); }
.people-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 2vw, 30px);
}
.person { margin: 0; }
image-slot.person-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 3px;
  overflow: hidden;
}
img.person-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 8px;
}
.person-zoom {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
}
.person-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(2.9);
  transform-origin: 50% 16%;
}
.person image-slot::part(image) {
  filter: none;
}
.person figcaption {
  margin-top: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.person-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.person-role {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- bio ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(26px, 4.2vw, 64px);
  align-items: start;
}
.bio-aside .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.bio-aside .quote .accent { color: var(--accent); }
.bio-meta {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.bio-meta dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}
.bio-meta .mrow {
  display: contents;
}
.bio-meta dt, .bio-meta dd {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.bio-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.bio-meta dd { margin: 0; text-align: right; color: var(--ink-soft); font-size: 0.95rem; }

.bio-body p {
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.66;
  color: var(--ink-soft);
  margin: 0 0 1.3em;
  max-width: 56ch;
}
.bio-body p:first-child { margin-top: -0.2em; }
.bio-body .drop::first-letter {
  font-family: var(--font-display);
  font-size: 3.6em;
  line-height: 0.78;
  float: left;
  padding: 0.06em 0.12em 0 0;
  font-weight: 500;
  color: var(--accent);
}
.bio-body strong { color: var(--ink); font-weight: 600; }

/* ---------- services ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid;
  grid-template-columns: 64px 1fr 1.1fr;
  gap: clamp(14px, 3vw, 44px);
  padding: clamp(21px, 2.8vw, 35px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.svc .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
}
.svc h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}
.svc p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 46ch;
}
.svc .tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc .tags span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.35em 0.8em;
  border-radius: 999px;
}

/* ---------- press / featured in ---------- */
.press { background: var(--bg-deep); }
.press-carousel { overflow: hidden; }
.press-track {
  display: flex;
  gap: clamp(16px, 1.8vw, 26px);
  transition: transform 0.6s var(--ease);
}
.press-track .press-card {
  flex: 0 0 calc((100% - 2 * clamp(16px, 1.8vw, 26px)) / 3);
}
.press-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(26px, 3vw, 44px);
}
.press-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
}
.press-arrow:hover:not(:disabled) { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.press-arrow:disabled { opacity: 0.3; cursor: default; }
.press-dots { display: flex; gap: 9px; align-items: center; }
.press-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none; padding: 0;
  background: var(--faint);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.press-dot.active { background: var(--ink); transform: scale(1.4); }
.press-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.press-card:hover {
  transform: translateY(-5px);
  border-color: var(--ink);
  box-shadow: 0 22px 48px -28px rgba(24,22,19,0.4);
}
image-slot.press-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line-soft);
}
.press-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
  padding: clamp(18px, 1.7vw, 28px);
}
.press-outlet {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.press-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}
.press-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55ch;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  width: fit-content;
  white-space: nowrap;
}
.press-link .arr { transition: transform 0.4s var(--ease); }
.press-card:hover .press-link .arr { transform: translate(3px, -3px); }
.press-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.4s var(--ease);
}
.press-link { position: relative; }
.press-card:hover .press-link::after { width: 100%; }

/* ---------- newsletter cta ---------- */
.cta {
  background: var(--ink);
  color: var(--bg);
}
.cta .wrap { padding-top: clamp(50px, 8.4vh, 98px); padding-bottom: clamp(50px, 8.4vh, 98px); }
.cta .eyebrow { color: rgba(250,248,244,0.6); }
.cta .eyebrow::before { background: rgba(250,248,244,0.6); }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0.3em 0 0;
  max-width: 16ch;
  text-wrap: balance;
}
.cta p { color: rgba(250,248,244,0.74); max-width: 44ch; margin-top: 1.1rem; font-size: 0.98rem; }
.cta .btn {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  margin-top: 2.4rem;
  font-size: 0.95rem;
  padding: 0.85em 1.7em;
}
.cta .btn:hover { background: transparent; color: var(--bg); }

/* manifesto — centered single dark block */
.manifesto .wrap {
  padding-top: clamp(72px, 14vh, 170px);
  padding-bottom: clamp(72px, 14vh, 170px);
  text-align: center;
}
.manifesto h2 {
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(2rem, 5vw, 4.2rem);
}
.manifesto h2 .it { color: rgba(250,248,244,0.55); }
.manifesto p {
  max-width: 50ch;
  margin: 1.6rem auto 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}
/* hairline between the two consecutive dark blocks */
.manifesto + .cta .wrap { border-top: 1px solid rgba(250,248,244,0.12); }

/* ---------- newsletter split ---------- */
.nl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nl-side {
  padding: clamp(48px, 7vw, 110px) clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nl-side--light { background: var(--bg); color: var(--ink); }
.nl-side--dark { background: var(--ink); color: var(--bg); }
.nl-side .eyebrow { margin-bottom: 1.4rem; }
.nl-side--dark .eyebrow { color: rgba(250,248,244,0.6); }
.nl-side--dark .eyebrow::before { background: rgba(250,248,244,0.6); }
.nl-h, .nl-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0;
}
.nl-h { font-size: clamp(1.9rem, 3.6vw, 3.4rem); }
.nl-h .it { color: var(--muted); }
.nl-tag {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 28ch;
}
.nl-h2 { font-size: clamp(1.6rem, 2.8vw, 2.5rem); max-width: 16ch; }
.nl-h2 .it { color: rgba(250,248,244,0.55); }
.nl-side--dark .nl-p { color: rgba(250,248,244,0.88); }
.nl-cta {
  margin-top: 2rem;
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  font-size: 0.95rem;
  padding: 0.85em 1.6em;
  align-self: flex-start;
  white-space: nowrap;
}
.nl-cta:hover { background: transparent; color: var(--bg); }
/* CTA on the light side: dark pill */
.nl-cta--light {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.nl-cta--light:hover { background: transparent; color: var(--ink); }
/* coming soon — elegant serif label */
.nl-soon {
  align-self: flex-start;
  margin-top: 2rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6ch;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  color: rgba(250,248,244,0.92);
}
.nl-soon::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(250,248,244,0.5);
  align-self: center;
}
.nl-p {
  margin-top: 1.4rem;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* sendfox form, restyled to match */
.nl-form { margin-top: 2rem; max-width: 440px; }
.nl-form p { margin: 0 0 16px; }
.nl-form label[for] {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.5);
  margin-bottom: 7px;
}
.nl-form input[type="text"],
.nl-form input[type="email"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250,248,244,0.28);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  padding: 10px 2px;
  outline: none;
  transition: border-color 0.3s;
}
.nl-form input::placeholder { color: rgba(250,248,244,0.38); }
.nl-form input:focus { border-color: var(--bg); }
.nl-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(250,248,244,0.66);
  cursor: pointer;
}
.nl-check input { margin-top: 3px; accent-color: var(--bg); flex: 0 0 auto; }
.nl-form button[type="submit"] {
  margin-top: 8px;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--bg);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95em 1.6em;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.nl-form button[type="submit"]:hover { transform: translateY(-2px); background: transparent; color: var(--bg); }

/* ---------- footer ---------- */
.footer { padding: clamp(35px, 5.6vh, 63px) 0 32px; }
.footer-top {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
}
.social-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-row a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s var(--ease);
}
.social-row a:hover { color: var(--ink); }
.social-row .sep { color: var(--faint); font-size: 0.74rem; }
.social { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }
.social a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color 0.3s, padding-left 0.4s var(--ease);
}
.social a:hover { color: var(--ink); padding-left: 8px; }
.social a .arr { color: var(--muted); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- reveal animation ---------- */
@keyframes revealIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.reveal { opacity: 0; }
.reveal.in {
  animation: revealIn 0.9s var(--ease) both;
}
/* failsafe: never let content stay hidden */
body.reveal-fallback .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 420px; }
  .bio-grid { grid-template-columns: 1fr; }
  .press-track .press-card { flex-basis: calc((100% - clamp(16px, 1.8vw, 26px)) / 2); }
  .svc { grid-template-columns: 60px 1fr; }
  .svc p.svc-desc { grid-column: 2 / -1; }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 56px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg);
    padding: 26px var(--gutter) 34px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
  }
  .nav-toggle span { width: 26px; height: 1.5px; background: var(--ink); display: block; }
  .creator-row { grid-template-columns: 38px 1fr; }
  .press-track .press-card { flex-basis: 100%; }
  .creator-row .role { display: none; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-split { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
