:root {
  --black: #050505;
  --white: #ffffff;
  --paper: #f4f4f0;
  --ink: #111111;
  --gray: #777777;
  --line: #d9d9d4;
  --soft: #eeeeea;
  --shadow: 12px 12px 0 #050505;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  background: var(--black);
  color: var(--white);
  padding: .8rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,0,0,.14) 0 1px, transparent 2px),
    linear-gradient(135deg, transparent 0 44%, rgba(0,0,0,.08) 44% 45%, transparent 45% 100%),
    var(--paper);
  background-size: 18px 18px, 42px 42px, auto;
  border-bottom: 3px solid var(--black);
}

.brand-strip {
  width: 100%;
  margin: 0;
  padding: 0 0 1.25rem;
  display: grid;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.brand-banner {
  width: 100%;
  height: clamp(190px, 30vw, 250px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.brand-logo {
  width: min(100%, 760px);
  max-width: 760px;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

.nav a {
  border: 2px solid var(--black);
  background: var(--white);
  padding: .52rem .72rem;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translate(-3px, -3px);
}

.section-grid,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 8rem);
}

.eyebrow,
.case-kicker,
.sample-label,
.footer-label {
  margin: 0 0 .8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .77rem;
}

.eyebrow {
  display: inline-block;
  border: 2px solid var(--black);
  background: var(--white);
  padding: .35rem .55rem;
}

.inverse {
  border-color: var(--white);
  background: var(--black);
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 1.2rem;
  font-size: clamp(4.2rem, 13vw, 10.5rem);
  line-height: .78;
  letter-spacing: -.095em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: .75rem;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.intro {
  max-width: 70ch;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 700;
}

.intro-manifesto p {
  margin: 0 0 clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.48;
}

.intro-manifesto p:first-child {
  font-size: 1.08em;
}

.intro-manifesto p:first-child::first-letter {
  float: left;
  margin: .08em .16em .03em 0;
  border: 3px solid var(--black);
  background: linear-gradient(145deg, #ff5ab3 0%, #ffd84a 48%, #62e7f2 100%);
  color: var(--black);
  padding: .08em .13em .1em;
  box-shadow: 5px 5px 0 var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5em;
  font-weight: 900;
  line-height: .72;
}

.intro-manifesto p:last-child {
  margin: .25rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.045em;
}

.intro-manifesto.scroll-reveal-ready p {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22, .61, .36, 1);
}

.intro-manifesto.scroll-reveal-ready.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

.intro-manifesto.scroll-reveal-ready.is-visible p:nth-child(2) {
  transition-delay: .1s;
}

.intro-manifesto.scroll-reveal-ready.is-visible p:nth-child(3) {
  transition-delay: .2s;
}

.intro-manifesto.scroll-reveal-ready.is-visible p:nth-child(4) {
  transition-delay: .3s;
}

.intro-manifesto.scroll-reveal-ready.is-visible p:nth-child(5) {
  transition-delay: .4s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--black);
  padding: .9rem 1rem;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .045em;
  box-shadow: 5px 5px 0 var(--black);
  transition: transform .16s ease, box-shadow .16s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--black);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.portrait-panel {
  border: 3px solid var(--black);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem;
  transform: rotate(1.5deg);
}

.portrait-placeholder,
.sample-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 3px dashed var(--black);
  background:
    linear-gradient(45deg, var(--black) 25%, transparent 25%),
    linear-gradient(-45deg, var(--black) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--black) 75%),
    linear-gradient(-45deg, transparent 75%, var(--black) 75%),
    var(--white);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  color: var(--white);
  text-shadow: 2px 2px 0 var(--black), -2px -2px 0 var(--black), 2px -2px 0 var(--black), -2px 2px 0 var(--black);
  font-weight: 950;
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -.05em;
}

.caption {
  margin: .9rem 0 0;
  font-size: .9rem;
  font-weight: 800;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section-dark {
  width: 100%;
  max-width: none;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.09) 25%, transparent 25%) 0 0 / 22px 22px,
    linear-gradient(225deg, rgba(255,255,255,.09) 25%, transparent 25%) 0 0 / 22px 22px,
    var(--black);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.section-dark > * {
  width: min(var(--max), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 72ch;
  font-size: 1.08rem;
  font-weight: 700;
}

.compact {
  margin-bottom: 1.4rem;
}

.feature-case {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: stretch;
  margin-bottom: 2rem;
}

.popout {
  background: var(--white);
  color: var(--black);
  border: 4px solid var(--white);
  box-shadow: 14px 14px 0 rgba(255,255,255,.2);
}

.case-image {
  background: var(--black);
  min-height: 100%;
}

.case-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.case-copy {
  padding: clamp(1.2rem, 3vw, 2.4rem);
}

.case-copy p {
  font-weight: 700;
}

.case-copy .case-subhead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
  margin-top: -.35rem;
}

.result-line {
  border-left: 6px solid var(--black);
  padding-left: 1rem;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.2rem 0 0;
  padding: 0;
}

