:root {
  --bg: #050505;
  --bg-soft: #0f0f10;
  --panel: #131314;
  --panel-2: #1b1b1d;
  --text: #f4f0ea;
  --muted: #c8c1b7;
  --muted-2: #9e968b;
  --line: rgba(255,255,255,0.1);
  --accent: #ef7462;
  --accent-dark: #d95f4d;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(0,0,0,0.28);
  --shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 12px 14px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-divided {
  border-top: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,5,0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.brand-text strong,
.site-nav a,
.nav-toggle,
.eyebrow,
.section-kicker,
.case-kicker,
.strength-card h3,
.case-copy h3,
.case-block h4,
.timeline-item h3,
.workflow-panel span,
.hero-note li,
.placeholder-label,
.panel-label,
.button {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.5rem;
  font-weight: 400;
}

.brand-text span {
  color: var(--muted-2);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  text-decoration: none;
  font-size: 1rem;
  color: #ddd7cf;
}

.site-nav a:hover,
.site-footer a:hover,
.contact-cards a:hover,
.hero-meta a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
}

.hero {
  padding-top: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: stretch;
}

.hero-copy,
.hero-panel-inner,
.strength-card,
.placeholder-inner,
.testimonial-card,
.timeline,
.leadership-copy article,
.workflow-panel,
.contact-cards,
.hero-meta {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 38px;
  border-radius: var(--radius);
}

.eyebrow,
.section-kicker,
.case-kicker,
.placeholder-label,
.panel-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 1.02rem;
}

h1, h2, .case-copy h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(4.5rem, 10vw, 8.6rem);
  color: var(--accent);
}

