:root {
  --paper: #f7f1e5;
  --ink: #181819;
  --coral: #fa8888;
  --blue: #458fae;
  --orange: #ed4e27;
  --white: #fbfbfb;
  --muted: #68645d;
  --line: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  overflow-x: hidden;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
}
.site-header {
  position: relative;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--line);
}
.site-header.dark {
  position: absolute;
  inset: 0 0 auto;
  background: rgba(24, 24, 25, 0.93);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nav-logo {
  display: block;
  width: 210px;
}
.nav-logo img {
  width: 100%;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:not(.nav-cta):hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.nav-cta {
  background: var(--orange);
  color: white;
  padding: 13px 18px;
  border: 2px solid currentColor;
  box-shadow: 4px 4px 0 var(--ink);
}
.dark .nav-cta {
  box-shadow: 4px 4px 0 var(--white);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: inherit;
}
.hero {
  position: relative;
  background: var(--coral);
  border-bottom: var(--line);
  isolation: isolate;
}
.halftone {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(var(--ink) 1.3px, transparent 1.3px);
  background-size: 10px 10px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
  z-index: -1;
}
.hero-grid {
  min-height: 720px;
  padding: 82px 0 100px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 6vw;
}
.stamp,
.issue-label {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.stamp {
  display: inline-block;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 8px 12px;
  transform: rotate(-1deg);
  box-shadow: 4px 4px 0 var(--ink);
}
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
  margin: 0;
}
.hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(62px, 8vw, 122px);
  letter-spacing: -0.06em;
  max-width: 8.5ch;
  margin: 26px 0;
}
.hero h1 span {
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--ink);
}
.hero-dek {
  font-size: 17px;
  line-height: 1.7;
  max-width: 60ch;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 20px;
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: 0.15s;
}
.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}
.button-ink {
  background: var(--ink);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--blue);
}
.button-paper {
  background: var(--paper);
  color: var(--ink);
}
.scribble-link {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 19px;
  text-transform: uppercase;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}
.scribble-link.light {
  color: white;
}
.hero-collage {
  position: relative;
  height: 560px;
}
.panel {
  position: absolute;
  margin: 0;
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
  background: var(--paper);
}
.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel-a {
  inset: 2% 2% 28% 12%;
  transform: rotate(2deg);
}
.panel-b {
  inset: 38% 35% 2% 0;
  transform: rotate(-4deg);
}
.panel-c {
  inset: 52% 0 4% 57%;
  transform: rotate(4deg);
}
.burst {
  position: absolute;
  right: 2%;
  top: 3%;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--orange);
  color: white;
  border: 4px solid var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 21px;
  line-height: 0.88;
  clip-path: polygon(
    50% 0,
    61% 20%,
    79% 8%,
    82% 31%,
    100% 30%,
    88% 50%,
    100% 68%,
    78% 70%,
    78% 94%,
    59% 81%,
    50% 100%,
    40% 81%,
    21% 94%,
    22% 70%,
    0 68%,
    12% 50%,
    0 30%,
    18% 31%,
    21% 8%,
    39% 20%
  );
  transform: rotate(8deg);
}
.ticker {
  border-top: var(--line);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  font:
    800 22px/1 "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 15px 0;
}
.ticker div {
  width: max-content;
  animation: ticker 24s linear infinite;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.issue-label {
  color: var(--orange);
  margin: 0 0 18px;
}
.lane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.lane-card {
  position: relative;
  min-height: 560px;
  border: var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
}
.lane-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 24, 25, 0.98),
    rgba(24, 24, 25, 0.36)
  );
  z-index: -1;
}
.lane-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: 0.45s;
}
.lane-card:hover img {
  transform: scale(1.04);
}
.lane-card > div {
  width: 68%;
  height: 100%;
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.lane-card span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lane-card h2 {
  font-size: clamp(47px, 5vw, 72px);
  margin: 16px 0;
}
.lane-card p {
  line-height: 1.6;
}
.lane-card strong {
  margin-top: 14px;
  color: var(--coral);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  text-transform: uppercase;
}
.lane-restaurants strong {
  color: #9fd2e7;
}
.lane-contractors img {
  object-position: 70% center;
}
.specialist-strip {
  margin-top: 46px;
  border: var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  background: white;
}
.specialist-strip > * {
  padding: 18px;
  border-right: 2px solid var(--ink);
}
.specialist-strip a {
  font-weight: 600;
  background: var(--blue);
  color: white;
}
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}
.section-head h2 {
  font-size: clamp(58px, 7vw, 98px);
  max-width: 10ch;
}
.section-head > p {
  line-height: 1.8;
  font-size: 16px;
  max-width: 50ch;
}
.method {
  background: var(--blue);
  border-block: var(--line);
}
.method .issue-label {
  color: white;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.method-grid article,
.service-comics article {
  background: var(--paper);
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 28px;
}
.method-grid article:nth-child(even),
.service-comics article:nth-child(3n + 2) {
  transform: rotate(1deg);
}
.method-grid b,
.service-comics b {
  display: block;
  color: var(--orange);
  font:
    900 42px/1 "Barlow Condensed",
    sans-serif;
}
.method-grid h3,
.service-comics h3 {
  font-size: 35px;
  margin: 22px 0 12px;
}
.method-grid p,
.service-comics p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.boundary-note {
  background: var(--ink);
  color: white;
  padding: 22px 26px;
  margin: 34px 0 0;
  line-height: 1.6;
}
.wall-grid,
.h-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}
.wall-grid figure,
.h-grid figure,
.food-grid figure,
.contractor-grid figure,
.ba-grid figure {
  position: relative;
  margin: 0;
  border: 3px solid var(--ink);
  overflow: hidden;
  background: #ddd;
}
.wall-grid img,
.h-grid img,
.food-grid img,
.contractor-grid img,
.ba-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wall-grid figcaption,
.h-grid figcaption,
.food-grid figcaption,
.contractor-grid figcaption,
.ba-grid figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 6px 9px;
  font:
    800 15px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.wall-wide,
