/* Wandermio design system
   Sunset Coral palette, Gabarito display, Golos Text body.
   Image led travel blog: full bleed heroes, soft cards, generous air. */

@font-face {
  font-family: "Gabarito";
  src: url("/static/fonts/gabarito.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Golos Text";
  src: url("/static/fonts/golos.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fdf8f3;
  --cream-dim: #f4ebe1;
  --white: #ffffff;
  --ink: #14100d;
  --ink-soft: #4a423b;
  --muted: #857a70;
  --coral: #e4572e;
  --coral-deep: #c4441f;
  --coral-wash: #fbe7de;
  --teal: #17505a;
  --teal-deep: #0e3740;
  --sand: #e8d9c5;
  --line: #e7dacb;
  --shadow: rgba(20, 16, 13, 0.10);
  --shadow-lift: rgba(20, 16, 13, 0.16);
  --good: #2e7d5b;
  --bad: #b03a28;

  --display: "Gabarito", "Trebuchet MS", system-ui, sans-serif;
  --body: "Golos Text", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wide: 1240px;
  --narrow: 720px;
  --gap: clamp(20px, 3.2vw, 40px);
  --radius-card: 18px;
  --radius-slab: 26px;
  --head-h: 72px;
}

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

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }

ul, ol { padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* ---------- shared bits ---------- */

.wm-wrap { width: min(var(--wide), 100% - var(--gap) * 2); margin-inline: auto; }
.wm-narrow { width: min(var(--narrow), 100% - var(--gap) * 2); margin-inline: auto; }

.wm-label {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}

.wm-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  z-index: 90;
}
.wm-skip:focus { left: 0; }

.wm-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid var(--coral);
  cursor: pointer;
  transition: background 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out;
}
.wm-pill:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(228, 87, 46, 0.28);
}

.wm-pill--ghost { background: transparent; color: var(--ink); border-color: rgba(20, 16, 13, 0.24); }
.wm-pill--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: none; }

.wm-pill--light {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.wm-pill--light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.wm-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
}
.wm-arrow-link svg { transition: transform 200ms ease-out; }
.wm-arrow-link:hover svg { transform: translateX(5px); }

.wm-chip {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--shadow);
}
.wm-chip--coral { background: var(--coral); color: var(--white); box-shadow: none; }

.wm-sec { padding: clamp(56px, 8vw, 108px) 0; }
.wm-sec--tight { padding: clamp(40px, 5vw, 64px) 0; }

.wm-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(26px, 3.4vw, 44px);
}
.wm-sec-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.wm-sec-head p { color: var(--ink-soft); margin-top: 10px; max-width: 46ch; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; border-radius: 4px; }

/* ---------- header ---------- */

.wm-head {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--head-h);
  display: flex;
  align-items: center;
  background: rgba(253, 248, 243, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease-out, box-shadow 240ms ease-out, border-color 240ms ease-out;
}
.wm-head.is-stuck { box-shadow: 0 8px 26px rgba(20, 16, 13, 0.08); }

.wm-head--over {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.wm-head--over .wm-nav a, .wm-head--over .wm-brand { color: var(--white); }
.wm-head--over .wm-burger span { background: var(--white); }
.wm-head--over.is-solid {
  background: rgba(253, 248, 243, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.wm-head--over.is-solid .wm-nav a, .wm-head--over.is-solid .wm-brand { color: var(--ink); }
.wm-head--over.is-solid .wm-burger span { background: var(--ink); }

.wm-head-in {
  width: min(var(--wide), 100% - var(--gap) * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wm-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.wm-brand img { width: 30px; height: 30px; border-radius: 50%; }

.wm-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); }
.wm-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 0;
  position: relative;
}
.wm-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--coral);
  transition: right 220ms ease-out;
}
.wm-nav a:hover::after, .wm-nav a[aria-current="page"]::after { right: 0; }

.wm-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.wm-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms ease-out, opacity 180ms ease-out;
}
.wm-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wm-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.wm-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.wm-drawer {
  position: fixed;
  inset: var(--head-h) 0 auto 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 26px var(--gap) 34px;
  display: grid;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease-out, transform 220ms ease-out;
  z-index: 55;
  box-shadow: 0 20px 40px rgba(20, 16, 13, 0.12);
}
.wm-drawer.is-open { opacity: 1; transform: none; pointer-events: auto; }
.wm-drawer a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 27px;
  text-decoration: none;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.wm-drawer a:last-of-type { border-bottom: 0; }