.tag-list li {
  border: 2px solid var(--black);
  padding: .42rem .55rem;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.campaign-grid,
.focus-grid,
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.campaign-card,
.focus-card,
.skill-block {
  border: 3px solid currentColor;
  padding: 1rem;
  background: var(--white);
  color: var(--black);
  transition: transform .18s ease, box-shadow .18s ease;
}

.campaign-card:hover,
.focus-card:hover,
.skill-block:hover {
  transform: translate(-6px, -6px);
  box-shadow: 8px 8px 0 currentColor;
}

.campaign-card .sample-placeholder {
  min-height: 205px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  background-size: 18px 18px;
}

.campaign-card p,
.focus-card p,
.skill-block p {
  font-weight: 700;
}

.campaign-card .campaign-headline {
  margin-bottom: .35rem;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: .95;
  text-transform: uppercase;
}

.campaign-card .campaign-subhead {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.15;
}

.renee-case-preview {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 205px;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 3px solid var(--black);
  background:
    radial-gradient(circle at 22% 24%, rgba(255,255,255,.38) 0 3%, transparent 3.5%),
    linear-gradient(135deg, #ff2f92, #ff8fc6);
  color: var(--black);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
  line-height: .9;
  letter-spacing: -.06em;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease;
}

.renee-case-preview small {
  position: absolute;
  right: .7rem;
  bottom: .65rem;
  font-size: .65rem;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.renee-case-preview:hover,
.renee-case-preview:focus-visible {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0 var(--black);
}

.selected-list {
  border-bottom: 3px solid var(--black);
}

.ticker-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.ticker-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: .5rem .65rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.focus-section {
  background:
    linear-gradient(90deg, transparent 0 49%, var(--black) 49% 50%, transparent 50% 100%) 0 0 / 52px 52px,
    var(--paper);
}

.focus-card {
  min-height: 285px;
}

.pattern-card {
  color: var(--white);
  background:
    repeating-linear-gradient(-45deg, var(--black) 0 12px, #282828 12px 24px);
}

.wide-card {
  grid-column: span 2;
  color: var(--white);
  background: var(--black);
}

.sample-label {
  color: inherit;
  opacity: .78;
}

.skills-section .skills-grid {
  color: var(--white);
}

.skill-block {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
}

.skill-block:hover {
  box-shadow: 8px 8px 0 var(--white);
}

.final-cta {
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.final-cta h2 {
  max-width: 980px;
}

.site-footer {
  padding: 3rem 0 4rem;
}

.footer-logo-wrap {
  border: 3px solid var(--black);
  background: var(--white);
  padding: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-wrap img {
  width: min(420px, 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  border: 3px solid var(--black);
  background: var(--black);
  color: var(--white);
  padding: clamp(1rem, 4vw, 2rem);
}

.contact-grid h2 {
  margin-bottom: 0;
}

address {
  font-style: normal;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

address a {
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

@media (max-width: 1020px) {
  .hero,
  .feature-case,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .brand-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3.5rem, 20vw, 5.7rem);
  }

  .campaign-grid,
  .focus-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .portrait-placeholder {
    min-height: 300px;
  }
}

/* Highlights section — corrected to the supplied full-screen mockup */
.victory-stories {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: #fff;
}

.victory-stories-stage {
  width: min(1180px, 100%);
  padding: 0;
}

.victory-stories-frame {
  width: 100%;
  max-width: none;
  border: 4px solid var(--black);
  background: var(--black);
}

.victory-stories-heading {
  height: clamp(86px, 9vw, 118px);
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--black);
}

.victory-stories-heading img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.victory-feature {
  grid-template-columns: minmax(0, 1fr) minmax(290px, .8fr);
  min-height: 0;
  border-block: 4px solid var(--black);
  background: #fff;
}

.victory-feature .case-image {
  aspect-ratio: 1 / 1;
  border-right: 4px solid var(--black);
}

.victory-feature .case-study-trigger,
.victory-feature .case-study-trigger img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.victory-feature .case-study-trigger img {
  display: block;
  object-fit: cover;
}

.victory-feature .case-study-trigger-label {
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
}

.victory-feature .case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.victory-feature .case-copy .case-subhead {
  margin: 0 0 1rem;
  font-size: clamp(.78rem, 1.2vw, 1rem);
  line-height: 1.15;
}

.victory-feature .case-copy > p:last-of-type {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.18;
}

.victory-slider-shell {
  --victory-gap: clamp(1rem, 2vw, 1.75rem);
  grid-template-columns: clamp(44px, 5vw, 66px) minmax(0, 1fr) clamp(44px, 5vw, 66px);
  align-items: stretch;
  background: var(--black);
}

.victory-slider-viewport {
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.6rem) 0;
  border: 0;
}

.campaign-grid.victory-slider-track {
  display: flex;
  gap: var(--victory-gap);
  width: 100%;
  background: transparent;
  transition: transform .42s cubic-bezier(.22, .61, .36, 1);
}

.victory-slide {
  flex: 0 0 calc((100% - (2 * var(--victory-gap))) / 3);
  min-width: 0;
  min-height: 0;
  padding: clamp(.8rem, 1.4vw, 1.1rem);
  border: 0;
  background: #fff;
}

.victory-circle,
.victory-circle-button {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  border: 3px solid var(--black);
  border-radius: 50%;
  overflow: hidden;
  background: var(--black);
  transition: transform .24s ease, border-radius .24s ease, box-shadow .24s ease;
}

.victory-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.victory-circle span {
  display: none;
}

.victory-circle:hover,
.victory-circle:focus-visible,
.victory-slide:focus-within .victory-circle {
  width: 100%;
  border-radius: 14px;
  transform: scale(1.035);
  box-shadow: 7px 7px 0 var(--accent);
}

.victory-slide h3,
.victory-slide .campaign-headline {
  margin: 1rem 0 .55rem;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: .92;
}

.victory-slide > p:last-of-type {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: clamp(.72rem, 1vw, .9rem);
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.victory-slider-arrow {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--black);
  color: var(--accent);
  font-size: clamp(3rem, 6vw, 5rem);
}

.victory-slider-arrow:disabled {
  opacity: .28;
}

.victory-slider-dots {
  min-height: 34px;
  padding: .65rem 1rem .85rem;
  background: var(--black);
}

@media (max-width: 880px) {
  .victory-slide {
    flex-basis: calc((100% - var(--victory-gap)) / 2);
  }
}

@media (max-width: 680px) {
  .victory-stories {
    min-height: 100svh;
    padding: 1.25rem .75rem;
  }

  .victory-feature {
    grid-template-columns: 1fr;
  }

  .victory-feature .case-image {
    border-right: 0;
    border-bottom: 4px solid var(--black);
  }

  .victory-feature .case-study-trigger,
  .victory-feature .case-study-trigger img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .victory-slide {
    flex-basis: 100%;
  }
}


.candidate-table-wrap {
  overflow-x: auto;
  border: 3px solid var(--black);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--black);
}

.candidate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  background: var(--white);
}

.candidate-table th,
.candidate-table td {
  border: 2px solid var(--black);
  padding: .65rem .75rem;
  text-align: left;
  vertical-align: top;
  font-size: .9rem;
  font-weight: 800;
}

.candidate-table th {
  background: var(--black);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

.candidate-table tbody tr:nth-child(even) {
  background: var(--soft);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  border: 2px solid var(--black);
  padding: .2rem .4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .72rem;
  font-weight: 950;
  white-space: nowrap;
}

.status-pill.won {
  background: var(--black);
  color: var(--white);
}

.status-pill.lost {
  background: var(--white);
  color: var(--black);
}


/* Campaign image sliders */
.image-slider {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 3px solid var(--black);
  background: var(--black);
  aspect-ratio: 4 / 3;
}
.feature-slider {
  height: 100%;
  margin-bottom: 0;
  border: 0;
  aspect-ratio: auto;
  min-height: 420px;
}
.slider-track,
.slider-track img {
  width: 100%;
  height: 100%;
}
.slider-track img {
  display: block;
  object-fit: contain;
  background: var(--black);
}
.slider-track img[hidden] { display: none; }
.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  font: 950 2rem/1 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
}
.slider-button:hover,
.slider-button:focus-visible {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
}
.slider-prev { left: .65rem; }
.slider-next { right: .65rem; }
.slider-count {
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  z-index: 2;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  padding: .3rem .5rem;
  font-size: .72rem;
  font-weight: 950;
}
.text-only-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 760px) {
  .feature-slider { min-height: 300px; }
}

/* 2026 portfolio expansion */
.portrait-image.hero-gif{display:block;width:100%;aspect-ratio:1/1;object-fit:cover;border:3px solid var(--black)}
.albums-section{padding-top:clamp(4rem,8vw,7rem);background:var(--paper)}
.album-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.album-card{position:relative;display:block;aspect-ratio:1/1;padding:0;border:3px solid var(--black);box-shadow:6px 6px 0 var(--black);text-decoration:none;overflow:hidden;transition:transform .18s ease,box-shadow .18s ease}
.album-card:hover,.album-card:focus-visible{transform:translate(-3px,-3px);box-shadow:9px 9px 0 var(--black)}
.album-cover-image{display:block;width:100%;height:100%;object-fit:cover}
.album-card-placeholder{background:#47d6a1}
.album-coral{background:#ff6f61}.album-violet{background:#a78bfa}.album-lime{background:#b8f34a}.album-sky{background:#62c9ff}.album-yellow{background:#ffd84d}.album-pink{background:#ff82c8}.album-blue{background:#5f7cff;color:#fff}.album-orange{background:#ff9d3c}.album-green{background:#47d6a1}
.products-section{padding-top:clamp(4rem,8vw,7rem)}
.product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.product-card{background:var(--white);border:3px solid var(--black);box-shadow:6px 6px 0 var(--black);transition:transform .18s ease,box-shadow .18s ease}
.product-card:hover{transform:translate(-3px,-3px);box-shadow:9px 9px 0 var(--black)}
.product-card summary{cursor:pointer;list-style:none;padding:1rem 3rem 1rem 1rem;font-size:1.18rem;font-weight:950;text-transform:uppercase;letter-spacing:-.025em;position:relative}
.product-card summary::-webkit-details-marker{display:none}
.product-card summary::after{content:'+';position:absolute;right:1rem;top:.65rem;font-size:1.8rem}
.product-card[open] summary::after{content:'−'}
.product-card[open] summary{background:var(--black);color:var(--white)}
.product-card ul{columns:1;margin:0;padding:1rem 1.25rem 1.25rem 2.1rem;font-weight:700}
.product-card li{margin:.38rem 0;break-inside:avoid}
.tech-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.tech-card{border:3px solid var(--white);padding:1.25rem;background:rgba(255,255,255,.05)}
.skill-chips{display:flex;flex-wrap:wrap;gap:.55rem}
.skill-chips span{display:inline-block;border:2px solid var(--white);padding:.42rem .58rem;background:var(--white);color:var(--black);font-weight:900;text-transform:uppercase;font-size:.78rem;box-shadow:3px 3px 0 rgba(255,255,255,.25)}
.georgia-visual{min-height:250px;display:grid;place-items:center;text-align:center;white-space:pre-line;padding:2rem;background:linear-gradient(135deg,#f8f8f3 0 48%,#111 48% 52%,#f8f8f3 52%);border:3px solid var(--black);font-weight:950;font-size:clamp(1.6rem,4vw,3rem);line-height:.9;letter-spacing:-.05em;color:var(--black)}
.contact-grid address{font-style:normal;font-weight:800;font-size:1.05rem;line-height:1.75}
@media (max-width:900px){.album-grid,.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.tech-grid{grid-template-columns:1fr}}
@media (max-width:620px){.album-grid,.product-grid{grid-template-columns:1fr}.hero-actions .button{flex:1 1 45%}}

@media (prefers-reduced-motion:reduce){.album-card{transition:none}}

@media (prefers-reduced-motion: reduce) {
  .intro-manifesto p {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Responsive hero refinements */
.portrait-panel-mobile {
  display: none;
}

@media (max-width: 680px) {
  .brand-strip {
    align-items: center;
  }

  .brand-logo {
    display: block;
    margin-inline: auto;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .portrait-panel-desktop {
    display: none;
  }

  .portrait-panel-mobile {
    display: block;
    width: min(100%, 420px);
    margin: 1.5rem auto 0;
  }

  .hero-actions {
    justify-content: center;
  }
}


/* About Me */
.about-section {
  border-top: 3px solid var(--black);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(0,0,0,.05) 48% 52%, transparent 52% 100%) 0 0 / 42px 42px,
    var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.about-heading {
  position: sticky;
  top: 1.25rem;
  margin-bottom: 0;
}

.about-heading h2 {
  max-width: 9ch;
}

.about-copy {
  border: 3px solid var(--black);
  background: var(--white);
  padding: clamp(1.4rem, 4vw, 2.6rem);
  box-shadow: 10px 10px 0 var(--black);
}

.about-copy p {
  max-width: 72ch;
  margin-bottom: 1.25rem;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 700;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

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

  .about-heading {
    position: static;
  }

  .about-heading h2 {
    max-width: none;
  }
}

/* Featured campaign case-study window */
.case-image {
  position: relative;
  overflow: hidden;
}

.case-study-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.case-study-trigger img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.case-study-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.84) 100%);
  pointer-events: none;
}

.case-study-trigger:hover img,
.case-study-trigger:focus-visible img {
  transform: scale(1.035);
  filter: contrast(1.06);
}

.case-study-trigger:focus-visible {
  outline: 5px solid var(--white);
  outline-offset: -8px;
}

.case-study-trigger-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 2px solid var(--white);
  background: rgba(5,5,5,.88);
  padding: .8rem .9rem;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.case-study-trigger-label b {
  font-size: 1.25rem;
  line-height: 1;
}

.case-study-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .5rem;
  border: 3px solid var(--black);
  background: var(--black);
  color: var(--white);
  padding: .8rem .95rem;
  font: 950 .78rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: .055em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 5px 5px 0 #b7b7b1;
  transition: transform .16s ease, box-shadow .16s ease;
}

.case-study-text-button:hover,
.case-study-text-button:focus-visible {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 #b7b7b1;
}

body.case-study-open {
  overflow: hidden;
}

.case-study-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #18130c;
  overflow: hidden;
}

.case-study-dialog::backdrop {
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(7px);
}

.case-study-shell {
  width: min(1440px, 100%);
  height: 100dvh;
  margin-inline: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #f4eddb;
  box-shadow: 0 0 70px rgba(0,0,0,.55);
  scroll-behavior: smooth;
}

.case-study-toolbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  border-bottom: 2px solid #d3ad58;
  background: rgba(20,16,10,.97);
  color: #fff8e8;
  padding: .8rem clamp(1rem, 4vw, 2.75rem);
  backdrop-filter: blur(14px);
}

.case-study-toolbar > div {
  display: grid;
  gap: .15rem;
}

.case-study-toolbar span,
.case-study-toolbar strong {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.case-study-toolbar span {
  color: #d9b562;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .14em;
}

.case-study-toolbar strong {
  font-size: .82rem;
  letter-spacing: .04em;
}

.case-study-close,
.case-study-footer button {
  border: 2px solid #fff8e8;
  background: transparent;
  color: #fff8e8;
  padding: .62rem .75rem;
  font: 900 .74rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.case-study-close b {
  display: inline-block;
  margin-left: .5rem;
  font-size: 1.1rem;
  line-height: .6;
}

.case-study-close:hover,
.case-study-close:focus-visible,
.case-study-footer button:hover,
.case-study-footer button:focus-visible {
  background: #fff8e8;
  color: #171109;
}

.case-study-article {
  font-family: Georgia, 'Times New Roman', serif;
  background: #f4eddb;
}

.case-study-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100dvh - 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(217,181,98,.18) 0 1px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(135deg, transparent 0 48%, rgba(217,181,98,.07) 48% 52%, transparent 52% 100%) 0 0 / 48px 48px,
    #171109;
  color: #fff8e8;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6.5rem);
}

.case-study-hero-copy {
  position: relative;
  z-index: 2;
}

.case-study-overline,
.case-study-number {
  margin: 0 0 1rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #d9b562;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.case-study-hero h2 {
  max-width: 8ch;
  margin: 0 0 1.5rem;
  color: #fff8e8;
  font-size: clamp(4.8rem, 11vw, 10.2rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.075em;
  text-transform: none;
}

.case-study-hero h2 em {
  color: #d9b562;
  font-weight: 400;
}

.case-study-dek {
  max-width: 670px;
  margin-bottom: 2.25rem;
  color: #efe3c9;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1.35;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 680px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.case-study-meta div {
  border-top: 1px solid rgba(255,248,232,.4);
  padding-top: .7rem;
}

.case-study-meta dt {
  margin-bottom: .2rem;
  color: #d9b562;
  font-size: .65rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-study-meta dd {
  margin: 0;
  color: #fff8e8;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}

.case-study-hero-media {
  position: relative;
  min-height: 650px;
}

.case-study-hero-media::before,
.case-study-hero-media::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(217,181,98,.45);
  border-radius: 50%;
  pointer-events: none;
}

.case-study-hero-media::before {
  width: 82%;
  aspect-ratio: 1;
  right: -8%;
  top: 4%;
}

.case-study-hero-media::after {
  width: 58%;
  aspect-ratio: 1;
  left: -10%;
  bottom: -5%;
}

.case-study-portrait {
  position: absolute;
  z-index: 1;
  width: min(76%, 470px);
  right: 6%;
  top: 0;
  transform: rotate(1.5deg);
}

.case-study-coin {
  position: absolute;
  z-index: 3;
  width: min(53%, 330px);
  left: 0;
  bottom: 0;
  transform: rotate(-3deg);
}

.case-study-figure {
  margin: 0;
  border: 1px solid rgba(37,28,15,.24);
  background: #fffaf0;
  padding: .55rem;
  box-shadow: 10px 12px 0 rgba(69,49,18,.12);
}

.case-study-figure img {
  width: 100%;
  height: auto;
  background: #e8dfcb;
}

.case-study-figure figcaption {
  margin: .55rem .25rem .15rem;
  color: #4f422e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.35;
}

.case-study-hero .case-study-figure {
  border-color: rgba(217,181,98,.72);
  background: #1d170e;
  box-shadow: 16px 16px 0 rgba(217,181,98,.13);
}

.case-study-hero .case-study-figure figcaption {
  color: #e7d7b3;
}

.case-study-chapters {
  position: sticky;
  top: 70px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #d6b565;
  border-bottom: 1px solid #d6b565;
  background: rgba(250,245,231,.96);
  backdrop-filter: blur(12px);
}

.case-study-chapters a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 54px;
  border-right: 1px solid #d6b565;
  color: #2b2114;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.case-study-chapters a:last-child {
  border-right: 0;
}

.case-study-chapters a span {
  color: #9a762c;
}

.case-study-chapters a:hover,
.case-study-chapters a:focus-visible {
  background: #181109;
  color: #fff8e8;
}

.case-study-result-ribbon,
.case-study-endmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.7rem, 2vw, 2rem);
  background: #d8b45e;
  color: #21170b;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(.72rem, 1.4vw, .95rem);
  font-weight: 900;
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
}

.case-study-result-ribbon i,
.case-study-endmark i {
  width: min(80px, 8vw);
  height: 2px;
  background: currentColor;
}

.case-study-chapter {
  scroll-margin-top: 126px;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6.5rem);
}

.case-study-copy {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1.28fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.case-study-copy .case-study-number {
  grid-column: 1;
  margin-bottom: 0;
}

.case-study-copy h3 {
  grid-column: 1;
  margin: 0;
  color: inherit;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5.7vw, 5.4rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: none;
}

.case-study-copy > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.case-study-light {
  background: #f8f3e7;
}

.case-study-dark {
  background: #181109;
  color: #fff8e8;
}

.case-study-dark .case-study-number,
.case-study-final .case-study-number {
  color: #d9b562;
}

.case-study-dark .case-study-figure {
  border-color: rgba(217,181,98,.48);
  background: #251b10;
  box-shadow: 10px 12px 0 rgba(217,181,98,.12);
}

.case-study-dark .case-study-figure figcaption {
  color: #e4d5b6;
}

.case-study-gold {
  background:
    linear-gradient(135deg, rgba(255,255,255,.12) 0 20%, transparent 20% 80%, rgba(67,42,5,.08) 80%),
    #d7b35d;
  color: #1e150a;
}

.case-study-gold .case-study-number {
  color: #503707;
}

.case-study-cream {
  background: #eee2c8;
}

.case-study-final {
  background:
    radial-gradient(circle at 20% 20%, rgba(217,181,98,.12) 0 1px, transparent 2px) 0 0 / 20px 20px,
    #20170d;
  color: #fff8e8;
}

.case-study-final .case-study-figure {
  border-color: rgba(217,181,98,.5);
  background: #2a1f12;
  box-shadow: 10px 12px 0 rgba(217,181,98,.12);
}

.case-study-final .case-study-figure figcaption {
  color: #e6d7b8;
}

.case-study-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: start;
}

.case-study-gallery .case-study-figure {
  grid-column: span 6;
}

.case-study-gallery .case-study-wide {
  grid-column: 1 / -1;
}

.case-study-gallery-roots .case-study-figure:last-child {
  grid-column: 3 / span 8;
}

.case-study-gallery-field .case-study-figure:not(.case-study-wide) {
  grid-column: span 4;
}

.case-study-gallery-brand .case-study-figure:first-child {
  grid-column: span 7;
}

.case-study-gallery-brand .case-study-figure:nth-child(2) {
  grid-column: span 5;
}

.case-study-gallery-single .case-study-figure {
  grid-column: 2 / span 10;
}

.case-study-gallery-final .case-study-figure:nth-child(2),
.case-study-gallery-final .case-study-figure:nth-child(3) {
  grid-column: span 6;
}

.case-study-gallery-final .case-study-figure:nth-child(5) {
  grid-column: 2 / span 5;
}

.case-study-gallery-final .case-study-figure:nth-child(6) {
  grid-column: 7 / span 4;
}

.case-study-quote {
  max-width: 1050px;
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  border-top: 2px solid rgba(40,25,2,.55);
  border-bottom: 2px solid rgba(40,25,2,.55);
  padding: clamp(2rem, 5vw, 4rem) 0;
  color: #251804;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  font-style: italic;
  line-height: 1.02;
  text-align: center;
}

.case-study-endmark {
  margin-top: clamp(3rem, 7vw, 6rem);
  border: 1px solid #d8b45e;
  background: transparent;
  color: #d8b45e;
}

.case-study-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #100c07;
  color: #fff8e8;
  padding: 2rem clamp(1.25rem, 6vw, 6.5rem);
  font-family: Arial, Helvetica, sans-serif;
}

.case-study-footer p {
  margin: 0;
  font-size: .82rem;
}

.case-study-footer button {
  border-color: #d9b562;
  color: #d9b562;
}

.case-study-footer-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.case-study-footer-actions a {
  color: #d9b562;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Renee Rodriguez-Betancourt case study: pink campaign palette */
.renee-case-study {
  color: #251019;
}

.renee-case-study .case-study-shell,
.renee-case-study .case-study-article {
  background: #fff1f7;
}

.renee-case-study .case-study-toolbar {
  border-bottom-color: #ff5fa8;
  background: rgba(31, 9, 20, .98);
  color: #fff3f8;
}

.renee-case-study .case-study-toolbar span,
.renee-case-study .case-study-overline,
.renee-case-study .case-study-hero h2 em,
.renee-case-study .case-study-meta dt {
  color: #ff77b6;
}

.renee-case-study .case-study-hero {
  background:
    radial-gradient(circle at 14% 20%, rgba(255,95,168,.23) 0 1px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(135deg, transparent 0 48%, rgba(255,95,168,.08) 48% 52%, transparent 52% 100%) 0 0 / 48px 48px,
    #1f0914;
  color: #fff3f8;
}

.renee-case-study .case-study-hero h2,
.renee-case-study .case-study-meta dd {
  color: #fff3f8;
}

.renee-case-study .case-study-dek {
  color: #f6dce8;
}

.renee-case-study .case-study-meta div {
  border-top-color: rgba(255,243,248,.4);
}

.renee-case-study .case-study-hero-media::before,
.renee-case-study .case-study-hero-media::after {
  border-color: rgba(255,95,168,.55);
}

.renee-case-study .case-study-hero .case-study-figure {
  border-color: rgba(255,95,168,.78);
  background: #2b0e1d;
  box-shadow: 16px 16px 0 rgba(255,95,168,.16);
}

.renee-case-study .case-study-hero .case-study-figure figcaption {
  color: #f5cede;
}

.renee-case-study .case-study-chapters {
  border-color: #ff83ba;
  background: rgba(255,241,247,.97);
}

.renee-case-study .case-study-chapters a {
  border-right-color: #ff83ba;
  color: #391322;
}

.renee-case-study .case-study-chapters a span {
  color: #c71d68;
}

.renee-case-study .case-study-chapters a:hover,
.renee-case-study .case-study-chapters a:focus-visible {
  background: #2a0b19;
  color: #fff3f8;
}

.renee-case-study .case-study-result-ribbon {
  background: #ff65aa;
  color: #270914;
}

.renee-case-study .case-study-light {
  background: #fff7fa;
}

.renee-case-study .case-study-dark {
  background: #240b18;
  color: #fff3f8;
}

.renee-case-study .case-study-dark .case-study-number,
.renee-case-study .case-study-final .case-study-number {
  color: #ff77b6;
}

.renee-case-study .case-study-dark .case-study-figure,
.renee-case-study .case-study-final .case-study-figure {
  border-color: rgba(255,95,168,.52);
  background: #351020;
  box-shadow: 10px 12px 0 rgba(255,95,168,.14);
}

.renee-case-study .case-study-dark .case-study-figure figcaption,
.renee-case-study .case-study-final .case-study-figure figcaption {
  color: #f2cada;
}

.renee-case-study .case-study-gold {
  background:
    linear-gradient(135deg, rgba(255,255,255,.15) 0 20%, transparent 20% 80%, rgba(82,0,35,.08) 80%),
    #ff7db7;
  color: #280915;
}

.renee-case-study .case-study-gold .case-study-number {
  color: #68102f;
}

.renee-case-study .case-study-cream {
  background: #f8dce8;
}

.renee-case-study .case-study-final {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,95,168,.16) 0 1px, transparent 2px) 0 0 / 20px 20px,
    #260b19;
  color: #fff3f8;
}

.renee-case-study .case-study-endmark {
  border-color: #ff70b1;
  color: #ff8fc1;
}

.renee-case-study .case-study-footer {
  background: #170710;
  color: #fff3f8;
}

.renee-case-study .case-study-footer button {
  border-color: #ff77b6;
  color: #ff77b6;
}

.renee-case-study .case-study-footer-actions a {
  color: #ff8fc1;
}

.renee-video-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  border: 2px solid #5a1835;
  background: #fff5f9;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.renee-video-panel h4 {
  max-width: 700px;
  margin: 0;
  color: #2a0a18;
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.02;
}

