:root {
  /* Long-form reading serif */
  --font-utopia: "utopia-std",
    "Iowan Old Style", "Palatino Linotype", Palatino,
    "Libre Baskerville", "Georgia",
    serif;

  /* UI / body sans */
  --font-chandler: "chandler-42-regular",
    system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Display: Lulo solid */
  --font-lulo-solid: "lulo-one",
    "Futura", "Avenir Next", Avenir,
    "Montserrat", "Poppins",
    "Helvetica Neue", Arial, sans-serif;

  /* Display: Lulo outline */
  --font-lulo-outline: "lulo-outline",
    "Futura", "Avenir Next", Avenir,
    "Montserrat", "Poppins",
    "Helvetica Neue", Arial, sans-serif;
}


body {
  font-family: system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background-color: #000;
}

header,
main,
footer,
blockquote {
  margin: 0 auto;
}



.header-bar {
  position: sticky;
  top: 0;
  height: 35px;
  width: 100%;
  background: #f2c94c;
  border-bottom: 1px solid #333;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left logo block */
.netra-logo {
  margin-left: 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

.netra-logo a {
  background: none;
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
}

/* Reserve space immediately */
.nav-logo {
  height: 20px;
  width: auto;
  display: block;
}

/* Right icons block — now a real list, fully reset */
.social-icons {
  margin-right: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;

  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  /* keep right margin you already want */
}

/* Each icon cell has a fixed box so nothing reflows */
.social-icons li {
  display: flex;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  /* fixed tap target + stable layout */
  height: 28px;
  line-height: 1;
}

/* Fixed icon sizes (prevents late SVG sizing changes) */
.twitter-logo,
.fb-logo {
  width: 20px;
  height: 20px;
  display: block;
  color: #000;
}


section[aria-label="Story"]:first-child p:first-child {
  padding-top: 12%;
}

section[aria-label="Story"] {
  max-width: 618px;
  /* or any width you want */
  margin: 0 auto;

  /* center it */
}





.kicker {
  font-size: 0.95rem;
  opacity: 0.75;
  margin: 0 0 0.5rem;
}

h1 {
  line-height: 1.15;
  margin: 0.25rem 0 0.75rem;
}

.deck {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.byline {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.98rem;
}

.byline a {
  text-decoration: none;
}

.meta {
  opacity: 0.75;
  font-size: 0.95rem;
}

article p {
  color: #fff;
  font-family: var(--font-utopia);
  font-size: clamp(1.3rem, 2vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-top: 0;
  font-display: swap;
}

article p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 20px;
}

figure {
  margin: 1.25rem 0;
}

figcaption {
  font-size: 0.95rem;
  opacity: 0.8;
}

nav a {
  margin-right: 1rem;
}

/* Full-viewport feature image as page background */
html,
body {
  height: 100%;
}



main {
  background-image: url("../images/bawm\ bg\ copy\ 3.webp");
  background-repeat: repeat;
  background-size: auto;
  background-position: 0 0;
  background-blend-mode: multiply;

}



a {
  display: inline-block;
  color: unset;
  text-decoration: none;
  padding-bottom: 6px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='10' viewBox='0 0 220 10'%3E%3Cpath d='M2,6 L40,7 L80,5 L120,7 L160,5 L218,6' fill='none' stroke='%23f2c94c' stroke-width='2' stroke-linecap='butt' stroke-dasharray='6 3'/%3E%3C/svg%3E");
  background-size: 100% 8px;
  background-repeat: no-repeat;
  background-position: bottom left;
  transition: transform 120ms ease, filter 120ms ease;
}

a:hover {
  filter: contrast(1.2);
  transform: translateY(-0.5px);
}




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

.hero {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-bottom: -0.8px;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  /* height follows width */
}

/* text overlay */
.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 2;
  text-align: center;
  color: #fff;
  line-height: 1.6;
  line-height: normal;
}




/* optional readability gradient */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---------- TITLE ---------- */


.hero-title {
  font-family: var(--font-lulo-solid);
  font-weight: 700;
  font-size: 85px;
  line-height: 0.95;
  margin: 0;
}

.hero-title .line {
  display: block;
  line-height: 0.95;
  /* lock each line */
  min-height: 1em;
  /* reserve space for the final font */
  color: #f2c94c;
}


.hero-title .outline {
  display: block;
  color: #f2c94c;
  font-family: var(--font-lulo-outline);
  font-weight: 700;
  white-space: nowrap;
  line-height: 0.95;
  min-height: 1em;
}

/* ---------- DECK ---------- */

.hero-deck {
  max-width: 618px;
  margin: 1.5rem auto;
  font-family: var(--font-chandler);
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.9;
  font-style: oblique;
}

/* ---------- BYLINE ---------- */

.hero-byline {
  display: grid;
  font-family: var(--font-chandler);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: normal;
  margin: 40px auto 0 auto;
}

.author a {
  color: #fff;
  opacity: 0.7;
}

h2 {
  font-family: var(--font-chandler);
  color: #f2c94c;
  font-weight: normal;
}




/* ===== DESKTOP + TABLET (SCROLLY ON) ===== */
.scrolly {
  display: grid;
  grid-template-columns: 50vw 50vw;
  /* exact viewport split */
  width: 100vw;
  max-width: none;
  margin: 0;
  align-items: start;
  background: #000;
}

/* left 50vw */
.scrolly__media {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
}

.scrolly__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .4s ease;
  display: block;
}

.scrolly__img.is-active {
  opacity: 1;
}

/* right 50vw */
.scrolly__text {
  width: 50vw;
  padding: 0;
  /* let the step handle padding */
  display: flex;
  flex-direction: column;
}

.scrolly__step {
  min-height: 100vh;
  /* each step = one screen */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 64px);
}

