/* ============================================================
   WO Haus of Beauty — shared.css (v4.1, ADDENDUM v3.1)
   Organic, quiet, quaint luxury. Aesop's restraint, Crown
   Affair's warmth. Four-tone sectional rhythm (cream, blush,
   deep clay, ink), arch + orb photo frames, desktop editorial
   grids. Placeholder swatches are colorist tones, flagged
   REPLACE in markup. See BRAND-LOCK.md ADDENDUM v3.1.
   ============================================================ */

:root {
  /* Paper & ink */
  --paper: #f7f2e9;
  --paper-2: #efe8da;
  --blush: #f1ded2;
  --ink: #211b12;
  --ink-soft: #4e4538;
  --ink-mute: #857966;

  /* Rose, used like a second letterpress ink */
  --clay: #9c5f4b;
  --clay-deep: #7e4837;
  --rose-on-ink: #c99e90;

  /* Lines */
  --hair: rgba(33, 27, 18, 0.18);
  --hair-soft: rgba(33, 27, 18, 0.10);
  --hair-card: rgba(33, 27, 18, 0.06);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --text: "Newsreader", Georgia, serif;

  /* Geometry */
  --maxw: 660px;
  --maxw-wide: 1080px;
  --radius: 28px;
  --ease: cubic-bezier(0.25, 0.6, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--text);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #e9cbb9; color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; }
a:hover { color: var(--clay-deep); }
ul, ol { padding: 0; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 0.7rem 1.2rem; font-size: 0.85rem; }
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 390; line-height: 1.18; color: var(--ink); }
.amp { font-family: var(--serif); font-style: italic; font-weight: 340; }

/* ---------- Masthead: letterhead on real rose marble ----------
   The stone is a PHOTOGRAPH (assets/photos/marble.jpg), per the
   v3 material-honesty rule; synthesized marble stays banned. */
.masthead {
  text-align: center; padding: clamp(2.4rem, 6vw, 3.4rem) 1.5rem 0;
  background:
    linear-gradient(rgba(247, 242, 233, 0.32), rgba(247, 242, 233, 0.18)),
    url("/assets/photos/marble.jpg") center / cover;
  border-bottom: 1px solid var(--hair);
  /* the slab sits on the paper and casts onto it */
  position: relative; z-index: 5;
  box-shadow: 0 16px 34px -24px rgba(110, 63, 48, 0.55);
}
.masthead__brand { display: inline-block; text-decoration: none; line-height: 1.1; }
.masthead__wo { font-family: var(--serif); font-weight: 430; font-size: clamp(1.6rem, 4.5vw, 2.1rem); letter-spacing: 0.04em; color: var(--ink); display: block; }
.masthead__of { font-family: var(--serif); font-style: italic; font-weight: 350; font-size: clamp(1rem, 2.5vw, 1.15rem); color: var(--clay); display: block; margin-top: 0.15rem; }

.masthead__nav {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.5rem 1.8rem; padding: 1.4rem 0 1.1rem;
  margin-top: 1.5rem;
}
.masthead__nav a { font-size: 0.95rem; text-decoration: none; color: var(--ink); }
.masthead__nav a:hover { color: var(--clay-deep); }
.masthead__nav a.is-active { font-style: italic; color: var(--clay-deep); }
.masthead__book { border: 1px solid var(--ink); padding: 0.3rem 1.2rem; border-radius: 999px; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.masthead__book:hover { background: var(--ink); color: var(--paper) !important; }

/* ---------- Floating book ---------- */
.book-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 110;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-family: var(--text); font-size: 0.95rem; letter-spacing: 0.03em;
  padding: 0.6rem 1.5rem; border-radius: 999px;
  border: 1px solid rgba(247, 242, 233, 0.4);
  box-shadow: 0 2px 12px rgba(33, 27, 18, 0.18);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease);
  pointer-events: none;
}
.book-float.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.book-float.is-shown:hover { background: var(--clay-deep); color: var(--paper); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(33, 27, 18, 0.24); }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.75rem, var(--maxw)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.75rem, 560px); margin-inline: auto; }
.wrap--wide { width: min(100% - 2.75rem, var(--maxw-wide)); margin-inline: auto; }
.section { padding-block: clamp(3rem, 9vw, 5.5rem); }
/* light falls from above: flat tonal ramps, not textures */
.section--alt { background: linear-gradient(180deg, #f2ecdf 0%, var(--paper-2) 45%, #eae1d0 100%); }
.section--blush { background: linear-gradient(180deg, #f4e3d8 0%, var(--blush) 40%, #ecd7c7 100%); }

/* ---------- Buttons ---------- */
.btn { display: inline-block; font-family: var(--text); font-size: 0.95rem; letter-spacing: 0.03em; text-decoration: none; color: var(--ink); background: transparent; border: 1px solid var(--ink); padding: 0.8rem 2rem; border-radius: 999px; cursor: pointer; transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.15s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--clay-deep); border-color: var(--clay-deep); color: var(--paper); }

/* ---------- Page heads ---------- */
.page-head { text-align: center; padding: clamp(2.4rem, 7vw, 4rem) 0 0; }
.page-head h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); }
.page-head__sub { font-style: italic; color: var(--ink-mute); margin: 1rem auto 0; max-width: 44ch; font-size: 1.02rem; }

/* ---------- Split: text beside media (intro, about) ---------- */
.split { display: grid; gap: 2.6rem; align-items: center; }
.split__media { width: min(100%, 330px); margin-inline: auto; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.08fr 0.92fr; gap: clamp(3rem, 6vw, 5rem); }
  .split__media { width: min(100%, 400px); margin: 0; justify-self: end; }
}

