/* ══════════════════════════════════════════════════════════════════════
   MIRIAM ROCHHOLZ — Model-Portfolio (One-Pager, Editorial Noir)
   Palette: Elfenbein + Tiefschwarz, monochrom (High-Fashion-Editorial).
   Fonts lokal (OFL): Cormorant Garamond 600 (+Italic), Jost 400/600.
   ══════════════════════════════════════════════════════════════════════ */

@font-face { font-family: "Cormorant Garamond"; src: url("display.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("display-italic.woff2") format("woff2"); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: "Jost"; src: url("body.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Jost"; src: url("body-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

:root {
  --bg: #f2efe8;
  --paper: #faf8f3;
  --ink: #16140f;
  --ink-soft: #5d5850;
  --hair: rgba(22, 20, 15, 0.16);
  --hair-strong: rgba(22, 20, 15, 0.32);
  --noir: #131110;
  --noir-2: #1b1917;
  --noir-ink: #ece7dc;
  --noir-soft: #a49d90;
  --noir-hair: rgba(236, 231, 220, 0.16);
  --gold: #b39a6b;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(20px, 4.5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--ink); color: var(--bg); }

/* ── Demo-Banner ── */
.demo-banner {
  background: var(--ink); color: var(--bg); text-align: center;
  padding: 7px 16px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.demo-banner a { color: inherit; }

/* ── Kleinkram / Utilities ── */
.label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-soft);
}
.container { max-width: 1200px; margin: 0 auto; padding-inline: var(--pad); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-block: 14px;
}
.brand {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  letter-spacing: 0.06em; text-decoration: none; white-space: nowrap;
}
.brand em { font-style: italic; }
.nav-links { display: flex; gap: 26px; overflow-x: auto; scrollbar-width: none; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft); padding: 6px 0; white-space: nowrap;
  border-bottom: 1px solid transparent; transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); border-color: var(--ink); }

/* ── Hero (die Bühne) ── */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #262220 0%, var(--noir) 55%, #0c0b0a 100%);
  color: var(--noir-ink);
  min-height: calc(100svh - 76px);
  display: flex; flex-direction: column;
}
.hero::before {
  /* Filmkorn */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.spot {
  position: absolute; inset: -20%; pointer-events: none;
  background: radial-gradient(38% 30% at 30% 20%, rgba(236, 227, 205, 0.14), transparent 70%);
  animation: spot-pan 22s ease-in-out infinite alternate;
}
@keyframes spot-pan {
  from { transform: translate3d(-4%, 0, 0); }
  to   { transform: translate3d(10%, 6%, 0); }
}
.hero-inner {
  position: relative; z-index: 2; flex: 1;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(28px, 5vw, 72px); align-items: center;
  padding-block: clamp(40px, 6vh, 80px);
}
.hero-copy { text-align: left; }
.hero-figure { position: relative; margin: 0; max-width: 420px; justify-self: end; width: 100%; }
.hero-figure img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--noir-hair); padding: 10px; background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.hero-figure figcaption {
  margin-top: 12px; text-align: right;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--noir-soft); letter-spacing: 0.06em;
}
.hero .kicker {
  color: var(--noir-soft); font-size: 12px; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase; margin-bottom: clamp(18px, 3vh, 30px);
  display: flex; flex-wrap: wrap; row-gap: 6px;
}
/* Gedankenstrich hängt am Folgewort — bricht nie allein um */
.hero .kicker span { display: inline-flex; white-space: nowrap; }
.hero .kicker span + span::before { content: "—"; margin-inline: 14px; }
.hero h1 {
  font-family: var(--serif); font-weight: 600; line-height: 0.92;
  font-size: clamp(56px, 10.5vw, 148px); letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero h1 .ln { display: block; }
.hero h1 .lastname {
  font-style: italic; text-transform: none;
  font-size: clamp(40px, 7.8vw, 104px); letter-spacing: 0.04em;
  color: var(--gold); margin-top: clamp(2px, 0.8vh, 10px);
}
/* Buchstaben-Stagger (JS setzt spans, CSS animiert) */
.js .hero h1 .ch { display: inline-block; opacity: 0; transform: translateY(0.35em); }
.js .hero.on h1 .ch { animation: ch-in 900ms var(--ease) forwards; animation-delay: calc(var(--i) * 55ms); }
@keyframes ch-in { to { opacity: 1; transform: translateY(0); } }
.hero .roles {
  margin-top: clamp(22px, 4vh, 36px);
  display: flex; align-items: center; row-gap: 10px; flex-wrap: wrap;
  color: var(--noir-ink); font-size: 13px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
}
/* Goldpunkt hängt am Folgewort — bricht nie allein um */
.hero .roles span { display: inline-flex; align-items: center; white-space: nowrap; }
.hero .roles span + span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); margin-inline: 16px; flex: none;
}