.renee-video-panel a {
  flex: 0 0 auto;
  border: 2px solid #2a0a18;
  background: #ff65aa;
  color: #250713;
  padding: .9rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .case-study-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-study-hero-media {
    min-height: 690px;
  }

  .case-study-portrait {
    right: 10%;
  }

  .case-study-coin {
    left: 10%;
  }

  .case-study-copy {
    grid-template-columns: 1fr;
  }

  .case-study-copy .case-study-number,
  .case-study-copy h3,
  .case-study-copy > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .case-study-copy > p:last-child {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .case-study-trigger,
  .case-study-trigger img {
    min-height: 320px;
  }

  .case-study-toolbar {
    min-height: 62px;
  }

  .case-study-toolbar span {
    display: none;
  }

  .case-study-toolbar strong {
    font-size: .7rem;
  }

  .case-study-close {
    padding: .55rem .62rem;
    font-size: .68rem;
  }

  .case-study-hero {
    padding-top: 3.4rem;
  }

  .case-study-hero h2 {
    font-size: clamp(4.1rem, 23vw, 7rem);
  }

  .case-study-meta {
    grid-template-columns: 1fr;
  }

  .case-study-hero-media {
    min-height: 510px;
  }

  .case-study-portrait {
    width: 74%;
    right: 1%;
  }

  .case-study-coin {
    width: 55%;
    left: 0;
  }

  .case-study-chapters {
    top: 62px;
    grid-template-columns: repeat(5, minmax(50px, 1fr));
    overflow-x: auto;
  }

  .case-study-chapters a {
    min-width: 62px;
    min-height: 46px;
    padding: .3rem;
    font-size: .6rem;
  }

  .case-study-chapters a span {
    display: none;
  }

  .case-study-result-ribbon,
  .case-study-endmark {
    flex-wrap: wrap;
  }

  .case-study-result-ribbon i,
  .case-study-endmark i {
    display: none;
  }

  .case-study-chapter {
    scroll-margin-top: 108px;
  }

  .case-study-gallery .case-study-figure,
  .case-study-gallery .case-study-wide,
  .case-study-gallery-roots .case-study-figure:last-child,
  .case-study-gallery-field .case-study-figure:not(.case-study-wide),
  .case-study-gallery-brand .case-study-figure:first-child,
  .case-study-gallery-brand .case-study-figure:nth-child(2),
  .case-study-gallery-single .case-study-figure,
  .case-study-gallery-final .case-study-figure:nth-child(2),
  .case-study-gallery-final .case-study-figure:nth-child(3),
  .case-study-gallery-final .case-study-figure:nth-child(5),
  .case-study-gallery-final .case-study-figure:nth-child(6) {
    grid-column: 1 / -1;
  }

  .case-study-quote {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .case-study-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-study-footer-actions,
  .renee-video-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-study-trigger img,
  .case-study-shell {
    scroll-behavior: auto;
    transition: none;
  }
}

/* Keep the portrait credit readable beneath the overlapping coin artwork. */
.case-study-portrait figcaption {
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  z-index: 5;
  max-width: 58%;
  margin: 0;
  padding: .5rem .55rem;
  background: rgba(20,15,8,.9);
  color: #fff1cf;
}
.case-study-portrait figcaption { max-width: 48%; }

/* Stickers Lightroom lightbox */
.sticker-lightbox-trigger {
  position: relative;
  min-height: 190px;
  padding: 1.1rem;
  overflow: hidden;
  border: 3px solid var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .28);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}


.sticker-tile-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sticker-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,.88) 100%);
}

