@font-face {
  font-family: Space;
  src: url(assets/space-bold.ttf) format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Studio Serif;
  src: url(assets/serif.ttf) format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Studio Serif;
  src: url(assets/serif-italic.ttf) format('truetype');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
:root {
  --gutter: clamp(20px, 4vw, 64px);
  --space-font: Space, Arial, sans-serif;
  --serif-font: Studio Serif, Georgia, serif;
  --night: #101416;
  --lime: #d0f76a;
  --pg-blue: #2849df;
  --pg-yellow: #f2f59f;
  --pg-pink: #f7bad9;
  --pg-ink: #24294d;
  --st-blue: #2852bb;
}
.design-switcher {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
  background: #f9f9f7;
  color: #272b29;
  border-bottom: 1px solid #d5d9d3;
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.3;
  box-shadow: 0 2px 10px #00000005;
}
.lab-label {
  display: flex;
  gap: 9px;
  align-items: center;
  font-weight: 800;
  white-space: nowrap;
}
.lab-label span {
  font: 8px var(--mono);
  letter-spacing: 0.09em;
  color: #626863;
}
.design-switcher nav {
  display: flex;
  gap: 3px;
}
.design-switcher a {
  white-space: nowrap;
}
.design-switcher nav a {
  border-radius: 4px;
  padding: 9px 12px;
  color: #60645f;
  transition: background 0.15s;
}
.design-switcher nav a.active {
  background: #252d29;
  color: #fff;
}
.direction-options a span {
  font: 8px var(--mono);
  opacity: 0.5;
  margin-right: 5px;
}
.design-switcher > nav:last-child {
  padding-left: 15px;
  border-left: 1px solid #d5d9d3;
}
.design-switcher > nav:last-child a.active {
  background: #e8ebe5;
  color: #222b25;
}
.design-switcher a:focus-visible {
  outline: 2px solid #2849df;
  outline-offset: 2px;
}
.d-header {
  min-height: 96px;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.d-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--space-font);
  font-size: 23px;
  letter-spacing: -1px;
  white-space: nowrap;
}
.d-logo img {
  width: 27px;
  height: 31px;
  object-fit: contain;
}
.d-logo-light img {
  filter: invert(1);
}
.d-header > nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
}
.d-header .btn {
  padding: 12px 18px;
  font-size: 12px;
}
.d-overline {
  font: 9px/1.6 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.d-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 9px 0;
  font-size: 12px;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  white-space: nowrap;
}
.d-section {
  padding: 65px var(--gutter);
}
.d-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.d-section-head h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1.4px;
}
.d-section-head .d-overline + h2 {
  margin-top: 10px;
}
.d-section-head > .d-overline {
  white-space: nowrap;
}
.d-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.d-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.d-card-photo {
  aspect-ratio: 1.4;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.d-card-photo > a {
  display: block;
  width: 100%;
  height: 100%;
}
.d-photo-label {
  position: absolute;
  left: 16px;
  top: 16px;
  pointer-events: none;
  background: var(--paper);
  color: var(--ink);
  padding: 7px 9px;
  font: 8px/1.3 var(--mono);
  letter-spacing: 0.04em;
}
.d-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 19px 0 0;
}
.d-card-copy .d-overline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  row-gap: 2px;
  flex-wrap: wrap;
  min-height: 26px;
  font-size: 8px;
  line-height: 1.5;
}
.d-card-copy h3 {
  font-size: 22px;
  letter-spacing: -0.7px;
  line-height: 1.3;
  margin: 12px 0 24px;
}
.d-card-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  margin-top: auto;
  min-height: 24px;
  flex-wrap: wrap;
}
.d-card-bottom strong {
  font-size: 17px;
  white-space: nowrap;
  margin-left: auto;
}
.d-card-bottom small {
  font-size: 9px;
  font-weight: 400;
}
.d-discover {
  margin-top: 45px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  container-type: inline-size;
}
.d-work-nav button {
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 0;
  padding: 12px 0;
  font-size: 12px;
  color: var(--secondary);
  white-space: nowrap;
}
.d-work-nav button.active {
  color: var(--ink);
}
.d-work-nav button > span {
  font-size: 17px;
  line-height: 1;
  width: 20px;
  text-align: center;
}
.d-work-nav button > small {
  font: 9px var(--mono);
  background: var(--muted);
  border-radius: 3px;
  padding: 3px 5px;
}
.d-work-nav.is-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.d-footer {
  margin: 60px var(--gutter) 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font: 8px/1.5 var(--mono);
  letter-spacing: 0.06em;
}
.d-footer span:nth-child(2) {
  color: var(--secondary);
}
.d-footer a {
  white-space: nowrap;
}
.d-task {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.d-task-number {
  font: 10px var(--mono);
  color: var(--secondary);
}
.d-task-text {
  flex: 1;
  min-width: 0;
}
.d-task-text h3 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}
.d-task-text p {
  font-size: 11px;
  line-height: 1.5;
  color: var(--secondary);
}
.d-task-status {
  font: 8px var(--mono);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.d-task-arrow {
  border: 0;
  background: none;
  color: inherit;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  font-size: 23px;
}
.d-task-arrow:hover {
  background: var(--muted);
}
/* 02 — After Hours: a night-time culture channel and production console. */
:root[data-direction='after-hours'] {
  --paper: #101416;
  --white: #1a2022;
  --ink: #eff4eb;
  --secondary: #a3b0ac;
  --line: #37423e;
  --muted: #26322c;
  --red: #d0f76a;
  --red-wash: #293c1f;
  --green: #c2efaa;
  --green-wash: #293c1f;
  --yellow: #d0f76a;
  --display: Space, Arial, sans-serif;
  color-scheme: dark;
}
[data-direction='after-hours'] .btn {
  background: var(--lime);
  color: var(--night);
  border-radius: 0;
  font-weight: 600;
}
[data-direction='after-hours'] .btn:hover {
  background: var(--ink);
}
[data-direction='after-hours'] .btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
[data-direction='after-hours'] .btn-outline:hover {
  background: var(--muted);
}
[data-direction='after-hours'] .detail-body h2 {
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 1.1;
}
[data-direction='after-hours'] .person-letter {
  color: var(--ink);
}
[data-direction='after-hours'] .bookmark {
  background: var(--night);
}
[data-direction='after-hours'] .bookmark.saved {
  background: var(--lime);
}
[data-direction='after-hours'] .bookmark.saved svg {
  stroke: var(--night);
  fill: var(--night);
}
.ah-page {
  background: var(--night);
  color: var(--ink);
  min-height: 100dvh;
}
.ah-page .d-header {
  border-bottom: 1px solid var(--line);
}
.ah-page .d-header nav {
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ah-stage {
  position: relative;
  isolation: isolate;
  min-height: 670px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px var(--gutter) 25px;
  background: url(assets/neighbourhood.jpg) center 44% / cover;
}
.ah-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #0812148c, #08121433 35%, #081214b0 75%, #081214f0);
}
.ah-stage-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font: 9px var(--mono);
  letter-spacing: 0.05em;
}
.ah-stage-type {
  text-align: center;
  padding: 30px 0;
}
.ah-stage-type > .d-overline {
  color: var(--lime);
}
.ah-stage h1 {
  font: 700 clamp(75px, 11.4vw, 172px)/0.84 var(--space-font);
  letter-spacing: -0.095em;
  padding-right: 0.095em;
  margin: 24px 0;
}
.ah-stage h1 em {
  font-style: normal;
  color: var(--lime);
}
.ah-stage-type > p:last-child {
  font-size: 15px;
  line-height: 1.6;
}
.ah-stage-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 20px auto 0;
  width: 100%;
}
.ah-stage-bottom > span {
  text-align: center;
  font: 9px/1.7 var(--mono);
  letter-spacing: 0.08em;
}
.ah-stage-bottom .btn {
  justify-content: space-between;
  min-height: 49px;
  border-color: #e7efde66;
}
.ah-side-label {
  writing-mode: vertical-rl;
  position: absolute;
  left: 20px;
  top: 43%;
  font: 8px var(--mono);
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.ah-intro {
  display: grid;
  grid-template-columns: 70px 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 45px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.ah-orbit {
  font-size: 75px;
  color: var(--lime);
  line-height: 1;
}
.ah-intro h2 {
  font: 700 clamp(20px, 2.4vw, 34px)/1.1 var(--space-font);
  letter-spacing: -1.3px;
}
.ah-intro p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--secondary);
  max-width: 370px;
}
.ah-page .d-section-head h2,
.ah-page .d-card-copy h3 {
  font-family: var(--space-font);
}
.ah-card {
  border: 1px solid var(--line);
}
.ah-card .d-card-copy {
  padding: 20px;
}
.ah-card .d-photo-label {
  background: var(--lime);
  color: var(--night);
}
.ah-card .d-card-bottom {
  color: var(--secondary);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.ah-card .d-card-bottom strong {
  color: var(--lime);
}
.ah-card .d-card-copy h3 {
  font-size: 22px;
}
.ah-manifesto {
  border-top: 1px solid var(--line);
  margin: 0 var(--gutter);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ah-manifesto h2 {
  font: 700 clamp(48px, 7vw, 100px)/0.95 var(--space-font);
  letter-spacing: -0.065em;
  margin: 30px 0;
}
.ah-manifesto h2 span {
  color: var(--lime);
}
.ah-page > .d-footer {
  margin-top: 0;
}
.ah-work .d-header {
  min-height: 80px;
}
.ah-account {
  margin-left: auto;
  margin-right: 20px;
  color: var(--secondary);
}
.ah-work-shell {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
}
.ah-rail {
  border-right: 1px solid var(--line);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
}
.ah-rail .d-work-nav button {
  font-size: 10px;
  padding: 15px 10px;
}
.ah-rail .d-work-nav button.active {
  background: var(--lime);
  color: var(--night);
}
.ah-rail-bottom {
  margin-top: auto;
  padding: 40px 10px;
  font: 9px/1.6 var(--mono);
  color: var(--secondary);
}
.ah-work-main {
  padding: 32px 40px 0;
  min-width: 0;
}
.ah-greeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 25px;
}
.ah-greeting h1 {
  font: 700 clamp(34px, 3.4vw, 52px)/1.1 var(--space-font);
  letter-spacing: -2.4px;
  margin: 12px 0 10px;
}
.ah-greeting > div > p:last-child {
  font-size: 12px;
  color: var(--secondary);
  line-height: 1.6;
}
.ah-greeting > .btn {
  font-size: 11px;
  padding: 12px 16px;
}
.ah-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  margin-bottom: 28px;
}
.ah-metrics > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}
.ah-metrics > div:first-child {
  padding-left: 0;
}
.ah-metrics > div:last-child {
  border: 0;
}
.ah-metrics strong {
  font: 700 34px/1 var(--space-font);
  letter-spacing: -1.5px;
}
.ah-metrics span {
  font: 8px/1.6 var(--mono);
  color: var(--secondary);
  letter-spacing: 0.05em;
}
.ah-daily-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(240px, 1fr);
  gap: 26px;
}
.ah-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  border: 1px solid var(--line);
  min-height: 305px;
}
.ah-feature-copy {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: start;
  min-width: 0;
}
.ah-live {
  font: 9px var(--mono);
  color: var(--lime);
}
.ah-feature h2 {
  font: 700 clamp(23px, 2.5vw, 38px)/1.05 var(--space-font);
  letter-spacing: -1.8px;
  margin: 23px 0 14px;
}
.ah-feature p {
  font-size: 11px;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 25px;
}
.ah-feature .btn {
  margin-top: auto;
  width: 100%;
  justify-content: space-between;
  font-size: 11px;
  padding: 13px;
}
.ah-feature > img {
  min-width: 0;
  height: 100%;
  object-position: 45% center;
}
.ah-run {
  margin-top: 30px;
}
.ah-run .d-section-head {
  margin-bottom: 5px;
}
.ah-run .d-section-head h2 {
  font-size: 21px;
  letter-spacing: -0.7px;
}
.ah-task-list .hot {
  color: var(--lime);
}
.ah-ticket {
  background: var(--lime);
  color: var(--night);
  padding: 25px;
  position: relative;
  overflow: hidden;
}
.ah-ticket > .d-overline {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}
.ah-ticket h2 {
  font: 700 clamp(32px, 3vw, 44px)/1.02 var(--space-font);
  letter-spacing: -2px;
  margin: 25px 0 15px;
}
.ah-ticket > p {
  font-size: 12px;
  line-height: 1.6;
}
.ah-perforation {
  border-top: 1px dashed #506132;
  margin: 25px -25px 22px;
  position: relative;
}
.ah-perforation::before,
.ah-perforation::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--night);
  position: absolute;
  top: -10px;
}
.ah-perforation::before {
  left: -10px;
}
.ah-perforation::after {
  right: -10px;
}
.ah-ticket-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.ah-ticket-facts small {
  font: 8px var(--mono);
  display: block;
  margin-bottom: 8px;
}
.ah-ticket-facts strong {
  font-size: 12px;
}
.ah-ticket .btn {
  background: var(--night);
  color: var(--lime);
  width: 100%;
  font-size: 11px;
  justify-content: space-between;
  padding: 14px;
}
.ah-barcode {
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    var(--night) 0 1px,
    transparent 1px 3px,
    var(--night) 3px 6px,
    transparent 6px 10px,
    var(--night) 10px 12px,
    transparent 12px 14px
  );
  margin: 24px 0 12px;
  opacity: 0.8;
}
.ah-transmission {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.ah-transmission > .d-overline {
  color: var(--secondary);
}
.ah-transmission h3 {
  font-size: 15px;
  margin: 15px 0 10px;
}
.ah-transmission p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--secondary);
  margin-bottom: 14px;
}
.ah-brand-log {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 32px;
}
.ah-brand-log > div {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.ah-brand-log > div > span {
  font: 8px var(--mono);
  color: var(--secondary);
}
.ah-brand-log p {
  font-size: 12px;
}
.ah-work-main > .d-footer {
  margin-inline: 0;
}
.ah-work-main .d-discover {
  margin-top: 36px;
}
/* 03 — Playground: vivid, open, rounded, and social. */
:root[data-direction='playground'] {
  --paper: #f5f4fb;
  --white: #fff;
  --ink: #24294d;
  --secondary: #676b82;
  --line: #dedfed;
  --muted: #eceefa;
  --red: #2849df;
  --red-wash: #e8edff;
  --green: #39554b;
  --green-wash: #dfeee1;
  --yellow: #f2f59f;
  --display: Space, Arial, sans-serif;
  color-scheme: light;
}
[data-direction='playground'] .btn {
  background: var(--pg-blue);
  color: #fff;
  border-radius: 99px;
  font-weight: 500;
}
[data-direction='playground'] .btn-outline {
  background: transparent;
  color: var(--pg-blue);
  border-color: #b5c0f4;
}
[data-direction='playground'] .btn:hover {
  background: var(--pg-ink);
  color: #fff;
}
[data-direction='playground'] .detail-body h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -2px;
  text-transform: none;
}
[data-direction='playground'] .filter {
  border-radius: 99px;
  padding-inline: 18px;
}
[data-direction='playground'] .filter.active {
  background: var(--pg-blue);
  border-color: var(--pg-blue);
}
[data-direction='playground'] .bookmark {
  width: 36px;
  height: 36px;
  right: 14px;
  top: 14px;
  background: #fff;
}
[data-direction='playground'] .bookmark.saved {
  background: var(--pg-yellow);
}
.pg-page {
  background: var(--paper);
  color: var(--pg-ink);
  min-height: 100dvh;
}
.pg-topbar {
  background: var(--pg-blue);
  color: white;
}
.pg-topbar .btn {
  background: var(--pg-yellow);
  color: var(--pg-ink);
}
.pg-blue {
  background: var(--pg-blue);
  color: white;
  border-radius: 0 0 45px 45px;
  overflow: hidden;
}
.pg-blue .d-header .btn {
  background: var(--pg-yellow);
  color: var(--pg-ink);
}
.pg-blue .d-header {
  max-width: 1530px;
  margin: auto;
}
.pg-hero {
  position: relative;
  text-align: center;
  padding: 36px var(--gutter) 0;
  max-width: 1480px;
  margin: auto;
}
.pg-hero > .d-overline {
  font-size: 9px;
  color: #d8deff;
}
.pg-hero h1 {
  font: 700 clamp(58px, 6.8vw, 105px)/1.01 var(--space-font);
  letter-spacing: -0.07em;
  margin: 27px 0 25px;
}
.pg-hero h1 > span {
  color: var(--pg-yellow);
}
.pg-hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #e3e8ff;
}
.pg-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 27px 0;
}
.pg-hero-actions .btn {
  background: var(--pg-pink);
  color: var(--pg-ink);
  min-width: 174px;
}
.pg-hero-actions .btn-outline {
  background: transparent;
  border-color: #b0bfff;
  color: #fff;
}
.pg-sticker {
  position: absolute;
  font-family: var(--space-font);
  font-size: 13px;
  line-height: 1.1;
  z-index: 1;
}
.sticker-one {
  left: 6%;
  top: 27%;
  background: var(--pg-pink);
  color: var(--pg-ink);
  width: 83px;
  height: 94px;
  padding-top: 21px;
  border-radius: 20px;
  transform: rotate(-13deg);
}
.sticker-two {
  right: 6%;
  top: 15%;
  font-size: 88px;
  color: var(--pg-yellow);
  transform: rotate(15deg);
}
.pg-photo-garden {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  align-items: end;
  gap: 30px;
  max-width: 1070px;
  margin: 42px auto -45px;
  padding-inline: 15px;
}
.pg-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid var(--pg-blue);
  background: var(--pg-ink);
}
.pg-photo span {
  position: absolute;
  bottom: 65px;
  left: 10%;
  right: 10%;
  padding: 8px 10px;
  font: 8px var(--mono);
  border-radius: 50px;
  background: var(--pg-yellow);
  color: var(--pg-ink);
}
.photo-one {
  border-radius: 50% 50% 20px 20px;
  transform: rotate(-8deg);
  margin-bottom: 7px;
}
.photo-two {
  border-radius: 130px 130px 25px 25px;
  aspect-ratio: 1.22;
}
.photo-three {
  border-radius: 50% 50% 25px 25px;
  transform: rotate(8deg);
  margin-bottom: 7px;
}
.pg-welcome {
  padding: 80px var(--gutter) 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.pg-welcome h2 {
  font: 700 clamp(22px, 2.7vw, 39px)/1.25 var(--space-font);
  letter-spacing: -1.5px;
}
.pg-welcome h2 > span {
  color: var(--pg-blue);
}
.pg-welcome p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--secondary);
}
.pg-page .d-section-head h2 {
  font: 700 34px/1.15 var(--space-font);
  letter-spacing: -1.6px;
}
.pg-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.pg-card .d-card-photo {
  margin: 9px 9px 0;
  border-radius: 16px;
  aspect-ratio: 1.45;
}
.pg-card .d-card-copy {
  padding: 20px 23px 23px;
}
.pg-card .d-photo-label {
  left: 12px;
  top: 12px;
  background: var(--pg-yellow);
  border-radius: 30px;
  padding: 9px 11px;
}
.pg-card h3 {
  font-family: var(--space-font);
  font-size: 22px;
}
.pg-card .d-card-bottom {
  color: var(--secondary);
}
.pg-card .d-card-bottom strong {
  color: var(--pg-blue);
}
.pg-two-up {
  margin: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.pg-two-up article {
  padding: 42px;
  border-radius: 30px;
  background: var(--pg-yellow);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.pg-two-up article:nth-child(2) {
  background: var(--pg-pink);
}
.pg-two-up h2 {
  font: 700 clamp(28px, 3.7vw, 55px)/1.05 var(--space-font);
  letter-spacing: -2.5px;
  margin: 28px 0 20px;
}
.pg-two-up p:not(.d-overline) {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.pg-two-up .btn {
  margin-top: auto;
}
.pg-mini-orbit {
  position: absolute;
  right: 35px;
  top: 26px;
  font-size: 50px;
  line-height: 1;
}
.pg-work {
  display: grid;
  grid-template-columns: 215px minmax(0, 1fr);
}
.pg-sidebar {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.pg-sidebar .d-logo {
  font-size: 21px;
}
.pg-account {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 35px 0 28px;
}
.pg-account > span {
  display: grid;
  place-items: center;
  background: var(--pg-pink);
  color: var(--pg-ink);
  width: 35px;
  height: 35px;
  border-radius: 12px;
  font: 10px var(--space-font);
  flex-shrink: 0;
}
.pg-account strong {
  font-size: 11px;
  display: block;
}
.pg-account small {
  font-size: 9px;
  color: var(--secondary);
  display: block;
  margin-top: 5px;
}
.pg-sidebar .d-work-nav button {
  padding: 14px 12px;
  font-size: 11px;
  border-radius: 12px;
}
.pg-sidebar .d-work-nav button.active {
  background: var(--pg-blue);
  color: #fff;
}
.pg-sidebar .d-work-nav button > small {
  color: var(--pg-ink);
}
.pg-side-note {
  padding: 24px 15px;
  margin-top: 55px;
  background: var(--pg-yellow);
  border-radius: 20px;
}
.pg-side-note > span {
  font-size: 37px;
  color: var(--pg-blue);
  line-height: 1;
}
.pg-side-note p {
  font: 700 20px/1.2 var(--space-font);
  letter-spacing: -0.7px;
  margin-top: 15px;
}
.pg-sidebar > .d-link {
  margin-top: auto;
  font-size: 11px;
  padding-top: 45px;
  justify-content: space-between;
}
.pg-sidebar > .d-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}
.pg-work-main {
  padding: 34px 36px 0;
  min-width: 0;
}
.pg-work-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.pg-work-heading h1 {
  font: 700 clamp(30px, 3vw, 42px)/1.12 var(--space-font);
  letter-spacing: -2px;
  margin-top: 14px;
  max-width: 650px;
}
.pg-work-heading h1 > span {
  font-size: 30px;
  color: var(--pg-blue);
  display: inline-block;
  margin-left: 10px;
}
.pg-work-heading > .btn {
  font-size: 11px;
  padding: 13px 17px;
  gap: 18px;
}
.pg-chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 23px 0 28px;
}
.pg-chips > span {
  padding: 10px 14px;
  font-size: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pg-chips b {
  font: 700 13px var(--space-font);
  color: var(--pg-blue);
}
.pg-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(270px, 1fr);
  gap: 22px;
}
.pg-focus {
  padding: 26px;
  background: var(--pg-yellow);
  border-radius: 25px;
  min-width: 0;
}
.pg-focus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pg-label {
  font: 8px var(--mono);
  background: #fffff480;
  padding: 9px 11px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}
.pg-focus-star {
  font-size: 30px;
  line-height: 1;
}
.pg-focus-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  margin-top: 25px;
}
.pg-focus-body .d-overline {
  font-size: 8px;
}
.pg-focus h2 {
  font: 700 clamp(28px, 3vw, 43px)/1.03 var(--space-font);
  letter-spacing: -2px;
  margin: 15px 0;
}
.pg-focus-body > div > p:not(.d-overline) {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.pg-focus .btn {
  font-size: 11px;
  gap: 15px;
  padding: 13px 17px;
}
.pg-focus-photo {
  position: relative;
  align-self: stretch;
  min-height: 195px;
}
.pg-focus-photo img {
  border-radius: 99px;
  object-position: 45% center;
}
.pg-focus-photo > span {
  position: absolute;
  right: -6px;
  bottom: 15px;
  display: grid;
  place-items: center;
  background: var(--pg-pink);
  border: 4px solid var(--pg-yellow);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 24px;
}
.pg-side-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 25px;
  border-radius: 25px;
  min-width: 0;
}
.pg-side-card.calendar-panel {
  height: auto;
}
.pg-side-card .calendar-title {
  gap: 12px;
  align-items: start;
}
.pg-side-card .calendar-title h2 {
  font: 700 20px/1.2 var(--space-font);
  max-width: 180px;
  letter-spacing: -0.6px;
}
.pg-side-card .calendar-title > span {
  font-size: 8px;
  white-space: nowrap;
}
.pg-side-card .day {
  border-radius: 12px;
  font-size: 13px;
  min-width: 0;
}
.pg-side-card .day.active {
  background: var(--pg-blue);
}
.pg-side-card .timeline {
  min-height: 120px;
}
.pg-side-card .timeline-event > div {
  border-color: var(--pg-blue);
}
.pg-side-card .timeline-event {
  grid-template-columns: 42px 1fr;
  gap: 8px;
}
.pg-lineup {
  background: #fff;
  border-radius: 25px;
  padding: 25px;
  border: 1px solid var(--line);
  min-width: 0;
}
.pg-lineup .d-section-head {
  margin-bottom: 8px;
  gap: 10px;
}
.pg-lineup .d-section-head h2 {
  font-size: 23px;
  letter-spacing: -1px;
}
.pg-lineup .d-link {
  font-size: 10px;
  gap: 10px;
}
.pg-task-list .d-task {
  gap: 12px;
  padding: 18px 0;
}
.pg-task-list .d-task-number {
  background: var(--muted);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--pg-blue);
}
.pg-task-list .d-task-text h3 {
  font-size: 12px;
}
.pg-task-list .d-task-text p {
  font-size: 10px;
}
.pg-task-list .d-task-status {
  font-size: 7px;
  background: var(--muted);
  padding: 7px;
  border-radius: 20px;
}
.pg-task-list .d-task-status.hot {
  background: var(--pg-yellow);
}
.pg-task-list .d-task-arrow {
  width: 25px;
  font-size: 21px;
}
.pg-task-list .d-task:last-child {
  border: 0;
  padding-bottom: 0;
}
.pg-message {
  background: var(--pg-pink);
  border-radius: 25px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.pg-message-icon {
  font: 700 60px/1 var(--space-font);
  color: var(--pg-blue);
  height: 45px;
}
.pg-message h3 {
  font: 700 clamp(20px, 2.2vw, 29px)/1.25 var(--space-font);
  letter-spacing: -1px;
  margin: 20px 0 30px;
}
.pg-message .d-link {
  font-size: 10px;
  gap: 10px;
  margin-top: auto;
  white-space: normal;
}
.pg-applicants h2 {
  font: 700 30px/1.1 var(--space-font);
  letter-spacing: -1.5px;
  margin: 15px 0 10px;
}
.pg-applicants > p:not(.d-overline) {
  font-size: 11px;
  line-height: 1.6;
  color: var(--secondary);
}
.pg-applicants .person-row {
  gap: 8px;
}
.pg-applicants .person-info h3 {
  font-size: 11px;
}
.pg-applicants .person-info p {
  font-size: 9px;
}
.pg-applicants .person-row > .kicker {
  font-size: 8px;
}
.pg-applicants .btn {
  width: 100%;
  margin-top: 20px;
  font-size: 11px;
  justify-content: space-between;
  padding: 12px 16px;
}
.pg-brand-bottom {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  background: #e5ebff;
  border-radius: 25px;
}
.pg-brand-bottom > div {
  display: flex;
  align-items: center;
  gap: 25px;
}
.pg-brand-bottom > div > span {
  font-size: 55px;
  color: var(--pg-blue);
}
.pg-brand-bottom h2 {
  font: 700 26px/1.2 var(--space-font);
  letter-spacing: -1px;
}
.pg-brand-bottom .btn {
  font-size: 11px;
}
.pg-work-main > .d-footer {
  margin-inline: 0;
}
/* 04 — Studio: the quiet confidence of a creative practice. */
:root[data-direction='studio'] {
  --paper: #fcfcfa;
  --white: #fff;
  --ink: #262625;
  --secondary: #70706a;
  --line: #dcdcd5;
  --muted: #f0f0ea;
  --red: #2852bb;
  --red-wash: #e8eefc;
  --yellow: #eaeef6;
  --display: Studio Serif, Georgia, serif;
  color-scheme: light;
}
[data-direction='studio'] .btn {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  font-size: 11px;
  padding: 14px 18px;
  font-weight: 400;
}
[data-direction='studio'] .btn-outline {
  background: none;
  color: var(--ink);
  border-color: var(--line);
}
[data-direction='studio'] .btn:hover {
  background: var(--st-blue);
  color: white;
}
[data-direction='studio'] .detail-body h2 {
  font: 400 49px/1.05 var(--serif-font);
  text-transform: none;
  letter-spacing: -1px;
}
.st-page {
  background: var(--paper);
  color: var(--ink);
  min-height: 100dvh;
  padding-inline: var(--gutter);
}
.st-page .d-header {
  padding-inline: 0;
  border-bottom: 1px solid var(--ink);
  min-height: 94px;
}
.st-page .d-logo {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.st-header-note {
  font: 8px var(--mono);
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-right: auto;
  margin-left: 35px;
}
.st-page .d-header nav {
  font-size: 11px;
  gap: 26px;
}
.st-hero {
  padding: 45px 0 38px;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 45px;
}
.st-hero-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.st-hero-label .d-overline {
  font-size: 8px;
}
.st-hero-label > span {
  font: 8px/1.7 var(--mono);
  color: var(--secondary);
}
.st-hero h1 {
  font: 400 clamp(45px, 6.9vw, 100px)/1.02 var(--serif-font);
  letter-spacing: -0.045em;
}
.st-hero h1 em {
  font-weight: 400;
}
.st-hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-top: 36px;
}
.st-hero-bottom > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--secondary);
}
.st-hero-bottom > div {
  display: flex;
  gap: 30px;
}
.st-hero-bottom .d-link {
  gap: 25px;
  font-size: 11px;
}
.st-contact-sheet {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.st-contact-sheet figure {
  margin: 0;
  min-width: 0;
}
.st-contact-sheet img {
  height: 320px;
  object-position: center;
}
.st-contact-sheet figure:nth-child(2) {
  margin-top: 58px;
}
.st-contact-sheet figure:nth-child(2) img {
  height: 390px;
}
.st-contact-sheet figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font: 7px/1.5 var(--mono);
  padding-top: 12px;
  letter-spacing: 0.05em;
  color: var(--secondary);
}
.st-statement {
  margin-top: 70px;
  padding: 60px 0;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.65fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}