/* Laufband */
.marquee {
  position: relative; z-index: 2; border-top: 1px solid var(--noir-hair);
  overflow: hidden; padding-block: 14px; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 0; animation: marquee 30s linear infinite; }
.marquee span {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--noir-soft); letter-spacing: 0.12em; padding-inline: 28px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sektionen (nummeriert, Editorial) ── */
.section { padding-block: clamp(72px, 11vw, 130px); }
.section-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .no {
  font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink-soft);
}
.section-head h2 {
  font-family: var(--serif); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.05;
}
.section-head h2 em { font-style: italic; text-transform: none; letter-spacing: 0.02em; }
.section-head .rule { flex: 1; height: 1px; background: var(--hair); align-self: center; }
.section-sub { max-width: 560px; color: var(--ink-soft); margin-top: -18px; margin-bottom: clamp(30px, 4vw, 48px); }

.dark { background: var(--noir); color: var(--noir-ink); }
.dark .section-head .no, .dark .section-sub { color: var(--noir-soft); }
.dark .section-head .rule { background: var(--noir-hair); }
.dark .label { color: var(--noir-soft); }

/* ── Platzhalter-Rahmen (bewusst gestaltet, ehrlich beschriftet) ── */
.slot {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 20, 15, 0.045) 0%, rgba(22, 20, 15, 0) 45%),
    repeating-linear-gradient(-45deg, rgba(22, 20, 15, 0.035) 0 1px, transparent 1px 9px),
    var(--paper);
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
}
.slot .slot-tag {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ink-soft); text-align: center; padding: 12px;
}
.slot .slot-tag svg { opacity: 0.55; }
.slot .slot-tag .t1 { font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; }
.slot .slot-tag .t2 { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0.04em; }
.slot::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid var(--hair);
  pointer-events: none;
}
.dark .slot {
  background:
    linear-gradient(135deg, rgba(236, 231, 220, 0.05) 0%, rgba(236, 231, 220, 0) 45%),
    repeating-linear-gradient(-45deg, rgba(236, 231, 220, 0.045) 0 1px, transparent 1px 9px),
    var(--noir-2);
  border-color: var(--noir-hair);
}
.dark .slot::after { border-color: var(--noir-hair); }
.dark .slot .slot-tag { color: var(--noir-soft); }

/* ── 01 Model Card ── */
.card-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 5vw, 72px); align-items: stretch;
}
.card-portrait-wrap {
  margin: 0; border: 1px solid var(--hair); background: var(--paper);
  padding: 12px; align-self: start;
}
/* Wow-Moment: die Karte schwenkt beim Reveal wie eine gedruckte Sedcard ein */
.js .card-portrait-wrap.reveal {
  transform: perspective(1200px) rotateY(-9deg) translateY(26px);
  transition: opacity 900ms var(--ease), transform 1100ms var(--ease);
  box-shadow: 0 24px 60px rgba(22, 20, 15, 0.14);
}
.js .card-portrait-wrap.reveal.in { transform: perspective(1200px) rotateY(0deg) translateY(0); }
.card-portrait { width: 100%; height: auto; aspect-ratio: 1 / 1.08; object-fit: cover; object-position: top; }
.bio {
  max-width: 720px; margin-top: clamp(36px, 5vw, 56px);
  font-size: 17px; line-height: 1.75; color: var(--ink);
  border-left: 2px solid var(--ink); padding-left: 22px;
}
.card-data { display: flex; flex-direction: column; justify-content: center; }
.card-data .name {
  font-family: var(--serif); font-size: clamp(30px, 3.6vw, 44px); font-weight: 600;
  line-height: 1.1; margin: 10px 0 6px;
}
.card-data .role { color: var(--ink-soft); margin-bottom: 30px; }
.measure { border-top: 1px solid var(--hair-strong); }
.measure div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 13px 2px; border-bottom: 1px solid var(--hair);
}
.measure dt { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
.measure dt i { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0.04em; font-size: 13px; color: var(--ink-soft); opacity: 0.75; margin-left: 7px; }
.measure dd { font-family: var(--serif); font-size: 19px; font-style: italic; }
.measure dd.tbd { color: var(--ink-soft); opacity: 0.55; font-style: normal; }
.measure-note { margin-top: 16px; font-size: 13px; color: var(--ink-soft); }

/* ── 02 Polaroids ── */
.pola-row {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 30px); align-items: start;
}
.pola {
  background: #fff; border: 1px solid var(--hair);
  padding: 10px 10px 40px; box-shadow: 0 12px 30px rgba(22, 20, 15, 0.1);
  transform: rotate(var(--r, 0deg));
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
  position: relative;
}
.pola .slot { aspect-ratio: 3.4 / 4; border: none; }
.pola .slot::after { inset: 0; border: 1px solid var(--hair); }
.pola figcaption {
  position: absolute; left: 0; right: 0; bottom: 10px; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-soft);
}
.pola:hover, .pola:focus-within {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 24px 44px rgba(22, 20, 15, 0.16);
}
.video-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.6vw, 30px); margin-top: clamp(28px, 4vw, 44px); }
.video-slot { aspect-ratio: 16 / 7; }

