/* Eero Deosaran — portfolio
   Palette and motifs lifted from the original deck: cornflower blue ground,
   white "film sprocket" pills, orange corner square. */

:root {
  --blue: #6290d4;
  --blue-deep: #4f7cc2;
  --orange: #ffae00;
  --portrait: #f98741;
  --white: #ffffff;
  --ink: #0e1116;
  --ink-2: #1a1f28;
  --cream: #f6f3ec;
  --muted: rgba(255, 255, 255, 0.78);

  --display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --condensed: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --body: "Bricolage Grotesque", "Helvetica Neue", Arial, system-ui, sans-serif;

  --gutter: clamp(20px, 4vw, 60px);
  --max: 1480px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--blue);
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(18px, 1.25vw, 21px);
  font-weight: 600; /* white on brand blue only clears contrast as large/bold text */
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--orange); color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); container-type: inline-size; }

/* ---------- Sprocket strip: title word + pills + orange square ----------
   As in the deck, the word is as tall as the pills. Set --len (character
   count) on the strip so long words shrink to leave room for a few pills. */

.strip {
  --len: 6;
  display: flex;
  align-items: stretch;
  gap: 0.18em;
  font-size: min(clamp(40px, 8.6vw, 150px), calc(66cqi / (var(--len) * 0.82)));
  height: 0.74em;
}
.strip__word {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1em;
  line-height: 0.74;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-end;
}
.strip__pills {
  flex: 1;
  min-width: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 146 140'%3E%3Crect x='36' width='73' height='140' rx='36.5' fill='white'/%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: space no-repeat;
}
.strip__sq {
  flex: 0 0 auto;
  aspect-ratio: 1;
  background: var(--orange);
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--blue) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo::after {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--orange);
}
.nav__links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--condensed);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.nav__links a { text-decoration: none; }
.nav__links a:hover { color: var(--orange); }
@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  padding-top: 0;
  padding-bottom: clamp(60px, 8vw, 120px);
  overflow: hidden;
}

/* Full-bleed halftone photo background (assets/hero.js). Until the shader is
   ready, or without WebGL2, a blue-tinted photo stands in. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--blue);
}
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
  mix-blend-mode: multiply;
  opacity: 0.4;
  transition: opacity 0.6s ease;
}
.hero__bg.is-live .hero__fallback { opacity: 0; }
.hero__shader { position: absolute; inset: 0; transition: opacity 0.7s ease; }
.hero__shader.is-fading { opacity: 0; }
.hero .strip { margin-bottom: clamp(24px, 4vw, 60px); font-size: clamp(40px, 8.6vw, 150px); }
.hero__name {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: min(200px, 100cqi / 7.25); /* "DEOSARAN" fills the column */
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(200px, 420px) 1fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 56px);
}
.hero__portrait {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: var(--portrait);
}
.hero__title {
  margin: 0 0 18px;
  font-family: var(--condensed);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.005em;
}
.hero__lede { margin: 0 0 30px; max-width: 40ch; font-size: clamp(19px, 1.5vw, 24px); }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--condensed);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.hero__meta li::before { content: "● "; color: var(--orange); }
@media (max-width: 720px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 260px; }
}

.btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--white);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--white); color: var(--blue); }
.btn--solid:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.btn--ghost:hover { background: var(--white); color: var(--blue); }

/* ---------- Sections ---------- */

.section { padding: clamp(70px, 9vw, 140px) 0; }
.section--dark { background: var(--ink); }
.section--deep { background: var(--blue-deep); }
.section .strip { margin-bottom: clamp(36px, 5vw, 72px); }
.section--dark .strip__pills { opacity: 0.92; }

.kicker {
  display: inline-block;
  margin: 0 0 14px;
  font-family: var(--condensed);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--orange);
}
.h3 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.prose p { margin: 0 0 1.1em; max-width: 60ch; }
.prose p:last-child { margin-bottom: 0; }
.pull {
  margin: 0;
  font-family: var(--body);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.25fr 1fr; }
.split--top { align-items: start; }
@media (max-width: 900px) {
  .split, .split--wide-left { grid-template-columns: 1fr; }
}

/* Polaroid-style white frame, as in the deck */
.frame {
  background: var(--white);
  padding: clamp(8px, 1vw, 16px);
  margin: 0;
}
.frame img { width: 100%; }
.frame figcaption, .caption {
  font-family: var(--condensed);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--ink);
  padding-top: 10px;
}
.caption { color: var(--white); }

/* ---------- Photography ---------- */

