:root {
  --ink: #1a0700;
  --ink-soft: #240d05;
  --ink-deep: #110300;
  --cream: #fff2b6;
  --cream-muted: #e4d59a;
  --paper: #f5f5f3;
  --line: rgba(255, 242, 182, 0.2);
  --overlay: rgba(255, 226, 105, 0.68);
  --thumb-bg: #2a0d02;

  /* TYPOGRAPHY CONTROLS — change a value here to resize that text site-wide. */
  --type-nav: clamp(1.45rem, 2.6vw, 2.15rem);
  --type-hero: clamp(14rem, 26vw, 26rem);
  --type-section-title: clamp(3.7rem, 6.3vw, 5.2rem);
  --type-section-subtitle: clamp(1.08rem, 1.7vw, 1.55rem);
  --type-card-label: .95rem;
  --type-card-title: clamp(1.9rem, 3.2vw, 2.9rem);
  --type-card-copy: 1rem;
  --type-about-title: clamp(5.2rem, 9vw, 8rem);
  --type-ai-title: clamp(3.6rem, 6.9vw, 6.2rem);
  --type-ai-copy: clamp(1.12rem, 1.75vw, 1.52rem);
  --type-ai-note: clamp(1.55rem, 2.7vw, 2.5rem);
  --type-ai-script: 1.14em;
  --type-ai-arrow: 5.6rem;
  --type-food-title: clamp(3.8rem, 7vw, 6.4rem);
  --type-meme-title: clamp(4rem, 8vw, 7.3rem);
  --type-meme-copy: clamp(1rem, 1.7vw, 1.5rem);
  --type-midnight-title: clamp(4rem, 8vw, 7.3rem);
  --type-midnight-copy: clamp(1.1rem, 2vw, 1.7rem);
  --type-favs-title: clamp(4rem, 8vw, 7.3rem);
  --type-favs-accent: clamp(.9rem, 1.9vw, 1.65rem);
  --type-favs-copy: clamp(1.05rem, 1.8vw, 1.65rem);
  --type-favs-bloom-copy: clamp(.84rem, 1.44vw, 1.32rem);
  --type-favs-jergens-copy: clamp(.7875rem, 1.35vw, 1.2375rem);
  --type-label: .82rem;
  --type-body: clamp(1.3rem, 2vw, 1.75rem);
  --type-contact-email: clamp(1.5rem, 2.8vw, 2.4rem);
  --type-project-nav: .92rem;
  --type-project-title: clamp(5rem, 13vw, 12rem);
  --type-project-copy: clamp(1.35rem, 2.4vw, 2.3rem);
  --type-project-label: .82rem;
  --type-project-button: .9rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1144px, calc(100% - 48px));
  margin: 42px auto 64px;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(26, 7, 0, 0.18);
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 640px;
  border-bottom: 1px solid rgba(255, 242, 182, 0.16);
  isolation: isolate;
}

.nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 25px 64px 0;
  font-size: var(--type-nav);
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  width: max-content;
  transition: transform 180ms ease, color 180ms ease;
}

.nav a:nth-child(2) {
  justify-self: center;
}

.nav a:nth-child(3) {
  justify-self: end;
}

.nav a:hover {
  color: #fff8d6;
  transform: translateY(-2px);
}

.hero-type {
  position: absolute;
  z-index: 1;
  inset: 80px 18px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-hero);
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 4px var(--cream);
  text-stroke: 4px var(--cream);
  text-align: center;
  pointer-events: none;
  animation: led-sign 10.5s ease-in-out infinite;
  will-change: filter, opacity;
}

.hero-cutout {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(350px, 33vw);
  max-height: 67%;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.2));
  animation: settle 760ms ease both;
}

.work-band,
.about-contact,
.contact {
  padding: 68px 64px;
}

.work-band {
  border-top: 1px solid rgba(255, 242, 182, 0.17);
  padding-top: 52px;
  padding-bottom: 86px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
}

.section-heading h1,
.about-contact h2,
.contact p {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-section-title);
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-section-subtitle);
  text-transform: uppercase;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.concept-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--thumb-bg);
  border: 1px solid rgba(255, 242, 182, 0.16);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.concept-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--image-position, center);
  transform: scale(1.01);
  filter: grayscale(16%) saturate(0.82) contrast(0.96) sepia(8%);
  transition: transform 280ms ease, filter 280ms ease;
}