.h-wide {
  grid-column: span 2;
}
.wall-tall,
.h-tall {
  grid-row: span 2;
}
.wtep-block {
  background: var(--ink);
  color: white;
  border-block: var(--line);
}
.wtep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}
.wtep-art {
  position: relative;
  transform: rotate(-2deg);
  border: 4px solid var(--paper);
  box-shadow: 12px 12px 0 var(--orange);
}
.wtep-art img {
  width: 100%;
}
.wtep-art span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
}
.wtep-grid h2 {
  font-size: clamp(55px, 6vw, 86px);
  margin-bottom: 24px;
}
.wtep-grid p {
  line-height: 1.7;
}
.rule {
  border-left: 6px solid var(--coral);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
}
.final-cta {
  text-align: center;
  background: var(--coral);
  border-top: var(--line);
}
.final-cta .shell {
  max-width: 900px;
}
.final-cta h2 {
  font-size: clamp(72px, 10vw, 142px);
  margin: 34px auto 24px;
}
.final-cta p:not(.stamp) {
  max-width: 65ch;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.footer {
  background: var(--ink);
  color: white;
  padding: 50px 0;
}
.footer .shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
}
.footer img {
  width: 230px;
  background: white;
}
.footer div > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer a,
.footer button {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
}
.footer button {
  text-decoration: underline;
  cursor: pointer;
}
.lane-hero {
  position: relative;
  min-height: 810px;
  display: flex;
  align-items: flex-end;
  color: white;
  background: #111;
  border-bottom: var(--line);
  overflow: hidden;
}
.lane-hero > video,
.lane-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurant-hero > img {
  object-position: center 48%;
}
.lane-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.92),
    rgba(10, 10, 10, 0.42) 60%,
    rgba(10, 10, 10, 0.1)
  );
}
.lane-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 82px;
}
.lane-hero-copy h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(62px, 9vw, 130px);
  letter-spacing: -0.06em;
  max-width: 10ch;
  margin: 24px 0;
}
.lane-hero-copy h1 span {
  color: var(--coral);
}
.restaurant-hero .lane-hero-copy h1 {
  max-width: 13ch;
}
.restaurant-hero .lane-hero-copy h1 span {
  color: #8bc3da;
}
.lane-hero-copy > p:not(.stamp) {
  font-size: 18px;
  line-height: 1.7;
  max-width: 62ch;
}
.contractor-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  grid-template-rows: 330px 260px;
  gap: 14px;
}
.c-one {
  grid-row: span 2;
}
.c-two {
  grid-column: span 2;
}
.c-one img {
  object-position: center 28%;
}
.lane-system {
  background: var(--orange);
  border-block: var(--line);
}
.lane-system .issue-label {
  color: var(--ink);
}
.service-comics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.case-card {
  border: var(--line);
  box-shadow: var(--shadow);
  background: white;
}
.case-card > img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.case-card > div {
  padding: 32px;
}
.case-card span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}
.case-card h3 {
  font-size: 52px;
  margin: 12px 0;
}
.case-card p,
.case-card li {
  line-height: 1.6;
}
.case-card ul {
  padding-left: 20px;
}
.result-callout {
  background: var(--blue);
  color: white;
  border: var(--line);
  padding: 22px;
  margin-top: 22px;
}
.result-callout strong {
  display: block;
  font:
    900 42px/1 "Barlow Condensed",
    sans-serif;
}
.result-callout p {
  font-size: 13px;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ba-grid figure {
  height: 520px;
}
.system-boundary {
  background: var(--blue);
  border-block: var(--line);
}
.system-boundary .shell {
  background: var(--paper);
  border: var(--line);
  box-shadow: var(--shadow);
  padding: 45px;
}
.system-boundary h2 {
  font-size: clamp(56px, 7vw, 92px);
  max-width: 14ch;
  margin-bottom: 20px;
}
.system-boundary p:last-child {
  line-height: 1.7;
  max-width: 80ch;
}
.h-grid {
  grid-auto-rows: 280px;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.food-grid figure {
  height: 330px;
  margin: 0;
}
.privacy-main {
  padding: 100px 0;
  max-width: 900px;
}
.privacy-main h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(60px, 9vw, 110px);
  letter-spacing: -0.06em;
  margin: 24px 0;
}
.privacy-lead {
  font-size: 19px;
  line-height: 1.7;
}
.privacy-main section {
  padding: 38px 0;
  border-top: 2px solid var(--ink);
}
.privacy-main h2 {
  font-size: 44px;
}
.privacy-main p {
  line-height: 1.75;
}
.privacy-settings {
  border: var(--line);
  background: var(--coral);
  padding: 12px 16px;
  font-weight: 600;
  box-shadow: 4px 4px 0 var(--ink);
}
.lm-cookie {
  position: fixed;
  z-index: 1000;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--paper);
  border: var(--line);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.lm-cookie p {
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.5;
}
.lm-cookie button {
  white-space: nowrap;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: white;
  padding: 11px 16px;
  font-weight: 600;
}
.lm-modal[hidden] {
  display: none;
}
.lm-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.77);
}
.lm-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--coral);
  padding: 38px;
}
.lm-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: transparent;
  font: 900 38px/1 sans-serif;
}
.lm-modal-head .issue-label {
  margin: 0;
}
.lm-modal-head h2 {
  font-size: clamp(48px, 7vw, 76px);
  margin: 12px 40px 12px 0;
}
.lm-modal-head > p:last-child {
  line-height: 1.5;
}
.lm-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lm-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.lm-form input,
.lm-form select,
.lm-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  background: white;
  padding: 12px;
  color: var(--ink);
  border-radius: 0;
}
.lm-form textarea {
  resize: vertical;
}
.lm-wide {
  grid-column: 1/-1;
}
.lm-consent {
  margin: 16px 0;
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  text-transform: none !important;
  font-weight: 400 !important;
  line-height: 1.5;
}
.lm-consent input {
  width: auto;
}
.lm-honeypot {
  position: absolute !important;
  left: -10000px;
}
.lm-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lm-submit {
  border: var(--line);
  background: var(--orange);
  color: white;
  padding: 13px 18px;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
}
.lm-status {
  font-size: 13px;
  line-height: 1.4;
}
.lm-fallback {
  font-size: 12px;
}
.modal-open {
  overflow: hidden;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .experience-hero,
  .case-hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }
  .nav-toggle {
    display: grid;
    gap: 4px;
    place-items: center;
    grid-template-columns: 28px auto;
  }
  .nav-toggle span {
    grid-column: 1;
    width: 26px;
    height: 3px;
    background: currentColor;
  }
  .nav-toggle b {
    grid-column: 2;
    grid-row: 1/4;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 80px;
    background: var(--paper);
    color: var(--ink);
    border: var(--line);
    box-shadow: var(--shadow);
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .dark .nav-links {
    background: var(--ink);
    color: white;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .hero-collage {
    height: 500px;
  }
  .lane-grid,
  .wtep-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-comics {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .specialist-strip {
    grid-template-columns: 1fr 1fr;
  }
  .wall-grid,
  .h-grid {
    grid-template-columns: 1fr 1fr;
  }
  .food-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer .shell {
    grid-template-columns: 1fr 1fr;
  }
  .footer .shell > div:last-child {
    grid-column: 2;
  }
  .restaurant-hero .lane-hero-copy h1 {
    max-width: 11ch;
  }
}
@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 72px 0;
  }
  .nav {
    min-height: 76px;
  }
  .nav-logo {
    width: 166px;
  }
  .nav-links {
    left: 14px;
    right: 14px;
    top: 70px;
  }
  .hero-grid {
    min-height: auto;
    padding: 54px 0 78px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero h1 span {
    -webkit-text-stroke: 1.2px var(--ink);
    text-shadow: 3px 3px 0 var(--ink);
  }
  .hero-collage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 10px;
  }
  .hero-collage .panel {
    position: relative;
    inset: auto;
    height: 210px;
    transform: none;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .hero-collage .burst {
    top: -28px;
    right: -3px;
    pointer-events: none;
  }
  .burst {
    width: 110px;
    font-size: 16px;
  }
  .lane-card {
    min-height: 500px;
  }
  .lane-card > div {
    width: 86%;
    padding: 28px 22px;
  }
  .lane-card h2 {
    font-size: 49px;
  }
  .specialist-strip {
    grid-template-columns: 1fr;
  }
  .specialist-strip > * {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
  .method-grid,
  .service-comics {
    grid-template-columns: 1fr;
  }
  .method-grid article:nth-child(even),
  .service-comics article:nth-child(3n + 2) {
    transform: none;
  }
  .wall-grid,
  .h-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .wall-wide,
  .h-wide {
    grid-column: auto;
  }
  .wall-tall,
  .h-tall {
    grid-row: auto;
  }
  .section-head h2 {
    font-size: 56px;
  }
  .wtep-grid h2 {
    font-size: 52px;
  }
  .footer .shell {
    grid-template-columns: 1fr;
  }
  .footer .shell > div:last-child {
    grid-column: auto;
  }
  .lane-hero {
    min-height: 760px;
  }
  .lane-hero-copy {
    padding-bottom: 55px;
  }
  .lane-hero-copy h1 {
    font-size: 58px;
  }
  .contractor-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 240px 240px;
  }
  .c-one {
    grid-row: span 1;
    grid-column: span 2;
  }
  .c-two {
    grid-column: span 2;
  }
  .case-card > img {
    height: 300px;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .ba-grid figure {
    height: 380px;
  }
  .food-grid {
    grid-template-columns: 1fr 1fr;
  }
  .food-grid figure {
    height: 230px;
  }
  .system-boundary .shell {
    padding: 28px 22px;
  }
  .system-boundary h2 {
    font-size: 52px;
  }
  .lm-cookie {
    align-items: stretch;
    flex-direction: column;
  }
  .lm-cookie button {
    align-self: flex-start;
  }
  .lm-modal {
    padding: 10px;
  }
  .lm-modal-panel {
    max-height: calc(100vh - 20px);
    padding: 28px 20px;
  }
  .lm-form-grid {
    grid-template-columns: 1fr;
  }
  .lm-wide {
    grid-column: auto;
  }
  .lm-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }
  .scribble-link {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker div {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .panel {
    transform: none !important;
  }
}
html {
  overflow-x: hidden;
}
.stamp {
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Premium editorial elevation */
body::before {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.scroll-progress {
  position: fixed;
  z-index: 1300;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--coral), var(--orange), var(--blue));
  pointer-events: none;
}
.site-header {
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.site-header.scrolled {
  position: sticky;
  top: 0;
  background: rgba(247, 241, 229, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(24, 24, 25, 0.12);
}
.site-header.dark.scrolled {
  position: fixed;
  background: rgba(24, 24, 25, 0.9);
}
.nav-logo img {
  background: none !important;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.18));
}
.footer img {
  background: none;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.15));
}
.nav-menu {
  position: relative;
}
.nav-menu summary {
  cursor: pointer;
  list-style: none;
}
.nav-menu summary::-webkit-details-marker {
  display: none;
}
.nav-menu summary::after {
  content: " +";
  color: var(--orange);
}
.nav-menu[open] summary::after {
  content: " −";
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 245px;
  display: grid;
  gap: 0;
  background: var(--paper);
  color: var(--ink);
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
  padding: 8px;
}
.dark .nav-submenu {
  background: var(--ink);
  color: white;
  border-color: white;
  box-shadow: 7px 7px 0 var(--coral);
}
.nav-submenu a {
  padding: 12px 13px;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
}
.nav-submenu a:last-child {
  border-bottom: 0;
}
.nav-submenu a[aria-current="page"] {
  background: var(--coral);
  color: var(--ink);
}
.nav-cta {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.lane-grid-four {
  grid-template-columns: 1fr 1fr;
}
.lane-grid-four .lane-card:nth-child(3),
.lane-grid-four .lane-card:nth-child(4) {
  min-height: 620px;
}
.lane-weddings strong {
  color: #ffd4b7;
}
.lane-stays strong {
  color: #a8d7e8;
}
.lane-weddings img {
  object-position: center 48%;
}
.lane-stays img {
  object-position: center;
}
.lane-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 0 solid var(--coral);
  transition: border-width 0.25s;
  pointer-events: none;
}
.lane-card:hover::before {
  border-width: 7px;
}
.dragonwood-spotlight {
  background: var(--blue);
  border-block: var(--line);
  overflow: hidden;
}
.dragonwood-spotlight-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 7vw;
  align-items: center;
}
.dragonwood-spotlight-media {
  position: relative;
  min-height: 700px;
  transform: rotate(-1.5deg);
  border: 4px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  overflow: hidden;
  background: var(--ink);
}
.dragonwood-spotlight-media video {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
}
.dragonwood-spotlight-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}
.dragonwood-spotlight-copy h2 {
  font-size: clamp(60px, 7vw, 100px);
  max-width: 10ch;
}
.dragonwood-spotlight-copy > p:not(.issue-label):not(.metric-note) {
  font-size: 16px;
  line-height: 1.75;
}
.spotlight-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.spotlight-metrics div {
  padding: 18px;
  border-right: 2px solid var(--ink);
}
.spotlight-metrics div:last-child {
  border-right: 0;
}
.spotlight-metrics strong {
  display: block;
  font:
    900 39px/1 "Barlow Condensed",
    sans-serif;
}
.spotlight-metrics span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
}
.metric-note {
  font-size: 11px !important;
  line-height: 1.5 !important;
  margin-bottom: 28px;
}

