:root {
  --ink: #171717;
  --cream: #fff8ec;
  --white: #ffffff;
  --orange: #f4773a;
  --orange-deep: #c94d16;
  --sun: #ffd84d;
  --blue: #6278ff;
  --blue-deep: #3346cf;
  --mint: #bfe9d1;
  --pink: #ffc5d8;
  --line: #171717;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  --page: 1240px;
  --gutter: clamp(1.15rem, 4vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 4px solid var(--blue); outline-offset: 4px; }

.skip {
  position: fixed;
  z-index: 100;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}
.skip:focus { transform: translateY(0); }
.wrap { width: min(100%, var(--page)); margin-inline: auto; padding-inline: var(--gutter); }

.topbar { border-bottom: 3px solid var(--line); background: var(--cream); }
.topbar-inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo img { width: 182px; height: auto; }
.menu-button {
  display: none;
  width: 64px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  font-weight: 900;
  cursor: pointer;
}
.nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.7rem); }
.nav a { font-size: 0.92rem; font-weight: 800; text-decoration: none; }
.nav a:not(.pill):hover, .nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 4px; text-underline-offset: 7px; }

.pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--orange);
  cursor: pointer;
  transition: transform 130ms ease-out, box-shadow 130ms ease-out, background 130ms ease-out;
}
.pill:hover { background: var(--blue-deep); transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--orange); }
.pill:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--orange); }
.pill-sun { background: var(--sun); color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.pill-sun:hover { background: var(--white); box-shadow: 7px 7px 0 var(--ink); }
.arrow-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 900; text-decoration-thickness: 3px; text-underline-offset: 5px; }
.arrow-link::after { content: "→"; font-size: 1.25em; transition: transform 130ms ease-out; }
.arrow-link:hover::after { transform: translateX(5px); }

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.65rem;
  border: 2px solid var(--ink);
  background: var(--sun);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--display);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-wrap: balance;
}
h1 { margin-bottom: 1.5rem; font-size: clamp(3.25rem, 7.5vw, 7.2rem); }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.4rem, 5.2vw, 5.2rem); }
h3 { margin-bottom: 0.9rem; font-size: clamp(1.45rem, 2.4vw, 2.15rem); line-height: 1.02; }
p, li { text-wrap: pretty; }
.lead { max-width: 700px; margin: 0; font-size: clamp(1.12rem, 1.8vw, 1.4rem); }

.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 7rem); }
.hero::before {
  position: absolute;
  z-index: -1;
  top: -110px;
  left: -90px;
  width: 290px;
  height: 290px;
  border-radius: 48% 52% 63% 37% / 43% 42% 58% 57%;
  background: var(--pink);
  content: "";
  transform: rotate(22deg);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.hero-copy h1 span { position: relative; display: inline-block; color: var(--orange-deep); }
.hero-copy h1 span::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 10px; border-radius: 50%; background: var(--sun); content: ""; transform: rotate(-2deg); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2rem; }
.hero-photo { position: relative; min-height: 620px; }
.hero-photo-main {
  position: absolute;
  inset: 20px 0 38px 40px;
  width: calc(100% - 40px);
  height: calc(100% - 58px);
  border: 4px solid var(--ink);
  border-radius: 32px 32px 140px 32px;
  object-fit: cover;
  box-shadow: 16px 16px 0 var(--blue);
  transform: rotate(2deg);
}
.photo-note {
  position: absolute;
  right: -18px;
  bottom: 8px;
  max-width: 250px;
  padding: 1.2rem;
  border: 3px solid var(--ink);
  background: var(--sun);
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-4deg);
}
.photo-badge {
  position: absolute;
  top: -10px;
  left: 0;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.ticker { overflow: hidden; border-block: 3px solid var(--ink); background: var(--blue); color: var(--white); }
.ticker-track { width: max-content; display: flex; gap: 2.5rem; padding: 0.85rem 0; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; }
.ticker-track span::after { margin-left: 2.5rem; color: var(--sun); content: "✦"; }

.section { padding-block: clamp(5rem, 10vw, 9rem); }
.section-head { max-width: 900px; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-head p:last-child { max-width: 720px; font-size: 1.12rem; }
.yellow-zone { background: var(--sun); }
.blue-zone { background: var(--blue); color: var(--white); }
.mint-zone { background: var(--mint); }
.pink-zone { background: var(--pink); }
.orange-zone { background: var(--orange); }

.pain-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.8rem; }
.pain-card { min-height: 240px; padding: 1.35rem; border: 3px solid var(--ink); background: var(--white); box-shadow: 7px 7px 0 var(--ink); }
.pain-card:nth-child(2n) { transform: rotate(1deg); background: var(--pink); }
.pain-card:nth-child(3n) { transform: rotate(-1deg); background: var(--mint); }
.pain-card b { display: block; margin-bottom: 3.5rem; color: var(--orange-deep); font-size: 0.8rem; }

.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.service-card { min-height: 360px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.5rem, 4vw, 2.8rem); border: 3px solid var(--ink); border-radius: 28px; }
.service-card:nth-child(1) { grid-column: span 7; background: var(--orange); }
.service-card:nth-child(2) { grid-column: span 5; background: var(--mint); }
.service-card:nth-child(3) { grid-column: span 5; background: var(--pink); }
.service-card:nth-child(4) { grid-column: span 7; background: var(--blue); color: var(--white); }
.service-card .tag { margin-bottom: auto; font-size: 0.76rem; font-weight: 900; text-transform: uppercase; }
.service-card p { max-width: 590px; }
.service-card:nth-child(4) .arrow-link { color: var(--white); }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); border: 3px solid var(--ink); background: var(--white); color: var(--ink); }
.step { min-height: 290px; padding: 1.4rem; border-right: 3px solid var(--ink); }
.step:last-child { border-right: 0; }
.step b { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 4rem; border: 2px solid var(--ink); border-radius: 50%; background: var(--sun); }
.step h3 { font-size: 1.25rem; letter-spacing: -0.03em; }
.step p { margin-bottom: 0; font-size: 0.92rem; }