.concept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 7, 0, 0.02), rgba(26, 7, 0, 0.28)),
    rgba(255, 242, 182, 0.05);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.concept-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--overlay);
  opacity: 0;
  transition: opacity 220ms ease;
}

.concept-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  color: var(--ink-deep);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.concept-card:hover,
.concept-card:focus-visible {
  border-color: rgba(255, 242, 182, 0.72);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.26);
  transform: translateY(-3px);
}

.concept-card:hover img,
.concept-card:focus-visible img {
  filter: grayscale(4%) saturate(0.94) contrast(0.98) sepia(4%);
  transform: scale(1.04);
}

.concept-card:hover::after,
.concept-card:focus-visible::after,
.concept-card:hover .concept-overlay,
.concept-card:focus-visible .concept-overlay {
  opacity: 1;
  transform: translateY(0);
}

.concept-overlay span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-card-label);
  font-weight: 600;
}

.concept-overlay strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-card-title);
  line-height: 0.85;
  text-transform: uppercase;
}

.concept-overlay em {
  max-width: 13rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-card-copy);
  line-height: 1.06;
}

.about-contact {
  padding-top: 94px;
  padding-bottom: 58px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  column-gap: 78px;
  align-items: start;
}

.about-intro .section-label {
  grid-column: 1;
}

.about-contact h2 {
  grid-column: 1;
  max-width: none;
  font-size: var(--type-about-title);
  line-height: 0.83;
  white-space: normal;
}

.about-contact h2 span {
  display: block;
  white-space: nowrap;
}

.about-body {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-top: 12px;
  max-width: 31rem;
  justify-self: end;
  text-align: right;
  white-space: pre-line;
}

.ai-case {
  padding: 66px 64px 74px;
  border-top: 1px solid rgba(255, 242, 182, 0.17);
}

.ai-case h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-ai-title);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.ai-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 18px 19px;
  align-items: center;
  margin-top: 26px;
}

.ai-copy {
  align-self: stretch;
  padding-top: 2px;
}

.ai-copy p,
.ai-outro {
  margin: 0;
  color: #f7e9b2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-ai-copy);
  line-height: 1.18;
}

.ai-copy p + p {
  margin-top: 27px;
}

.ai-top-image {
  width: 90%;
  max-width: none;
  margin: 0;
  justify-self: center;
  border: 0;
  background: transparent;
}

.ai-top-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.843 / 1;
  object-fit: cover;
}

.ai-note {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 150px;
  color: var(--cream);
}

.ai-note span {
  font-size: var(--type-ai-note);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  transform: rotate(-4deg);
}

.ai-note span em {
  font-family: "Dancing Script", "Snell Roundhand", "Brush Script MT", cursive;
  font-size: var(--type-ai-script);
  font-style: normal;
  font-weight: 700;
}

.ai-note i {
  font-family: Caveat, cursive;
  font-size: var(--type-ai-arrow);
  font-style: normal;
  line-height: .55;
  transform: scaleX(-1) rotate(26deg);
}

.ai-bottom-images {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
  margin: 0;
}

.ai-bottom-images img {
  display: block;
  width: 100%;
  aspect-ratio: 0.843 / 1;
  object-fit: cover;
}

.ai-outro {
  margin: 20px auto 0;
  max-width: 54rem;
  text-align: center;
}

.food-case {
  padding: 66px 64px 82px;
  border-top: 1px solid rgba(255, 242, 182, 0.17);
}

.food-case h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-food-title);
  font-weight: 400;
  line-height: .86;
  text-transform: uppercase;
}

.phone-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 23px 20px;
  margin-top: 34px;
}

.phone-frame {
  position: relative;
  aspect-ratio: 9 / 19.2;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 3px solid #6e7374;
  border-radius: 25px;
  background: #050202;
  box-shadow: inset 0 0 0 2px #080808;
}

.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 42%;
  height: 12px;
  border-radius: 0 0 10px 10px;
  background: #050202;
  transform: translateX(-50%);
}

.phone-frame img,
.phone-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 68px 38px 0;
}

.meme-case {
  padding: 68px 64px 82px;
  border-top: 1px solid rgba(255, 242, 182, 0.17);
}

.meme-case h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-meme-title);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
}

.meme-copy {
  display: grid;
  gap: 34px;
  margin-top: 42px;
  max-width: 72rem;
}

