/* =====================================================
   AMELIA MORIARTY — Portfolio
   ===================================================== */

/* ---- RESET & TOKENS ---- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:       #ffffff;
  --ink:      #111111;
  --muted:    #6a6a6a;
  --light:    #e2e2e2;
  --rule:     rgba(0, 0, 0, 0.09);

  --dark-bg:   #111111;
  --dark-text: #f0f0f0;
  --dark-rule: rgba(255, 255, 255, 0.09);

  --accent:   #111111;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'Space Mono', 'Courier New', monospace;

  --nav-h:       60px;
  --pad:         clamp(24px, 5.5vw, 88px);
  --content-w:   1240px;
  --section-pad: clamp(72px, 11vw, 140px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-family: var(--serif); font-style: italic; }
figure { margin: 0; }

/* ---- NAV ---- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
}

.nav-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-right: auto;
}

.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav-link {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.28s, opacity 0.28s;
  transform-origin: center;
}

.nav-toggle.open span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:last-child  { transform: rotate(-45deg) translate(4px, -4px); }

/* ---- HERO ---- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  align-items: start;
}

.hero-portrait {
  order: 2;
}

.hero-image-wrap {
  width: 100%;
  background: var(--light);
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-wrap.placeholder::after {
  content: 'portrait';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* override display: block from img global reset when placeholder */
.hero-image-wrap.placeholder img { display: none; }

.hero-content {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 48px 80px var(--pad);
  position: sticky;
  top: var(--nav-h);
  align-self: start;
}

.hero-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(68px, 10.5vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}

.name-first,
.name-last {
  display: block;
}

.name-last { margin-left: 0.1em; }

.hero-tagline {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-tagline .sep { color: var(--light); }

.hero-location {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---- SECTION SHELL ---- */

.section {
  padding: var(--section-pad) var(--pad);
}

.section:not(.section-dark) {
  max-width: calc(var(--content-w) + 2 * var(--pad));
  margin-inline: auto;
}

/* ---- SECTION HEADER ---- */

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 64px;
}

.section-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 0;
  min-width: 90px;
}

.section-num {
  font-family: var(--mono);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: rgba(0, 0, 0, 0.07);
  line-height: 0.9;
}

.section-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.015em;
}

/* ---- WRITING ---- */

.writing-intro {
  max-width: 620px;
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 72px;
}

.writing-intro em {
  font-size: 18.5px;
  color: var(--ink);
}

.writing-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 56px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  margin-bottom: 64px;
}

.writing-cat {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.work-list {
  display: flex;
  flex-direction: column;
}

.work-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity 0.2s;
}

.work-item:hover { opacity: 0.55; }

.work-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
}

.work-note {
  font-size: 11px;
  font-style: normal;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.04em;
}

.work-pub {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- EXTERNAL LINKS ---- */

.external-links {
  display: flex;
  gap: 36px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.ext-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
  color: var(--ink);
}

.ext-link:hover { opacity: 0.5; }

.arrow {
  font-size: 15px;
  letter-spacing: 0;
  transition: transform 0.2s;
  display: inline-block;
}

.ext-link:hover .arrow { transform: translate(3px, -3px); }

/* ---- DARK SECTION (ILLUSTRATION) ---- */

.section-dark {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding-inline: var(--pad);
}

.section-dark .section-num { color: rgba(255, 255, 255, 0.07); }
.section-dark .section-label { color: rgba(240, 240, 240, 0.38); }

.section-dark .section-title { color: var(--dark-text); }

.section-dark .ext-link { color: var(--dark-text); }

.section-cta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--dark-rule);
}

.section:not(.section-dark) .section-cta {
  border-top-color: var(--rule);
}

/* ---- ART INTRO ---- */

.art-intro {
  max-width: 520px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(240, 240, 240, 0.5);
  margin-bottom: 52px;
  line-height: 1.9;
}

.art-intro em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--dark-text);
}

/* ---- ART GRID ---- */

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 340px;
  gap: 16px;
}

.art-item { overflow: hidden; }
.art-item--tall { grid-row: span 2; }
.art-item--wide { grid-column: span 2; }
.art-item--full { grid-column: 1 / -1; }

.art-item--lightbox { cursor: pointer; }

.art-item--zoomable { cursor: zoom-in; position: relative; }

.art-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  user-select: none;
}

.art-item--zoomable:hover .art-zoom-hint { opacity: 1; }

.art-expand-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.art-item--lightbox:hover .art-expand-hint { opacity: 1; }

.art-pdf-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pdf-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pdf-card-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: rgba(240, 240, 240, 0.55);
  letter-spacing: 0.01em;
}

.pdf-card-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.art-item--lightbox:hover .pdf-card-hint { opacity: 1; }

.art-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 30px;
  gap: 10px;
}

.art-card-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--dark-text);
  letter-spacing: 0.01em;
  line-height: 1;
}

.art-card-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.art-item--lightbox:hover .art-card-hint { opacity: 1; }

/* ---- ART LIGHTBOX ---- */

.art-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.art-lightbox.open { display: flex; }

.art-lightbox-content {
  max-width: 860px;
  max-height: 88vh;
  width: 100%;
  overflow-y: auto;
}

.art-lightbox-content img {
  width: 100%;
  height: auto;
  display: block;
}

.art-lightbox-content iframe {
  width: 100%;
  height: 84vh;
  border: none;
  display: block;
}

.art-lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(240, 240, 240, 0.5);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 501;
  transition: color 0.2s;
  padding: 4px;
}