.sticker-lightbox-trigger:hover,
.sticker-lightbox-trigger:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
  background: var(--white);
  color: var(--black);
  outline: 0;
}

.sticker-tile-title {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 7ch;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  font-weight: 950;
  line-height: .86;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.sticker-tile-meta {
  position: absolute;
  z-index: 2;
  left: 1.1rem;
  bottom: 1rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sticker-tile-arrow {
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: .65rem;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.sticker-lightbox {
  width: min(96vw, 1500px);
  max-width: none;
  height: min(92vh, 1000px);
  max-height: none;
  margin: auto;
  padding: 0;
  border: 3px solid var(--white);
  background: #111;
  color: var(--white);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, .7);
}

.sticker-lightbox::backdrop {
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(6px);
}

.sticker-lightbox-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  height: 100%;
}

.sticker-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  padding: .8rem 1rem;
  border-bottom: 3px solid var(--white);
  background: var(--black);
}

.sticker-lightbox-toolbar h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.sticker-lightbox-close {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 2px solid var(--white);
  padding: .55rem .7rem;
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.sticker-lightbox-close span {
  font-size: 1.35rem;
  line-height: .7;
}

.sticker-lightbox-close:hover,
.sticker-lightbox-close:focus-visible {
  background: var(--white);
  color: var(--black);
  outline: 0;
}

.sticker-lightbox-frame {
  min-height: 0;
  padding: 1rem;
  background: #2d2d2d;
}

.sticker-lightbox-frame .lr_embed {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #2d2d2d;
}

.sticker-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.sticker-lightbox-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .sticker-lightbox-trigger {
    min-height: 165px;
  }

  .sticker-lightbox {
    width: 100vw;
    height: 100dvh;
    border: 0;
  }

  .sticker-lightbox-toolbar {
    min-height: 62px;
    border-bottom-width: 2px;
  }

  .sticker-lightbox-frame {
    padding: 0;
  }
}