/* ---------- Home intro ---------- */
.intro { padding-top: clamp(2.6rem, 7vw, 4.5rem); padding-bottom: clamp(3rem, 9vw, 5.5rem); }
.intro__text { text-align: center; }
.intro__text h1 { font-size: clamp(1.8rem, 4.6vw, 2.9rem); font-weight: 380; line-height: 1.22; max-width: 22ch; margin-inline: auto; }
.intro__support { font-size: 1.08rem; color: var(--ink-mute); margin: 1.2rem auto 0; max-width: 40ch; }
.intro__text .btn { margin-top: 2.2rem; }
.intro__note { font-style: italic; font-size: 0.95rem; color: var(--ink-mute); margin-top: 1.2rem; }
@media (min-width: 900px) {
  .intro__text { text-align: left; }
  .intro__text h1, .intro__support { margin-inline: 0; }
  /* the arch is clipped over the blush band below: collage layering */
  .intro { padding-bottom: 0; }
  .intro .split__media { position: relative; z-index: 6; margin-bottom: -4.5rem; }
}

/* ---------- Photo frames (arch / orb / rounded box) ----------
   Placeholders are colorist tones with italic labels; swap each
   for a real @wohausofbeauty photo (same shape) when it exists. */
.ph-img {
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  /* a mounted print: warm diffuse cast + offset passe-partout ring */
  box-shadow: 0 26px 50px -30px rgba(94, 58, 41, 0.5), 0 0 0 1px rgba(33, 27, 18, 0.04);
  outline: 1px solid var(--hair-soft); outline-offset: 9px;
}
.ph-img span { font-style: italic; font-size: 0.95rem; color: rgba(247, 242, 233, 0.95); text-align: center; line-height: 1.5; padding: 0 1.4rem; }
.ph-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.12) saturate(0.88) contrast(0.97) brightness(1.02); }
.ph-img--arch { aspect-ratio: 4 / 5; border-radius: 999px 999px var(--radius) var(--radius); }
.ph-img--orb { aspect-ratio: 1; border-radius: 50%; }
.ph-img--rbox { aspect-ratio: 4 / 3; border-radius: var(--radius); }