.meme-copy p {
  margin: 0;
  color: #f7e9b2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-meme-copy);
  line-height: 1.24;
}

.meme-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}

.meme-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  object-fit: cover;
}

.midnight-case {
  padding: 68px 54px 72px;
  border-top: 1px solid rgba(255, 242, 182, 0.17);
}

.midnight-case h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-midnight-title);
  font-weight: 400;
  line-height: .84;
  text-transform: uppercase;
}

.midnight-intro,
.midnight-quotes p {
  margin: 0;
  color: #f7e9b2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-midnight-copy);
  line-height: 1.18;
}

.midnight-intro {
  max-width: 59rem;
  margin: 34px auto 24px;
  text-align: center;
}

.midnight-collage {
  margin: 0;
}

.midnight-collage img {
  display: block;
  width: 100%;
  aspect-ratio: 1.98 / 1;
  object-fit: cover;
}

.midnight-quotes {
  display: grid;
  gap: 20px;
  margin-top: 27px;
}

.midnight-quotes p:nth-child(1),
.midnight-quotes p:nth-child(3) {
  text-align: left;
}

.midnight-quotes p:nth-child(2),
.midnight-quotes p:nth-child(4) {
  text-align: right;
}

.favs-case {
  padding: 68px 64px 52px;
  border-top: 1px solid rgba(255, 242, 182, 0.17);
}

.favs-heading {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.favs-case h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-favs-title);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
}

.favs-heading span {
  display: grid;
  width: clamp(4.8rem, 9vw, 8rem);
  aspect-ratio: 1.25;
  place-items: center;
  color: #fff5ee;
  background: #ee5d9c;
  clip-path: polygon(50% 0%, 59% 14%, 71% 4%, 75% 20%, 91% 17%, 86% 32%, 100% 40%, 87% 51%, 96% 65%, 79% 66%, 80% 84%, 64% 77%, 53% 100%, 43% 79%, 29% 91%, 25% 74%, 6% 79%, 16% 62%, 0% 53%, 16% 43%, 4% 30%, 23% 29%, 22% 9%, 39% 19%);
  font-family: Inter, sans-serif;
  font-size: var(--type-favs-accent);
  font-style: italic;
  font-weight: 800;
  letter-spacing: .02em;
  transform: rotate(-6deg);
}

.favs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .96fr) minmax(0, .78fr);
  grid-template-rows: auto 10.5rem;
  align-items: end;
  column-gap: clamp(34px, 7.5vw, 120px);
  row-gap: 28px;
  margin-top: 38px;
}

.favs-card {
  display: contents;
}

.favs-image {
  margin: 0;
  overflow: hidden;
}

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

.favs-card--one .favs-image {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  aspect-ratio: .95 / 1;
}

.favs-card--two .favs-image {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  aspect-ratio: .8 / 1;
}

.favs-card--three .favs-image {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  aspect-ratio: .695 / 1;
}

.favs-copy {
  box-sizing: border-box;
  width: min(100%, 15rem);
  height: 10.5rem;
  margin: 0;
  color: #f7e9b2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-favs-copy);
  line-height: 1.1;
}

.favs-copy p {
  margin: 0;
}

.favs-copy p + p {
  margin-top: 12px;
}

.favs-card--two .favs-copy {
  font-size: var(--type-favs-bloom-copy);
}

.favs-card--three .favs-copy {
  font-size: var(--type-favs-jergens-copy);
}

.favs-card--one .favs-copy {
  grid-column: 1;
  grid-row: 2;
}

.favs-card--two .favs-copy {
  grid-column: 2;
  grid-row: 2;
}

.favs-card--three .favs-copy {
  grid-column: 3;
  grid-row: 2;
}

.about-photo {
  aspect-ratio: 1 / 1.02;
  margin: 0;
  overflow: hidden;
  background: var(--thumb-bg);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98) sepia(0.08);
}

.about-photo--portrait img {
  object-position: center 32%;
}

.section-label,
.case-kicker {
  margin: 0 0 16px;
  color: var(--cream-muted);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-body,
.project-deck p,
.project-panel p {
  margin: 0;
  color: #f7e9b2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-body);
  line-height: 1.08;
}

.contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 242, 182, 0.17);
}

.contact-email {
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-contact-email);
}

