@font-face {
  font-family: "RubySystem";
  src: local("Arial");
}

:root {
  --hot: #f31587;
  --hot-soft: #ff7bc4;
  --lemon: #fff200;
  --cyan: #10c7f4;
  --aqua: #24e7d6;
  --lav: #dfe6ff;
  --lav-2: #cfd7f4;
  --ink: #050505;
  --paper: #fffdf7;
  --gray: #d6d3ce;
  --green: #55ff93;
  --blue: #041eb8;
  --headline: "Arial Black", Impact, system-ui, sans-serif;
  --round: "Trebuchet MS", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "Courier New", ui-monospace, monospace;
  --max: 1180px;
  --shadow: 8px 8px 0 rgba(0, 0, 0, 0.24);
  --yellow-shadow: 6px 6px 0 var(--lemon);
  --pink-shadow: 8px 8px 0 var(--hot);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--round);
  background:
    radial-gradient(circle at 14px 14px, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px) 0 0 / 32px 32px,
    linear-gradient(180deg, var(--lav), var(--lav-2));
}

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

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 0.65rem 0.9rem;
  background: var(--lemon);
  border: 3px solid var(--ink);
  font-family: var(--headline);
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--hot);
  color: var(--lemon);
  border-bottom: 4px solid rgba(255, 255, 255, 0.65);
}

.site-header__inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.brand {
  font-family: var(--headline);
  font-size: 2rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.18);
  transition: padding-left 0.15s ease;
}

.brand:hover {
  padding-left: 0.4rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.site-nav a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.72rem;
  border: 2px solid rgba(255, 242, 0, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  background: var(--lemon);
  color: var(--hot);
  border-color: #fff;
}

.menu-toggle {
  width: 62px;
  height: 50px;
  display: none;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  height: 4px;
  background: var(--lemon);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.menu-toggle::before {
  top: 12px;
}

.menu-toggle span {
  top: 23px;
}

.menu-toggle::after {
  top: 34px;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.kicker {
  margin: 0 0 0.75rem;
  color: rgba(0, 0, 0, 0.62);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.section-title,
.page-title {
  margin: 0;
  font-family: var(--headline);
  font-size: 5.5rem;
  line-height: 0.88;
  text-transform: uppercase;
}

.page-title {
  font-size: 8rem;
  color: var(--lemon);
  text-shadow: 6px 6px 0 var(--hot), 10px 10px 0 var(--cyan), 14px 14px 0 rgba(0, 0, 0, 0.2);
}

.title-cyan {
  color: var(--cyan);
  text-shadow: 4px 4px 0 var(--lemon);
}

.title-pink {
  color: var(--hot);
  text-shadow: 4px 4px 0 var(--lemon);
}

.title-black {
  color: var(--ink);
  text-shadow: 4px 4px 0 var(--hot-soft);
}

.lede,
.note {
  max-width: 620px;
  margin: 1.25rem 0 0;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  font-size: 1.06rem;
  line-height: 1.45;
}

.button,
.chip,
.social-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.2rem 1rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--headline);
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--lemon);
  cursor: pointer;
}

.button--pink {
  background: var(--hot);
  color: var(--lemon);
}

.button--cyan {
  background: var(--cyan);
  color: var(--ink);
}

.button--yellow {
  background: var(--lemon);
  color: var(--hot);
}

.button .star {
  font-size: 0.9em;
  line-height: 1;
}

.button-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.05rem;
  margin-top: 1.3rem;
}

.chip {
  min-height: 36px;
  padding: 0.15rem 0.8rem;
  background: #fff;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.82rem;
  box-shadow: 3px 3px 0 var(--hot-soft);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24px 24px, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px) 0 0 / 46px 46px;
  opacity: 0.45;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.hero-art {
  position: relative;
  min-height: 660px;
}

.magazine-frame {
  position: absolute;
  right: 3%;
  top: 10px;
  width: min(500px, 82vw);
  z-index: 6;
  transform: rotate(4deg);
  box-shadow: var(--pink-shadow);
  border: 5px solid var(--cyan);
  background: var(--cyan);
}

.magazine-frame img {
  width: 100%;
}

.sticker-star {
  position: absolute;
  width: 150px;
  left: -5%;
  top: 24px;
  filter: drop-shadow(7px 7px 0 rgba(0, 0, 0, 0.2));
  transform: rotate(-8deg);
}

.warning-stack {
  position: absolute;
  left: -3%;
  bottom: -8px;
  width: 300px;
  transform: rotate(-5deg);
}