.experience-hero,
.case-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: white;
  background: var(--ink);
  overflow: hidden;
  border-bottom: var(--line);
}
.experience-hero > video,
.case-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 7vh);
  object-fit: cover;
  transform: translateY(var(--hero-shift, 0)) scale(1.035);
}
.experience-shade,
.case-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 9, 10, 0.95) 0%,
      rgba(9, 9, 10, 0.66) 49%,
      rgba(9, 9, 10, 0.16) 82%
    ),
    linear-gradient(0deg, rgba(9, 9, 10, 0.85), transparent 55%);
}
.experience-hero-copy,
.case-hero-copy {
  position: relative;
  z-index: 2;
  padding: 180px 0 105px;
}
.experience-hero h1,
.case-hero h1 {
  max-width: 10ch;
  margin: 25px 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(66px, 9vw, 132px);
  letter-spacing: -0.065em;
}
.experience-hero h1 span,
.case-hero h1 span {
  color: var(--coral);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}
.stays-hero h1 span {
  color: #90c9df;
}
.experience-hero-copy > p:not(.stamp),
.case-hero-copy > p:not(.stamp) {
  max-width: 65ch;
  font-size: 18px;
  line-height: 1.7;
}
.case-ribbon {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 28px;
  padding: 18px 24px;
  background: var(--orange);
  color: white;
  border: 3px solid var(--ink);
  font:
    700 13px/1.2 "IBM Plex Mono",
    monospace;
  text-decoration: none;
  text-transform: uppercase;
}
.case-ribbon b {
  color: var(--ink);
}
.split-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: start;
}
.split-editorial h2 {
  max-width: 10ch;
  font-size: clamp(60px, 7vw, 100px);
}
.experience-lead {
  font:
    700 clamp(29px, 3.6vw, 47px)/1.05 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.split-editorial p:not(.experience-lead):not(.issue-label) {
  font-size: 16px;
  line-height: 1.8;
}
.experience-system {
  background: var(--orange);
  border-block: var(--line);
}
.stays-page .experience-system {
  background: var(--blue);
}
.experience-services article {
  min-height: 315px;
  display: flex;
  flex-direction: column;
}
.experience-services article h3 {
  margin-top: auto;
}
.proof-film {
  background: #efe3cf;
}
.proof-film-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
  align-items: center;
}
.proof-film h2 {
  font-size: clamp(57px, 6.5vw, 92px);
  max-width: 11ch;
}
.proof-film p,
.proof-film li {
  line-height: 1.7;
}
.proof-film ul {
  padding-left: 20px;
}
.proof-film-media {
  position: relative;
  padding: 18px;
  background: var(--ink);
  border: var(--line);
  box-shadow: 12px 12px 0 var(--coral);
  transform: rotate(1deg);
}
.proof-film-media video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.proof-film-media img {
  width: 55%;
  margin: -38px 0 0 auto;
  border: 3px solid var(--paper);
  box-shadow: -8px 8px 0 var(--orange);
}
.proof-film-media span {
  display: block;
  color: white;
  padding: 15px 3px 2px;
  font-size: 11px;
  text-transform: uppercase;
}
.case-metrics {
  background: var(--ink);
  color: white;
  border-block: var(--line);
}
.case-metrics .issue-label {
  color: var(--coral);
}
.metric-comics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid white;
}
.metric-comics article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  border-right: 2px solid white;
}
.metric-comics article:last-child {
  border-right: 0;
}
.metric-comics strong {
  font:
    900 clamp(51px, 6vw, 77px)/0.9 "Barlow Condensed",
    sans-serif;
  color: var(--coral);
}
.metric-comics span {
  margin-top: 19px;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}
