/* ===== Theme tokens ===== */
:root {
  --bg:        #F7F4EF;   /* warm off-white */
  --bg-2:      #F0EBE3;
  --ink:       #141414;   /* near-black text */
  --muted:     #6B6862;   /* secondary text */
  --line:      #E4DED4;   /* hairlines / borders */
  --accent:    #F5380F;   /* logo orange */
  --accent-ink:#B12604;   /* darker orange for text on light */
  --card:      #FFFFFF;
  --radius:    18px;
  --max:       1120px;
  --shadow:    0 10px 40px rgba(20, 20, 20, 0.08);
  --shadow-lg: 0 24px 70px rgba(20, 20, 20, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.accent { color: var(--accent); }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(245, 56, 15, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245, 56, 15, 0.36); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 5vw, 48px);
  background: rgba(247, 244, 239, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__wordmark { height: clamp(24px, 3.4vw, 30px); width: auto; display: block; }
.nav__logo {
  width: 40px; height: 40px;
  object-fit: cover;
  object-position: 50% 16%;   /* frame the face, not the camera */
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
}
.nav__name { font-family: "Arial Black", "Arial Bold", Gadget, sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.nav__links { display: flex; align-items: center; gap: 26px; font-weight: 500; }
.nav__links a { color: var(--muted); transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__ig {
  padding: 8px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink) !important;
}
.nav__ig:hover { background: var(--ink); color: var(--bg) !important; }

/* ===== Hero ===== */
.hero { padding: clamp(48px, 9vw, 110px) clamp(20px, 5vw, 48px) 0; }
.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(245, 56, 15, 0.08);
  color: var(--accent-ink);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(245, 56, 15, 0.2);
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(245, 56, 15, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 56, 15, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(245, 56, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 56, 15, 0); }
}
.hero__title {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px 0 20px;
}
.hero__sub { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 48ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 18px; }
.hero__meta { color: var(--muted); font-size: 0.95rem; max-width: 46ch; }
.hero__meta strong { color: var(--ink); }

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;            /* plant the image at the bottom (the section divider) */
}
/* Box sized exactly to the image, so rays + glow center on the figure */
.hero__figure {
  position: relative;
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Sun-burst rays radiating from behind the picture (masked to a ring so they
   sit around the logo rather than under its opaque center) */
.hero__rays {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 152%;
  aspect-ratio: 1;
  z-index: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(245, 56, 15, 0.13) 0deg 3deg,
    transparent 3deg 15deg
  );
  -webkit-mask-image: radial-gradient(circle, transparent 30%, #000 44%, transparent 72%);
          mask-image: radial-gradient(circle, transparent 30%, #000 44%, transparent 72%);
  animation: spin 46s linear infinite;
}
.hero__rays--fine {
  width: 134%;
  background: repeating-conic-gradient(
    from 4deg,
    rgba(245, 56, 15, 0.08) 0deg 1.4deg,
    transparent 1.4deg 9deg
  );
  animation: spin-rev 70s linear infinite;
}

/* Soft orange bloom that bleeds out through the logo's transparent edges */
.hero__glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 56, 15, 0.30), transparent 62%);
  filter: blur(52px);
  z-index: 0;
  animation: glow-pulse 5.5s ease-in-out infinite;
}

.hero__avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 44px rgba(20, 20, 20, 0.22));
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}
@keyframes spin     { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-rev { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(-360deg); } }

/* ===== Work sections ===== */
.work {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--line);
}
.work__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.work__head { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto 42px; }
.work__eyebrow {
  display: inline-block;
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent);
}
.work__title {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
}
.work__desc { color: var(--muted); max-width: 52ch; font-size: 1.05rem; }

/* Floating emojis */
.floaty {
  position: absolute;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-40px) rotate(12deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Video grid */
.grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* Placeholder shown only while a video file is missing (video covers it once loaded) */
.card::after {
  content: "▶  add video";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: #C9C2B6;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: repeating-linear-gradient(45deg, #fbfaf7, #fbfaf7 12px, #f4f1ea 12px, #f4f1ea 24px);
}
.card__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__sound {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 20, 20, 0.55);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .15s ease, transform .15s ease;
}
.card__sound:hover { background: var(--accent); transform: scale(1.08); }
.card { cursor: pointer; }