.photo-intro { margin-bottom: clamp(50px, 7vw, 100px); }
.photo-intro .frame { transform: rotate(-1.5deg); max-width: 520px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 44vw), 1fr));
  gap: clamp(10px, 1.4vw, 22px);
}
.gallery button {
  all: unset;
  cursor: zoom-in;
  display: block;
  background: var(--white);
  padding: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery button:hover, .gallery button:focus-visible {
  transform: translateY(-4px) rotate(-0.6deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.gallery button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #000;
}

.marquee {
  overflow: hidden;
  margin-top: clamp(50px, 6vw, 90px);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 42px;
  animation: marquee 50s linear infinite;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.marquee__track span:nth-child(3n+2) { color: var(--orange); }
.marquee__track span:nth-child(3n) { -webkit-text-stroke: 1.5px var(--white); color: transparent; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { white-space: normal; }
  .marquee__track { animation: none; flex-wrap: wrap; }
  .marquee__track [aria-hidden] { display: none; }
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 10, 14, 0.94);
  display: grid;
  place-items: center;
  padding: 60px 70px;
}
.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border: 8px solid var(--white);
}
.lightbox__btn {
  position: absolute;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--display);
  font-weight: 900;
  font-size: 34px;
  cursor: pointer;
  padding: 12px 18px;
}
.lightbox__btn:hover { color: var(--orange); }
.lightbox__close { top: 10px; right: 14px; }
.lightbox__prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 6px; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--condensed);
  font-size: 20px;
  letter-spacing: 0.08em;
}

/* ---------- Press (Clash) ---------- */

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.press-grid .frame:first-of-type { transform: rotate(1deg); }
.press-grid .stack { display: grid; gap: clamp(30px, 4vw, 56px); }
.press-badge {
  display: inline-block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  background: var(--white);
  color: var(--ink);
  padding: 4px 12px;
  margin-bottom: 14px;
}
@media (max-width: 900px) { .press-grid { grid-template-columns: 1fr; } }

/* ---------- Brand Music Position ---------- */

.bmp-intro { margin-bottom: clamp(70px, 9vw, 130px); }

.case {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(28px, 4vw, 64px);
  margin-bottom: clamp(30px, 4vw, 50px);
  position: relative;
}
.case::before { /* orange corner square */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(28px, 4vw, 56px);
  aspect-ratio: 1;
  background: var(--orange);
}
.case .kicker { color: var(--blue-deep); }
.case__title {
  margin: 0 0 26px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.case p, .case li { font-weight: 500; }
.north-star {
  border-left: 6px solid var(--orange);
  padding-left: clamp(16px, 2vw, 28px);
  margin: 0 0 clamp(28px, 3vw, 44px);
  max-width: 70ch;
}
.north-star strong {
  display: block;
  font-family: var(--condensed);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--blue-deep);
  font-weight: 400;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.pillars > div { background: var(--cream); padding: 18px 18px 22px; }
.pillars h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.pillars p { margin: 0; font-size: 16px; line-height: 1.45; }
@media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

.artists {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.artists li {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
}
.artists--outline li { background: transparent; border: 2px solid currentColor; color: inherit; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 24px);
  margin-top: 28px;
}
.stat {
  border-top: 4px solid var(--ink);
  padding-top: 12px;
}
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat span { font-family: var(--condensed); font-size: 22px; letter-spacing: 0.05em; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.activations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.activation {
  background: var(--white);
  color: var(--ink);
  padding: clamp(22px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
}
.activation h4 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.activation dt {
  font-family: var(--condensed);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--blue-deep);
  margin-top: 14px;
}
.activation dd { margin: 2px 0 0; font-weight: 500; font-size: 16px; line-height: 1.45; }
.activation dd.names { font-family: var(--display); font-weight: 700; font-size: 16px; line-height: 1.35; }
@media (max-width: 1000px) { .activations { grid-template-columns: 1fr; } }

/* ---------- Identity & Strategy ---------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: clamp(36px, 4vw, 60px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
.tiles img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 800px) { .tiles { grid-template-columns: repeat(2, 1fr); } }

/* Curator Now Instagram strip: 4 tiles in view, scrolls when there are more */
.ig-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  margin-bottom: 18px;
}
.ig-head .kicker { margin: 0; }
.ig-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.ig-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.ig-nav:hover:not(:disabled) { background: var(--white); color: var(--blue-deep); }
.ig-nav:disabled { opacity: 0.35; cursor: default; }
.ig-strip {
  --tile-gap: clamp(8px, 1vw, 14px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * var(--tile-gap)) / 4);
  gap: var(--tile-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-bottom: clamp(36px, 4vw, 60px);
}
.ig-strip::-webkit-scrollbar { display: none; }
@media (max-width: 800px) { .ig-strip { grid-auto-columns: calc((100% - var(--tile-gap)) / 2); } }
.tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-2);
  scroll-snap-align: start;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.tile:hover img { transform: scale(1.03); }