h2 {
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.hero-intro,
.section-intro,
.case-block p,
.case-block li,
.timeline-item p,
.testimonial-card p,
.strength-card p {
  color: var(--muted);
}

.hero-intro {
  margin: 20px 0 0;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 13px 18px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid var(--line);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #111;
  border-color: transparent;
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.hero-meta {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.hero-meta li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.hero-meta li:last-child { border-bottom: 0; }
.hero-meta strong { color: var(--text); font-size: .95rem; }
.hero-meta span { color: var(--muted); }
.hero-meta a { text-decoration: none; }

.hero-panel-inner {
  padding: 30px;
  border-radius: var(--radius);
  min-height: 100%;
}

.logo-grid {
  display: grid;
  gap: 16px;
}

.hero-logos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-logos img,
.experience-logos img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.hero-note {
  margin-top: 34px;
}

.hero-note ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-note li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 18px;
}

.section-intro {
  max-width: 820px;
  margin: 0 0 32px;
}

.strength-grid,
.project-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

.project-grid {
  align-items: start;
}

.strength-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strength-card {
  padding: 26px;
  border-radius: 20px;
}

.strength-index {
  display: inline-block;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.strength-card h3 {
  margin: 0 0 10px;
  font-size: 1.9rem;
  font-weight: 400;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  align-self: start;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.project-card img {
  width: 100%;
  height: auto;
}

.placeholder-card {
  display: flex;
  background: linear-gradient(160deg, rgba(239,116,98,0.2), rgba(255,255,255,0.04));
  border: 1px dashed rgba(239,116,98,0.45);
  min-height: 0;
}

.placeholder-card .placeholder-inner {
  min-height: 220px;
}

.placeholder-inner {
  padding: 26px;
  border-radius: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.placeholder-inner h3 {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
}

.placeholder-inner p {
  margin: 0;
  color: var(--muted);
}

.placeholder-inner span {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: .85rem;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: start;
  padding: 36px 0 0;
}

.case-study + .case-study {
  margin-top: 72px;
}

.case-study.reverse .case-copy { order: 2; }
.case-study.reverse .case-visual { order: 1; }

.case-copy h3 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: 18px;
}

.case-copy h3 span {
  display: block;
  color: var(--muted);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-top: 8px;
}

.case-block + .case-block {
  margin-top: 18px;
}

.case-block h4 {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 400;
}

.case-block p,
.case-block ul {
  margin: 0;
}

.case-block ul {
  padding-left: 18px;
}

.case-visual {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  border: 0;
}

.case-visual img {
  width: 100%;
  height: auto;
  background: transparent;
}

.leadership-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.leadership-copy {
  display: grid;
  gap: 18px;
}

.leadership-copy article {
  padding: 24px;
  border-radius: 20px;
}

.leadership-copy h3 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 2rem;
}

.leadership-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.workflow-panel {
  padding: 24px;
  border-radius: 20px;
  display: grid;
  gap: 12px;
}

.workflow-panel span {
  display: block;
  padding: 18px;
  border-radius: 16px;
  background: var(--panel-2);
  font-size: 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
}

.timeline {
  padding: 8px 0;
  border-radius: 20px;
  overflow: hidden;
}

.timeline-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 0; }

.timeline-year {
  margin: 0;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 2rem;
}

.timeline-item p {
  margin: 0;
}

.experience-logos {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
  margin: 0;
  padding: 26px;
  border-radius: 20px;
}

.testimonial-card p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.testimonial-card footer {
  color: var(--muted-2);
  font-size: .96rem;
}

.contact-section {
  text-align: center;
}

.contact-cards {
  border-radius: 24px;
  padding: 26px;
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-cards a,
.contact-cards span,
.site-footer a {
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--muted-2);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .strength-grid,
  .project-grid,
  .experience-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .case-study,
  .leadership-layout {
    grid-template-columns: 1fr;
  }

  .case-study.reverse .case-copy,
  .case-study.reverse .case-visual {
    order: initial;
  }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 70px; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 8px) 14px auto 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(14,14,15,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav.open { display: flex; }

  .section { padding: 74px 0; }
  .hero { padding-top: 36px; }
  .hero-copy,
  .hero-panel-inner,
  .strength-card,
  .testimonial-card,
  .timeline-item,
  .leadership-copy article,
  .workflow-panel,
  .contact-cards { padding: 20px; }

  .hero-meta li,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .strength-grid,
  .project-grid,
  .testimonial-grid,
  .experience-logos,
  .hero-logos {
    grid-template-columns: 1fr;
  }

  .brand-text span { display: none; }
  .brand-text strong { font-size: 1.35rem; }

  h1 { font-size: clamp(4rem, 18vw, 6rem); }
  h2 { font-size: clamp(2.6rem, 14vw, 4rem); }
  .case-copy h3 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .placeholder-card { min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* Simplified opening screen */
.hero {
  min-height: calc(100vh - 78px);
  padding: 48px 0 34px;
  display: flex;
  align-items: stretch;
}

.hero-simple {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.hero-identity {
  margin: auto 0;
  display: grid;
  justify-items: center;
}

.hero-mark {
  margin-bottom: 20px;
}

.hero-simple h1 {
  font-size: clamp(4.6rem, 11vw, 8.8rem);
  color: var(--accent);
}

.hero-line {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.hero-logos-simple {
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 26px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.hero-logos-simple img {
  max-height: 48px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100vh - 70px);
    padding: 30px 0 24px;
  }

  .hero-simple {
    min-height: calc(100vh - 124px);
  }

  .hero-simple h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .hero-line {
    max-width: 280px;
  }

  .hero-logos-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding-top: 24px;
  }

  .hero-logos-simple img:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 210px;
  }
}


/* v5 refinements */
.hero-logos-simple img,
.experience-logos img {
  justify-self: center;
}

.hero-logos-simple .logo-punt,
.experience-logos .logo-punt {
  width: 145px;
  max-height: none;
}

.leadership-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 44px;
  align-items: center;
}

.leadership-team {
  align-self: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.leadership-team img {
  width: 100%;
  max-width: 525px;
  margin: 0 auto;
  height: auto;
  background: transparent;
}

@media (max-width: 1080px) {
  .leadership-layout {
    grid-template-columns: 1fr;
  }

  .leadership-team {
    max-width: 560px;
    margin: 10px auto 0;
  }
}

@media (max-width: 760px) {
  .hero-logos-simple .logo-punt,
  .experience-logos .logo-punt {
    width: 125px;
  }
}


/* v6 leadership process strip */
.process-strip {
  margin-top: 26px;
}

.process-strip img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1080px) {
  .process-strip {
    margin-top: 18px;
  }
}


/* v7 process labels */
.process-strip {
  margin-top: 26px;
}

.process-title {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.process-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.process-labels {
  position: relative;
  height: 28px;
  margin-top: 10px;
}

.process-labels span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.process-labels span:nth-child(1) { left: 8.1%; }
.process-labels span:nth-child(2) { left: 35.3%; }
.process-labels span:nth-child(3) { left: 63.3%; }
.process-labels span:nth-child(4) { left: 91.9%; }

@media (max-width: 760px) {
  .process-title {
    text-align: center;
  }
  .process-labels {
    height: 24px;
  }
  .process-labels span {
    font-size: 0.92rem;
  }
}

/* v8 mobile logo sizing */
@media (max-width: 760px) {
  .hero-logos-simple img {
    width: 165px;
    max-width: 165px;
    max-height: none;
    height: auto;
    object-fit: contain;
    justify-self: center;
  }

  .hero-logos-simple .logo-punt,
  .hero-logos-simple img:last-child {
    width: 165px;
    max-width: 165px;
  }
}


/* v10 mobile logo alignment */
@media (max-width: 760px) {
  .hero-logos-simple {
    width: 225px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: center;
    gap: 14px;
  }

  .hero-logos-simple img,
  .hero-logos-simple .logo-punt,
  .hero-logos-simple img:last-child {
    justify-self: start;
    max-height: none;
    height: auto;
    object-fit: contain;
    object-position: left center;
  }

  .hero-logos-simple .logo-punt {
    width: 170px;
    max-width: 170px;
  }

  .hero-logos-simple img[alt="Space Ape"] {
    width: 185px;
    max-width: 185px;
  }

  .hero-logos-simple img[alt="Bally's Interactive"] {
    width: 175px;
    max-width: 175px;
  }

  .hero-logos-simple img[alt="Gamesys"] {
    width: 210px;
    max-width: 210px;
  }

  .hero-logos-simple img[alt="Magic Lantern Productions"] {
    width: 165px;
    max-width: 165px;
    grid-column: auto;
  }
}


/* v13 mobile hero logos in one line */
@media (max-width: 760px) {
  .hero-logos-simple {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(5, auto);
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    gap: 8px;
    padding-top: 22px;
  }

  .hero-logos-simple img,
  .hero-logos-simple .logo-punt,
  .hero-logos-simple img:last-child {
    width: auto;
    max-width: none;
    height: 26px;
    max-height: 26px;
    justify-self: center;
    object-fit: contain;
    object-position: center;
    grid-column: auto;
  }

  .hero-logos-simple .logo-punt {
    height: 18px;
    max-height: 18px;
  }

  .hero-logos-simple img[alt="Space Ape"] {
    height: 24px;
    max-height: 24px;
  }

  .hero-logos-simple img[alt="Bally's Interactive"] {
    height: 24px;
    max-height: 24px;
  }

  .hero-logos-simple img[alt="Gamesys"] {
    height: 24px;
    max-height: 24px;
  }

  .hero-logos-simple img[alt="Magic Lantern Productions"] {
    height: 24px;
    max-height: 24px;
  }
}


/* v14 mobile hero logo row: compact, even and contained */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  .hero-logos-simple {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: stretch;
    justify-items: center;
    align-items: center;
    column-gap: 6px;
  }

  .hero-logos-simple img,
  .hero-logos-simple .logo-punt,
  .hero-logos-simple img:last-child,
  .hero-logos-simple img[alt="Space Ape"],
  .hero-logos-simple img[alt="Bally's Interactive"],
  .hero-logos-simple img[alt="Gamesys"],
  .hero-logos-simple img[alt="Magic Lantern Productions"] {
    width: min(100%, 66px);
    max-width: 66px;
    height: auto;
    max-height: 28px;
    justify-self: center;
    object-fit: contain;
    object-position: center;
    grid-column: auto;
  }
}


/* v15 live project captions */
.project-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.project-media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.project-caption {
  padding: 12px 0 4px;
}

.project-caption h3 {
  margin: 0 0 2px;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.025em;
}

.project-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .project-caption {
    padding-top: 10px;
  }

  .project-caption h3 {
    font-size: 1.3rem;
  }

  .project-caption p {
    font-size: 0.82rem;
  }
}


/* v16 restore original card caption treatment */
.project-card {
  background: #d9d9d9;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.project-media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.project-caption {
  min-height: 68px;
  padding: 11px 20px 13px;
  background: #d9d9d9;
  color: #111;
}

.project-caption h3 {
  margin: 0 0 2px;
  color: #111;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.025em;
}

.project-caption p {
  margin: 0;
  color: #444;
  font-size: 0.88rem;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .project-caption {
    min-height: 64px;
    padding: 10px 16px 12px;
  }

  .project-caption h3 {
    font-size: 1.3rem;
  }

  .project-caption p {
    font-size: 0.82rem;
  }
}


/* v17 project card consistency */
.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #d9d9d9;
}