/* ===== Video lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(15, 15, 16, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.lightbox.open { display: grid; animation: lb-fade .2s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  max-height: 100%;
}
.lightbox__video {
  max-width: min(92vw, 1100px);
  max-height: 84vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: #000;
}
.lightbox__title {
  color: #fff;
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1rem;
}
.lightbox__close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.lightbox__close:hover { background: var(--accent); transform: scale(1.06); }

/* Center play affordance on work cards (replaces the small mute button) */
.card__sound { display: none; }
.card::before {
  content: "\25B6";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border-radius: 50%;
  background: rgba(245, 56, 15, 0.92);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(245, 56, 15, 0.4);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (hover: none) { .card::before { opacity: 0.92; } }

/* Subtle film-grain overlay for depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Contact ===== */
.contact {
  padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #fff);
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.contact__title {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}
.contact__desc { color: var(--muted); font-size: 1.05rem; max-width: 44ch; }
.contact__desc strong { color: var(--ink); }
.contact__direct { margin-top: 20px; color: var(--muted); }
.contact__direct a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.form {
  background: var(--card);
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.form__field { display: grid; gap: 7px; }
.form__field span { font-weight: 600; font-size: 0.9rem; }
.form__field input,
.form__field textarea {
  font: inherit;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 56, 15, 0.14);
}
.form__submit { width: 100%; margin-top: 4px; }
.form__note { font-size: 0.9rem; min-height: 1em; }
.form__note.ok  { color: #1a7f37; }
.form__note.err { color: var(--accent-ink); }

/* ===== Results / social proof ===== */
.results {
  padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.results__head { max-width: 760px; margin: 0 auto 46px; }
.results__title {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}
.results__desc { color: var(--muted); font-size: 1.08rem; }
.results__desc strong { color: var(--ink); }

.results__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
}
.result { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.result__media {
  width: 100%;
  aspect-ratio: 409 / 528;            /* matches the screenshots exactly — no cropping */
  border-radius: 20px;
  overflow: hidden;
  background: #efe9df;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.result:hover .result__media { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.result__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;                  /* fill the card, no empty space */
  object-position: center;
  display: block;
}
.result__cap { display: flex; flex-direction: column; gap: 3px; }
.result__num {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--accent);
  line-height: 1;
}
.result__label { color: var(--muted); font-size: 0.92rem; }

.results__offer { margin-top: clamp(36px, 5vw, 56px); }
.results__pitch {
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin-bottom: 18px;
}
.results__pitch em { color: var(--accent); font-style: normal; }
.results__social { margin-top: 16px; color: var(--muted); font-size: 0.95rem; }
.results__social a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Form: budget/deadline row + select ===== */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Budget money input with $ prefix */
.form__money { position: relative; display: flex; align-items: center; }
.form__money-sign {
  position: absolute;
  left: 15px;
  font-weight: 600;
  color: var(--muted);
  pointer-events: none;
}
.form__money input { width: 100%; padding-left: 28px !important; }
.form__field input[type="number"]::-webkit-inner-spin-button,
.form__field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none; margin: 0;
}
.form__hint { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.form__field select {
  font: inherit;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6862' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 56, 15, 0.14);
}

/* ===== Footer ===== */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px clamp(20px, 5vw, 48px) 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer__links { display: flex; gap: 18px; }
.footer a:hover { color: var(--ink); }

/* ===== Hero hint under CTA ===== */
.hero__hint {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ===== Scroll cue (funnel to survey) ===== */
.scroll-cue {
  max-width: var(--max);
  margin: clamp(34px, 5vw, 60px) auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: var(--ink);
}
.scroll-cue__text {
  font-size: 0.98rem;
  color: var(--muted);
}
.scroll-cue__text strong { color: var(--accent-ink); }
.scroll-cue__chevron {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(245, 56, 15, 0.3);
  animation: bob 1.6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ===== Floating funnel button ===== */
.request-popup {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  transform: translateY(22px) scale(0.96);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.request-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.request-popup__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 15px 30px;
  border-radius: 22px;
  /* dark frosted glass, orange text (Apple-style) */
  background: rgba(20, 20, 20, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
          backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.request-popup__box:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  background: rgba(20, 20, 20, 0.82);
}
.request-popup__label {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.request-popup__sub { font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); }
.request-popup__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20, 20, 20, 0.25);
  transition: background .15s ease, transform .15s ease;
}
.request-popup__close:hover { background: var(--accent); transform: scale(1.08); }

/* Highlight the survey card when the funnel button is clicked/landed on */
.contact:target .form,
.form.pulse { animation: card-pulse 1.4s ease; }
@keyframes card-pulse {
  0%   { box-shadow: var(--shadow); }
  30%  { box-shadow: 0 0 0 4px rgba(245, 56, 15, 0.35), var(--shadow-lg); }
  100% { box-shadow: var(--shadow); }
}

/* Smaller secondary contact line */
.contact__desc--small { font-size: 0.95rem; margin-top: 12px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero { padding-bottom: clamp(28px, 8vw, 56px); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; align-self: center; }
  .hero__figure { max-width: 360px; }
  .badge, .hero__cta { justify-content: center; }
  .hero__cta { display: inline-flex; }
  .hero__sub, .work__desc { margin-left: auto; margin-right: auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav { padding: 11px 16px; }
  .nav__wordmark { height: 22px; }
  .nav__links { gap: 12px; }
  .nav__links a:not(.nav__ig) { display: none; }
  .nav__ig { padding: 7px 13px; font-size: 0.85rem; }

  /* Tighter vertical rhythm = far less scrolling */
  .hero { padding-top: 26px; }
  .work, .results, .contact { padding-top: 40px; padding-bottom: 40px; }
  .work__head, .results__head { margin-bottom: 24px; }

  /* Scale display type down for phones */
  .hero__title { font-size: 2rem; line-height: 1.05; }
  .hero__sub { font-size: 0.98rem; }
  .hero__meta, .hero__hint { font-size: 0.85rem; }
  .work__title, .results__title, .contact__title { font-size: 1.55rem; }
  .results__desc, .work__desc, .contact__desc { font-size: 0.98rem; }
  .results__pitch { font-size: 1.1rem; }

  /* Smaller hero logo */
  .hero__figure { max-width: 230px; }

  /* Videos 2 across (2x2), result stats 3 across */
  .grid { grid-template-columns: 1fr 1fr; max-width: none; gap: 12px; }
  .results__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: none; }
  .result { gap: 8px; }
  .result__num { font-size: 1.25rem; }
  .result__label { font-size: 0.68rem; }

  .form__row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 12px; }
  .request-popup { max-width: calc(100vw - 32px); }
  .request-popup__box { padding: 18px 26px; }
  .request-popup__label { font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