.scrolly__step p {
  font-size: clamp(1.2rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
  padding: 16px 18px;
  color: #fff;
}




.photo-quote {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  margin: 20px auto 40px auto;
}

/* Image */
.photo-quote__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay container */
.photo-quote__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: clamp(24px, 5vw, 64px);
  max-width: 900px;
}

/* Quote text */
.photo-quote__text {
  font-family: var(--font-chandler);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.4;
  color: #ffffff;

  max-width: 520px;
  margin: 0 0 16px 0;

  /* subtle contrast lift */
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

/* Credit */
.photo-quote__credit {
  font-family: var(--font-chandler);
  font-size: 14px;
  line-height: 1.3;
  color: #ffffff;
}

.photo-quote__credit strong {
  color: #f2c94c;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.photo-quote__caption {
  font-family: var(--font-chandler);
  font-size: 0.95rem;
  line-height: 1.35;
  color: #ffffff;
  text-align: center;
  max-width: 618px;
  margin: 10px auto;
}


/* 2-up slider (like your screenshot), 1-up from 450px down */
.sldr {
  --gap: 24px;
  --btn: 36px;
  --ink: rgba(255, 255, 255, .85);
  padding-left: 10%;
  box-sizing: border-box;
  margin: auto;
}


.sldr__viewport {
  position: relative;
  overflow: hidden;
  scroll-behavior: smooth;
  outline: none;
}

.sldr__track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
}

.sldr__slide {
  margin: 0;
  flex: 0 0 calc((100% - var(--gap)) / 2);
  /* two visible */
  aspect-ratio: 16/9;
  /* ensures 16:9 */
  background: #ddd;
}

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



/* minimal click icons */


.sldr__btn svg {
  width: 18px;
  height: 18px;
}

.sldr__btn--prev {
  left: 10px;
}

.sldr__btn--next {
  right: 10px;
}

.sldr__btn:hover {
  background: rgba(0, 0, 0, .5);
}

.sldr__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 2px;
}

.sldr__frame {
  position: relative;
}

.sldr__viewport {
  overflow: hidden;
}

.sldr__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: #f2c94c;
  color: rgba(255, 255, 255, .9);
  display: grid;
  place-items: center;
  border-radius: 999px;
  cursor: pointer;
}

.sldr__btn--prev {
  left: 10px;
}

.sldr__btn--next {
  right: 10px;
}


/* Full-width hero wrapper */
.full-hero {
  width: 100%;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  overflow: visible;
  /* don’t clip rotated corners */
  padding-block: clamp(14px, 4vh, 48px);
}

/* Figure wrapper (image + caption) */
.full-hero__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* space between image and caption */
  width: 100%;
}

/* Base image */
.full-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Caption */
.full-hero__caption {
  width: 100%;
  max-width: 1400px;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #fff;
  padding-inline: clamp(14px, 3vw, 28px);
  box-sizing: border-box;
}

/* Slanted variant */
.full-hero.slant .full-hero__img {
  width: min(70%, 1400px);
  transform: rotate(2deg);
  transform-origin: center;
}

/* Keep caption aligned with the slanted image width */
.full-hero.slant .full-hero__caption {
  max-width: 618px;
  padding-inline: 0;
  text-align: center;
  font-family: var(--font-chandler);
}


.contracted {
  width: 70vw;
  /* NOT full width */
  height: 70vh;

}


/* =========================
   CSV TABLE — DROP-IN CSS
   (includes swipe hint)
   ========================= */

.csv-table {
  width: min(70vw, 1100px);
  margin: clamp(16px, 3vw, 36px) auto;
  --accent: #f2c94c;

  font-family: var(--font-chandler);
  color: rgba(255, 255, 255, 0.85);
}

/* Scrollable frame on small screens (swipe/slider) */
.csv-table__frame {
  border: 2px solid var(--accent);

  overflow-x: auto;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;

  scrollbar-gutter: stable both-edges;
  position: relative;
}