.project-media {
  flex: 0 0 auto;
}

.project-caption {
  height: 88px;
  padding: 11px 20px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #d9d9d9;
}

.project-caption h3 {
  margin: 0 0 4px;
  line-height: 1;
}

.project-caption p {
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .project-card {
    border-radius: 9px;
  }

  .project-caption {
    height: 98px;
    padding: 10px 16px 12px;
  }

  .project-caption h3 {
    font-size: 1.25rem;
  }

  .project-caption p {
    font-size: 0.82rem;
    line-height: 1.35;
  }
}


/* v18 fixed navigation bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

body {
  padding-top: 78px;
}

@media (max-width: 760px) {
  body {
    padding-top: 70px;
  }
}


/* v19 UX and editorial refinements */
.header-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

/* Recent Work acts as navigation without changing the card visual treatment. */
.project-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.project-link:hover,
.project-link:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.project-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Editorial leadership treatment: less dashboard, more portfolio. */
.leadership-copy article {
  background: transparent;
  border: 0;
  border-left: 2px solid var(--accent);
  border-radius: 0;
  box-shadow: none;
  padding: 4px 0 4px 20px;
}

.leadership-copy {
  gap: 30px;
}

.leadership-copy h3 {
  margin-bottom: 8px;
}

/* Keep all four testimonials but make the section visually lighter and quicker to scan. */
.testimonial-card {
  padding: 22px 24px;
  box-shadow: none;
  background: rgba(255,255,255,0.025);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Offset anchor destinations so the fixed header never covers headings. */
#profile,
#recent-work,
#case-studies,
#case-punt,
#case-cvc,
#case-virgin,
#additional-projects,
#experience,
#contact {
  scroll-margin-top: 100px;
}