.social-proof-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  align-items: center;
}
.social-proof-line strong {
  color: var(--coral);
}

.case-hero-copy dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 980px;
  margin: 42px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.case-hero-copy dl div {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.case-hero-copy dl div:last-child {
  border-right: 0;
}
.case-hero-copy dt {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--coral);
}
.case-hero-copy dd {
  margin: 7px 0 0;
  font:
    700 16px/1.2 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.dual-engine {
  background: var(--coral);
  border-block: var(--line);
}
.dual-engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dual-engine-grid a {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: var(--line);
  box-shadow: var(--shadow);
  color: white;
  text-decoration: none;
}
.dual-engine-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 11, 0.96), transparent 73%);
}
.dual-engine-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.dual-engine-grid a:hover img {
  transform: scale(1.05);
}
.dual-engine-grid a > div {
  position: relative;
  z-index: 2;
  padding: 36px;
}
.dual-engine-grid span,
.film-card span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--coral);
}
.dual-engine-grid h3 {
  font-size: clamp(48px, 5vw, 70px);
  margin: 15px 0;
}
.dual-engine-grid p {
  max-width: 48ch;
  line-height: 1.6;
}
.dual-engine-grid strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}
.film-suite {
  background: #ece4d7;
}
.film-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.film-card {
  background: var(--ink);
  color: white;
  border: var(--line);
  box-shadow: 7px 7px 0 var(--orange);
}
.film-card.feature {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}
.film-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.film-card > div {
  padding: 25px;
}
.film-card h3 {
  font-size: 42px;
  margin: 13px 0;
}
.film-card p {
  line-height: 1.6;
}
.connected-build {
  background: var(--blue);
  border-block: var(--line);
}
.connected-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.connected-grid article {
  min-height: 300px;
  padding: 25px;
  background: var(--paper);
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
}
.connected-grid b {
  font:
    900 44px/1 "Barlow Condensed",
    sans-serif;
  color: var(--orange);
}
.connected-grid h3 {
  font-size: 38px;
  margin: 70px 0 15px;
}
.connected-grid p {
  line-height: 1.6;
}
.case-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 330px;
  gap: 16px;
}
.case-proof-grid figure {
  position: relative;
  margin: 0;
  border: var(--line);
  overflow: hidden;
}
.case-proof-grid .wide {
  grid-column: span 2;
}
.case-proof-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-proof-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 11px;
  background: var(--paper);
  border: 2px solid var(--ink);
  font:
    800 15px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.case-close {
  background: var(--orange);
  color: white;
  border-top: var(--line);
}
.case-close blockquote {
  max-width: 20ch;
  margin: 25px 0;
  font:
    800 clamp(50px, 7vw, 92px)/0.96 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav-menu {
    width: 100%;
  }
  .nav-menu summary {
    padding: 8px 0;
  }
  .nav-submenu,
  .dark .nav-submenu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }
  .lane-grid-four,
  .dragonwood-spotlight-grid,
  .split-editorial,
  .proof-film-grid,
  .dual-engine-grid {
    grid-template-columns: 1fr;
  }
  .dragonwood-spotlight-media,
  .dragonwood-spotlight-media video {
    min-height: 570px;
  }
  .metric-comics,
  .connected-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric-comics article:nth-child(2) {
    border-right: 0;
  }
  .metric-comics article {
    border-bottom: 2px solid white;
  }
  .metric-comics article:nth-child(3),
  .metric-comics article:nth-child(4) {
    border-bottom: 0;
  }
  .case-hero-copy dl {
    grid-template-columns: 1fr 1fr;
  }
  .case-hero-copy dl div:nth-child(2) {
    border-right: 0;
  }
  .case-hero-copy dl div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .film-card.feature {
    grid-template-columns: 1fr;
  }
  .case-proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-proof-grid .wide {
    grid-column: span 2;
  }
  .social-proof-line {
    grid-template-columns: 1fr 1fr;
  }
  .experience-hero-copy,
  .case-hero-copy {
    padding-top: 155px;
  }
  .case-ribbon {
    position: relative;
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 600px) {
  body::before {
    opacity: 0.025;
  }
  .site-header.dark {
    position: absolute;
  }
  .nav-logo {
    width: 150px;
  }
  .lane-grid-four {
    grid-template-columns: 1fr;
  }
  .lane-grid-four .lane-card:nth-child(3),
  .lane-grid-four .lane-card:nth-child(4) {
    min-height: 520px;
  }
  .dragonwood-spotlight-media,
  .dragonwood-spotlight-media video {
    min-height: 480px;
  }
  .spotlight-metrics {
    grid-template-columns: 1fr;
  }
  .spotlight-metrics div {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
  .spotlight-metrics div:last-child {
    border-bottom: 0;
  }
  .experience-hero,
  .case-hero {
    min-height: 860px;
  }
  .experience-hero-copy,
  .case-hero-copy {
    padding: 145px 0 70px;
  }
  .experience-hero h1,
  .case-hero h1 {
    font-size: clamp(40px, 11.5vw, 48px);
    letter-spacing: -0.055em;
    max-width: none;
  }
  .case-ribbon {
    font-size: 10px;
    padding: 14px;
  }
  .metric-comics,
  .connected-grid {
    grid-template-columns: 1fr;
  }
  .metric-comics article,
  .metric-comics article:nth-child(2),
  .metric-comics article:nth-child(3) {
    border-right: 0;
    border-bottom: 2px solid white;
  }
  .metric-comics article:last-child {
    border-bottom: 0;
  }
  .metric-comics article {
    min-height: 210px;
  }
  .proof-film-media {
    padding: 9px;
    box-shadow: 7px 7px 0 var(--coral);
  }
  .dual-engine-grid a {
    min-height: 520px;
  }
  .case-hero-copy dl {
    grid-template-columns: 1fr;
  }
  .case-hero-copy dl div,
  .case-hero-copy dl div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .case-hero-copy dl div:last-child {
    border-bottom: 0;
  }
  .film-grid {
    grid-template-columns: 1fr;
  }
  .film-card.feature {
    grid-column: auto;
  }
  .case-proof-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
  }
  .case-proof-grid .wide {
    grid-column: auto;
  }
  .social-proof-line {
    grid-template-columns: 1fr;
  }
  .case-close blockquote {
    font-size: 49px;
  }
  .experience-lead {
    font-size: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .experience-hero > video,
  .case-hero > video {
    transform: none;
  }
  .lane-card img,
  .dual-engine-grid img {
    transition: none;
  }
  .scroll-progress {
    display: none;
  }
}
.experience-hero .stamp,
.case-hero .stamp,
.lane-hero .stamp {
  color: var(--ink);
}

/* Work index + editorial case-study system */
.work-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: white;
  border-bottom: var(--line);
}
.work-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 7vh);
  object-fit: cover;
  transform: translateY(var(--hero-shift, 0)) scale(1.035);
}
.work-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 9, 10, 0.96),
      rgba(9, 9, 10, 0.54) 58%,
      rgba(9, 9, 10, 0.12)
    ),
    linear-gradient(0deg, rgba(9, 9, 10, 0.9), transparent 58%);
}
.work-hero-copy {
  position: relative;
  z-index: 2;
  padding: 180px 0 108px;
}
.work-hero h1 {
  max-width: 8.5ch;
  margin: 24px 0;
  font:
    400 clamp(68px, 10vw, 144px)/0.85 "Archivo Black",
    sans-serif;
  letter-spacing: -0.07em;
}
.work-hero h1 span {
  color: var(--coral);
}
.work-hero-copy > p:not(.stamp) {
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.65;
}
.work-thesis {
  background: #efe3cf;
}
.case-library {
  background: var(--paper);
}
.case-library-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.case-library-grid > a {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: var(--line);
  box-shadow: var(--shadow);
  color: white;
  text-decoration: none;
  isolation: isolate;
}
.case-library-grid > a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 11, 0.96),
    rgba(10, 10, 11, 0.15) 72%
  );
}
.case-library-grid img,
.case-library-grid video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-library-grid > a:hover img,
.case-library-grid > a:hover video {
  transform: scale(1.045);
}
.case-library-grid > a > div {
  padding: 32px;
}
.case-library-grid span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--coral);
}
.case-library-grid h3 {
  font-size: clamp(48px, 6vw, 78px);
  margin: 13px 0;
}
.case-library-grid p {
  max-width: 53ch;
  line-height: 1.55;
}
.case-library-grid strong {
  font:
    800 19px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.case-library-hero {
  grid-column: 1/-1;
  min-height: 760px !important;
}
.work-principle {
  background: var(--blue);
  border-block: var(--line);
}
.work-principle blockquote {
  max-width: 16ch;
  margin: 30px 0;
  font:
    900 clamp(58px, 8vw, 112px)/0.88 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.work-principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.work-principle-grid p {
  font-size: 16px;
  line-height: 1.7;
}

.portfolio-case-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: white;
  border-bottom: var(--line);
}
.portfolio-case-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 7vh);
  object-fit: cover;
  transform: translateY(var(--hero-shift, 0)) scale(1.035);
}
.portfolio-case-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 9, 0.96),
      rgba(8, 8, 9, 0.63) 55%,
      rgba(8, 8, 9, 0.12)
    ),
    linear-gradient(0deg, rgba(8, 8, 9, 0.84), transparent 60%);
}
.portfolio-case-copy {
  position: relative;
  z-index: 2;
  padding: 170px 0 104px;
}
.portfolio-case-copy h1 {
  max-width: 11ch;
  margin: 24px 0;
  font:
    400 clamp(63px, 9.5vw, 136px)/0.86 "Archivo Black",
    sans-serif;
  letter-spacing: -0.068em;
}
.portfolio-case-copy h1 span {
  color: var(--coral);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}