/* Make sure the table can exceed container width so scrolling works */
.csv-table__table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  background: transparent;
}

/* Cells */
.csv-table__table th,
.csv-table__table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  white-space: nowrap;
  min-width: 140px;

  scroll-snap-align: start;
}

/* Header */
.csv-table__table thead th {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);

  position: sticky;
  top: 0;
  z-index: 3;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.csv-table__table tbody tr:last-child td {
  border-bottom: 0;
}

/* Sticky first column for context */
.csv-table__table th:first-child,
.csv-table__table td:first-child {
  position: sticky;
  left: 0;
  z-index: 4;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

/* Gender badge next to Name */
.csv-table__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

/* Pagination */
.csv-table__pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 0 0;
  user-select: none;
  flex-wrap: wrap;
}

.csv-table__nav,
.csv-table__page {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  font: inherit;
  padding: 6px 8px;
  cursor: pointer;
}

.csv-table__nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.csv-table__page.is-active {
  color: var(--accent);
}

.csv-table__ellipsis {
  color: rgba(255, 255, 255, 0.35);
  padding: 0 4px;
}



footer {
  background: #f2c94c;
  color: #000;
  padding: 40px;
  margin: auto;
  display: flex;
  justify-content: center;
}

#footer-inner {
  max-width: 618px;
  margin: 0 auto;
}

.logo {
  text-align: left;
  margin-bottom: 20px;
}

.logo img {
  display: block;
  margin-bottom: 10px;
  max-width: 150px;
  height: 100%;
  margin: auto;
}



.logo p {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  color: black;
  margin: 10px;
  text-align: center;
  font-family: var(--font-chandler);

}

.lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 30px;
  margin-top: 30px;
  color: black;
  font-family: var(--font-utopia);
  font-weight: 400;
  font-display: swap;
}

.list {
  flex: 1;
  min-width: 200px;
  text-align: center;

}

.list h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.list ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.list ul li {
  margin-bottom: 5px;
}


.list ul li a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  background: none;
}

.list ul li a:hover {
  opacity: 1;
}

.social-icons a {
  background: none;

}

.social-icons-m a {
  background: none;
}

.credits {
  background-color: transparent;
  padding: 3rem 0rem;
}

.credits p {
  font-family: var(--font-chandler);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: #999;
  max-width: 550px;
  margin: auto;
  padding: 1rem;
  border-top: 1px solid #333;
  text-align: center;
}


.photo-prints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  /* tightened spacing */
  justify-items: center;

  max-width: 900px;
  /* cap overall width */
  margin: auto;
}

/* Print wrapper */
.photo-prints__item {
  margin: 0;
  width: 200px;
  /* base print size */
  max-width: 100%;
  transform-origin: center;
}

/* Image stays intact */
.photo-prints__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slants */
.photo-prints__item:nth-child(1) {
  transform: rotate(-1.1deg);
}

.photo-prints__item:nth-child(2) {
  transform: rotate(0.8deg);
}

.photo-prints__item:nth-child(3) {
  transform: rotate(-0.6deg);
}

.photo-prints__item:nth-child(4) {
  transform: rotate(1.0deg);
}

.photo-prints__item:nth-child(5) {
  transform: rotate(0.6deg);
}

.photo-prints__item:nth-child(6) {
  transform: rotate(-0.9deg);
}

.photo-prints__item:nth-child(7) {
  transform: rotate(0.4deg);
}

.photo-prints__item:nth-child(8) {
  transform: rotate(-0.7deg);
}

/* Trio layout: always one row */
.photo-prints--trio {
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: clamp(10px, 1.5vw, 16px);
  max-width: 900px;
}



/* =========================================================
   MEDIA QUERIES — organised by breakpoint (wide → narrow)
   ========================================================= */

@media (max-width: 1024px) {
  section[aria-label="Story"]:first-child p:first-child {
    padding-top: 35%;
  }

  .csv-table {
    width: 100vw;
  }

  .csv-table__table th,
  .csv-table__table td {
    padding: 5px;
  }
}

/* ≥ 900px */
@media (min-width: 900px) {
  .csv-table__swipe-hint {
    display: none;
  }
}