@media (max-width: 760px) {
  /* Content-driven hero on mobile so the work appears sooner. */
  .hero {
    min-height: auto;
    padding: 36px 0 28px;
  }

  .hero-simple {
    min-height: auto;
    gap: 34px;
  }

  .hero-identity {
    margin: 0;
  }

  .hero-mark {
    margin-bottom: 14px;
  }

  .hero-simple h1 {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .hero-line {
    margin-top: 8px;
  }

  .hero-logos-simple {
    margin-top: 0;
    padding-top: 20px;
  }

  .header-name {
    display: inline-block;
    font-size: 1.15rem;
  }

  .leadership-copy article {
    padding-left: 16px;
  }

  .testimonial-card {
    padding: 18px 20px;
  }

  #profile,
  #recent-work,
  #case-studies,
  #case-punt,
  #case-cvc,
  #case-virgin,
  #additional-projects,
  #experience,
  #contact {
    scroll-margin-top: 88px;
  }
}


/* v21 profile portrait */
.profile-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 34px;
}

.profile-intro-grid .section-intro {
  margin: 0;
  max-width: 650px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.profile-photo {
  overflow: hidden;
  border-radius: 10px;
}

.profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .profile-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .profile-photo {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .profile-intro-grid {
    margin-bottom: 28px;
  }

  .profile-photo {
    border-radius: 8px;
  }

  .profile-photo img {
    aspect-ratio: 1.28 / 1;
    object-position: 58% center;
  }
}


/* v22 smaller profile image on desktop only */
@media (min-width: 901px) {
  .profile-intro-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
  }

  .profile-photo {
    width: 360px;
    justify-self: end;
  }

  .profile-photo img {
    aspect-ratio: 1.42 / 1;
  }
}