.portfolio-case-copy > p:not(.stamp) {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.65;
}
.portfolio-case-copy dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: 38px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.portfolio-case-copy dl div {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}
.portfolio-case-copy dl div:last-child {
  border-right: 0;
}
.portfolio-case-copy dt {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--coral);
}
.portfolio-case-copy dd {
  margin: 7px 0 0;
  font:
    800 16px/1.15 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.case-media {
  background: #efe3cf;
}
.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.portfolio-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: var(--line);
  background: #d8d0c3;
}
.portfolio-mosaic .mosaic-wide {
  grid-column: auto;
}
.portfolio-mosaic .mosaic-tall {
  grid-row: auto;
}
.portfolio-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-mosaic figure {
  aspect-ratio: 4 / 3;
}
.portfolio-mosaic figure:hover img {
  transform: scale(1.035);
}
.portfolio-mosaic figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 11px;
  background: var(--paper);
  border: 2px solid var(--ink);
  font:
    800 15px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.historic-results {
  background: var(--ink);
  color: white;
  border-block: var(--line);
}
.historic-results h2 {
  max-width: 13ch;
  font-size: clamp(58px, 8vw, 106px);
  margin-bottom: 42px;
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid white;
}
.result-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-right: 2px solid white;
}
.result-grid article:last-child {
  border-right: 0;
}
.result-grid strong {
  font:
    900 clamp(54px, 7vw, 88px)/0.9 "Barlow Condensed",
    sans-serif;
  color: var(--coral);
}
.result-grid span {
  margin-top: 17px;
  font-size: 11px;
  line-height: 1.45;
  text-transform: uppercase;
}
.claim-note {
  max-width: 100ch;
  margin: 28px 0 0;
  font-size: 11px;
  line-height: 1.6;
  color: #ded8ce;
}
.season-result {
  background: var(--coral);
  border-block: var(--line);
}
.season-result-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 92px 0 32px;
}
.season-result-grid > div:not(.season-arrow) {
  padding: 34px;
  background: var(--paper);
  border: var(--line);
  box-shadow: var(--shadow);
}
.season-result-grid strong {
  display: block;
  font:
    900 clamp(70px, 10vw, 132px)/0.85 "Barlow Condensed",
    sans-serif;
}
.season-result-grid span {
  display: block;
  margin-top: 18px;
  text-transform: uppercase;
}
.season-arrow {
  padding: 25px;
  font:
    900 72px/1 "Barlow Condensed",
    sans-serif;
}
.season-result .claim-note {
  padding-bottom: 70px;
  color: var(--ink);
}