.warning-window {
  position: relative;
  margin-top: -72px;
  border: 2px solid #111;
  background: var(--gray);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.22);
}

.warning-window:first-child {
  margin-top: 0;
}

.win-bar {
  min-height: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.4rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.win-body {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem;
  font-size: 0.86rem;
}

.triangle {
  width: 36px;
  height: 32px;
  background: var(--lemon);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.window-card,
.paper-panel,
.notes-panel {
  border: 4px solid var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  min-height: 240px;
  align-content: end;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.feature-card__body {
  padding: 1rem;
}

.feature-card h3,
.window-card h3,
.notes-panel h3 {
  margin: 0 0 0.45rem;
  color: var(--hot);
  font-family: var(--headline);
  font-size: 1.8rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-card p,
.window-card p,
.notes-panel p {
  margin: 0;
  line-height: 1.45;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.media-collage {
  position: relative;
  min-height: 620px;
}

.tilted-photo,
.tall-artifact {
  border: 5px solid #fff;
  background: #fff;
  box-shadow: var(--shadow);
}

.tilted-photo {
  position: absolute;
  width: min(360px, 78vw);
}

.tilted-photo img,
.tall-artifact img {
  width: 100%;
}

.tilted-photo--one {
  left: 0;
  top: 0;
  transform: rotate(-5deg);
}

.tilted-photo--two {
  right: 0;
  bottom: 18px;
  transform: rotate(6deg);
}

.bug-trail {
  position: absolute;
  right: 38%;
  top: 24px;
  width: 140px;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.18));
}

.paper-panel {
  position: relative;
  padding: 2rem;
  background:
    linear-gradient(90deg, rgba(255, 49, 139, 0.25) 0 2px, transparent 2px 100%),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(16, 199, 244, 0.35) 32px 34px),
    var(--paper);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.64;
}

.paper-panel p {
  margin: 0 0 1.1rem;
}

.paper-panel p:last-child {
  margin-bottom: 0;
}

.resume-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: start;
}

.portrait-stack {
  display: grid;
  gap: 1rem;
}

.portrait-stack img {
  width: 100%;
  border: 5px solid #fff;
  box-shadow: var(--pink-shadow);
}

.resume-preview {
  padding: 0;
  background: transparent;
  border: 0;
}

.resume-preview img {
  width: 100%;
  box-shadow: var(--shadow);
}

.crt-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(460px, 1fr);
  gap: 2rem;
  align-items: center;
}

.crt-device {
  position: relative;
  width: min(760px, 100%);
  margin-inline: auto;
}

.crt-device > img:not(.cd-sticker) {
  width: 100%;
  filter: drop-shadow(12px 14px 0 rgba(0, 0, 0, 0.18));
}

.crt-embed {
  position: absolute;
  left: 19.2%;
  top: 21.6%;
  width: 61.2%;
  height: 39.2%;
  overflow: hidden;
  background: #000;
}

.crt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-screen {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px 4px),
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #1726f0, #ff55bc 54%, #111);
}

.video-screen::before {
  content: "";
  width: 116px;
  height: 82px;
  border-radius: 22px;
  background: #ff1010;
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.28);
}

.video-screen::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 30px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  margin-left: 8px;
}

.video-screen span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-family: var(--headline);
  font-size: 1.55rem;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.cd-sticker {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 160px;
  filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.2));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  min-height: 0;
  padding: 0;
  border: 4px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__panel {
  position: relative;
  display: flex;
  width: auto;
  max-width: min(1100px, 100%);
}

.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  right: 0;
  top: -52px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--hot);
  font-family: var(--headline);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: var(--hot);
  font-family: var(--headline);
  font-size: 3rem;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 2;
}

.lightbox__nav--prev {
  left: clamp(0.5rem, 3vw, 2rem);
}

.lightbox__nav--next {
  right: clamp(0.5rem, 3vw, 2rem);
}