.human-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr); align-items: stretch; gap: clamp(2rem, 6vw, 5rem); }
.human-photo { min-height: 560px; border: 4px solid var(--ink); border-radius: 160px 28px 28px 28px; object-fit: cover; box-shadow: -12px 12px 0 var(--sun); }
.human-media { margin: 0; }
.human-media .human-photo { width: 100%; height: 100%; }
.stock-caption { margin-top: 0.8rem; font-size: 0.76rem; font-weight: 800; }
.human-copy { align-self: center; }
.human-copy p { max-width: 620px; font-size: 1.08rem; }
.quote-pop { margin: 2rem 0; padding: 1.3rem; border: 3px solid var(--ink); background: var(--pink); font-size: 1.2rem; font-weight: 900; box-shadow: 7px 7px 0 var(--ink); transform: rotate(-1deg); }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.audience-card { padding: clamp(2rem, 5vw, 4rem); border: 3px solid var(--ink); border-radius: 34px; background: var(--white); }
.audience-card:nth-child(2) { background: var(--sun); transform: translateY(2rem); }

.page-hero { padding-block: clamp(4rem, 8vw, 7.5rem); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.page-hero h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); }
.page-hero-photo { width: 100%; height: 500px; border: 4px solid var(--ink); border-radius: 28px 120px 28px 28px; object-fit: cover; box-shadow: 12px 12px 0 var(--orange); transform: rotate(2deg); }

.service-row { display: grid; grid-template-columns: 0.38fr 1fr; gap: clamp(2rem, 8vw, 7rem); padding-block: clamp(4rem, 8vw, 7rem); border-top: 3px solid var(--ink); }
.service-row:last-child { border-bottom: 3px solid var(--ink); }
.service-label { align-self: start; display: inline-block; width: fit-content; padding: 0.4rem 0.7rem; border: 2px solid var(--ink); background: var(--sun); font-size: 0.76rem; font-weight: 900; transform: rotate(-2deg); }
.service-body { max-width: 800px; }
.service-body > p { font-size: 1.12rem; }
.list-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.pop-list { margin: 0; padding: 0; list-style: none; }
.pop-list li { position: relative; padding: 0.7rem 0 0.7rem 1.6rem; border-top: 2px solid var(--ink); }
.pop-list li::before { position: absolute; top: 1.12rem; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); content: ""; }
.scope { margin-top: 2rem; padding: 1rem 1.2rem; border: 3px solid var(--ink); background: var(--pink); font-weight: 700; }

.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.story { min-height: 320px; padding: clamp(1.6rem, 4vw, 3rem); border: 3px solid var(--ink); background: var(--white); }
.story:nth-child(2) { background: var(--sun); transform: rotate(1deg); }
.story:nth-child(3) { background: var(--mint); transform: rotate(-1deg); }
.story:nth-child(4) { background: var(--pink); }
.story:nth-child(5) { grid-column: 1 / -1; min-height: auto; background: var(--orange); }
.story b { display: block; margin-bottom: 3.5rem; font-size: 0.75rem; text-transform: uppercase; }