/* ≤ 900px */
@media (max-width: 900px) {

    section[aria-label="Story"]:first-child p:first-child {
    padding-top: 45%;
  }
  
  /* Responsive tightening */
  .photo-prints {
    gap: clamp(20px, 2vw, 16px);
  }

  .csv-table__frame::before,
  .csv-table__frame::after {
    content: "";
    position: sticky;
    top: 0;
    width: 18px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: block;
  }

  .csv-table__frame::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  }

  .csv-table__frame::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  }

  .csv-table__swipe-hint {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 20;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;
    font-size: 12px;
    letter-spacing: 0.04em;

    background: rgba(0, 0, 0, 0.55);
    color: var(--accent);
    border: 1px solid rgba(242, 201, 76, 0.4);
    border-radius: 999px;

    pointer-events: none;
    opacity: 0.9;

    animation: csvSwipePulse 2.4s ease-in-out infinite;
  }

  .csv-table__swipe-icon {
    font-size: 14px;
    line-height: 1;
  }

  @keyframes csvSwipePulse {
    0%,
    100% {
      transform: translate(-2px, -50%);
      opacity: 0.7;
    }

    50% {
      transform: translate(2px, -50%);
      opacity: 1;
    }
  }
}

@media (max-width: 820px) {
  body {
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 65px;
  }
}

/* Optional: on tablet, stack but KEEP SCROLLY (image still swaps & stays sticky-ish) */
@media (max-width: 800px) {
  .scrolly {
    grid-template-columns: 1fr;
    width: 100%;
    background-color: #fff;
  }

  .scrolly__text {
    order: 1;
    width: 100%;
  }

  .scrolly__media {
    order: 2;
    width: 100%;
    top: 12vh;
    height: 55vh;
    margin-top: 18px;
  }
}

/* Scale down cleanly on small screens */
@media (max-width: 720px) {
  .photo-prints--trio {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-prints--trio .photo-prints__item {
    width: 160px;
  }
}

@media (max-width: 600px) {
  .photo-prints__item {
    width: 180px;
  }

  /* Mobile refinement */
  .photo-quote__overlay {
    padding: 20px;
  }

  .photo-quote__text {
    max-width: 100%;
  }

  /* Scrolly mobile layout */
  .scrolly {
    grid-template-columns: 1fr;
    grid-template-areas: "stack";
    min-height: calc(120vh * 2);
    width: 100%;
  }

  .scrolly__media {
    grid-area: stack;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 0;
    overflow: hidden;
  }

  .scrolly__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .scrolly__img:first-child {
    opacity: 1;
  }

  .scrolly__img.is-active {
    opacity: 1;
  }

  /* Text overlays */
  .scrolly__text {
    grid-area: stack;
    z-index: 2;
    width: 100%;
  }

  .scrolly__step {
    min-height: 200vh;
    display: flex;
    align-items: center;
    position: relative;
  }

  .scrolly__step::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    height: min(46vh, 320px);
    background: radial-gradient(closest-side, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 70%);
    filter: blur(2px);
    pointer-events: none;
  }

  .scrolly__step p {
    position: relative;
    z-index: 1;
    max-width: 48ch;
    padding: 12px 14px;
    margin: 0 16px;
    background: #000;
    color: #fff;
  }
}

@media (max-width: 540px) {
  .sldr {
    --gap: 0px;
    padding-left: unset;
  }

  .sldr__slide {
    flex-basis: 100%;
  }

  .hero-title {
    font-size: 35px;
  }

  article {
    padding-top: 20%;
  }

  article p {
    margin: 15px;
  }

  h2 {
    margin: 20px 15px 15px;
  }

  section[aria-label="Story"]:first-child p:first-child {
    padding-top: 25%;
  }
}

@media (max-width: 480px) {
  .photo-prints {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .photo-prints--trio {
    grid-template-columns: 1fr;
  }

  .photo-prints--trio .photo-prints__item {
    width: 100vw;
  }

    section[aria-label="Story"]:first-child p:first-child {
    padding-top: 50%;
  }

}

@media (max-width: 440px) {
  section[aria-label="Story"]:first-child p:first-child {
    padding-top: 70%;
  }

  .netra-logo {
    margin-left: 10px;
  }
}

@media (max-width: 420px) {
  .photo-prints__item {
    width: 160px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .csv-table__frame {
    scroll-behavior: auto;
  }

  .csv-table__swipe-hint {
    animation: none;
  }
}

/* =========================================================
   ASPECT-RATIO QUERIES
   ========================================================= */

/* Only keep a “hero” feel on wider layouts */
@media (min-aspect-ratio: 4/5) {
  .full-hero {
    align-items: center;
    overflow: visible;
    padding-block: 0;
  }

  .full-hero__figure {
    padding-block: clamp(14px, 4vh, 48px);
    /* preserve breathing room for caption */
  }
}

/* Portrait: avoid wasted vertical space + prevent clipping */
@media (max-aspect-ratio: 4/5) {
  .full-hero {
    min-height: unset;
    height: auto;
    overflow: visible;
  }

  .full-hero.slant .full-hero__img {
    /* breathing room so rotated corners stay visible */
    padding: clamp(10px, 3vw, 22px);
    box-sizing: border-box;
    width: 100%;
  }

  .full-hero.slant .full-hero__caption {
    max-width: 1400px;
  }
}