/* Victory Stories — campaign highlights redesign */
.victory-stories {
  overflow: hidden;
  border-bottom: 3px solid var(--black);
  background: #fff;
  color: var(--black);
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.victory-stories-frame {
  width: min(1120px, 100%);
  margin-inline: auto;
  border: 4px solid var(--black);
  background: var(--black);
  box-shadow: 14px 14px 0 #ffd400;
}

.victory-stories-heading {
  background: var(--black);
  color: var(--white);
  padding: clamp(1rem, 2.3vw, 1.55rem) clamp(1rem, 3vw, 2rem);
}

.victory-stories-heading h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  font-weight: 950;
  line-height: .84;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.victory-feature {
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
  gap: 0;
  margin: 0;
  border: 0;
  border-top: 4px solid var(--white);
  border-bottom: 4px solid var(--black);
  background: var(--white);
  color: var(--black);
}

.victory-feature .case-image {
  border-right: 4px solid var(--black);
}

.victory-feature .case-study-trigger,
.victory-feature .case-study-trigger img {
  min-height: 390px;
}

.victory-feature .case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 4vw, 3.3rem);
}

.victory-feature .case-copy h3 {
  margin: 0 0 .75rem;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  line-height: .72;
  letter-spacing: -.07em;
}

.victory-feature .case-copy h3 span {
  color: #ffd400;
}