.about-collage { position: relative; min-height: 650px; }
.about-collage .photo-one { position: absolute; inset: 0 18% 12% 0; width: 82%; height: 88%; border: 4px solid var(--ink); border-radius: 28px; object-fit: cover; box-shadow: 13px 13px 0 var(--blue); transform: rotate(-2deg); }
.about-collage .photo-two { position: absolute; right: 0; bottom: 0; width: 45%; height: 48%; border: 4px solid var(--ink); border-radius: 24px; object-fit: cover; box-shadow: 8px 8px 0 var(--sun); transform: rotate(4deg); }
.about-collage .stock-caption { position: absolute; z-index: 2; right: 0; bottom: -2.2rem; padding: 0.3rem 0.55rem; border: 2px solid var(--ink); background: var(--white); transform: rotate(-1deg); }
.credentials { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; border-top: 3px solid var(--ink); list-style: none; }
.credentials li { padding: 1.2rem 1rem 1.2rem 0; border-bottom: 3px solid var(--ink); font-weight: 700; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.contact-form { padding: clamp(1.5rem, 4vw, 3rem); border: 4px solid var(--ink); border-radius: 30px; background: var(--white); box-shadow: 12px 12px 0 var(--blue); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 0.4rem; font-weight: 900; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 0.8rem; border: 3px solid var(--ink); border-radius: 12px; background: var(--cream); }
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; box-shadow: 0 0 0 4px var(--sun); }
.help { margin: 0.35rem 0 0; font-size: 0.83rem; }
.form-note { margin: 1.3rem 0; padding: 1rem; border: 2px solid var(--ink); background: var(--mint); font-size: 0.85rem; }
.status { min-height: 1.5rem; margin: 1rem 0 0; color: var(--orange-deep); font-weight: 900; }
.contact-side { display: grid; gap: 1rem; }
.contact-card { padding: 1.5rem; border: 3px solid var(--ink); background: var(--sun); box-shadow: 7px 7px 0 var(--ink); }
.contact-card:nth-child(2) { background: var(--pink); transform: rotate(1deg); }
.contact-card:nth-child(3) { background: var(--mint); transform: rotate(-1deg); }

.big-cta { padding-block: clamp(4.5rem, 9vw, 8rem); border-block: 3px solid var(--ink); background: var(--orange); }
.big-cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
.big-cta h2 { max-width: 900px; margin-bottom: 0; }

.footer { padding-block: clamp(3rem, 7vw, 5rem); background: var(--blue-deep); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 2px solid rgba(255,255,255,.42); }
.footer-logo { width: 180px; margin-bottom: 1.2rem; }
.footer-copy { max-width: 440px; color: rgba(255,255,255,.8); }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 0.7rem; }
.footer-nav a { font-weight: 800; }
.footer-bottom { display: grid; grid-template-columns: 1.6fr 0.4fr; gap: 2rem; padding-top: 2rem; color: rgba(255,255,255,.68); font-size: 0.8rem; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }

@media (max-width: 980px) {
  .hero-grid, .page-hero-grid, .human-split, .contact-layout { grid-template-columns: 1fr; }
  .hero-photo { max-width: 720px; width: 100%; margin-inline: auto; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-card:last-child { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-bottom: 3px solid var(--ink); }
  .step:nth-child(2n) { border-right: 0; }
  .step:last-child { grid-column: 1 / -1; border-bottom: 0; }
}

@media (max-width: 780px) {
  .topbar-inner { min-height: 76px; }
  .logo img { width: 156px; }
  .menu-button { display: block; }
  .nav { position: fixed; z-index: 50; inset: 76px 0 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem var(--gutter); background: var(--sun); border-top: 3px solid var(--ink); }
  .nav.open { display: flex; }
  .nav a { min-height: 56px; display: flex; align-items: center; border-bottom: 2px solid var(--ink); font-size: 1.15rem; }
  .nav .pill { margin-top: 1rem; border-bottom: 3px solid var(--ink); }
  .hero-photo { min-height: 480px; }
  .hero-photo-main { inset: 18px 10px 30px 16px; width: calc(100% - 26px); height: calc(100% - 48px); border-radius: 26px 26px 90px 26px; }
  .photo-badge { width: 88px; height: 88px; font-size: 0.64rem; }
  .photo-note { right: 0; max-width: 210px; }
  .services-grid, .story-grid, .audience-grid, .form-grid, .list-columns, .credentials, .footer-top, .footer-bottom, .big-cta-grid, .service-row { grid-template-columns: 1fr; }
  .service-card:nth-child(n), .story:nth-child(5) { grid-column: auto; }
  .audience-card:nth-child(2) { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(2n) { min-height: auto; border-right: 0; border-bottom: 3px solid var(--ink); }
  .step:last-child { grid-column: auto; }
  .step b { margin-bottom: 2rem; }
  .service-row { gap: 1.5rem; }
  .about-collage { min-height: 480px; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 480px) {
  h1, .page-hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .pill { width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card:last-child { grid-column: auto; }
  .human-photo { min-height: 430px; border-radius: 90px 24px 24px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