.writing-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.composition-art {
  width: min(480px, 100%);
  margin-inline: auto;
  transform: rotate(-4deg);
  border: 5px solid var(--ink);
  box-shadow: var(--pink-shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.phone-shell {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.phone-shell > img {
  max-height: 660px;
  filter: drop-shadow(15px 15px 0 rgba(0, 0, 0, 0.16));
}

.contact-form {
  position: absolute;
  top: 14%;
  width: 63%;
  min-width: 210px;
  display: grid;
  gap: 0.5rem;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--ink);
}

.contact-form label {
  display: grid;
  gap: 0.18rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 34px;
  border: 2px solid #777;
  background: #fff;
  padding: 0.3rem 0.4rem;
}

.contact-form textarea {
  min-height: 70px;
  resize: vertical;
}

.contact-form .button {
  min-height: 38px;
  font-size: 0.74rem;
}

.form-status {
  min-height: 1.1rem;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.contact-form h3,
.new-school h3 {
  margin: 0 0 0.3rem;
  font-family: var(--headline);
  color: var(--hot);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.new-school h3 {
  margin-top: 1.1rem;
}

.new-school {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(260px, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.new-school img {
  width: min(360px, 100%);
  margin-inline: auto;
  filter: drop-shadow(10px 12px 0 rgba(0, 0, 0, 0.18));
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-chip {
  background: #fff;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--hot-soft);
}

.social-chip[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.78;
}

.site-footer {
  padding: 2rem 0;
  background: var(--hot);
  color: var(--lemon);
  border-top: 4px solid #fff;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--headline);
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .sticker-star,
  .bug-trail,
  .cd-sticker {
    animation: bob 4s ease-in-out infinite alternate;
  }

  .warning-window {
    animation: jitter 4s steps(2) infinite;
  }
}

@keyframes bob {
  from {
    translate: 0 0;
    rotate: -1deg;
  }

  to {
    translate: 0 12px;
    rotate: 2deg;
  }
}

@keyframes jitter {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 2px -2px;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }

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

  .hero__grid,
  .two-col,
  .resume-layout,
  .crt-layout,
  .writing-layout,
  .contact-layout,
  .new-school {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art,
  .media-collage {
    min-height: 560px;
  }

  .gallery-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .crt-device {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(var(--max), calc(100% - 24px));
  }

  .site-header__inner {
    min-height: 92px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .page-title {
    font-size: 4.3rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-art,
  .media-collage {
    min-height: 460px;
  }

  .magazine-frame {
    right: 0;
    top: 66px;
    width: min(300px, 78vw);
  }

  .sticker-star {
    width: 130px;
  }

  .warning-stack {
    width: min(300px, 82vw);
    bottom: 0;
  }

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

  .gallery-item img {
    height: 260px;
  }

  .tilted-photo {
    width: min(300px, 78vw);
  }

  .phone-shell {
    min-height: 580px;
  }

  .contact-form {
    width: 68%;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}

/* Y2K gloss collage pass */
.hero,
.section,
.crt-device,
.phone-shell,
.portrait-stack,
.composition-wrap {
  isolation: isolate;
}

.bling-gif {
  position: absolute;
  z-index: 5;
  width: 116px;
  pointer-events: none;
  filter: drop-shadow(5px 6px 0 rgba(0, 0, 0, 0.22));
}

.bling-gif--hero-one {
  right: -18px;
  top: -4px;
  width: 144px;
  transform: rotate(8deg);
}

.bling-gif--hero-two {
  left: 8px;
  top: 320px;
  width: 138px;
  z-index: 2;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.bling-gif--about {
  right: 28px;
  top: 42px;
  width: 124px;
  transform: rotate(12deg);
}

.portrait-stack .bling-gif--headshot {
  right: -24px;
  top: -30px;
  width: 126px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(12deg);
}

.composition-wrap {
  position: relative;
  width: min(520px, 100%);
  margin-inline: auto;
}

.portrait-stack {
  position: relative;
}

.composition-wrap .composition-art {
  width: 100%;
}

.bling-gif--writing {
  right: -32px;
  top: -22px;
  width: 128px;
  transform: rotate(10deg);
}

.tabloid-stamp {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.65rem;
  border: 3px solid var(--ink);
  background: var(--lemon);
  color: var(--hot);
  font-family: var(--headline);
  font-size: 0.78rem;
  line-height: 0.95;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.22);
}

.tabloid-stamp--mag {
  position: absolute;
  right: -28px;
  bottom: 26px;
  transform: rotate(-8deg);
}

.tabloid-stamp--notes {
  position: absolute;
  right: 1rem;
  top: -22px;
  transform: rotate(4deg);
}

.tabloid-stamp--book {
  position: absolute;
  left: -20px;
  bottom: 34px;
  transform: rotate(-8deg);
}

.media-widget {
  position: absolute;
  border: 4px solid var(--blue);
  background: var(--gray);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-widget--hero {
  left: -3%;
  bottom: 34px;
  z-index: 4;
  width: 232px;
  transform: rotate(-5deg);
}

.media-widget__bar {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  background: linear-gradient(#2d68ff, #0e35b7);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.media-widget__screen {
  min-height: 120px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 32%, rgba(255, 255, 255, 0.88) 0 8px, transparent 9px),
    radial-gradient(circle at 35% 55%, rgba(255, 242, 0, 0.8) 0 28px, transparent 29px),
    linear-gradient(135deg, #242aff, #ff69d1 52%, #ff9b48);
}

.media-widget__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.54;
  background: radial-gradient(circle, transparent 0 2px, rgba(0, 0, 0, 0.22) 3px) 0 0 / 9px 9px;
}

.media-widget__screen span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--headline);
  font-size: 1.35rem;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.34);
}

.media-widget__controls {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem;
  background: linear-gradient(#7ca7ff, #456fd3);
}

.media-widget__controls span {
  width: 24px;
  height: 24px;
  border: 2px solid #3360bb;
  border-radius: 50%;
  background: #e6f3ff;
}

.pop-notes {
  position: relative;
  padding: 1.35rem;
  background:
    radial-gradient(circle at 24px 24px, rgba(243, 21, 135, 0.22) 0 4px, transparent 5px) 0 0 / 34px 34px,
    rgba(255, 255, 255, 0.92);
}

.feature-card {
  position: relative;
}

.feature-card::before {
  content: "RBY";
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  padding: 0.14rem 0.38rem;
  border: 2px solid var(--ink);
  background: var(--lemon);
  color: var(--hot);
  font-family: var(--headline);
  font-size: 0.7rem;
  transform: rotate(-4deg);
}

.feature-card:nth-child(2)::before {
  content: "BRAT CAM";
  background: var(--cyan);
  color: var(--ink);
}

.feature-card:nth-child(3)::before {
  content: "TV";
  background: var(--hot);
  color: var(--lemon);
}

/* CRT reel geometry follows the visible screen in reel-crt-tv.webp. */
.crt-device > img:not(.cd-sticker):not(.bling-gif) {
  width: 100%;
  filter: drop-shadow(12px 14px 0 rgba(0, 0, 0, 0.18));
}

.crt-device > img.bling-gif--crt {
  right: -16px;
  top: -30px;
  width: 132px;
  transform: rotate(10deg);
}

.crt-embed {
  left: 6.7%;
  top: 9.7%;
  width: 86.6%;
  height: 65.8%;
  border-radius: 2.8rem 2.8rem 2rem 2rem / 2rem;
  box-shadow: inset 0 0 44px rgba(255, 255, 255, 0.16);
}

.video-screen--youtube {
  overflow: hidden;
  background:
    radial-gradient(circle at 46% 35%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #1726f0, #ff55bc 54%, #111);
}

.video-screen--youtube::before,
.video-screen--youtube::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-screen--youtube::before {
  z-index: 2;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px 5px),
    radial-gradient(ellipse at 55% 22%, rgba(255, 255, 255, 0.34), transparent 28%);
  mix-blend-mode: screen;
}

.video-screen--youtube::after {
  z-index: 3;
  border: 7px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 38px rgba(0, 0, 0, 0.45);
}

.video-screen__thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.2) contrast(1.04);
}

.video-screen__thumb.is-missing {
  display: none;
}

.video-screen__label,
.video-screen__meta,
.video-screen__play {
  position: absolute;
  z-index: 4;
}

.video-screen--youtube .video-screen__label {
  left: 1rem;
  top: 1.18rem;
  width: min(58%, 360px);
  color: #fff;
  font-family: var(--headline);
  font-size: 1.72rem;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.42);
}

.video-screen--youtube .video-screen__meta {
  right: 1rem;
  bottom: 0.85rem;
  padding: 0.18rem 0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.74);
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.video-screen--youtube .video-screen__play {
  left: 50%;
  top: 50%;
  width: 116px;
  height: 82px;
  border-radius: 22px;
  background: #ff1010;
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.video-screen__play::after {
  content: "";
  position: absolute;
  left: 46px;
  top: 20px;
  width: 0;
  height: 0;
  border-left: 30px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.cd-sticker--spin {
  right: -12px;
  bottom: -18px;
  width: 152px;
  border-radius: 50%;
}

/* Contact form geometry follows the white screen in contact-slider-phone.webp. */
.phone-shell {
  min-height: 0;
  padding: 1rem 0;
  overflow: visible;
}

.phone-shell > img.bling-gif--phone {
  right: max(4%, 12px);
  top: 22px;
  width: 112px;
  transform: rotate(12deg);
}

.phone-stage {
  position: relative;
  width: min(326px, 100%);
  margin-inline: auto;
}

.phone-stage > img {
  width: 100%;
  filter: drop-shadow(15px 15px 0 rgba(0, 0, 0, 0.16));
}

.contact-form {
  left: 14.2%;
  top: 14%;
  width: 71.6%;
  height: 48.6%;
  min-width: 0;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.3rem;
  padding: 0.42rem;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 250, 0.96)),
    #fff;
  box-shadow: inset 0 0 12px rgba(243, 21, 135, 0.12);
}

.contact-form label {
  min-width: 0;
  gap: 0.08rem;
  font-size: 0.5rem;
  line-height: 1;
}

.contact-form label:nth-of-type(n + 3),
.contact-form .button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  min-height: 22px;
  padding: 0.14rem 0.22rem;
  border: 1px solid #777;
  font-size: 0.72rem;
  line-height: 1.1;
}

.contact-form textarea {
  min-height: 48px;
  max-height: 54px;
  resize: none;
}

.contact-form .button {
  min-height: 25px;
  padding: 0.1rem 0.45rem;
  border-width: 2px;
  font-size: 0.56rem;
  box-shadow: 2px 2px 0 var(--lemon);
}

.form-status {
  min-height: 0.78rem;
  font-size: 0.52rem;
  line-height: 1.1;
}

.new-school {
  position: relative;
}

.new-school::after {
  content: "DM / EMAIL";
  position: absolute;
  right: 2%;
  top: -16px;
  padding: 0.2rem 0.55rem;
  border: 3px solid var(--ink);
  background: var(--cyan);
  color: var(--ink);
  font-family: var(--headline);
  font-size: 0.78rem;
  transform: rotate(5deg);
  box-shadow: 4px 4px 0 var(--hot-soft);
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.paparazzi-stack {
  position: relative;
  min-height: 400px;
}

.paparazzi-stack > img:not(.bling-gif) {
  position: absolute;
  width: min(250px, 66vw);
  height: 190px;
  object-fit: cover;
  border: 6px solid #fff;
  background: #fff;
  box-shadow: var(--shadow);
}

.paparazzi-stack > img:nth-child(1) {
  left: 6%;
  top: 18px;
  transform: rotate(-8deg);
}

.paparazzi-stack > img:nth-child(2) {
  right: 4%;
  top: 92px;
  transform: rotate(7deg);
}

.paparazzi-stack > img:nth-child(3) {
  left: 20%;
  bottom: 20px;
  transform: rotate(-2deg);
}

.paparazzi-stack .tabloid-stamp {
  position: absolute;
  right: 12%;
  bottom: 48px;
  z-index: 4;
  transform: rotate(-7deg);
}

.paparazzi-stack img.bling-gif--gallery {
  right: 0;
  top: 8px;
  width: 110px;
  z-index: 5;
  border: 0;
  box-shadow: none;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-item:nth-child(4n + 1) {
  transform: rotate(-1.4deg);
}

.gallery-item:nth-child(4n + 2) {
  transform: rotate(1.1deg);
}

.gallery-item:nth-child(4n + 3) {
  transform: rotate(-0.6deg);
}

.gallery-item:hover,
.gallery-item:focus-visible {
  z-index: 2;
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 10px 10px 0 var(--hot);
}

@media (prefers-reduced-motion: no-preference) {
  .bling-gif {
    animation: bob 4.2s ease-in-out infinite alternate;
  }

  .video-screen__play {
    animation: pulse-play 1.8s ease-in-out infinite alternate;
  }
}

@keyframes pulse-play {
  from {
    scale: 1;
  }

  to {
    scale: 1.06;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bling-gif,
  .cd-sticker--spin {
    display: none;
  }
}

@media (max-width: 980px) {
  .media-widget--hero {
    left: 4%;
    bottom: 116px;
  }

  .gallery-hero {
    grid-template-columns: 1fr;
  }

  .paparazzi-stack {
    min-height: 430px;
  }

  .phone-stage {
    width: min(336px, 100%);
  }
}

@media (max-width: 680px) {
  .bling-gif--hero-one,
  .bling-gif--about,
  .bling-gif--writing,
  .portrait-stack .bling-gif--headshot,
  .phone-shell > img.bling-gif--phone {
    width: 86px;
  }

  .bling-gif--hero-two {
    left: auto;
    right: 12px;
    top: 228px;
    width: 92px;
  }

  .tabloid-stamp {
    min-height: 30px;
    font-size: 0.64rem;
  }

  .tabloid-stamp--mag {
    right: -8px;
    bottom: 16px;
  }

  .media-widget--hero {
    left: 0;
    bottom: 18px;
    width: min(260px, 86vw);
  }

  .media-widget__screen {
    min-height: 92px;
  }

  .crt-embed {
    border-radius: 1.2rem;
  }

  .video-screen--youtube .video-screen__label {
    left: 0.65rem;
    top: 0.65rem;
    width: 62%;
    font-size: 1.05rem;
  }

  .video-screen--youtube .video-screen__play {
    width: 68px;
    height: 48px;
    border-radius: 14px;
  }

  .video-screen__play::after {
    left: 27px;
    top: 12px;
    border-left-width: 18px;
    border-top-width: 12px;
    border-bottom-width: 12px;
  }

  .video-screen--youtube .video-screen__meta {
    right: 0.55rem;
    bottom: 0.5rem;
    font-size: 0.52rem;
  }

  .cd-sticker--spin {
    right: -6px;
    bottom: -8px;
    width: 92px;
  }

  .phone-stage {
    width: min(318px, 100%);
  }

  .contact-form {
    gap: 0.2rem;
    padding: 0.36rem;
  }

  .contact-form label {
    font-size: 0.47rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 20px;
    font-size: 0.66rem;
  }

  .contact-form textarea {
    min-height: 44px;
    max-height: 48px;
  }

  .contact-form .button {
    min-height: 23px;
    font-size: 0.52rem;
  }

  .paparazzi-stack {
    min-height: 360px;
  }

  .paparazzi-stack > img:not(.bling-gif) {
    width: min(210px, 70vw);
    height: 158px;
  }

  .paparazzi-stack > img:nth-child(2) {
    top: 82px;
  }

  .paparazzi-stack > img:nth-child(3) {
    left: 7%;
  }

  .gallery-item,
  .gallery-item:nth-child(4n + 1),
  .gallery-item:nth-child(4n + 2),
  .gallery-item:nth-child(4n + 3) {
    transform: none;
  }
}

/* Retro Windows / MS-DOS brat refresh */
:root {
  --win-blue: #0b58d8;
  --win-blue-dark: #063797;
  --win-blue-light: #57a2ff;
  --win-chrome: #d7d2c8;
  --win-chrome-light: #f8f6ee;
  --win-chrome-dark: #76736d;
  --bevel-light: #fffef8;
  --bevel-mid: #a7a39b;
  --bevel-dark: #111;
  --pixel-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --cursor-arrow: url("../assets/cursors/pixel-arrow.svg") 3 2, auto;
  --cursor-pointer: url("../assets/cursors/pixel-pointer.svg") 10 2, pointer;
}

html,
body {
  cursor: var(--cursor-arrow);
}

a,
button,
.button,
.chip,
.social-chip,
.gallery-item,
.video-screen,
.lightbox__close,
.menu-toggle {
  cursor: var(--cursor-pointer);
}

input,
textarea {
  cursor: text;
}

body {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 100%) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 100%) 0 0 / 18px 18px,
    radial-gradient(circle at 14px 14px, rgba(255, 255, 255, 0.84) 0 2px, transparent 3px) 0 0 / 32px 32px,
    linear-gradient(180deg, var(--lav), var(--lav-2));
}

.site-header {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #ff2fa8, var(--hot) 68%, #c7066a);
  border-bottom: 4px solid var(--win-chrome-light);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18);
}

.brand {
  color: var(--lemon);
  font-family: var(--mono);
  font-weight: 900;
  text-shadow: 2px 2px 0 var(--win-blue-dark), 4px 4px 0 rgba(0, 0, 0, 0.18);
}

.brand::before {
  content: "▶";
  display: inline-block;
  margin-right: 0.5rem;
  color: #fff;
  font-size: 0.74em;
  text-shadow: 1px 1px 0 var(--ink);
}

.site-nav a,
.button,
.chip,
.social-chip,
.tabloid-stamp,
.feature-card::before,
.new-school::after,
.lightbox__close {
  border: 2px solid;
  border-color: var(--bevel-light) var(--bevel-dark) var(--bevel-dark) var(--bevel-light);
  border-radius: 0;
  background: var(--win-chrome);
  color: var(--ink);
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -1px -1px 0 var(--bevel-mid), var(--pixel-shadow);
  font-family: var(--mono);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: none;
}

.site-nav a {
  min-height: 34px;
  padding: 0.18rem 0.68rem;
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  border-color: var(--win-blue-light) var(--win-blue-dark) var(--win-blue-dark) var(--win-blue-light);
  background: linear-gradient(180deg, var(--win-blue-light), var(--win-blue));
  color: #fff;
}

.button,
.social-chip {
  min-height: 44px;
  padding: 0.2rem 1rem;
  text-transform: uppercase;
}

.button--pink,
.button--cyan,
.button--yellow {
  background: var(--win-chrome);
  color: var(--ink);
}

.button--pink::before,
.button--cyan::before,
.button--yellow::before,
.social-chip::before {
  display: inline-block;
  width: 0.82rem;
  height: 0.82rem;
  border: 1px solid var(--bevel-dark);
  background: var(--hot);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.72);
  content: "";
}

.button--cyan::before {
  background: var(--cyan);
}

.button--yellow::before {
  background: var(--lemon);
}

.button:hover,
.button:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible,
.social-chip:hover,
.social-chip:focus-visible,
.gallery-item:hover,
.gallery-item:focus-visible {
  outline: 2px dotted var(--ink);
  outline-offset: 3px;
  filter: saturate(1.12);
}

.button:active,
.site-nav a:active,
.social-chip:active,
.lightbox__close:active {
  border-color: var(--bevel-dark) var(--bevel-light) var(--bevel-light) var(--bevel-dark);
  box-shadow: inset 2px 2px 0 var(--bevel-mid), 2px 2px 0 rgba(0, 0, 0, 0.28);
  translate: 2px 2px;
}

.menu-toggle {
  width: 58px;
  height: 46px;
  border: 2px solid;
  border-color: var(--bevel-light) var(--bevel-dark) var(--bevel-dark) var(--bevel-light);
  background: var(--win-chrome);
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -1px -1px 0 var(--bevel-mid), 3px 3px 0 rgba(0, 0, 0, 0.24);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  left: 10px;
  right: 10px;
  height: 5px;
  background: var(--win-blue);
  box-shadow: 2px 2px 0 var(--lemon);
}

.lede,
.note,
.notes-panel,
.paper-panel,
.resume-preview,
.feature-card,
.gallery-item {
  border: 3px solid;
  border-color: var(--bevel-light) var(--bevel-dark) var(--bevel-dark) var(--bevel-light);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.78), inset -1px -1px 0 var(--bevel-mid), var(--pixel-shadow);
}

.os-window,
.media-widget,
.warning-window {
  border: 2px solid;
  border-color: var(--bevel-light) var(--bevel-dark) var(--bevel-dark) var(--bevel-light);
  background: var(--win-chrome);
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -1px -1px 0 var(--bevel-mid), var(--pixel-shadow);
}

.os-titlebar,
.media-widget__bar,
.win-bar {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.38rem 0 0.55rem;
  background: linear-gradient(180deg, var(--win-blue-light), var(--win-blue) 48%, var(--win-blue-dark));
  color: #fff;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 900;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.58);
}

.media-widget__window-controls {
  display: inline-flex;
  gap: 0.2rem;
}

.media-widget__window-controls span,
.win-bar span {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border: 1px solid;
  border-color: var(--bevel-light) var(--bevel-dark) var(--bevel-dark) var(--bevel-light);
  background: var(--win-chrome);
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1;
  text-shadow: none;
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -1px -1px 0 var(--bevel-mid);
}

.media-widget__window-controls span:last-child {
  background: linear-gradient(180deg, #ffb38f, #d2462d);
  color: #fff;
}

.media-widget__menu {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0.65rem;
  border-bottom: 2px solid var(--win-chrome-dark);
  background: var(--win-chrome-light);
  font-family: var(--round);
  font-size: 0.92rem;
}

.media-widget__menu span::first-letter {
  text-decoration: underline;
}

.media-widget--hero {
  width: 342px;
  bottom: 142px;
}

.media-widget__screen {
  min-height: 154px;
  border-top: 2px solid #8b8b8b;
  border-bottom: 2px solid #8b8b8b;
  image-rendering: pixelated;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 242, 0, 0.72) 0 30px, transparent 31px),
    radial-gradient(circle at 72% 42%, rgba(16, 199, 244, 0.68) 0 32px, transparent 33px),
    linear-gradient(135deg, #46105e 0 18%, #ff5ab5 38%, #ff8b38 70%, #111 100%);
}

.media-widget__screen::before {
  opacity: 0.74;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.4) 0 1px, transparent 2px) 0 0 / 6px 6px,
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px);
}