.st-statement h2 {
  font: 400 clamp(31px, 3.4vw, 49px)/1.1 var(--serif-font);
  letter-spacing: -1.3px;
}
.st-statement > p:last-child {
  font-size: 12px;
  line-height: 1.9;
  color: var(--secondary);
}
.st-openings {
  padding-top: 65px;
}
.st-page .d-section-head h2 {
  font: 400 43px/1.1 var(--serif-font);
  letter-spacing: -1px;
}
.st-opening {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 130px 90px 30px;
  gap: 25px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.st-opening:last-child {
  border-bottom: 1px solid var(--line);
}
.st-index {
  font: 10px var(--mono);
  color: var(--secondary);
}
.st-opening h3 {
  font: 400 30px/1.1 var(--serif-font);
  letter-spacing: -0.7px;
  margin-top: 10px;
}
.st-opening .d-overline {
  font-size: 8px;
  color: var(--secondary);
}
.st-opening-area {
  font: 8px var(--mono);
  color: var(--secondary);
}
.st-opening strong {
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}
.st-opening-arrow {
  font-size: 25px;
  text-align: right;
}
.st-opening:hover h3 {
  color: var(--st-blue);
}
.st-closing {
  text-align: center;
  padding: 80px 0 40px;
}
.st-closing h2 {
  font: 400 clamp(40px, 4.8vw, 69px)/1.1 var(--serif-font);
  letter-spacing: -1.8px;
  margin: 23px 0;
}
.st-page > .d-footer {
  margin-inline: 0;
}
.st-work .d-header > .d-work-nav {
  display: flex;
  gap: 25px;
  margin-inline: auto;
}
.st-work .d-work-nav button {
  font-size: 11px;
}
.st-work .d-work-nav button > span {
  display: none;
}
.st-work .d-work-nav .active {
  border-bottom: 1px solid var(--ink);
}
.st-work .d-header {
  min-height: 85px;
}
.st-day-heading {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: end;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.st-day-heading h1 {
  font: 400 clamp(43px, 4.7vw, 68px)/0.99 var(--serif-font);
  letter-spacing: -1.8px;
  margin-top: 21px;
}
.st-day-summary {
  max-width: 290px;
}
.st-day-summary p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--secondary);
  margin-bottom: 18px;
}
.st-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(230px, 0.85fr);
  gap: 45px;
  margin-top: 28px;
}
.st-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font: 8px var(--mono);
  letter-spacing: 0.06em;
  min-height: 28px;
}
.st-section-label .d-link {
  font-size: 10px;
  padding: 5px 0;
  gap: 15px;
}
.st-section-label > span:last-child {
  color: var(--st-blue);
  text-align: right;
}
.st-primary-task {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 30px;
  padding: 25px 0 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.st-primary-task > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-width: 0;
}
.st-primary-task .d-overline {
  font-size: 8px;
  color: var(--secondary);
}
.st-primary-task h2 {
  font: 400 clamp(41px, 4.5vw, 65px)/0.95 var(--serif-font);
  letter-spacing: -1.5px;
  margin: 22px 0 20px;
}
.st-primary-task p:not(.d-overline) {
  font-size: 12px;
  line-height: 1.8;
  max-width: 270px;
  color: var(--secondary);
  margin-bottom: 22px;
}
.st-primary-task .btn {
  margin-top: auto;
}
.st-primary-task figure {
  margin: 0;
  min-width: 0;
}
.st-primary-task img {
  height: 255px;
  object-position: 45% center;
}
.st-primary-task figcaption {
  font: 7px var(--mono);
  letter-spacing: 0.05em;
  color: var(--secondary);
  margin-top: 12px;
}
.st-task-list .d-task {
  padding: 19px 0;
  gap: 20px;
}
.st-task-list .d-task-text h3 {
  font-size: 13px;
  font-weight: 500;
}
.st-task-list .d-task-status.hot {
  color: var(--st-blue);
}
.st-task-list .d-task-arrow {
  border-radius: 50%;
  border: 1px solid var(--line);
  width: 34px;
  height: 34px;
  font-size: 18px;
}
.st-task-list .d-task-text p {
  font-size: 10px;
}
.st-margin {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.st-margin > section:first-child {
  padding-top: 8px;
}
.st-numbers {
  margin: 20px 0 0;
}
.st-numbers > div {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.st-numbers dt {
  font-size: 11px;
  line-height: 1.5;
  max-width: 120px;
  color: var(--secondary);
}
.st-numbers dd {
  margin: 0;
  font: 400 42px/1 var(--serif-font);
  letter-spacing: -1px;
}
.st-margin-note {
  padding-top: 30px;
}
.st-margin-note h2 {
  font: 400 30px/1.12 var(--serif-font);
  letter-spacing: -0.7px;
  margin: 18px 0 15px;
}
.st-margin-note > p:not(.d-overline) {
  font-size: 11px;
  line-height: 1.8;
  white-space: pre-line;
  color: var(--secondary);
  margin-bottom: 17px;
}
.st-margin-note .btn {
  width: 100%;
  justify-content: space-between;
}
.st-margin-note .d-link {
  font-size: 11px;
}
.st-brand-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 35px;
}
.st-brand-end h2 {
  font: 400 40px/1.1 var(--serif-font);
  letter-spacing: -1px;
}
.st-work main > .d-footer {
  margin-inline: 0;
}
.st-card .d-card-photo {
  aspect-ratio: 1.6;
}
.st-card .d-card-copy h3 {
  font: 400 29px/1.1 var(--serif-font);
  letter-spacing: -0.5px;
}
.st-card .d-photo-label {
  font-size: 7px;
}
.st-card .d-card-bottom {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.st-card .d-card-bottom strong {
  font-size: 14px;
  font-weight: 400;
}
/* Layout changes follow the available space, including intermediate widths. */
@container (max-width:650px) {
  .d-card-grid {
    grid-template-columns: 1fr;
  }
  .d-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
  }
  .d-card-photo {
    aspect-ratio: auto;
    height: 100%;
    min-height: 190px;
  }
  .d-card-copy {
    padding: 20px;
  }
  .pg-card .d-card-photo {
    margin: 0;
    border-radius: 20px 0 0 20px;
    aspect-ratio: auto;
  }
  .st-card .d-card-photo {
    aspect-ratio: auto;
  }
  .d-card-copy h3 {
    font-size: 21px;
  }
}
@media (min-width: 1800px) {
  .ah-page:not(.ah-work) main,
  .pg-page:not(.pg-work) main,
  .st-page {
    max-width: 1800px;
    margin-inline: auto;
  }
  .ah-work-main,
  .pg-work-main {
    max-width: 1800px;
    width: 100%;
    margin-inline: auto;
  }
  .ah-stage {
    min-height: 800px;
  }
}
@media (max-width: 1250px) {
  .design-switcher {
    gap: 10px;
    padding: 10px 16px;
  }
  .lab-label span {
    display: none;
  }
  .design-switcher nav a {
    padding: 9px 10px;
    font-size: 10px;
  }
  .ah-work-shell {
    grid-template-columns: 130px minmax(0, 1fr);
  }
  .ah-rail {
    padding-inline: 10px;
  }
  .ah-work-main,
  .pg-work-main {
    padding-inline: 26px;
  }
  .ah-daily-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(230px, 1fr);
    gap: 22px;
  }
  .ah-feature-copy {
    padding: 20px;
  }
  .ah-ticket {
    padding: 21px;
  }
  .ah-perforation {
    margin-inline: -21px;
  }
  .ah-card .d-card-copy {
    padding: 16px;
  }
  .ah-feature h2 {
    font-size: 29px;
  }
  .pg-work {
    grid-template-columns: 185px minmax(0, 1fr);
  }
  .pg-sidebar {
    padding-inline: 15px;
  }
  .pg-work-heading {
    align-items: start;
  }
  .pg-work-heading h1 {
    font-size: 34px;
  }
  .pg-bento {
    grid-template-columns: minmax(0, 1.7fr) minmax(235px, 1fr);
    gap: 18px;
  }
  .pg-focus,
  .pg-side-card,
  .pg-lineup,
  .pg-message {
    padding: 21px;
  }
  .pg-focus-body {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 12px;
  }
  .pg-focus-photo {
    min-height: 160px;
  }
  .pg-focus h2 {
    font-size: 33px;
  }
  .pg-focus .btn {
    font-size: 10px;
    padding: 13px 14px;
    gap: 10px;
  }
  .pg-task-list .d-task-status {
    display: none;
  }
  .pg-side-card .calendar-title h2 {
    font-size: 17px;
  }
  .pg-card .d-card-copy {
    padding: 18px;
  }
  .pg-brand-bottom h2 {
    font-size: 22px;
  }
  .pg-brand-bottom > div > span {
    display: none;
  }
  .st-hero {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 30px;
  }
  .st-hero h1 {
    font-size: 7vw;
  }
  .st-work-grid {
    gap: 30px;
  }
  .st-margin {
    padding-left: 25px;
  }
  .st-primary-task {
    gap: 23px;
  }
  .d-card-copy h3 {
    font-size: 20px;
  }
  .d-card-grid {
    gap: 20px;
  }
}
@media (max-width: 1000px) {
  .design-switcher .lab-label {
    display: none;
  }
  .design-switcher {
    justify-content: center;
  }
  .design-switcher > nav:last-child {
    padding-left: 10px;
  }
  .ah-work-shell {
    display: block;
  }
  .ah-rail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 6px 26px;
  }
  .ah-rail .d-work-nav {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
  .ah-rail .d-work-nav button {
    padding: 11px 12px;
  }
  .ah-rail-bottom {
    display: none;
  }
  .ah-work-main {
    padding-top: 25px;
  }
  .ah-greeting h1 {
    font-size: 40px;
  }
  .ah-feature {
    grid-template-columns: 1.2fr 0.7fr;
  }
  .ah-ticket h2 {
    font-size: 35px;
  }
  .ah-stage {
    min-height: 610px;
  }
  .ah-stage h1 {
    font-size: 12vw;
  }
  .ah-intro {
    grid-template-columns: 45px 1fr 1fr;
    gap: 25px;
  }
  .ah-orbit {
    font-size: 55px;
  }
  .ah-intro h2 {
    font-size: 25px;
  }
  .ah-intro p {
    font-size: 12px;
  }
  .pg-work {
    grid-template-columns: 165px minmax(0, 1fr);
  }
  .pg-sidebar .d-logo {
    font-size: 19px;
    gap: 8px;
  }
  .pg-sidebar .d-logo img {
    width: 23px;
  }
  .pg-sidebar .d-work-nav button {
    font-size: 10px;
    padding-inline: 10px;
  }
  .pg-work-heading {
    flex-wrap: wrap;
  }
  .pg-work-heading > .btn {
    padding: 10px 16px;
    font-size: 10px;
  }
  .pg-work-heading h1 {
    max-width: 490px;
    font-size: 35px;
  }
  .pg-bento {
    grid-template-columns: 1fr 1fr;
  }
  .pg-focus {
    grid-column: 1/-1;
  }
  .pg-focus-body {
    grid-template-columns: 1.7fr 0.7fr;
  }
  .pg-focus-photo {
    min-height: 170px;
    max-width: 180px;
  }
  .pg-focus h2 {
    font-size: 40px;
  }
  .pg-focus .btn {
    font-size: 11px;
  }
  .pg-lineup {
    grid-column: 1/-1;
    grid-row: 3;
  }
  .pg-side-card,
  .pg-message {
    grid-row: 2;
  }
  .pg-task-list .d-task-status {
    display: block;
  }
  .pg-chips {
    gap: 7px;
  }
  .pg-chips > span {
    font-size: 9px;
    padding: 9px 11px;
  }
  .pg-side-note {
    margin-top: 35px;
  }
  .pg-hero h1 {
    font-size: 8vw;
  }
  .sticker-one {
    left: 4%;
    width: 63px;
    height: 76px;
    font-size: 10px;
    padding-top: 18px;
    top: 28%;
  }
  .sticker-two {
    right: 4%;
    font-size: 67px;
    top: 18%;
  }
  .pg-photo-garden {
    gap: 12px;
  }
  .pg-welcome {
    display: block;
    padding-top: 65px;
  }
  .pg-welcome p {
    margin-top: 20px;
  }
  .pg-two-up article {
    padding: 30px;
  }
  .pg-two-up h2 {
    letter-spacing: -1.5px;
  }
  .pg-mini-orbit {
    font-size: 40px;
    right: 24px;
    top: 24px;
  }
  .st-header-note {
    display: none;
  }
  .st-hero {
    display: block;
  }
  .st-hero-label {
    flex-direction: row;
    margin-bottom: 25px;
  }
  .st-hero h1 {
    font-size: 8.3vw;
  }
  .st-contact-sheet {
    gap: 16px;
  }
  .st-contact-sheet img {
    height: 240px;
  }
  .st-contact-sheet figure:nth-child(2) img {
    height: 320px;
  }
  .st-contact-sheet figure:nth-child(2) {
    margin-top: 35px;
  }
  .st-statement {
    grid-template-columns: 1.3fr 1fr;
    padding-block: 40px;
    gap: 25px;
  }
  .st-statement > .d-overline {
    grid-column: 1/-1;
  }
  .st-statement h2 {
    font-size: 40px;
  }
  .st-opening {
    gap: 18px;
    grid-template-columns: 28px minmax(0, 1fr) 100px 80px 25px;
  }
  .st-opening h3 {
    font-size: 26px;
  }
  .st-work-grid {
    grid-template-columns: minmax(0, 1.8fr) minmax(210px, 1fr);
    gap: 25px;
  }
  .st-primary-task {
    grid-template-columns: 1fr 0.65fr;
    gap: 20px;
  }
  .st-primary-task h2 {
    font-size: 49px;
  }
  .st-primary-task img {
    height: 250px;
  }
  .st-work .d-header > .d-work-nav {
    gap: 18px;
  }
  .st-work .d-logo {
    font-size: 18px;
  }
  .st-work .d-logo img {
    width: 23px;
  }
  .st-task-list .d-task {
    gap: 13px;
  }
  .st-task-list .d-task-status {
    display: none;
  }
  .st-margin {
    padding-left: 22px;
  }
  .st-day-heading h1 {
    font-size: 57px;
  }
}
@media (max-width: 800px) {
  .design-switcher {
    flex-direction: column;
    gap: 7px;
    padding: 8px 15px;
  }
  .design-switcher > nav:last-child {
    border-left: 0;
    padding: 0;
  }
  .design-switcher nav {
    justify-content: center;
    width: 100%;
  }
  .design-switcher .direction-options a {
    flex: 1;
    text-align: center;
    font-size: 10px;
    padding: 9px 5px;
  }
  .design-switcher > nav:last-child a {
    min-width: 95px;
    text-align: center;
    padding: 7px 12px;
  }
  .d-header {
    min-height: 80px;
    gap: 18px;
    padding-block: 19px;
  }
  .d-header > nav {
    gap: 20px;
    font-size: 11px;
  }
  .d-logo {
    font-size: 21px;
  }
  .d-header .btn {
    font-size: 11px;
    padding: 11px 15px;
    gap: 18px;
  }
  .d-section {
    padding-block: 45px;
  }
  .d-section-head h2,
  .pg-page .d-section-head h2 {
    font-size: 29px;
  }
  .d-section-head > .d-overline {
    font-size: 8px;
  }
  .d-section-head {
    gap: 15px;
  }
  .d-link {
    font-size: 11px;
    gap: 12px;
  }
  .d-card-grid {
    gap: 16px;
  }
  .d-card-copy h3,
  .pg-card h3,
  .ah-card .d-card-copy h3 {
    font-size: 18px;
  }
  .d-card-bottom {
    font-size: 10px;
  }
  .d-card-bottom strong {
    font-size: 14px;
  }
  .d-card-copy .d-overline {
    font-size: 7px;
  }
  .d-photo-label {
    left: 10px;
    top: 10px;
    font-size: 7px;
  }
  .ah-stage {
    min-height: 550px;
  }
  .ah-stage-bottom {
    gap: 15px;
  }
  .ah-stage-bottom .btn {
    font-size: 11px;
    padding-inline: 14px;
    gap: 12px;
  }
  .ah-stage-meta {
    font-size: 7px;
  }
  .ah-stage-type > p:last-child {
    font-size: 13px;
  }
  .ah-intro {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding-block: 32px;
  }
  .ah-intro > p {
    grid-column: 2;
  }
  .ah-intro h2 {
    font-size: 27px;
  }
  .ah-intro p {
    max-width: none;
  }
  .ah-feature {
    grid-template-columns: 1fr;
  }
  .ah-feature > img {
    display: none;
  }
  .ah-feature-copy {
    padding: 23px;
  }
  .ah-feature h2 {
    font-size: 35px;
  }
  .ah-feature p {
    font-size: 12px;
  }
  .ah-feature .btn {
    font-size: 12px;
  }
  .ah-greeting h1 {
    font-size: 36px;
  }
  .ah-metrics > div {
    padding-inline: 15px;
  }
  .ah-metrics strong {
    font-size: 29px;
  }
  .ah-metrics span {
    font-size: 7px;
  }
  .ah-daily-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(225px, 1fr);
    gap: 20px;
  }
  .ah-task-list .d-task-status {
    display: none;
  }
  .ah-task-list .d-task {
    gap: 10px;
  }
  .ah-task-list .d-task-text h3 {
    font-size: 12px;
  }
  .ah-task-list .d-task-text p {
    font-size: 10px;
  }
  .ah-task-list .d-task-arrow {
    width: 28px;
  }
  .ah-run .d-section-head {
    flex-wrap: wrap;
  }
  .ah-run .d-section-head h2 {
    font-size: 20px;
  }
  .ah-card .d-card-copy {
    padding: 14px;
  }
  .pg-work {
    display: block;
  }
  .pg-sidebar {
    padding: 20px 25px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .pg-sidebar .d-logo {
    font-size: 22px;
  }
  .pg-account {
    margin: 0;
    justify-self: end;
  }
  .pg-account > span {
    width: 31px;
    height: 31px;
  }
  .pg-sidebar .d-work-nav {
    grid-column: 1/-1;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
  }
  .pg-sidebar .d-work-nav button {
    padding: 10px;
    font-size: 10px;
  }
  .pg-sidebar .d-work-nav button > span {
    font-size: 16px;
    width: 17px;
  }
  .pg-side-note,
  .pg-sidebar > .d-link {
    display: none;
  }
  .pg-work-main {
    padding-top: 26px;
  }
  .pg-work-heading {
    flex-wrap: nowrap;
    align-items: start;
  }
  .pg-work-heading h1 {
    font-size: 33px;
  }
  .pg-work-heading > .btn {
    margin-top: 5px;
  }
  .pg-bento {
    gap: 20px;
  }
  .pg-focus {
    padding: 25px;
  }
  .pg-focus-body {
    grid-template-columns: 1.2fr 0.65fr;
  }
  .pg-focus-photo {
    max-width: none;
    min-height: 220px;
  }
  .pg-photo span {
    bottom: 55px;
    font-size: 6px;
  }
  .pg-photo-garden {
    margin-top: 28px;
  }
  .pg-hero {
    padding-top: 23px;
  }
  .pg-hero > .d-overline {
    font-size: 7px;
  }
  .pg-hero-desc {
    font-size: 13px;
  }
  .sticker-one {
    top: 30%;
    left: 3%;
    width: 55px;
    height: 65px;
    font-size: 9px;
    padding-top: 16px;
    border-radius: 14px;
  }
  .sticker-two {
    font-size: 49px;
    top: 16%;
    right: 3%;
  }
  .pg-hero-actions .btn {
    min-width: 155px;
    font-size: 12px;
  }
  .pg-two-up article {
    padding: 25px;
  }
  .pg-two-up h2 {
    font-size: 33px;
    letter-spacing: -1.7px;
  }
  .pg-two-up p:not(.d-overline) {
    font-size: 12px;
  }
  .pg-two-up .btn {
    font-size: 11px;
    gap: 15px;
  }
  .pg-mini-orbit {
    font-size: 30px;
  }
  .pg-card .d-card-copy {
    padding: 16px;
  }
  .pg-card .d-photo-label {
    font-size: 7px;
    padding: 7px;
    left: 9px;
    top: 9px;
  }
  .pg-card .bookmark {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
  }
  .st-work .d-header {
    flex-wrap: wrap;
    gap: 18px;
    min-height: 108px;
  }
  .st-work .d-header > .d-work-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    gap: 12px;
  }
  .st-work .d-header > .icon-button {
    margin-left: auto;
  }
  .st-work .d-work-nav button {
    padding: 5px 0;
  }
  .st-work-grid {
    display: block;
  }
  .st-margin {
    border-left: 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    border-top: 1px solid var(--line);
    margin-top: 35px;
    padding-top: 25px;
  }
  .st-margin > section:first-child {
    grid-column: 1/-1;
  }
  .st-numbers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-top: 5px;
  }
  .st-numbers > div {
    gap: 10px;
  }
  .st-numbers dt {
    font-size: 10px;
    max-width: 100px;
  }
  .st-numbers dd {
    font-size: 36px;
  }
  .st-margin-note {
    padding-top: 0;
  }
  .st-primary-task {
    grid-template-columns: 1fr 0.8fr;
  }
  .st-primary-task h2 {
    font-size: 60px;
  }
  .st-primary-task img {
    height: 265px;
  }
  .st-task-list .d-task-status {
    display: block;
  }
  .st-task-list .d-task-text h3 {
    font-size: 13px;
  }
  .st-day-heading {
    padding-block: 28px;
    gap: 25px;
  }
  .st-day-heading h1 {
    font-size: 51px;
  }
  .st-day-summary {
    max-width: 210px;
  }
  .st-day-summary p {
    font-size: 11px;
  }
  .st-contact-sheet img {
    height: 180px;
  }
  .st-contact-sheet figure:nth-child(2) img {
    height: 250px;
  }
  .st-statement h2 {
    font-size: 33px;
  }
  .st-statement {
    margin-top: 45px;
  }
  .st-opening-area {
    display: none;
  }
  .st-opening {
    grid-template-columns: 25px minmax(0, 1fr) 78px 24px;
    gap: 15px;
  }
  .st-opening h3 {
    font-size: 26px;
  }
  .st-opening strong {
    font-size: 11px;
  }
  .st-brand-end {
    flex-wrap: wrap;
  }
  .st-brand-end > .d-overline {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .design-switcher {
    padding: 7px 10px;
    gap: 5px;
  }
  .design-switcher .direction-options a {
    font-size: 9px;
    padding: 9px 4px;
  }
  .direction-options a span {
    display: none;
  }
  .design-switcher > nav:last-child a {
    font-size: 9px;
    padding: 7px 13px;
  }
  .d-header {
    min-height: 74px;
    padding-block: 18px;
  }
  .d-header > nav:not(.d-work-nav) {
    display: none;
  }
  .d-header .btn {
    font-size: 10px;
    padding: 11px 14px;
    gap: 15px;
  }
  .d-logo {
    font-size: 21px;
  }
  .d-logo img {
    width: 25px;
    height: 28px;
  }
  .d-section-head {
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: 22px;
    gap: 14px;
  }
  .d-section-head h2,
  .pg-page .d-section-head h2 {
    font-size: 30px;
  }
  .d-section-head .d-overline + h2 {
    margin-top: 8px;
  }
  .d-section-head > .d-overline {
    margin-top: 7px;
  }
  .d-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .d-card,
  .d-discover .d-card {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .d-card-photo,
  .d-discover .d-card-photo {
    aspect-ratio: 1.5;
    height: auto;
    min-height: 0;
  }
  .d-card-copy .d-overline {
    font-size: 8px;
  }
  .d-card-copy h3,
  .pg-card h3,
  .ah-card .d-card-copy h3 {
    font-size: 23px;
    margin-bottom: 22px;
  }
  .d-card-copy {
    padding: 18px 0 0;
  }
  .d-card-bottom {
    font-size: 11px;
  }
  .d-card-bottom strong {
    font-size: 17px;
  }
  .d-photo-label {
    font-size: 8px;
    left: 14px;
    top: 14px;
  }
  .d-footer {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
    font-size: 7px;
  }
  .d-footer span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .d-task {
    gap: 12px;
    padding: 18px 0;
  }
  .d-task-text h3 {
    font-size: 12px;
  }
  .d-task-text p {
    font-size: 10px;
  }
  .d-task-status {
    font-size: 7px;
  }
  .d-task-number {
    font-size: 8px;
  }
  .d-task-arrow {
    width: 30px;
    font-size: 20px;
  }
  .ah-stage {
    min-height: 600px;
    padding-top: 22px;
    background-position: 53% center;
  }
  .ah-stage-meta {
    font-size: 7px;
    line-height: 1.6;
    align-items: start;
    gap: 25px;
  }
  .ah-stage-meta span {
    max-width: 145px;
  }
  .ah-stage-meta span:last-child {
    text-align: right;
    max-width: 105px;
  }
  .ah-stage-type {
    padding: 48px 0 35px;
  }
  .ah-stage-type > .d-overline {
    font-size: 7px;
  }
  .ah-stage h1 {
    font-size: clamp(52px, 12.8vw, 77px);
    letter-spacing: -0.09em;
    line-height: 0.97;
    margin: 25px 0;
  }
  .ah-stage-type > p:last-child {
    font-size: 13px;
    line-height: 1.8;
  }
  .ah-stage-bottom {
    grid-template-columns: 1fr;
    gap: 11px;
    max-width: 340px;
    margin-top: 0;
  }
  .ah-stage-bottom > span {
    display: none;
  }
  .ah-stage-bottom .btn {
    min-height: 46px;
    font-size: 12px;
    padding-inline: 20px;
  }
  .ah-side-label {
    display: none;
  }
  .ah-intro {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 18px;
  }
  .ah-intro h2 {
    font-size: 22px;
  }
  .ah-orbit {
    font-size: 43px;
  }
  .ah-intro p {
    font-size: 12px;
  }
  .ah-card .d-card-copy {
    padding: 20px;
  }
  .ah-manifesto {
    padding-block: 45px;
  }
  .ah-manifesto h2 {
    font-size: clamp(37px, 10vw, 59px);
  }
  .ah-manifesto > .d-overline {
    font-size: 7px;
  }
  .ah-manifesto .btn {
    font-size: 11px;
  }
  .ah-account {
    font-size: 7px;
    margin-inline: auto 0;
    max-width: 100px;
    line-height: 1.7;
    text-align: right;
  }
  .ah-work .d-header {
    gap: 15px;
    min-height: 74px;
  }
  .ah-work .d-header > .icon-button {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  .ah-rail {
    padding: 6px 14px;
  }
  .ah-rail .d-work-nav {
    gap: 2px;
  }
  .ah-rail .d-work-nav button {
    padding: 10px 7px;
    font-size: 9px;
    gap: 5px;
  }
  .ah-rail .d-work-nav button > span {
    display: none;
  }
  .ah-rail .d-work-nav button > small {
    font-size: 7px;
  }
  .ah-work-main {
    padding: 25px 20px 0;
  }
  .ah-greeting {
    display: block;
    margin-bottom: 22px;
  }
  .ah-greeting h1 {
    font-size: 39px;
    letter-spacing: -2px;
  }
  .ah-greeting > .btn {
    margin-top: 17px;
    font-size: 11px;
  }
  .ah-greeting .d-overline {
    font-size: 8px;
  }
  .ah-metrics {
    margin-bottom: 23px;
  }
  .ah-metrics > div {
    padding: 17px 12px;
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .ah-metrics strong {
    font-size: 30px;
  }
  .ah-metrics span {
    font-size: 7px;
    letter-spacing: 0;
  }
  .ah-daily-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .ah-feature {
    min-height: 290px;
    grid-template-columns: 1fr 0.45fr;
  }
  .ah-feature > img {
    display: block;
  }
  .ah-feature-copy {
    padding: 23px 20px;
  }
  .ah-feature h2 {
    font-size: 29px;
    letter-spacing: -1.5px;
    margin-top: 24px;
  }
  .ah-feature p {
    font-size: 10px;
  }
  .ah-feature .btn {
    font-size: 10px;
    padding: 12px;
    gap: 10px;
  }
  .ah-live {
    font-size: 8px;
  }
  .ah-run .d-section-head {
    flex-wrap: nowrap;
  }
  .ah-task-list .d-task-status {
    display: block;
  }
  .ah-ticket {
    padding: 25px;
  }
  .ah-perforation {
    margin-inline: -25px;
  }
  .ah-ticket h2 {
    font-size: 43px;
  }
  .ah-ticket > .d-overline {
    font-size: 9px;
  }
  .ah-ticket .btn {
    font-size: 12px;
  }
  .ah-ticket-facts strong {
    font-size: 14px;
  }
  .ah-ticket-facts small {
    font-size: 9px;
  }
  .ah-transmission {
    padding-top: 25px;
  }
  .ah-transmission h3 {
    font-size: 17px;
  }
  .ah-brand-log > div {
    gap: 15px;
    align-items: start;
  }
  .ah-brand-log > div > span {
    width: 70px;
    flex-shrink: 0;
    line-height: 1.7;
  }
  .ah-brand-log p {
    font-size: 11px;
    line-height: 1.6;
  }
  .pg-blue {
    border-radius: 0 0 25px 25px;
  }
  .pg-hero {
    padding-top: 30px;
  }
  .pg-hero > .d-overline {
    max-width: 260px;
    margin: auto;
    font-size: 7px;
    line-height: 1.9;
  }
  .pg-hero h1 {
    font-size: clamp(40px, 10vw, 58px);
    letter-spacing: -0.07em;
    margin: 25px 0 20px;
    position: relative;
    z-index: 2;
  }
  .pg-hero h1 > span {
    display: block;
  }
  .pg-hero-desc {
    font-size: 12px;
    line-height: 1.8;
    max-width: 340px;
    margin: auto;
  }
  .pg-hero-desc br {
    display: none;
  }
  .pg-hero-actions {
    gap: 10px;
    margin: 25px 0;
  }
  .pg-hero-actions .btn {
    min-width: 0;
    font-size: 11px;
    padding: 13px 17px;
    gap: 16px;
  }
  .sticker-one {
    left: 4%;
    top: 50%;
    width: 47px;
    height: 56px;
    font-size: 8px;
    padding-top: 12px;
    z-index: 0;
  }
  .sticker-two {
    right: 4%;
    top: 35px;
    font-size: 38px;
    z-index: 0;
  }
  .pg-photo-garden {
    grid-template-columns: 0.65fr 1.5fr 0.65fr;
    gap: 2px;
    margin: 35px -12px -17px;
    padding: 0;
  }
  .pg-photo {
    border-width: 3px;
  }
  .photo-one,
  .photo-three {
    aspect-ratio: 0.7;
  }
  .photo-two {
    aspect-ratio: 0.92;
    border-radius: 90px 90px 20px 20px;
  }
  .pg-photo span {
    display: none;
  }
  .pg-welcome {
    padding-top: 45px;
  }
  .pg-welcome h2 {
    font-size: 27px;
    letter-spacing: -1.1px;
  }
  .pg-welcome p {
    font-size: 12px;
  }
  .pg-card .d-card-photo,
  .d-discover .pg-card .d-card-photo {
    margin: 8px 8px 0;
    border-radius: 16px;
    aspect-ratio: 1.5;
  }
  .pg-card .d-card-copy {
    padding: 20px;
  }
  .pg-card .d-photo-label {
    font-size: 8px;
    padding: 8px 10px;
    left: 12px;
    top: 12px;
  }
  .pg-two-up {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pg-two-up article {
    padding: 30px;
    border-radius: 25px;
  }
  .pg-two-up h2 {
    font-size: 38px;
  }
  .pg-mini-orbit {
    font-size: 38px;
  }
  .pg-two-up p:not(.d-overline) {
    font-size: 13px;
  }
  .pg-two-up .btn {
    font-size: 12px;
  }
  .pg-sidebar {
    padding: 20px 17px 12px;
    gap: 17px;
  }
  .pg-sidebar .d-logo {
    font-size: 20px;
  }
  .pg-account strong {
    font-size: 9px;
  }
  .pg-account small {
    font-size: 8px;
  }
  .pg-account > span {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 9px;
  }
  .pg-sidebar .d-work-nav {
    gap: 2px;
  }
  .pg-sidebar .d-work-nav button {
    font-size: 9px;
    padding: 9px 7px;
    border-radius: 9px;
    gap: 4px;
  }
  .pg-sidebar .d-work-nav button > span {
    display: none;
  }
  .pg-sidebar .d-work-nav button > small {
    font-size: 7px;
    padding: 2px 4px;
  }
  .pg-work-main {
    padding: 25px 20px 0;
  }
  .pg-work-heading {
    display: block;
  }
  .pg-work-heading h1 {
    font-size: 33px;
    letter-spacing: -1.8px;
  }
  .pg-work-heading > .btn {
    margin-top: 18px;
    font-size: 11px;
    padding: 12px 16px;
  }
  .pg-work-heading .d-overline {
    font-size: 8px;
  }
  .pg-work-heading h1 > span {
    font-size: 25px;
  }
  .pg-chips {
    margin: 20px 0 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .pg-chips > span {
    padding: 11px 8px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 7px;
    line-height: 1.5;
    font-size: 8px;
  }
  .pg-chips b {
    font-size: 19px;
  }
  .pg-bento {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pg-focus {
    padding: 22px;
  }
  .pg-focus-body {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 15px;
  }
  .pg-focus-photo {
    display: none;
  }
  .pg-focus h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }
  .pg-focus .btn {
    font-size: 12px;
    padding: 13px 18px;
  }
  .pg-focus-top .pg-label {
    font-size: 8px;
  }
  .pg-focus-body .d-overline {
    font-size: 7px;
  }
  .pg-focus-body > div > p:not(.d-overline) {
    font-size: 12px;
  }
  .pg-side-card {
    order: 3;
    padding: 24px;
  }
  .pg-lineup {
    order: 2;
    padding: 22px;
  }
  .pg-message {
    order: 4;
    padding: 25px;
  }
  .pg-lineup .d-section-head {
    flex-wrap: nowrap;
    align-items: center;
    gap: 15px;
  }
  .pg-lineup .d-section-head h2 {
    font-size: 23px;
  }
  .pg-task-list .d-task-status {
    display: none;
  }
  .pg-task-list .d-task {
    gap: 10px;
  }
  .pg-task-list .d-task-text h3 {
    font-size: 12px;
  }
  .pg-message h3 {
    font-size: 28px;
  }
  .pg-side-card .calendar-title h2 {
    font-size: 21px;
    max-width: 230px;
  }
  .pg-applicants h2 {
    font-size: 34px;
  }
  .pg-applicants > p:not(.d-overline) {
    font-size: 12px;
  }
  .pg-applicants .person-info h3 {
    font-size: 12px;
  }
  .pg-applicants .person-info p {
    font-size: 10px;
  }
  .pg-brand-bottom {
    display: block;
    padding: 25px;
  }
  .pg-brand-bottom h2 {
    font-size: 26px;
  }
  .pg-brand-bottom .btn {
    margin-top: 22px;
  }
  .st-page .d-header {
    min-height: 75px;
  }
  .st-page .d-header > nav:not(.d-work-nav) {
    display: flex;
    gap: 16px;
    font-size: 10px;
  }
  .st-page:not(.st-work) .d-header > nav > a:last-child {
    display: none;
  }
  .st-page .d-logo {
    font-size: 20px;
    gap: 8px;
  }
  .st-page .d-logo img {
    width: 24px;
  }
  .st-hero {
    padding: 30px 0;
  }
  .st-hero-label > span {
    display: none;
  }
  .st-hero-label .d-overline {
    font-size: 7px;
  }
  .st-hero h1 {
    font-size: clamp(42px, 10.4vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
  .st-hero-bottom {
    display: block;
    margin-top: 24px;
  }
  .st-hero-bottom > p {
    font-size: 12px;
    line-height: 1.8;
  }
  .st-hero-bottom > div {
    margin-top: 22px;
    gap: 30px;
  }
  .st-hero-bottom .d-link {
    font-size: 11px;
    gap: 28px;
  }
  .st-contact-sheet {
    grid-template-columns: 1fr 1.3fr;
    gap: 15px;
  }
  .st-contact-sheet figure:nth-child(3) {
    display: none;
  }
  .st-contact-sheet figure:nth-child(2) {
    margin-top: 30px;
  }
  .st-contact-sheet img {
    height: 205px;
  }
  .st-contact-sheet figure:nth-child(2) img {
    height: 255px;
  }
  .st-contact-sheet figcaption {
    font-size: 6px;
    gap: 6px;
  }
  .st-statement {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 38px;
    padding: 32px 0;
  }
  .st-statement h2 {
    font-size: 38px;
  }
  .st-statement > p:last-child {
    font-size: 12px;
  }
  .st-openings {
    padding-top: 38px;
  }
  .st-page .d-section-head h2 {
    font-size: 34px;
  }
  .st-opening {
    grid-template-columns: 18px minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 22px 0;
    position: relative;
  }
  .st-opening .st-index {
    font-size: 8px;
    align-self: start;
    padding-top: 4px;
  }
  .st-opening > strong {
    grid-column: 2;
    font-size: 11px;
  }
  .st-opening > div {
    grid-column: 2;
  }
  .st-opening-arrow {
    grid-column: 3;
    grid-row: 1/3;
    font-size: 24px;
  }
  .st-opening h3 {
    font-size: 27px;
    letter-spacing: -0.7px;
    line-height: 1.15;
    margin-top: 9px;
  }
  .st-opening .d-overline {
    font-size: 7px;
  }
  .st-closing {
    padding: 50px 0 5px;
  }
  .st-closing h2 {
    font-size: 43px;
  }
  .st-work .d-header {
    min-height: 114px;
    padding-top: 20px;
    padding-bottom: 12px;
    gap: 17px;
  }
  .st-work .d-header > .d-work-nav {
    gap: 10px;
  }
  .st-work .d-work-nav button {
    font-size: 10px;
    gap: 5px;
  }
  .st-day-heading {
    display: block;
    padding-block: 25px;
  }
  .st-day-heading h1 {
    font-size: clamp(34px, 9.5vw, 46px);
    margin-top: 17px;
  }
  .st-day-heading .d-overline {
    font-size: 7px;
  }
  .st-day-summary {
    max-width: none;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .st-day-summary p {
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
  }
  .st-day-summary .btn {
    font-size: 11px;
    padding: 12px 16px;
  }
  .st-work-grid {
    margin-top: 23px;
  }
  .st-primary-task {
    grid-template-columns: 1.2fr 0.7fr;
    gap: 15px;
    padding-top: 24px;
    padding-bottom: 25px;
  }
  .st-primary-task h2 {
    font-size: 45px;
    margin: 19px 0 15px;
  }
  .st-primary-task .d-overline {
    font-size: 7px;
  }
  .st-primary-task p:not(.d-overline) {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .st-primary-task .btn {
    font-size: 10px;
    padding: 12px 10px;
    gap: 12px;
  }
  .st-primary-task img {
    height: 240px;
  }
  .st-primary-task figcaption {
    font-size: 6px;
    line-height: 1.5;
  }
  .st-section-label {
    font-size: 7px;
    gap: 12px;
    line-height: 1.6;
  }
  .st-task-list .d-task-status {
    display: none;
  }
  .st-task-list .d-task {
    gap: 10px;
  }
  .st-task-list .d-task-text h3 {
    font-size: 12px;
  }
  .st-task-list .d-task-text p {
    font-size: 9px;
  }
  .st-task-list .d-task-arrow {
    width: 30px;
    height: 30px;
  }
  .st-margin {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }
  .st-margin > section:first-child {
    grid-column: auto;
  }
  .st-numbers {
    gap: 15px;
  }
  .st-numbers > div {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    padding-bottom: 20px;
  }
  .st-numbers dd {
    font-size: 35px;
  }
  .st-numbers dt {
    font-size: 9px;
    min-height: 27px;
  }
  .st-margin-note h2 {
    font-size: 34px;
  }
  .st-margin-note > .btn {
    width: auto;
    gap: 30px;
  }
  .st-margin-note > p:not(.d-overline) {
    font-size: 12px;
  }
  .st-brand-end {
    display: block;
    padding-top: 28px;
  }
  .st-brand-end h2 {
    font-size: 38px;
    margin: 18px 0 22px;
  }
  .st-card .d-card-copy h3 {
    font-size: 30px;
  }
  .st-card .d-card-photo {
    aspect-ratio: 1.6;
  }
}
@media (max-width: 360px) {
  .design-switcher .direction-options a {
    font-size: 8px;
  }
  .design-switcher > nav:last-child a {
    min-width: 85px;
  }
  .pg-hero-actions .btn {
    padding-inline: 12px;
    gap: 12px;
  }
  .pg-work-heading h1 {
    font-size: 29px;
  }
  .pg-account > span {
    display: none;
  }
  .ah-feature {
    grid-template-columns: 1fr;
  }
  .ah-feature > img {
    display: none;
  }
  .ah-task-list .d-task-status {
    display: none;
  }
  .st-primary-task {
    grid-template-columns: 1fr 0.65fr;
    gap: 12px;
  }
  .st-primary-task h2 {
    font-size: 39px;
  }
  .st-primary-task .btn {
    font-size: 9px;
    padding: 12px 9px;
    gap: 8px;
  }
  .st-page .d-header > nav:not(.d-work-nav) {
    gap: 12px;
    font-size: 9px;
  }
  .st-page .d-logo {
    font-size: 18px;
  }
  .pg-lineup .d-section-head h2 {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .design-switcher nav a {
    transition: none;
  }
}

/* Photo contact sheets share one top edge, bottom edge, and caption baseline. */
.st-contact-sheet figure:nth-child(n) {
  margin-top: 0;
}
.st-contact-sheet figure:nth-child(n) img {
  height: clamp(210px, 26vw, 390px);
}
.st-contact-sheet figcaption {
  min-height: 30px;
  align-content: start;
}
@media (max-width: 600px) {
  .sticker-one {
    top: auto;
    bottom: 130px;
    left: 7%;
  }
}