/* ---------- home hero ---------- */

.wm-hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  margin-top: calc(var(--head-h) * -1);
  color: var(--white);
  overflow: hidden;
}
.wm-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.42) 0%, rgba(20, 16, 13, 0.05) 34%, rgba(20, 16, 13, 0.72) 100%);
}
.wm-hero__in {
  position: relative;
  z-index: 2;
  width: min(var(--wide), 100% - var(--gap) * 2);
  margin-inline: auto;
  padding: 0 0 clamp(56px, 8vw, 96px);
}
.wm-hero h1 { font-size: clamp(44px, 7vw, 86px); max-width: 16ch; margin: 16px 0 18px; text-wrap: balance; }
.wm-hero p { font-size: clamp(17px, 1.5vw, 20px); max-width: 54ch; color: rgba(255, 255, 255, 0.92); margin-bottom: 28px; }
.wm-hero .wm-label { color: var(--white); opacity: 0.9; }

.wm-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.8);
  animation: wm-bob 2.4s ease-in-out infinite;
}
@keyframes wm-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- facts strip ---------- */

.wm-facts { background: var(--cream-dim); border-block: 1px solid var(--line); }
.wm-facts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 60px);
  padding: 20px 0;
  justify-content: space-between;
}
.wm-facts li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- featured ---------- */

.wm-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.wm-feature__media {
  position: relative;
  border-radius: var(--radius-slab);
  overflow: hidden;
  box-shadow: 0 22px 50px var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.wm-feature__media img { transition: transform 500ms ease-out; }
.wm-feature:hover .wm-feature__media img { transform: scale(1.03); }
.wm-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.wm-feature__media .wm-chip { position: absolute; top: 18px; left: 18px; }
.wm-feature h2 { font-size: clamp(30px, 4vw, 48px); margin: 14px 0 16px; text-wrap: balance; }
.wm-feature p { color: var(--ink-soft); margin-bottom: 18px; max-width: 46ch; }
.wm-feature__meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 14px; margin-bottom: 22px; }

/* ---------- card grid ---------- */

.wm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 34px); list-style: none; }
.wm-grid--two { grid-template-columns: repeat(2, 1fr); }

.wm-card { display: flex; flex-direction: column; }
.wm-card__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 30px var(--shadow);
  transition: box-shadow 220ms ease-out, transform 220ms ease-out;
}
.wm-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease-out; }
.wm-card__media .wm-chip { position: absolute; top: 14px; left: 14px; }
.wm-card h3 { font-size: clamp(20px, 1.7vw, 24px); margin: 16px 0 8px; line-height: 1.16; }
.wm-card h3 a { text-decoration: none; }
.wm-card p { color: var(--ink-soft); font-size: 15.5px; }
.wm-card__meta { margin-top: 12px; color: var(--muted); font-size: 13px; display: flex; gap: 14px; flex-wrap: wrap; }
.wm-card:hover .wm-card__media { transform: translateY(-4px); box-shadow: 0 18px 40px var(--shadow-lift); }
.wm-card:hover .wm-card__media img { transform: scale(1.04); }

/* ---------- mosaic ---------- */

.wm-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: clamp(14px, 1.6vw, 20px); }
.wm-mosaic figure { border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 10px 26px var(--shadow); }
.wm-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease-out; }
.wm-mosaic figure:hover img { transform: scale(1.05); }
.wm-mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.wm-mosaic figure:nth-child(2) { grid-column: span 2; }
.wm-mosaic figure:nth-child(3) { grid-column: span 1; }
.wm-mosaic figure:nth-child(4) { grid-column: span 1; }

/* ---------- letters block ---------- */

.wm-letters {
  background: var(--coral-wash);
  border-radius: var(--radius-slab);
  padding: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}
.wm-letters h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 12px; }
.wm-letters p { color: var(--ink-soft); }
.wm-letters form { display: flex; gap: 12px; flex-wrap: wrap; }
.wm-letters input[type="email"] { flex: 1 1 240px; }
.wm-fine { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* ---------- questions ---------- */

.wm-qa { display: grid; gap: 12px; }
.wm-qa details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 22px;
  box-shadow: 0 6px 18px rgba(20, 16, 13, 0.05);
}
.wm-qa summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.wm-qa summary::-webkit-details-marker { display: none; }
.wm-qa summary::after { content: "+"; font-weight: 600; color: var(--coral); font-size: 24px; line-height: 1; }
.wm-qa details[open] summary::after { content: "-"; }
.wm-qa p { color: var(--ink-soft); padding-bottom: 20px; }