.contact-details {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.contact-socials {
  display: flex;
  gap: 11px;
}

.contact-socials a {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: var(--cream);
  transition: color 160ms ease, transform 160ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  color: #fff9dc;
  transform: translateY(-2px);
}

.contact-socials svg {
  width: 26px;
  height: 26px;
}

.project-page {
  background: var(--ink-soft);
}

.project-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 64px;
  border-bottom: 1px solid var(--line);
  font-size: var(--type-project-nav);
  font-weight: 800;
  text-transform: uppercase;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 40px;
  align-items: end;
  padding: 70px 64px 52px;
}

.project-hero h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--type-project-title);
  line-height: 0.78;
  text-transform: uppercase;
}

.project-hero p {
  margin: 0;
  color: var(--cream-muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-project-copy);
  line-height: 1.02;
}

.project-summary {
  display: grid;
  gap: 18px;
}

.project-summary span {
  color: var(--cream);
  font-size: var(--type-project-label);
  font-weight: 800;
  text-transform: uppercase;
}

.project-media {
  padding: 0 64px 24px;
}

.project-media img{
  width: 100%;
  max-height: 550px;
  display: block;
  object-fit: contain;
  border: 1px solid var(--line);
  background: transparent;
}

.project-media iframe,
.project-media video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border: 1px solid var(--line);
  background: transparent;
}

.project-media iframe {
  min-height: 420px;
}

.project-deck,
.project-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 64px 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-panel {
  min-height: 220px;
  padding: 24px;
  background: var(--ink-soft);
}

.project-panel h2,
.project-results h2 {
  margin: 0 0 18px;
  font-size: var(--type-project-label);
  text-transform: uppercase;
}

.project-results {
  grid-template-columns: 1fr;
  margin-bottom: 72px;
}

.project-work-sample {
  padding: 8px 64px 64px;
}