/* ── 03 Portfolio ── */
/* 3 Spalten à 2 Bilder, Spans so gewählt, dass alle Spalten bündig in Zeile 6 enden */
.folio-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(90px, 11vw, 150px); gap: clamp(12px, 1.8vw, 22px);
}
.f1 { grid-column: 1; grid-row: 1 / span 2; }
.f4 { grid-column: 1; grid-row: 3 / span 3; }
.f2 { grid-column: 2; grid-row: 1 / span 3; }
.f5 { grid-column: 2; grid-row: 4 / span 2; }
.f3 { grid-column: 3; grid-row: 1 / span 2; }
.f6 { grid-column: 3; grid-row: 3 / span 3; }
.folio {
  position: relative; margin: 0; overflow: hidden; border: 1px solid var(--noir-hair);
}
.folio img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 600ms var(--ease); display: block;
}
.folio:hover img { transform: scale(1.035); }
.folio figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #f2efe8; background: linear-gradient(to top, rgba(10, 9, 8, 0.75), transparent);
  opacity: 0; transition: opacity 300ms var(--ease);
}
.folio figcaption span { font-weight: 600; }
.folio:hover figcaption, .folio:focus-within figcaption { opacity: 1; }

/* ── 04 Jobs ── */
.cat-head {
  font-family: var(--serif); font-weight: 600; font-style: normal;
  font-size: clamp(21px, 2.6vw, 27px); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 18px;
  margin: clamp(36px, 5vw, 56px) 0 clamp(18px, 2.6vw, 26px);
}
.cat-head em { font-style: italic; }
.cat-head::after { content: ""; flex: 1; height: 1px; background: var(--hair); }
.jobs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.6vw, 30px); }
/* Runway hat 4 Credits: auf Desktop eine geschlossene Viererreihe statt Lücke */
.jobs-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.job { border: 1px solid var(--hair); background: var(--paper); }
.job .slot { aspect-ratio: 4 / 3; border: none; border-bottom: 1px solid var(--hair); }
.job .slot::after { display: none; }
.job-img { margin: 0; aspect-ratio: 3 / 4; overflow: hidden; border-bottom: 1px solid var(--hair); }
.job-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 600ms var(--ease); }
.job:hover .job-img img { transform: scale(1.03); }
/* Einzelstück-Kategorien: liegende Karte über zwei Spalten (Bild links, Meta rechts) */
.job.wide { grid-column: span 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.job.wide .job-img { aspect-ratio: auto; height: 100%; max-height: 420px; border-bottom: none; border-right: 1px solid var(--hair); }
.job.wide .job-meta { align-self: center; padding: 28px 30px; }
/* Editorial gespiegelt (Bild rechts) — zwei identische Breitkarten untereinander vermeiden */
.job.wide.flip .job-img { order: 2; border-right: none; border-left: 1px solid var(--hair); }
.job.wide.flip { grid-column: 2 / span 2; }
/* Magazin-Tearsheet: ganze Seite auf Papiergrund zeigen statt anschneiden */
.job-img.tear { background: #fdfcfa; }
.job-img.tear img { object-fit: contain; padding: 8px; }
.job-meta { padding: 18px 20px 22px; }
.job-meta .jt { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.2; }
.job-meta .jd { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

/* ── 05 Kontakt ── */
.contact-wrap { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-wrap h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.06; text-transform: uppercase; letter-spacing: 0.05em;
}
.contact-wrap h2 em { font-style: italic; text-transform: none; color: var(--gold); }
.contact-wrap p { color: var(--noir-soft); margin: 18px auto 40px; max-width: 480px; }
.btn-ig {
  display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid var(--gold); background: var(--gold); color: #131110;
  padding: 18px 34px; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 250ms var(--ease), color 250ms var(--ease);
}
.btn-ig:hover, .btn-ig:focus-visible { background: transparent; color: var(--gold); }
.contact-mail {
  margin-top: 22px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--noir-soft);
}
.contact-mail span { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0.04em; font-size: 15px; }

/* ── Footer ── */
.site-footer { background: var(--noir); color: var(--noir-soft); border-top: 1px solid var(--noir-hair); }
.site-footer .container {
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
  justify-content: space-between; padding-block: 26px; font-size: 13px;
}
.site-footer a { color: var(--noir-soft); text-decoration: none; border-bottom: 1px solid var(--noir-hair); transition: color 200ms var(--ease); }
.site-footer a:hover { color: var(--noir-ink); }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── Sticky-CTA (mobil) ── */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 55;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink); color: var(--bg); text-decoration: none;
  padding: 15px 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(22, 20, 15, 0.35);
}