/* ---------- collection cover ---------- */

.wm-cover {
  position: relative;
  min-height: min(46vh, 460px);
  display: flex;
  align-items: flex-end;
  margin-top: calc(var(--head-h) * -1);
  color: var(--white);
  overflow: hidden;
}
.wm-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wm-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.44), rgba(20, 16, 13, 0.66));
}
.wm-cover__in {
  position: relative;
  z-index: 2;
  width: min(var(--wide), 100% - var(--gap) * 2);
  margin-inline: auto;
  padding: 0 0 clamp(34px, 5vw, 56px);
}
.wm-cover h1 { font-size: clamp(36px, 5.4vw, 62px); margin: 14px 0 12px; }
.wm-cover p { max-width: 52ch; color: rgba(255, 255, 255, 0.9); }
.wm-cover .wm-label { color: var(--white); opacity: 0.9; }

/* ---------- post ---------- */

.wm-post-hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: flex-end;
  margin-top: calc(var(--head-h) * -1);
  color: var(--white);
  overflow: hidden;
}
.wm-post-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wm-post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.34) 0%, rgba(20, 16, 13, 0.08) 40%, rgba(20, 16, 13, 0.76) 100%);
}
.wm-post-hero__in {
  position: relative;
  z-index: 2;
  width: min(920px, 100% - var(--gap) * 2);
  margin-inline: auto;
  padding: 0 0 clamp(44px, 6vw, 76px);
}
.wm-post-hero h1 { font-size: clamp(38px, 6vw, 68px); margin: 16px 0 16px; text-wrap: balance; }
.wm-post-meta { display: flex; gap: 10px 20px; flex-wrap: wrap; font-size: 14.5px; color: rgba(255, 255, 255, 0.9); }

.wm-prose { font-size: 18px; line-height: 1.78; color: var(--ink-soft); }
.wm-prose > p { margin-bottom: 26px; }
.wm-prose > p:first-of-type { font-size: 20.5px; color: var(--ink); }
.wm-prose h2 { font-size: clamp(26px, 3vw, 34px); color: var(--ink); margin: 46px 0 18px; }
.wm-prose h3 { font-size: 22px; color: var(--ink); margin: 32px 0 12px; }
.wm-prose ul, .wm-prose ol { margin: 0 0 26px 22px; }
.wm-prose li { margin-bottom: 10px; }
.wm-prose strong { color: var(--ink); font-weight: 600; }

.wm-quote {
  border-left: 4px solid var(--coral);
  padding: 6px 0 6px 26px;
  margin: 40px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(23px, 2.6vw, 30px);
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.wm-figure { margin: 40px 0; }
.wm-figure img { border-radius: var(--radius-card); box-shadow: 0 14px 34px var(--shadow); width: 100%; }
.wm-figure figcaption { margin-top: 12px; font-size: 14px; color: var(--muted); }

.wm-short { background: var(--cream-dim); border-radius: var(--radius-card); padding: clamp(24px, 3vw, 34px); margin: 44px 0; }
.wm-short h2 { font-size: 21px; margin: 0 0 14px; color: var(--ink); }
.wm-short ul { list-style: none; display: grid; gap: 10px; margin: 0; }
.wm-short li { padding-left: 26px; position: relative; color: var(--ink-soft); }
.wm-short li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.wm-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wm-gallery img { border-radius: 14px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; box-shadow: 0 10px 24px var(--shadow); }

.wm-author {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px 26px;
  margin: 48px 0;
  box-shadow: 0 10px 26px rgba(20, 16, 13, 0.05);
}
.wm-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; }
.wm-author h3 { font-size: 19px; margin-bottom: 4px; }
.wm-author p { color: var(--ink-soft); font-size: 15px; }

/* ---------- forms ---------- */

.wm-form { display: grid; gap: 18px; max-width: 620px; }
.wm-field { display: grid; gap: 8px; }
.wm-field label { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.wm-field input, .wm-field select, .wm-field textarea {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  min-height: 52px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}
.wm-field textarea { min-height: 160px; resize: vertical; padding-top: 14px; }
.wm-field input:focus, .wm-field select:focus, .wm-field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-wash);
}
.wm-trap { position: absolute; left: -4000px; width: 1px; height: 1px; overflow: hidden; }
.wm-note { font-size: 15px; font-weight: 500; }
.wm-note.is-bad { color: var(--bad); }
.wm-note.is-good { color: var(--good); }