/* Uniform, expandable image galleries */
.h-grid,
.food-grid,
.wall-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
}
.h-grid figure,
.food-grid figure,
.wall-grid figure,
.h-grid .h-wide,
.h-grid .h-tall,
.wall-grid .wall-wide,
.wall-grid .wall-tall {
  grid-column: auto;
  grid-row: auto;
  height: auto;
}
.h-grid img,
.food-grid img,
.wall-grid img,
.case-proof-grid img,
.ba-grid img {
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-proof-grid .wide {
  grid-column: auto;
}
.h-grid figure:hover img,
.food-grid figure:hover img,
.wall-grid figure:hover img,
.case-proof-grid figure:hover img,
.ba-grid figure:hover img {
  transform: scale(1.035);
}
.ba-grid figure {
  height: auto;
  aspect-ratio: 4/3;
}
.service-comics a,
.method-grid a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.service-comics a,
.method-grid a {
  background: var(--paper);
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 28px;
}
.method-grid a:nth-child(even),
.service-comics a:nth-child(3n + 2) {
  transform: rotate(1deg);
}
.service-comics a:hover,
.method-grid a:hover {
  transform: translate(3px, 3px) !important;
  box-shadow: 3px 3px 0 var(--ink);
}
.service-comics a::after,
.method-grid a::after {
  content: "View a related example →";
  display: block;
  margin-top: 22px;
  font:
    800 15px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  color: var(--orange);
}
.case-card {
  color: inherit;
  text-decoration: none;
}
.case-card > div > strong {
  display: block;
  margin-top: 22px;
  color: var(--orange);
  font:
    800 18px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.red-case .result-grid {
  grid-template-columns: repeat(4, 1fr);
}
.red-case .result-grid article:nth-child(3) {
  border-right: 2px solid white;
}
.proof-film-media.simple-proof {
  padding: 14px;
  transform: none;
}
.proof-film-media.simple-proof img {
  display: none;
}
.proof-film-media.simple-proof video {
  aspect-ratio: 16/9;
}
.proof-film-media.simple-proof span {
  padding: 13px 3px 2px;
}

/* Full-screen project image viewer */
.lightbox-open {
  overflow: hidden;
}
.lm-lightbox[hidden] {
  display: none;
}
.lm-lightbox {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  place-items: center;
  background: rgba(9, 9, 10, 0.96);
  padding: 34px;
  color: white;
}
.lm-lightbox figure {
  grid-column: 2;
  position: relative;
  margin: 0;
  max-width: min(1500px, 100%);
  max-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
}
.lm-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
}
.lm-lightbox figcaption {
  padding-top: 13px;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
}
.lm-lightbox button {
  z-index: 2;
  border: 2px solid white;
  background: var(--ink);
  color: white;
  width: 50px;
  height: 50px;
  font-size: 26px;
  cursor: pointer;
}
.lm-lightbox-close {
  position: absolute;
  right: 24px;
  top: 22px;
}
.lm-lightbox-prev {
  grid-column: 1;
}
.lm-lightbox-next {
  grid-column: 3;
}
.lm-lightbox figure img:focus {
  outline: none;
}

@media (max-width: 900px) {
  .case-library-grid,
  .work-principle-grid {
    grid-template-columns: 1fr;
  }
  .case-library-hero {
    grid-column: auto;
    min-height: 620px !important;
  }
  .portfolio-case-copy dl {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-case-copy dl div:nth-child(2) {
    border-right: 0;
  }
  .portfolio-case-copy dl div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }
  .portfolio-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-mosaic .mosaic-wide {
    grid-column: span 2;
  }
  .h-grid,
  .food-grid,
  .wall-grid {
    grid-template-columns: 1fr 1fr;
  }
  .result-grid {
    grid-template-columns: 1fr;
  }
  .red-case .result-grid {
    grid-template-columns: 1fr 1fr;
  }
  .red-case .result-grid article:nth-child(2) {
    border-right: 0;
  }
  .red-case .result-grid article:nth-child(3) {
    border-right: 2px solid white;
  }
  .result-grid article {
    border-right: 0;
    border-bottom: 2px solid white;
  }
  .result-grid article:last-child {
    border-bottom: 0;
  }
  .season-result-grid {
    grid-template-columns: 1fr;
  }
  .season-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
  .lm-lightbox {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    padding: 18px;
  }
  .lm-lightbox button {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 600px) {
  .work-hero,
  .portfolio-case-hero {
    min-height: 820px;
  }
  .work-hero-copy,
  .portfolio-case-copy {
    padding: 140px 0 74px;
  }
  .work-hero h1,
  .portfolio-case-copy h1 {
    font-size: 54px;
  }
  .work-hero-copy > p:not(.stamp),
  .portfolio-case-copy > p:not(.stamp) {
    font-size: 15px;
  }
  .case-library-grid > a,
  .case-library-hero {
    min-height: 500px !important;
  }
  .case-library-grid > a > div {
    padding: 23px;
  }
  .case-library-grid h3 {
    font-size: 48px;
  }
  .portfolio-case-copy dl {
    grid-template-columns: 1fr;
  }
  .portfolio-case-copy dl div,
  .portfolio-case-copy dl div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }
  .portfolio-case-copy dl div:last-child {
    border-bottom: 0;
  }
  .portfolio-mosaic,
  .h-grid,
  .food-grid,
  .wall-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }
  .portfolio-mosaic .mosaic-wide {
    grid-column: auto;
  }
  .portfolio-mosaic .mosaic-tall {
    grid-row: auto;
  }
  .season-result-grid {
    padding-top: 70px;
  }
  .red-case .result-grid {
    grid-template-columns: 1fr;
  }
  .red-case .result-grid article:nth-child(3) {
    border-right: 0;
  }
  .season-result-grid > div:not(.season-arrow) {
    padding: 25px;
  }
  .season-result .claim-note {
    padding-bottom: 52px;
  }
  .lm-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    align-content: center;
  }
  .lm-lightbox figure {
    grid-column: 1;
    grid-row: 1;
  }
  .lm-lightbox-prev,
  .lm-lightbox-next {
    grid-column: 1;
    grid-row: 2;
    margin-top: 10px;
  }
  .lm-lightbox-prev {
    justify-self: start;
  }
  .lm-lightbox-next {
    justify-self: end;
  }
  .lm-lightbox-close {
    right: 12px;
    top: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .work-hero > video,
  .portfolio-case-hero > img {
    transform: none;
  }
  .case-library-grid img,
  .case-library-grid video,
  .portfolio-mosaic img,
  .h-grid img,
  .food-grid img,
  .wall-grid img {
    transition: none;
  }
}