/* ── Scroll-Reveal ── */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ── Rechtsseiten ── */
.legal { max-width: 720px; margin: 0 auto; padding: clamp(48px, 8vw, 90px) var(--pad); }
.legal h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 5vw, 44px); margin-bottom: 26px; }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 30px 0 8px; }
.legal p { color: var(--ink-soft); margin-bottom: 12px; }
.legal .hint { border: 1px solid var(--hair-strong); background: var(--paper); padding: 14px 18px; font-size: 14px; }
.legal a { color: var(--ink); }

/* ── Fokus & Motion ── */
a:focus-visible, button:focus-visible {
  outline: 2px solid currentColor; outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spot, .marquee-track { animation: none; }
  .js .hero h1 .ch { opacity: 1; transform: none; animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .card-portrait-wrap.reveal, .js .card-portrait-wrap.reveal.in { transform: none; transition: none; }
  .pola, .folio, .btn-ig { transition: none; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-figure { justify-self: start; max-width: 340px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-portrait-wrap { max-width: 440px; }
  .jobs-grid, .jobs-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .job.wide.flip { grid-column: span 2; }
}
@media (max-width: 760px) {
  .nav-links {
    gap: 18px;
    /* Scroll-Affordanz: rechts weich auslaufen statt hart abschneiden */
    -webkit-mask-image: linear-gradient(to right, #000 78%, transparent);
    mask-image: linear-gradient(to right, #000 78%, transparent);
    padding-right: 34px;
  }
  .pola-row { grid-template-columns: 1fr 1fr; }
  .video-row { grid-template-columns: 1fr; }
  .video-slot { aspect-ratio: 16 / 9; }
  /* Mobil: 2 Spalten, bündiger Abschluss (je Spalte 2+3 Reihen) */
  .folio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(110px, 26vw, 170px); }
  .f1 { grid-column: 1; grid-row: 1 / span 2; }
  .f4 { grid-column: 1; grid-row: 3 / span 3; }
  .f2 { grid-column: 2; grid-row: 1 / span 3; }
  .f5 { grid-column: 2; grid-row: 4 / span 2; }
  .f3 { grid-column: 1; grid-row: 6 / span 3; }
  .f6 { grid-column: 2; grid-row: 6 / span 3; }
  .jobs-grid, .jobs-grid.cols-4 { grid-template-columns: 1fr; }
  .job.wide, .job.wide.flip { grid-column: auto; grid-template-columns: 1fr; }
  .job.wide.flip .job-img { order: 0; border-left: none; }
  .job.wide .job-img { aspect-ratio: 3 / 4; max-height: none; border-right: none; border-bottom: 1px solid var(--hair); }
  .sticky-cta { display: flex; }
  .site-footer .container { padding-bottom: 86px; }
}