/* Colorist-tone swatches (placeholder fills) */
.tone-honey { background: linear-gradient(165deg, #c89668, #97633c); }
.tone-copper { background: linear-gradient(165deg, #b27656, #7e4d36); }
.tone-rose { background: linear-gradient(165deg, #c98f7a, #96604e); }
.tone-espresso { background: linear-gradient(165deg, #7d5a46, #4f372b); }

/* ---------- Orb row ---------- */
.orb-row { display: grid; gap: 1.8rem; max-width: 300px; margin: 2.2rem auto 0; }
@media (min-width: 760px) { .orb-row { grid-template-columns: repeat(3, 1fr); max-width: none; gap: clamp(1.8rem, 4vw, 3rem); } }
.orb-row figure { margin: 0; text-align: center; }
.orb-row figcaption { font-style: italic; color: var(--ink-mute); font-size: 0.95rem; margin-top: 0.9rem; }

/* ---------- Grids & cards ---------- */
.grid-2, .grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.mcard { background: var(--paper); border: 1px solid var(--hair-card); border-radius: var(--radius); padding: 2.1rem 1.8rem; text-align: center; box-shadow: 0 18px 38px -30px rgba(94, 58, 41, 0.55); }
.mcard--left { text-align: left; }
.mcard__t { font-family: var(--serif); font-size: 1.22rem; font-weight: 390; color: var(--ink); margin-bottom: 0.45rem; }
.mcard__d { color: var(--ink-mute); font-size: 0.96rem; }

.menu-masonry { columns: 1; }
@media (min-width: 800px) { .menu-masonry { columns: 2; column-gap: 1.5rem; } }
.menu-masonry .mcard { break-inside: avoid; margin-bottom: 1.5rem; }

/* ---------- Menu ---------- */
.card-title { text-align: center; font-size: clamp(1.6rem, 4vw, 2rem); margin-bottom: 0.3rem; }
.card-sub { text-align: center; font-style: italic; color: var(--ink-mute); margin-bottom: 2.4rem; font-size: 1rem; }

.mgroup__name { font-family: var(--serif); font-size: clamp(1.4rem, 3.5vw, 1.7rem); font-weight: 390; color: var(--ink); line-height: 1.18; }
.mgroup__line { font-style: italic; color: var(--ink-mute); font-size: 1rem; margin-top: 0.45rem; }
.mgroup__note { font-style: italic; color: var(--ink-mute); font-size: 0.95rem; margin-top: 0.45rem; }
.mgroup__items { max-width: 480px; margin: 1.4rem auto 0; text-align: left; }

.mitem { display: flex; justify-content: space-between; align-items: baseline; gap: 1.2rem; padding: 0.7rem 0; border-bottom: 1px solid var(--hair-soft); }
.mitem:last-child { border-bottom: 0; }
.mitem__name { color: var(--ink); font-size: 1.02rem; }
.mitem__note { font-style: italic; color: var(--ink-mute); font-size: 0.92rem; text-align: right; }

.menu-cta { text-align: center; margin-top: 2.6rem; }

/* ---------- Note from Wendy: the deep clay moment ---------- */
.note { text-align: center; }
.note p { font-family: var(--serif); font-style: italic; font-weight: 350; font-size: clamp(1.3rem, 3.6vw, 1.8rem); line-height: 1.45; color: var(--ink); max-width: 30ch; margin-inline: auto; }
.note__sig { font-size: 0.92rem; color: var(--ink-mute); margin-top: 1.5rem; }
.note--clay { background: radial-gradient(130% 120% at 50% 0%, #8a5240 0%, var(--clay-deep) 52%, #6f3e2e 100%); }
.note--clay p { color: var(--paper); }
.note--clay .note__sig { color: rgba(247, 242, 233, 0.65); }

/* ---------- Fact stack / desktop fact row ---------- */
.facts { text-align: center; }
.facts > div { padding: 1.5rem 0; border-top: 1px solid var(--hair-soft); }
.facts > div:last-child { border-bottom: 1px solid var(--hair-soft); }
.facts h3 { font-style: italic; font-weight: 370; font-size: 1.08rem; color: var(--clay-deep); margin-bottom: 0.4rem; }
.facts p, .facts a { font-size: 1.02rem; color: var(--ink-soft); }
.facts a { text-decoration: underline; text-decoration-color: var(--hair); text-underline-offset: 3px; }
.facts a:hover { text-decoration-color: var(--clay); }
@media (min-width: 800px) {
  .facts {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 2.4rem;
    /* hairlines that fade out at the ends, like a letterpress rule */
    background-image:
      linear-gradient(90deg, transparent, var(--hair-soft) 14%, var(--hair-soft) 86%, transparent),
      linear-gradient(90deg, transparent, var(--hair-soft) 14%, var(--hair-soft) 86%, transparent);
    background-repeat: no-repeat; background-size: 100% 1px; background-position: top, bottom;
  }
  .facts > div, .facts > div:last-child { border: 0; padding: 2.2rem 0.5rem; }
}

/* ---------- Prose ---------- */
.prose { text-align: left; }
.prose > * + * { margin-top: 1.2rem; }
.prose .lead { font-family: var(--serif); font-weight: 360; font-size: clamp(1.25rem, 2.8vw, 1.55rem); line-height: 1.45; color: var(--ink); }

/* ---------- Numbered steps ---------- */
.steps { counter-reset: step; }
.steps li { counter-increment: step; list-style: none; padding: 1.7rem 0; border-top: 1px solid var(--hair); display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; }
.steps li:last-child { border-bottom: 1px solid var(--hair); }
.steps li::before { content: counter(step) "."; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--clay); line-height: 1.2; }
.steps h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.steps p { color: var(--ink-mute); font-size: 0.98rem; }
@media (min-width: 860px) {
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .steps li, .steps li:last-child { border: 1px solid var(--hair-card); border-radius: var(--radius); background: var(--paper); padding: 1.9rem 1.6rem; display: block; }
  .steps li::before { display: block; margin-bottom: 0.6rem; }
}

/* ---------- Plain list + aside ---------- */
.plain-list li { padding: 1.05rem 0; border-top: 1px solid var(--hair-soft); list-style: none; }
.plain-list li:last-child { border-bottom: 1px solid var(--hair-soft); }
.plain-list .t { color: var(--ink); display: block; }
.plain-list .d { color: var(--ink-mute); font-size: 0.95rem; }
.aside-card { background: var(--paper); border: 1px solid var(--hair-card); border-radius: var(--radius); padding: 1.8rem 1.6rem; margin-top: 2.4rem; }
.aside-card h3 { font-style: italic; font-weight: 370; font-size: 1.1rem; color: var(--clay-deep); margin-bottom: 0.8rem; }
.aside-card li { padding: 0.42rem 0; font-size: 0.98rem; list-style: none; }

/* ---------- Two-col (first visit) ---------- */
.two-col > * + * { margin-top: 2.4rem; }
@media (min-width: 700px) {
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
  .two-col > * + * { margin-top: 0; }
  .two-col .aside-card { margin-top: 0; }
}

/* ---------- Section label ---------- */
.sec-label { text-align: center; font-size: clamp(1.5rem, 4vw, 1.9rem); margin-bottom: 1.6rem; }

/* ---------- FAQ ---------- */
.faq details { border-top: 1px solid var(--hair); }
.faq details:last-child { border-bottom: 1px solid var(--hair); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: 1.25rem 0; font-family: var(--serif); font-weight: 390; font-size: 1.15rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--text); color: var(--clay); font-size: 1.3rem; }
.faq details[open] summary::after { content: "\2013"; }
.faq__a { padding: 0 0 1.4rem; color: var(--ink-mute); font-size: 0.98rem; }

/* ---------- Work note ---------- */
.gal-note { font-style: italic; color: var(--ink-mute); font-size: 0.95rem; text-align: center; margin-top: 2rem; }

/* ---------- Contact ---------- */
.contact-grid > * + * { margin-top: 3rem; }
@media (min-width: 900px) {
  .contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
  .contact-grid > * + * { margin-top: 0; }
}
.info-block { margin-bottom: 1.8rem; }
.info-block h3 { font-style: italic; font-weight: 370; font-size: 1.08rem; color: var(--clay-deep); margin-bottom: 0.4rem; }
.info-block p { font-size: 1.02rem; }
.info-block a { text-decoration: underline; text-decoration-color: var(--hair); text-underline-offset: 3px; }
.info-block a:hover { text-decoration-color: var(--clay); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.35rem; text-align: left; }
.field { display: grid; gap: 0.25rem; }
.field label { font-size: 0.85rem; font-style: italic; color: var(--ink-mute); }
.field input, .field select, .field textarea { font-family: var(--text); font-size: 1.05rem; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--hair); padding: 0.5rem 0; border-radius: 0; transition: border-color 0.25s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--clay); }
.field textarea { resize: vertical; min-height: 110px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__note { font-size: 0.88rem; font-style: italic; color: var(--ink-mute); }
.form__status { font-size: 0.95rem; color: var(--clay-deep); min-height: 1.2em; }
.map-wrap { margin-top: clamp(2.4rem, 6vw, 3.5rem); border: 1px solid var(--hair-card); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 8; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.45) sepia(0.08) contrast(1.02); }

/* ---------- Book page ---------- */
.book-embed:empty { display: none; }
.book-embed { background: var(--paper); border: 1px solid var(--hair-card); border-radius: var(--radius); padding: 1rem; margin-bottom: 1.5rem; }
.book-direct { background: var(--paper); border: 1px solid var(--hair-card); border-radius: var(--radius); padding: 2.4rem 1.8rem; text-align: center; }
.book-direct__alt { font-style: italic; color: var(--ink-mute); font-size: 0.96rem; margin-top: 1.1rem; }
.book-direct__alt a { color: var(--ink-soft); }
.book-notes { margin-top: 1.5rem; }

/* ---------- Footer: the one dark moment ---------- */
.colophon { background: radial-gradient(140% 130% at 50% 0%, #2d251b 0%, var(--ink) 55%, #181309 100%); color: rgba(247, 242, 233, 0.72); text-align: center; padding: clamp(3rem, 8vw, 4.5rem) 1.5rem 2.4rem; }
.colophon__brand { font-family: var(--serif); font-weight: 420; font-size: 1.35rem; letter-spacing: 0.04em; color: var(--paper); }
.colophon__of { font-style: italic; font-weight: 350; color: var(--rose-on-ink); }
.colophon__line { font-style: normal; font-size: 0.94rem; margin-top: 0.55rem; }
.colophon__line a { color: rgba(247, 242, 233, 0.85); text-decoration: underline; text-decoration-color: rgba(247, 242, 233, 0.22); text-underline-offset: 3px; }
.colophon__line a:hover { color: var(--rose-on-ink); text-decoration-color: var(--rose-on-ink); }
.colophon__book { margin-top: 1.8rem; }
.colophon .btn { color: var(--paper); border-color: rgba(247, 242, 233, 0.55); }
.colophon .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.colophon__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem 1.5rem; margin-top: 2.2rem; }
.colophon__nav a { font-size: 0.9rem; color: rgba(247, 242, 233, 0.6); text-decoration: none; }
.colophon__nav a:hover { color: var(--rose-on-ink); }
.colophon__legal { font-size: 0.82rem; color: rgba(247, 242, 233, 0.45); margin-top: 2rem; }
.colophon__credit a { color: inherit; }

/* ============================================================
   DEPTH & MOTION (ADDENDUM v3.2)
   Three moves, each with a physical metaphor. What stays banned:
   per-section scroll fade-up entrances, hover-lift on
   non-interactive elements, anything longer than a breath.
   ============================================================ */

/* 1 · Load choreography — the letterhead settles, once, on arrival.
   (Root law: "staggered reveals on load".) Above-the-fold only;
   nothing below the fold ever waits for an animation. */
@keyframes settle {
  from { opacity: 0; transform: translateY(12px); filter: blur(2px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes track-in {
  from { opacity: 0; letter-spacing: 0.14em; }
  to { opacity: 1; letter-spacing: normal; }
}
.masthead__brand { animation: settle 0.8s var(--ease) both; }
.masthead__of { animation: track-in 1.1s var(--ease) 0.25s both; }
.masthead__nav { animation: settle 0.7s var(--ease) 0.15s both; }
.intro__text > *:nth-child(1) { animation: settle 0.7s var(--ease) 0.25s both; }
.intro__text > *:nth-child(2) { animation: settle 0.7s var(--ease) 0.37s both; }
.intro__text > *:nth-child(3) { animation: settle 0.7s var(--ease) 0.49s both; }
.intro__text > *:nth-child(4) { animation: settle 0.7s var(--ease) 0.61s both; }
.intro .split__media { animation: settle 0.9s var(--ease) 0.45s both; }
.page-head > h1 { animation: settle 0.7s var(--ease) 0.2s both; }
.page-head > .page-head__sub { animation: settle 0.7s var(--ease) 0.34s both; }

/* 2 · Window parallax — a frame is a window; what's behind it lags.
   The image drifts a few percent inside its fixed mask while the
   frame crosses the viewport. Compositor-only, no entrances. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .ph-img img {
      scale: 1.12;
      animation: window-drift linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
    @keyframes window-drift {
      from { translate: 0 -3.8%; }
      to { translate: 0 3.8%; }
    }
  }
}

/* 3 · Page cross-fade — moving through the site feels like turning
   over one object, not loading documents. Progressive (Chromium). */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 700px) {
  .field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
}
@media (max-width: 560px) {
  body { font-size: 1.04rem; }
  .masthead__nav { gap: 0.5rem 1.3rem; }
}
