/* ===================================================================
   Natwende Backpackers - Design tokens
   Palette pulled from the logo's sunset arc: deep ink brownish-purple,
   two sunset oranges, and a savanna yellow. Neutrals are warm creams
   biased toward the ink, never a flat grey.
   Type: Fraunces (display, characterful serif) + Work Sans (body) +
   Caveat (handwritten accent, echoes the logo's brush-script wordmark).
=================================================================== */

:root {
  /* core palette */
  --ink: #361a25;
  --ink-soft: #6b3f52;
  --ink-faint: #8a6070;
  --ink-hover: #4a2434;

  --orange: #fd851f;
  --orange-deep: #fa751d;
  --yellow: #fec827;

  /* warm neutrals, hue-biased toward ink rather than flat grey */
  --cream: #fdf6ee;
  --cream-deep: #f6e6d6;
  --surface: #fffbf5;
  --line: rgba(54, 26, 37, 0.14);
  --line-strong: rgba(54, 26, 37, 0.24);

  --white: #fffefb;

  /* gradients, matching the logo arc exactly: orange top, yellow base */
  --gradient-sunset: linear-gradient(180deg, var(--orange-deep) 0%, var(--orange) 40%, var(--yellow) 100%);
  --gradient-sunset-soft: linear-gradient(180deg, rgba(250,117,29,0.10) 0%, rgba(254,200,39,0.16) 100%);

  /* type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* scale */
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 1.9rem);
  --step-3: clamp(1.9rem, 1.6rem + 1.5vw, 2.6rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.5vw, 3.6rem);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 2px rgba(54,26,37,0.06), 0 12px 28px -16px rgba(54,26,37,0.28);
  --shadow-lift: 0 18px 40px -20px rgba(54,26,37,0.45);

  --content-width: 1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; margin: 0 0 0.5em; text-wrap: balance; color: var(--ink); }
p { margin: 0 0 1em; max-width: 62ch; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 3px solid var(--orange-deep); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.stack { display: flex; flex-direction: column; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; }
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }

.eyebrow {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--orange-deep);
  display: inline-block;
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { margin-bottom: 0; color: var(--ink-soft); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-in-out), box-shadow 0.2s var(--ease-in-out), background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); transition-duration: 0.12s; }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--ink-hover); box-shadow: var(--shadow-lift); }
.btn-sunset { background: var(--gradient-sunset); color: var(--ink); box-shadow: var(--shadow-card); }
.btn-sunset:hover { box-shadow: var(--shadow-lift); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-outline-ink { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline-ink:hover { background: rgba(54,26,37,0.08); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- site header ---------- */
.site-header {
  position: relative;
  z-index: 50;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  box-shadow: var(--shadow-card);
  animation: header-drop 0.35s var(--ease-out) both;
}
.header-spacer { height: 0; }
@keyframes header-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .site-header.is-fixed { animation: none; }
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
}
.brand { display: flex; align-items: center; }
.brand-mark {
  height: 52px;
  overflow: hidden;
  display: block;
}
.brand-mark img { height: 52px; width: auto; display: block; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

.main-nav ul { display: flex; gap: clamp(0.5rem, 2vw, 2.2rem); align-items: center; }
.main-nav a {
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.5rem 0.1rem;
  position: relative;
  color: var(--ink);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange-deep);
  transition: right 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--orange-deep); }
.main-nav .btn { margin-left: 0.5rem; }
.main-nav a.btn {
  padding: 0.85em 1.8em;
}
.main-nav a.btn::after { content: none; }
.main-nav a.btn:hover { filter: brightness(1.08); }

@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open { max-height: 420px; }
  .main-nav .wrap { padding: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem; gap: 0.25rem; }
  .main-nav a { display: flex; align-items: center; min-height: 44px; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .main-nav li:last-child a { border-bottom: none; }
  .main-nav .btn { margin: 0.75rem 0 0; }
}

/* ---------- skyline divider (acacia silhouette) ---------- */
.skyline { display: block; width: 100%; line-height: 0; }
.skyline svg { width: 100%; height: auto; display: block; }
.skyline--ink { color: var(--ink); }
.skyline--cream { color: var(--cream); }
.skyline--surface { color: var(--surface); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--gradient-sunset);
  color: var(--ink);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 15% 10%, rgba(255,255,255,0.28), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.hero-badge {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.15rem;
  background: rgba(54,26,37,0.12);
  border: 1.5px solid rgba(54,26,37,0.35);
  color: var(--ink);
  padding: 0.35em 1em;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}
.hero h1 {
  font-size: var(--step-4);
  max-width: 16ch;
}
.hero-lede { font-size: var(--step-1); max-width: 46ch; color: rgba(54,26,37,0.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(1rem, 3vw, 2rem);
  padding-top: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(54,26,37,0.25);
}
.hero-fact strong { display: block; font-family: var(--font-display); font-size: 1.5rem; }
.hero-fact span { font-size: 0.9rem; color: var(--ink-soft); }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
html:not(.is-loading) .hero-badge { animation: hero-in 0.6s var(--ease-out) 0.05s both; }
html:not(.is-loading) .hero h1 { animation: hero-in 0.6s var(--ease-out) 0.12s both; }
html:not(.is-loading) .hero-lede { animation: hero-in 0.6s var(--ease-out) 0.2s both; }
html:not(.is-loading) .hero-actions { animation: hero-in 0.6s var(--ease-out) 0.28s both; }
html:not(.is-loading) .hero-facts { animation: hero-in 0.6s var(--ease-out) 0.36s both; }

/* page header (non-home hero, shorter) */
.page-hero { background: var(--gradient-sunset); color: var(--ink); position: relative; overflow: hidden; }
.page-hero .wrap { padding-block: clamp(2.75rem, 6vw, 4rem) clamp(2rem, 4vw, 2.75rem); position: relative; }
.page-hero .hero-badge { margin-bottom: 1.1rem; }
.page-hero h1 { font-size: var(--step-3); max-width: 20ch; margin-bottom: 0.6em; }
.page-hero p { font-size: var(--step-1); color: rgba(54,26,37,0.85); max-width: 50ch; }

/* ---------- banner / callout ---------- */
.banner {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
}
.banner h3 { color: var(--white); margin-bottom: 0.25rem; font-size: var(--step-2); }
.banner p { color: rgba(255,254,251,0.78); margin-bottom: 0; }
.banner .tag {
  font-family: var(--font-accent);
  color: var(--yellow);
  font-size: 1.3rem;
  font-weight: 700;
}

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gradient-sunset-soft);
  color: var(--orange-deep);
  margin-bottom: 1rem;
  transition: transform 0.2s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover .card-icon { transform: scale(1.08); }
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.96rem; }

.room-card { display: flex; flex-direction: column; gap: 0.75rem; }
.room-card .price { font-family: var(--font-display); font-size: 1.7rem; color: var(--orange-deep); }
.room-card .price small { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.room-card .meta { font-size: 0.85rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ---------- room-card flip reveal ---------- */
.room-card-flip { perspective: 1600px; height: 100%; }
.room-card-flip-inner {
  position: relative;
  height: 100%;
  transition: transform 0.6s var(--ease-in-out);
  transform-style: preserve-3d;
}
.room-card-flip:focus-visible { outline: none; }
.room-card-flip:focus-visible .room-card-flip-inner { outline: 3px solid var(--orange-deep); outline-offset: 4px; }
.room-card-face { height: 100%; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.room-card-face.card:hover { transform: none; box-shadow: var(--shadow-card); }
.room-card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  background: var(--ink);
  border-color: var(--ink);
}
.room-card-back.card:hover { transform: rotateY(180deg); }
.room-card-back h3, .room-card-back .price { color: var(--orange-deep); }
.room-card-back .meta, .room-card-back p { color: rgba(255,254,251,0.82); }
.room-card-back .price small { color: rgba(255,254,251,0.65); }
.room-card-flip:hover .room-card-flip-inner,
.room-card-flip:focus-visible .room-card-flip-inner { transform: rotateY(180deg); }
@media (prefers-reduced-motion: reduce) {
  .room-card-flip-inner { transition: none; }
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

/* ---------- rate tables ---------- */
.rate-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-card); }
table.rates { width: 100%; border-collapse: collapse; min-width: 480px; }
table.rates caption {
  text-align: left; font-family: var(--font-display); font-size: 1.3rem;
  padding: 1.25rem 1.5rem 0.75rem; color: var(--ink);
}
table.rates th, table.rates td { padding: 0.9rem 1.5rem; text-align: left; border-top: 1px solid var(--line); }
table.rates thead th { border-top: none; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); font-weight: 600; }
table.rates td:last-child, table.rates th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
table.rates tbody tr { transition: background-color 0.15s ease; }
table.rates tbody tr:hover { background: var(--gradient-sunset-soft); }
table.rates .price-cell { font-family: var(--font-display); font-weight: 600; color: var(--orange-deep); font-size: 1.05rem; }