.victory-feature .case-copy .case-subhead {
  margin-top: .35rem;
  font-size: clamp(.78rem, 1.25vw, 1rem);
  font-weight: 950;
  text-transform: uppercase;
}

.victory-feature .case-copy > p:last-of-type {
  max-width: 42ch;
  margin-bottom: .6rem;
  font-size: clamp(.92rem, 1.35vw, 1.08rem);
  line-height: 1.18;
}

.victory-feature .case-study-text-button {
  align-self: flex-start;
  margin-top: .25rem;
  border-color: var(--black);
  background: #ffd400;
  color: var(--black);
  box-shadow: 5px 5px 0 var(--black);
}

.victory-slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: stretch;
  background: var(--black);
}

.victory-slider-viewport {
  min-width: 0;
  overflow: hidden;
  border-inline: 3px solid var(--white);
}

.campaign-grid.victory-slider-track {
  display: flex;
  gap: 0;
  width: 100%;
  transition: transform .48s cubic-bezier(.2,.75,.25,1);
  will-change: transform;
}

.victory-slide {
  position: relative;
  flex: 0 0 33.333333%;
  min-width: 0;
  min-height: 430px;
  border: 0;
  border-right: 3px solid var(--black);
  background: var(--white);
  color: var(--black);
  padding: clamp(1rem, 2vw, 1.45rem);
  text-align: center;
  transform: none;
  box-shadow: none;
}

.victory-slide:last-child {
  border-right: 0;
}

.victory-slide:hover {
  z-index: 4;
  transform: none;
  box-shadow: none;
}