/* ---------- footer ---------- */

.wm-foot {
  background: var(--teal-deep);
  color: rgba(253, 248, 243, 0.86);
  border-radius: var(--radius-slab) var(--radius-slab) 0 0;
  margin-top: clamp(60px, 8vw, 110px);
  padding: clamp(44px, 6vw, 76px) 0 34px;
}
.wm-foot a { color: rgba(253, 248, 243, 0.86); text-decoration: none; }
.wm-foot a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.wm-foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(26px, 4vw, 60px); }
.wm-foot .wm-brand { color: var(--cream); font-size: 22px; }
.wm-foot .wm-foot-h {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 248, 243, 0.6);
  margin-bottom: 14px;
}
.wm-foot ul { list-style: none; display: grid; gap: 10px; }
.wm-foot p { font-size: 15px; }
.wm-foot-say { margin-top: 14px; max-width: 34ch; font-size: 15px; }
.wm-foot-legal {
  margin-top: clamp(30px, 4vw, 46px);
  padding-top: 24px;
  border-top: 1px solid rgba(253, 248, 243, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(253, 248, 243, 0.66);
}
.wm-foot-legal ul { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; }
.wm-shield { max-width: 74ch; }

/* ---------- storage note ---------- */

.wm-store {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(10px);
  width: min(720px, calc(100% - 32px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(20, 16, 13, 0.18);
  padding: 20px 24px;
  display: none;
  gap: 18px;
  align-items: center;
  z-index: 70;
  opacity: 0;
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}
.wm-store.is-open { display: flex; opacity: 1; transform: translateX(-50%) translateY(0); }
.wm-store p { font-size: 14.5px; color: var(--ink-soft); }
.wm-store strong { display: block; font-family: var(--display); font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.wm-store-acts { display: flex; gap: 10px; flex: none; }
.wm-store .wm-pill { min-height: 42px; padding: 0 18px; font-size: 14px; }

/* ---------- reveal ---------- */

.wm-js .wm-in { opacity: 0; transform: translateY(24px); }
.wm-js .wm-in.is-in { opacity: 1; transform: none; transition: opacity 620ms ease-out, transform 620ms ease-out; }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .wm-grid { grid-template-columns: repeat(2, 1fr); }
  .wm-feature { grid-template-columns: 1fr; }
  .wm-feature__media { aspect-ratio: 16 / 10; }
  .wm-letters { grid-template-columns: 1fr; }
  .wm-foot-grid { grid-template-columns: 1fr 1fr; }
  .wm-mosaic { grid-auto-rows: 160px; }
}

@media (max-width: 900px) {
  .wm-nav, .wm-head-cta { display: none; }
  .wm-burger { display: flex; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .wm-grid, .wm-grid--two { grid-template-columns: 1fr; }
  .wm-gallery { grid-template-columns: 1fr; }
  .wm-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .wm-mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .wm-mosaic figure:nth-child(2) { grid-column: span 2; }
  .wm-foot-grid { grid-template-columns: 1fr; }
  .wm-store { flex-direction: column; align-items: flex-start; }
  .wm-store-acts { width: 100%; }
  .wm-store .wm-pill { flex: 1; }
  .wm-sec-head { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .wm-js .wm-in { opacity: 1; transform: none; }
}

@media print {
  .wm-head, .wm-store, .wm-foot, .wm-scroll-cue { display: none; }
  body { background: #fff; color: #000; }
}

/* collection lede and split notes */
.wm-lede {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.wm-lede .wm-label { padding-top: 12px; }

.wm-lede__text p {
  font-family: var(--body);
  font-size: clamp(1.18rem, 1.6vw, 1.46rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 60ch;
}

.wm-lede__text p + p { margin-top: 20px; }

.wm-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

.wm-split__media {
  border-radius: var(--radius-slab);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px var(--shadow);
}

.wm-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}

.wm-split:hover .wm-split__media img { transform: scale(1.03); }

@media (max-width: 900px) {
  .wm-lede { grid-template-columns: 1fr; gap: 14px; }
  .wm-lede .wm-label { padding-top: 0; }
  .wm-split { grid-template-columns: 1fr; gap: 26px; }
  .wm-split__media { aspect-ratio: 16 / 10; }
}

@media (prefers-reduced-motion: reduce) {
  .wm-split__media img { transition: none; }
}