.media-widget__screen span {
  padding: 0.18rem 0.45rem;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 1.28rem;
}

.media-widget__controls {
  min-height: 64px;
  display: grid;
  grid-template-columns: 42px repeat(3, 24px) 1fr 50px;
  align-items: center;
  gap: 0.34rem;
  padding: 0.46rem 0.55rem;
  background: linear-gradient(180deg, #9fc0ff, #5684dc 58%, #3f67b7);
}

.media-widget__play,
.media-widget__mini {
  display: inline-grid;
  place-items: center;
  border: 2px solid #3a5590;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, #d8e8ff 58%, #6f96e4);
  color: var(--win-blue-dark);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: inset 1px 1px 0 #fff, 2px 2px 0 rgba(0, 0, 0, 0.22);
}

.media-widget__play {
  width: 40px;
  height: 40px;
}

.media-widget__mini {
  width: 24px;
  height: 24px;
  font-size: 0.58rem;
}

.media-widget__track,
.media-widget__volume {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  border: 1px solid #4967a3;
  border-radius: 999px;
  background: #7395dd;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.45);
}

.media-widget__track span,
.media-widget__volume span {
  position: absolute;
  top: -7px;
  width: 12px;
  height: 24px;
  border: 1px solid #4967a3;
  background: linear-gradient(180deg, #ebffe8, #5fd35f);
  box-shadow: inset 1px 1px 0 #fff;
}

.media-widget__track span {
  left: 34%;
}

.media-widget__volume span {
  left: 62%;
}

.warning-window {
  background: var(--win-chrome);
}

.win-body {
  background: var(--win-chrome);
  font-family: var(--mono);
}

.triangle {
  border: 2px solid var(--ink);
  clip-path: none;
  background:
    linear-gradient(45deg, transparent 0 40%, var(--ink) 41% 43%, transparent 44%),
    var(--lemon);
}

.tabloid-stamp,
.feature-card::before,
.new-school::after {
  transform-origin: center;
}

.feature-card::before {
  padding: 0.12rem 0.34rem;
}

.contact-form {
  border-color: var(--bevel-dark) var(--bevel-light) var(--bevel-light) var(--bevel-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 238, 250, 0.96)),
    var(--win-chrome-light);
  box-shadow: inset 2px 2px 0 var(--bevel-mid), inset -1px -1px 0 rgba(255, 255, 255, 0.75);
}

.contact-form input,
.contact-form textarea {
  border: 2px solid;
  border-color: var(--bevel-dark) var(--bevel-light) var(--bevel-light) var(--bevel-dark);
  background: #fff;
  box-shadow: inset 1px 1px 0 var(--bevel-mid);
}

.contact-form .button {
  min-height: 25px;
  padding: 0.1rem 0.45rem;
  font-size: 0.56rem;
  box-shadow: 2px 2px 0 var(--lemon);
}

.contact-form .button::before {
  display: none;
}

.video-screen--youtube::before {
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.32) 0 1px, transparent 2px) 0 0 / 6px 6px,
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px 5px),
    radial-gradient(ellipse at 55% 22%, rgba(255, 255, 255, 0.34), transparent 28%);
}