.victory-slide h3,
.victory-slide .campaign-headline {
  margin: .95rem 0 .4rem;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: .87;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.victory-slide .campaign-subhead {
  margin: 0 0 .55rem;
  font-size: .74rem;
  font-weight: 950;
  line-height: 1.05;
}

.victory-slide > p:last-of-type {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.victory-slide .case-study-text-button {
  margin-top: .75rem;
  padding: .55rem .65rem;
  font-size: .64rem;
  box-shadow: 4px 4px 0 #ffd400;
}

.victory-circle {
  position: relative;
  display: block;
  width: clamp(112px, 12vw, 146px);
  height: clamp(112px, 12vw, 146px);
  margin-inline: auto;
  overflow: hidden;
  border: 4px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  transition:
    width .34s cubic-bezier(.2,.8,.2,1),
    border-radius .34s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.victory-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .25s ease, transform .34s ease;
}

.victory-circle span {
  position: absolute;
  inset: auto 0 0;
  padding: .55rem .6rem;
  background: rgba(0,0,0,.88);
  color: var(--white);
  font: 950 .68rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .2s ease, transform .25s ease;
}

.victory-circle:hover,
.victory-circle:focus-visible,
.victory-slide:focus-within .victory-circle {
  width: min(94%, 230px);
  border-radius: 18px;
  box-shadow: 7px 7px 0 #ffd400;
  transform: translate(-3px, -3px);
}

.victory-circle:hover img,
.victory-circle:focus-visible img,
.victory-slide:focus-within .victory-circle img {
  filter: brightness(.72);
  transform: scale(1.04);
}

.victory-circle:hover span,
.victory-circle:focus-visible span,
.victory-slide:focus-within .victory-circle span {
  opacity: 1;
  transform: translateY(0);
}

.victory-circle-button {
  padding: 0;
  cursor: pointer;
}

.victory-slider-arrow {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--black);
  color: #ffd400;
  font: 950 4rem/.7 Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.victory-slider-arrow:hover,
.victory-slider-arrow:focus-visible {
  background: #ffd400;
  color: var(--black);
}

.victory-slider-arrow:active {
  transform: scale(.92);
}

.victory-slider-arrow:disabled {
  color: #575757;
  cursor: not-allowed;
}

.victory-slider-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  min-height: 28px;
  background: var(--black);
  padding: .65rem 1rem .8rem;
}

.victory-slider-dot {
  width: 9px;
  height: 9px;
  border: 1px solid #ffd400;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.victory-slider-dot[aria-current="true"] {
  background: #ffd400;
}

@media (max-width: 880px) {
  .victory-feature {
    grid-template-columns: 1fr;
  }

  .victory-feature .case-image {
    border-right: 0;
    border-bottom: 4px solid var(--black);
  }

  .victory-slide {
    flex-basis: 50%;
  }
}

@media (max-width: 600px) {
  .victory-stories {
    padding-inline: .7rem;
  }

  .victory-stories-frame {
    box-shadow: 8px 8px 0 #ffd400;
  }

  .victory-stories-heading h2 {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
  }

  .victory-feature .case-study-trigger,
  .victory-feature .case-study-trigger img {
    min-height: 290px;
  }

  .victory-feature .case-copy h3 {
    font-size: clamp(3.6rem, 19vw, 5.5rem);
  }

  .victory-slider-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .victory-slider-viewport {
    border-inline-width: 2px;
  }

  .victory-slide {
    flex-basis: 100%;
    min-height: 405px;
  }

  .victory-slider-arrow {
    font-size: 3rem;
  }

  .victory-circle {
    width: 132px;
    height: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .victory-slider-track,
  .victory-circle,
  .victory-circle img,
  .victory-circle span {
    transition: none;
  }
}

/* Mockup-fidelity correction: compact editorial module with side peeks */
.victory-stories {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
}

.victory-stories-stage {
  position: relative;
  width: min(1000px, 100%);
  margin-inline: auto;
  padding-inline: 120px;
}

.victory-stories-frame {
  width: 100%;
  max-width: 760px;
  border-width: 3px;
  box-shadow: none;
}

.victory-stories-heading {
  min-height: 72px;
  padding: 1.1rem 1.5rem;
}

.victory-stories-heading h2 {
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  line-height: .78;
}

.victory-feature {
  grid-template-columns: 48% 52%;
  min-height: 270px;
  border-top-width: 3px;
  border-bottom-width: 3px;
}

.victory-feature .case-image {
  border-right-width: 3px;
}

.victory-feature .case-study-trigger,
.victory-feature .case-study-trigger img {
  min-height: 270px;
  height: 270px;
}

.victory-feature .case-study-trigger-label {
  left: .55rem;
  right: .55rem;
  bottom: .55rem;
  padding: .48rem .55rem;
  font-size: .55rem;
}

.victory-feature .case-copy {
  padding: 1.1rem 1.25rem;
}

.victory-feature .case-copy h3 {
  margin-bottom: .45rem;
  font-size: clamp(3.1rem, 6.2vw, 4.8rem);
  line-height: .67;
}

.victory-feature .case-copy h3 small {
  font-size: .34em;
  font-weight: 500;
  letter-spacing: -.025em;
}

.victory-feature .case-copy .case-subhead {
  margin: .25rem 0 .45rem;
  font-size: .63rem;
  line-height: 1.05;
}

.victory-feature .case-copy > p:last-of-type {
  margin: 0 0 .45rem;
  font-size: .72rem;
  line-height: 1.08;
}

.victory-feature .case-study-text-button {
  padding: .45rem .55rem;
  font-size: .58rem;
  box-shadow: none;
}

.victory-slider-shell {
  grid-template-columns: 42px minmax(0, 1fr) 42px;
}

.victory-slider-viewport {
  border-inline-width: 2px;
}

.victory-slider-arrow {
  font-size: 3.15rem;
}

.victory-slide {
  min-height: 245px;
  padding: .75rem .7rem;
  border-right-width: 2px;
}

.victory-slide h3,
.victory-slide .campaign-headline {
  margin: .55rem 0 .25rem;
  font-size: clamp(.9rem, 1.8vw, 1.18rem);
  line-height: .88;
}

.victory-slide .campaign-subhead {
  margin-bottom: .3rem;
  font-size: .55rem;
}

.victory-slide > p:last-of-type {
  font-size: .56rem;
  line-height: 1.08;
  -webkit-line-clamp: 5;
}

.victory-slide .case-study-text-button {
  margin-top: .42rem;
  padding: .38rem .45rem;
  font-size: .5rem;
  box-shadow: none;
}

.victory-circle {
  width: 92px;
  height: 92px;
  border-width: 3px;
}

.victory-circle:hover,
.victory-circle:focus-visible,
.victory-slide:focus-within .victory-circle {
  width: min(94%, 148px);
  border-radius: 999px;
  box-shadow: none;
  transform: none;
}

.victory-circle span {
  padding: .38rem;
  font-size: .52rem;
}

.victory-slider-dots {
  min-height: 24px;
  padding: .45rem .7rem .55rem;
}

.victory-side-peek {
  position: absolute;
  top: 365px;
  z-index: 5;
  display: grid;
  justify-items: center;
  width: 110px;
  border: 0;
  background: transparent;
  color: var(--black);
  padding: 0;
  cursor: pointer;
  text-align: center;
}

.victory-side-peek-left {
  left: 0;
}

.victory-side-peek-right {
  right: 0;
}

.victory-side-peek-circle {
  display: block;
  width: 92px;
  height: 92px;
  overflow: hidden;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  transition: width .28s ease, border-radius .28s ease;
}

.victory-side-peek-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.victory-side-peek-copy {
  margin-top: .55rem;
  font-size: .58rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.victory-side-peek:hover .victory-side-peek-circle,
.victory-side-peek:focus-visible .victory-side-peek-circle {
  width: 108px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .victory-stories-stage {
    width: min(760px, 100%);
    padding-inline: 0;
  }

  .victory-side-peek {
    display: none;
  }
}

@media (max-width: 680px) {
  .victory-feature {
    grid-template-columns: 1fr;
  }

  .victory-feature .case-image {
    border-right: 0;
    border-bottom: 3px solid var(--black);
  }

  .victory-feature .case-study-trigger,
  .victory-feature .case-study-trigger img {
    height: 250px;
    min-height: 250px;
  }

  .victory-feature .case-copy h3 {
    font-size: clamp(3.2rem, 17vw, 4.5rem);
  }

  .victory-slide {
    min-height: 275px;
  }

  .victory-circle {
    width: 104px;
    height: 104px;
  }
}

/* July 29 content and motion revision */
.brand-logo {
  width: min(100%, 760px);
  max-width: 760px;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.section-intro {
  max-width: 78ch;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  font-weight: 700;
}

.selected-list .section-heading {
  max-width: 1040px;
}

.victory-feature .case-copy .lion-queen-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: .14em;
  row-gap: 0;
  width: 100%;
  margin: 0 0 1rem;
  font-size: clamp(3.8rem, 6.6vw, 5.55rem);
  line-height: .78;
  letter-spacing: -.075em;
}

.victory-feature .lion-queen-title small {
  align-self: center;
  margin: 0;
  font-size: .42em;
  line-height: 1;
  letter-spacing: -.04em;
  vertical-align: 0;
}

.victory-feature .lion-queen-title .lion-word {
  color: var(--black);
  line-height: .78;
}

.victory-feature .lion-queen-title .queen-word {
  grid-column: 1 / -1;
  color: #ffd400;
  line-height: .72;
}

.victory-circle {
  text-decoration: none;
}

.victory-slide-clone {
  pointer-events: auto;
}

@media (max-width: 680px) {
  .brand-banner {
    height: 160px;
  }

  .brand-logo {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .victory-feature .case-copy .lion-queen-title {
    font-size: clamp(3.7rem, 15vw, 5.4rem);
  }
}

/* Final highlights fidelity overrides */
.victory-stories {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.victory-stories-stage {
  width: min(920px, 100%);
  padding: 0;
}

.victory-stories-frame {
  width: 100%;
  max-width: none;
}

.victory-stories-heading {
  height: clamp(86px, 9vw, 118px);
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.victory-stories-heading img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 39%;
}

.victory-feature {
  grid-template-columns: minmax(0, 1fr) minmax(290px, .8fr);
  min-height: 0;
}

.victory-feature .case-image {
  aspect-ratio: 1 / 1;
}

.victory-feature .case-study-trigger,
.victory-feature .case-study-trigger img {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.victory-feature .case-study-trigger img {
  object-fit: cover;
}

.victory-feature .case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.victory-slider-shell {
  --victory-gap: clamp(1rem, 2vw, 1.75rem);
  grid-template-columns: clamp(44px, 5vw, 66px) minmax(0, 1fr) clamp(44px, 5vw, 66px);
}

.victory-slider-viewport {
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.6rem) 0;
  border: 0;
}

.campaign-grid.victory-slider-track {
  display: flex;
  gap: var(--victory-gap);
  width: 100%;
  background: transparent;
}

.campaign-grid.victory-slider-track .victory-slide {
  flex: 0 0 calc((100% - (2 * var(--victory-gap))) / 3);
  min-width: 0;
  min-height: 0;
  padding: clamp(.8rem, 1.4vw, 1.1rem);
  border: 0;
}

.victory-circle,
.victory-circle-button {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 50%;
}

.victory-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.victory-circle span {
  display: none;
}

.victory-circle:hover,
.victory-circle:focus-visible,
.victory-slide:focus-within .victory-circle {
  width: 100%;
  border-radius: 14px;
  transform: scale(1.035);
}

.victory-slide h3,
.victory-slide .campaign-headline {
  margin: 1rem 0 .55rem;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.victory-slide > p:last-of-type {
  font-size: clamp(.72rem, 1vw, .9rem);
  line-height: 1.25;
  -webkit-line-clamp: 6;
}

@media (max-width: 880px) {
  .campaign-grid.victory-slider-track .victory-slide {
    flex-basis: calc((100% - var(--victory-gap)) / 2);
  }
}

@media (max-width: 680px) {
  .victory-stories {
    padding: 1.25rem .75rem;
  }

  .victory-feature {
    grid-template-columns: 1fr;
  }

  .victory-feature .case-study-trigger,
  .victory-feature .case-study-trigger img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .campaign-grid.victory-slider-track .victory-slide {
    flex-basis: 100%;
  }
}

/* Lita feature correction: portrait left, headline and larger copy right */
.victory-feature {
  grid-template-columns: 1fr 1fr;
}

.victory-feature .case-copy {
  align-items: flex-start;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.victory-feature .case-copy .case-subhead {
  order: 0;
  margin: 0 0 clamp(.7rem, 1.5vw, 1rem);
  font-size: clamp(.75rem, 1.15vw, .95rem);
  line-height: 1.1;
}

.victory-feature .case-copy h3 {
  order: 1;
  margin: 0 0 clamp(.7rem, 1.4vw, 1rem);
  font-size: clamp(4.15rem, 7.4vw, 6.2rem);
  line-height: .65;
  letter-spacing: -.075em;
}

.victory-feature .case-copy h3 small {
  display: inline-block;
  margin-right: .08em;
  font-size: .42em;
  font-weight: 500;
  letter-spacing: -.04em;
  vertical-align: .42em;
}

.victory-feature .case-copy h3 span {
  color: #ffd400;
}

.victory-feature .case-copy > p:last-of-type {
  order: 2;
  max-width: 31ch;
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.12;
}

.victory-feature .case-study-text-button {
  order: 3;
  font-size: clamp(.72rem, 1vw, .9rem);
}

@media (max-width: 680px) {
  .victory-feature {
    grid-template-columns: 1fr;
  }

  .victory-feature .case-copy h3 {
    font-size: clamp(4rem, 17vw, 6rem);
  }
}

/* Final title lockup and supplied asset sizing */
.brand-logo {
  width: min(100%, 760px);
  max-width: 760px;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.section-intro {
  max-width: 78ch;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  font-weight: 700;
}

.selected-list .section-heading {
  max-width: 1040px;
}

.victory-feature .case-copy .lion-queen-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: .14em;
  row-gap: 0;
  width: 100%;
  margin: 0 0 1rem;
  font-size: clamp(3.8rem, 6.6vw, 5.55rem);
  line-height: .78;
  letter-spacing: -.075em;
}

.victory-feature .case-copy .lion-queen-title small {
  display: block;
  align-self: center;
  margin: 0;
  font-size: .42em;
  line-height: 1;
  letter-spacing: -.04em;
  vertical-align: 0;
}

.victory-feature .case-copy .lion-queen-title .lion-word {
  color: var(--black);
  line-height: .78;
}

.victory-feature .case-copy .lion-queen-title .queen-word {
  grid-column: 1 / -1;
  color: #ffd400;
  line-height: .72;
}

.victory-circle {
  text-decoration: none;
}

.victory-slide-clone {
  pointer-events: auto;
}

@media (max-width: 680px) {
  .brand-banner {
    height: 160px;
  }

  .brand-logo {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .victory-feature .case-copy .lion-queen-title {
    font-size: clamp(3.7rem, 15vw, 5.4rem);
  }
}