.tile:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.tile__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 13px;
}

/* ---------- Music marketing ---------- */

.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 30px);
  align-items: start;
}
.phone {
  background: var(--ink);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.phone img { border-radius: 14px; width: 100%; }
.phone:nth-child(2) { transform: translateY(40px); }
@media (max-width: 700px) {
  .phones { grid-template-columns: 1fr; max-width: 420px; }
  .phone:nth-child(2) { transform: none; }
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.tags li {
  border: 2px solid var(--white);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--condensed);
  font-size: 20px;
  letter-spacing: 0.05em;
}

/* ---------- Writing ---------- */

.writing-proof { max-width: 320px; justify-self: center; transform: rotate(2deg); }

/* Substack post cards */
.posts-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 30px;
  margin: clamp(60px, 7vw, 110px) 0 clamp(22px, 3vw, 34px);
}
.posts-head .h3, .posts-head .kicker { margin: 0; }
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
}
.posts:not(.is-open) > .post:nth-child(n+7) { display: none; }
@media (max-width: 1000px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }
.post {
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post:hover, .post:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.post:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.post__img { aspect-ratio: 16 / 10; background: var(--ink-2); overflow: hidden; }
.post__img img { width: 100%; height: 100%; object-fit: cover; }
.post__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 22px; }
.post__meta { margin: 0; font-family: var(--condensed); font-size: 19px; letter-spacing: 0.05em; color: #5c5c5c; }
.post__source { color: var(--blue-deep); }
.post__source--alt { background: var(--orange); color: var(--ink); padding: 1px 6px; }
.post__title {
  margin: 0;
  font-family: var(--body);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.post__sub {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.posts-more { margin-top: clamp(24px, 3vw, 36px); }

/* ---------- CV ---------- */

.cv {
  background: var(--cream);
  color: var(--ink);
}
.cv .strip__pills { filter: invert(1) brightness(0.1); } /* ink pills on cream */
.cv h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.cv p, .cv li { font-weight: 500; font-size: 17px; line-height: 1.55; }
.cv-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px);
}
.cv-block { margin-bottom: 44px; }
.cv-block:last-child { margin-bottom: 0; }
.cv ul { margin: 0; padding-left: 1.1em; }
.cv li { margin-bottom: 6px; }
.cv li::marker { color: var(--blue-deep); }
.role {
  border-top: 2px solid var(--ink);
  padding: 20px 0 26px;
}
.role__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 20px;
  margin-bottom: 10px;
}
.role__title { font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.role__org { color: var(--blue-deep); font-weight: 700; }
.role__date { font-family: var(--condensed); font-size: 21px; letter-spacing: 0.05em; color: #555; }
.cv a { color: var(--blue-deep); font-weight: 700; }
.cv .btn { border-color: var(--ink); color: var(--ink); }
.cv .btn:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 900px) { .cv-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */

.contact { padding-bottom: clamp(60px, 8vw, 110px); }
.contact__big {
  margin: 0 0 30px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.contact__links {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 8px;
}
.contact__links a {
  font-family: var(--body);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 42px);
  letter-spacing: -0.015em;
  text-decoration: none;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-size: 0 4px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease;
}
.contact__links a:hover { background-size: 100% 4px; }
.contact .split { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 900px) { .contact .split { grid-template-columns: 1fr; } }
.contact__photo {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  justify-self: center;
}

.footer {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding: 26px 0 40px;
  font-family: var(--condensed);
  font-size: 19px;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }

/* ---------- Pitch page (private, per-company) ---------- */

.pitch-banner {
  background: var(--orange);
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px var(--gutter);
}
.pitch-hero { padding-top: clamp(24px, 3vw, 44px); padding-bottom: clamp(60px, 8vw, 110px); }
.pitch-hero__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.pitch-hero__big {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(60px, 12vw, 190px);
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) { .pitch-hero__grid { grid-template-columns: 1fr; } }

.offer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
  counter-reset: offer;
}
.offer > div {
  border: 2px solid var(--white);
  padding: clamp(22px, 2.4vw, 34px);
  counter-increment: offer;
}
.offer > div::before {
  content: "0" counter(offer);
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 44px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}
.offer h4 { margin: 0 0 10px; font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.01em; }
.offer p { margin: 0; font-size: 17px; }
@media (max-width: 900px) { .offer { grid-template-columns: 1fr; } }