/* ---------- facility list ---------- */
.facility-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.facility-row:last-child { border-bottom: none; }
.facility-row .card-icon { flex-shrink: 0; margin-bottom: 0; width: 44px; height: 44px; }
.facility-row .card-icon svg { width: 22px; height: 22px; }
.facility-row h4 { margin-bottom: 0.15rem; font-size: 1.05rem; }
.facility-row p { margin-bottom: 0; font-size: 0.92rem; color: var(--ink-soft); }
.facility-row .hours { font-size: 0.8rem; color: var(--orange-deep); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- tour list ---------- */
.tour-item {
  display: flex; gap: 1rem; align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--line-strong);
}
.tour-item:last-child { border-bottom: none; }
.tour-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-deep); flex-shrink: 0; transform: translateY(-2px); }

/* ---------- quote ---------- */
.quote {
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
  max-width: 34ch;
  line-height: 1.35;
}

/* ---------- contact ---------- */
.contact-grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field input, .field textarea, .field select {
  padding: 0.75em 0.9em;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.15s ease;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23361a25' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
  background-size: 18px;
  padding-right: 2.6em;
  cursor: pointer;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange-deep); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.5rem; margin-bottom: 0; }

.alert {
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  border: 1.5px solid transparent;
}
.alert-success { background: #eef7ee; border-color: #a9d4ab; color: #2b5c2d; }
.alert-error { background: #fbeaea; border-color: #e6a6a6; color: #7a2626; }

.contact-detail { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.9rem 0; }
.contact-detail .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-detail h4 { margin-bottom: 0.15rem; font-size: 1rem; }
.contact-detail p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.95rem; }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,254,251,0.82); }
.footer-top { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-mark { height: 46px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand .brand-mark img { height: 46px; }
.footer-brand p { color: rgba(255,254,251,0.65); margin-top: 0.9rem; font-size: 0.92rem; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.site-footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer a { color: rgba(255,254,251,0.75); font-size: 0.95rem; transition: color 0.15s ease; }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,254,251,0.14);
  padding-block: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,254,251,0.55);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
}

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-card { opacity: 0; transform: translateY(46px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal-card.is-visible { opacity: 1; transform: translateY(0); }
.grid .reveal-card:nth-child(4n+2) { transition-delay: 60ms; }
.grid .reveal-card:nth-child(4n+3) { transition-delay: 120ms; }
.grid .reveal-card:nth-child(4n+4) { transition-delay: 180ms; }

/* ---------- misc ---------- */
.pill {
  display: inline-block;
  background: var(--gradient-sunset-soft);
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3em 0.9em;
  border-radius: 999px;
}
.divider-line { height: 1px; background: var(--line); border: none; margin: 0; }

/* ---------- image placeholders (swap for real photography) ---------- */
.img-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 2px dashed var(--line-strong);
  background: var(--gradient-sunset-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 1rem;
}
.img-placeholder svg { width: 30px; height: 30px; opacity: 0.55; }
.img-placeholder span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 16ch;
}
.img-placeholder--sm { aspect-ratio: 16 / 10; margin-bottom: 1rem; }
.img-placeholder--wide { width: min(240px, 100%); flex-shrink: 0; }