.video-screen__thumb {
  image-rendering: auto;
  filter: saturate(1.25) contrast(1.08);
}

.video-screen__meta {
  border-radius: 0;
  font-family: var(--mono);
}

.lightbox__close {
  border-radius: 0;
  background: linear-gradient(180deg, #ffb38f, #d2462d);
  color: #fff;
}

@media (hover: none), (pointer: coarse) {
  html,
  body,
  a,
  button,
  .button,
  .chip,
  .social-chip,
  .gallery-item,
  .video-screen,
  .lightbox__close,
  .menu-toggle {
    cursor: auto;
  }
}

@media (max-width: 980px) {
  .media-widget--hero {
    width: min(330px, 92vw);
    bottom: 96px;
  }
}

@media (max-width: 680px) {
  .site-nav a,
  .button,
  .social-chip {
    min-height: 42px;
  }

  .button-row,
  .chip-row,
  .social-list {
    gap: 0.65rem;
  }

  .media-widget--hero {
    bottom: 8px;
    width: min(312px, 92vw);
  }

  .media-widget__bar {
    min-height: 28px;
    font-size: 0.72rem;
  }

  .media-widget__menu {
    gap: 0.58rem;
    font-size: 0.78rem;
  }

  .media-widget__screen {
    min-height: 112px;
  }

  .media-widget__controls {
    grid-template-columns: 38px repeat(2, 22px) 1fr 44px;
  }

  .media-widget__mini:nth-of-type(4) {
    display: none;
  }
}

/* ── FND production credit (footer) ───────────────────────────────────── */
.site-footer__production {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
  text-decoration: none;
  color: inherit;
}
.site-footer__production:hover { opacity: 1; text-decoration: underline; }