.art-img-wrap {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  overflow: hidden;
  position: relative;
}

.art-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s;
}

.art-img-wrap:hover img { transform: scale(1.05); }

.art-img-wrap.img-empty::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.2);
}

.art-img-wrap.img-empty img { display: none; }

/* ---- CREATIVE GRID ---- */

.creative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.creative-item { position: relative; overflow: hidden; }
.creative-item--feature  { grid-column: span 2; }

/* centered solo item — spans 2 cols but image sits at natural single-col width */
.creative-item--solo {
  grid-column: span 2;
  display: flex;
  justify-content: center;
}

.creative-item--solo .creative-img-wrap {
  width: 50%;
}

/* default: 3:4 portrait — matches most source images */
.creative-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--light);
  position: relative;
}

/* landscape: for ULZZANG (source is 3:2) */
.creative-item--feature .creative-img-wrap { aspect-ratio: 3 / 2; }

/* taller portrait: for 2:3 source images — ratio matches source so object-fit: cover = no crop */
.creative-img-wrap--tall { aspect-ratio: 2 / 3; }

.creative-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.creative-img-wrap:hover img { transform: scale(1.04); }

.creative-img-wrap.img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.creative-img-wrap.img-empty::after {
  content: 'image';
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.creative-img-wrap.img-empty img { display: none; }

.creative-caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.creative-item:hover .creative-caption {
  opacity: 1;
  transform: none;
}

.creative-item--video { background: var(--ink); }

.creative-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.creative-intro {
  max-width: 520px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 52px;
  line-height: 1.9;
}

/* ---- CLUSTER GRID (Creative Section) ---- */

.creative-video-wrap {
  margin-bottom: 48px;
  position: relative;
  cursor: pointer;
}

.video-watch-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.3s;
}

.creative-video-wrap:hover .video-watch-hint {
  background: rgba(0, 0, 0, 0.18);
}

.video-watch-hint span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transition: opacity 0.3s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.creative-video-wrap:hover .video-watch-hint span { opacity: 1; }

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cluster-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.cluster-card--feature { grid-column: span 2; }

.cluster-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--light);
}

.cluster-card--feature .cluster-img-wrap { aspect-ratio: 3 / 2; }

.cluster-img-wrap img,
.cluster-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s ease;
}

/* Slideshow slides stack absolutely inside the wrap */
.cluster-slide {
  position: absolute;
  inset: 0;
  object-position: center 20%;
}

.cluster-card:hover .cluster-img-wrap img,
.cluster-card:hover .cluster-slide { transform: scale(1.04); }

.cluster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  gap: 5px;
}

.cluster-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.cluster-count {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.45);
}

/* Gallery nav arrows */
.art-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(240, 240, 240, 0.45);
  font-size: 28px;
  cursor: pointer;
  z-index: 501;
  padding: 16px;
  transition: color 0.2s;
  line-height: 1;
}

.art-lightbox-nav:hover { color: var(--dark-text); }
.art-lightbox-prev { left: 16px; }
.art-lightbox-next { right: 16px; }

/* ---- ABOUT ---- */

.section-about { border-top: 1px solid var(--rule); }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.about-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--light);
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-img-wrap.img-empty::after {
  content: 'portrait';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-img-wrap.img-empty img { display: none; }

.about-text { padding-top: 4px; }

.about-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--ink);
}

.about-text p {
  font-size: 16px;
  line-height: 1.88;
  color: var(--muted);
  margin-bottom: 22px;
}

.about-text em { color: var(--ink); }

.inline-link {
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s;
}

.inline-link:hover { border-bottom-color: var(--ink); }

.about-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--rule);
}

.contact-link {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  width: fit-content;
}

.contact-link:hover { color: var(--ink); }

/* ---- FOOTER ---- */

.footer {
  border-top: 1px solid var(--rule);
  padding: 52px var(--pad);
}

.footer-inner {
  max-width: var(--content-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  margin-right: auto;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-copy {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

/* ---- FADE-IN ANIMATION ---- */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* stagger children of section-header */
.section-header.visible .section-meta { transition-delay: 0s; }
.section-header.visible .section-title { transition-delay: 0.08s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    order: 1;
  }

  .hero-content {
    order: 2;
    padding: 52px var(--pad) 72px;
    justify-content: flex-start;
  }

  .writing-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .art-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .art-item--tall { grid-row: span 1; }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-image {
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px var(--pad) 36px;
    gap: 28px;
    z-index: 199;
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .nav-link {
    font-size: 14px;
    color: var(--ink);
  }

  .art-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .art-item, .art-item--tall, .art-item--wide, .art-item--full {
    grid-row: span 1;
    grid-column: span 1;
  }

  .art-img-wrap {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .creative-grid { grid-template-columns: 1fr; }

  .creative-item--feature,
  .creative-item--wide { grid-column: span 1; }

  .creative-item--feature .creative-img-wrap { aspect-ratio: 4 / 3; }

  .cluster-grid { grid-template-columns: 1fr; }
  .cluster-card--feature { grid-column: span 1; }
  .cluster-card--feature .cluster-img-wrap { aspect-ratio: 4 / 3; }

  .section-header {
    flex-direction: column;
    gap: 12px;
  }

  .section-meta { flex-direction: row; gap: 12px; padding-top: 0; }

  .external-links,
  .section-cta { flex-direction: column; gap: 20px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-name { margin-right: 0; }
}