.project-work-sample a {
  display: inline-block;
  padding: 16px 22px;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: var(--type-project-button);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.project-work-sample a:hover {
  background: var(--cream);
  color: var(--ink);
}

@keyframes settle {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes led-sign {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(255, 242, 182, 0));
    opacity: 0.88;
  }
  44% {
    filter: drop-shadow(0 0 7px rgba(255, 242, 182, 0.48)) drop-shadow(0 0 24px rgba(255, 218, 118, 0.24));
    opacity: 1;
  }
  48% {
    filter: drop-shadow(0 0 2px rgba(255, 242, 182, 0.15));
    opacity: 0.82;
  }
  52% {
    filter: drop-shadow(0 0 8px rgba(255, 242, 182, 0.56)) drop-shadow(0 0 27px rgba(255, 218, 118, 0.27));
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-type {
    animation: none;
  }
}

@media (max-width: 860px) {
  :root {
    --type-hero: clamp(7.9rem, 24vw, 11.6rem);
  }

  .site-shell {
    width: min(100% - 24px, 720px);
    margin-top: 18px;
  }

  .hero {
    min-height: 570px;
  }

  .nav,
  .work-band,
  .about-contact,
  .ai-case,
  .food-case,
  .midnight-case,
  .favs-case,
  .contact,
  .project-nav,
  .project-hero,
  .project-media {
    padding-left: 26px;
    padding-right: 26px;
  }

.hero-type {
    inset: 112px 18px auto;
    font-size: var(--type-hero);
    -webkit-text-stroke-width: 3px;
    text-stroke-width: 3px;
  }

  .hero-cutout {
    width: min(320px, 56vw);
    transform: translateX(-50%);
  }

  .section-heading,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-details {
    justify-items: start;
  }

  .about-contact,
  .project-hero,
  .project-deck {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-intro .section-label,
  .about-contact h2,
  .about-body {
    grid-column: 1;
    grid-row: auto;
  }

  .about-body {
    max-width: 30rem;
    padding: 0;
    justify-self: start;
    text-align: left;
  }

  .about-gallery {
    margin-left: 0;
    margin-right: 0;
  }

  .ai-case {
    padding-left: 26px;
    padding-right: 26px;
  }

  .food-case {
    padding-left: 26px;
    padding-right: 26px;
  }

  .ai-layout {
    grid-template-columns: minmax(0, .9fr) minmax(155px, .72fr) minmax(0, .7fr);
    gap: 14px;
  }

  .ai-bottom-images {
    gap: 12px;
    margin: 0 14px;
  }

  .concept-grid {
    gap: 16px;
  }

  .meme-case {
    padding-left: 26px;
    padding-right: 26px;
  }

  .midnight-case {
    padding-left: 26px;
    padding-right: 26px;
  }

  .favs-case {
    padding-left: 26px;
    padding-right: 26px;
  }

  .concept-overlay {
    padding: 14px;
  }

  .project-deck,
  .project-results {
    margin-left: 26px;
    margin-right: 26px;
  }
}

@media (max-width: 560px) {
  :root {
    --type-nav: 1.2rem;
    --type-hero: clamp(6.1rem, 28vw, 8.8rem);
    --type-card-title: clamp(1.15rem, 7vw, 2rem);
    --type-card-copy: .86rem;
    --type-favs-title: clamp(3rem, 13vw, 4.2rem);
    --type-favs-copy: clamp(1rem, 4.2vw, 1.35rem);
    --type-midnight-title: clamp(3rem, 13vw, 4.2rem);
    --type-midnight-copy: 1rem;
    --type-favs-bloom-copy: clamp(.8rem, 3.36vw, 1.08rem);
    --type-favs-jergens-copy: clamp(.75rem, 3.15vw, 1.0125rem);
    --type-about-title: clamp(3.2rem, 16vw, 5.2rem);
    --type-ai-title: clamp(2.8rem, 12vw, 4rem);
    --type-ai-copy: 1rem;
    --type-food-title: clamp(3rem, 13vw, 4.2rem);
  }

  .site-shell {
    width: 100%;
    margin: 0;
  }

  .hero {
    min-height: 520px;
  }

  .nav {
    padding-top: 20px;
    font-size: var(--type-nav);
  }

  .hero-type {
    top: 120px;
    font-size: var(--type-hero);
  }

  .hero-cutout {
    width: min(292px, 64vw);
  }

  .concept-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
  }

  .concept-overlay {
    padding: 10px;
  }

  .concept-overlay strong {
    font-size: var(--type-card-title);
  }

  .concept-overlay em {
    font-size: var(--type-card-copy);
  }

  .work-band,
  .about-contact,
  .ai-case,
  .food-case,
  .midnight-case,
  .favs-case,
  .contact,
  .meme-case,
  .project-hero,
  .project-media {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .project-nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .meme-copy {
    gap: 22px;
    margin-top: 28px;
  }

  .meme-gallery {
    gap: 10px;
    margin-top: 34px;
  }

  .meme-gallery img {
    border-radius: 10px;
  }

  .midnight-intro {
    margin-top: 24px;
    margin-bottom: 18px;
  }

  .midnight-quotes {
    gap: 16px;
    margin-top: 20px;
  }

  .favs-case h2 {
    font-size: var(--type-favs-title);
  }

  .favs-layout {
    display: block;
    margin-top: 22px;
  }

  .favs-card {
    display: grid;
    gap: 22px;
  }

  .favs-card + .favs-card {
    margin-top: 34px;
  }

  .favs-copy {
    width: 100%;
    height: 10.5rem;
    font-size: var(--type-favs-copy);
  }

  .favs-card--two,
  .favs-card--three {
    padding-top: 0;
  }

  .about-contact h2 {
    font-size: var(--type-about-title);
  }

  .ai-case h2 {
    font-size: var(--type-ai-title);
  }

  .ai-layout {
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
    margin-top: 18px;
  }

  .ai-copy {
    grid-column: 1;
  }

  .ai-top-image {
    grid-column: 2;
    margin-left: 0;
  }

  .ai-note {
    display: none;
  }

  .ai-bottom-images {
    grid-column: 1 / -1;
    gap: 7px;
    margin: 0;
  }

  .ai-copy p,
  .ai-outro {
    font-size: var(--type-ai-copy);
  }

  .ai-copy p + p {
    margin-top: 14px;
  }

  .ai-outro {
    margin-top: 12px;
  }

  .food-case h2 {
    font-size: var(--type-food-title);
  }

  .phone-wall {
    gap: 9px 7px;
    margin-top: 22px;
  }

  .phone-frame {
    padding: 3px;
    border-width: 2px;
    border-radius: 12px;
  }

  .phone-frame::before {
    top: 3px;
    height: 6px;
    border-radius: 0 0 5px 5px;
  }

  .phone-frame img,
  .phone-frame video {
    border-radius: 7px;
  }
}
