/* =========================================================
   Mrs Check-In — Shared Visual System
   Luxury Family Travel Editor
   ---------------------------------------------------------
   Design notes
   - Display: Playfair Display (editorial serif, used with restraint)
   - Body:    Inter (clean, highly legible)
   - Utility: letterspaced uppercase labels for eyebrows & data
   - Palette: paper white + warm off-white, near-black ink,
              a single rich editorial red used sparingly.
   - Signature: "The Family Index" — a recurring certification
                seal and scorecard, the brand's one bold asset.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --paper:        #ffffff;
  --paper-warm:   #faf7f2;   /* alternating section ground */
  --paper-stone:  #f1ece4;   /* deeper neutral band */
  --ink:          #141414;   /* primary text / near-black */
  --ink-soft:     #4d4a45;   /* secondary text */
  --ink-muted:    #837e76;   /* captions, meta */
  --line:         #e4ded4;   /* hairline borders */
  --line-strong:  #cfc7ba;
  --red:          #a8112e;   /* the accent — used sparingly */
  --red-deep:     #84001f;

  /* Type */
  --display: "Playfair Display", "Georgia", "Times New Roman", serif;
  --body:    "Inter", "Helvetica Neue", "Arial", sans-serif;

  /* Spacing scale (8px base) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.1;
}

h3 {
  font-size: clamp(21px, 2.2vw, 25px);
  line-height: 1.2;
}

p { margin: 0 0 var(--s-3); color: var(--ink-soft); }

.lead {
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Eyebrow / utility label — the editorial signpost */
.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 var(--s-2);
  display: inline-block;
}
.eyebrow--ink { color: var(--ink-muted); }

.serif-em { font-family: var(--display); font-style: italic; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(56px, 9vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--warm { background: var(--paper-warm); }
.section--stone { background: var(--paper-stone); }
.section--ink { background: var(--ink); color: #f4f0ea; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #cfc8be; }

.section-head { max-width: 760px; margin-bottom: var(--s-5); }
.section-head--center { margin-inline: auto; text-align: center; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Buttons / links ---------- */
.btn {
  --bg: var(--ink);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 0;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { --bg: var(--red); border-color: var(--red); }
.btn--red { --bg: var(--red); border-color: var(--red); }
.btn--red:hover { --bg: var(--red-deep); border-color: var(--red-deep); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { --fg: #fff; --bg: var(--ink); border-color: var(--ink); }
.btn--on-dark { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.4); }
.btn--on-dark:hover { --bg: #fff; --fg: var(--ink); border-color: #fff; }

/* Text link with the editorial red underline */
.tlink {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
  transition: color .3s var(--ease);
}
.tlink:hover { color: var(--red); }
.tlink::after { content: " →"; color: var(--red); }

/* ---------- Masthead / navigation ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  height: 76px;
}
.wordmark {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark .dot { color: var(--red); }

.nav { display: flex; align-items: center; gap: var(--s-4); }
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width .3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px; width: 24px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: var(--s-2) var(--gutter) var(--s-4);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
  }
  .nav.is-open { max-height: 420px; }
  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .nav a::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(440px, 70vh, 660px);
  color: #fff;
  overflow: hidden;
}
.hero--short { min-height: clamp(320px, 46vh, 440px); }
.hero__media { position: absolute; inset: 0; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.20) 40%, rgba(0,0,0,.68) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(40px, 7vw, 80px);
  max-width: 820px;
}
.hero h1 { color: #fff; }
.hero .eyebrow { color: #fff; opacity: .92; }
.hero .lead { color: rgba(255,255,255,.9); max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }

/* meta line under a hero (location / dateline) */
.dateline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-top: var(--s-3);
}
.dateline span { display: inline-flex; align-items: center; gap: 8px; }
.dateline .sep { width: 4px; height: 4px; background: var(--red); border-radius: 50%; }

/* ---------- Image placeholders (editorial) ----------
   Deliberate, captioned placeholders standing in for
   commissioned photography — not broken grey boxes. */
.ph {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #efe9e0 0%, #e2d8cc 60%, #d6cabb 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(255,255,255,.55), transparent 55%),
    repeating-linear-gradient(135deg, rgba(0,0,0,.03) 0 2px, transparent 2px 9px);
}
.ph__cap {
  position: relative;
  z-index: 1;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20,20,20,.55);
  padding: 12px 14px;
}
.ph--tall   { aspect-ratio: 3 / 4; }
.ph--wide   { aspect-ratio: 16 / 9; }
.ph--hero   { aspect-ratio: auto; height: 100%; width: 100%; }
.ph--stone  { background: linear-gradient(135deg, #dfd6c8 0%, #cdbfac 100%); }
.ph--rose   { background: linear-gradient(135deg, #ecdcd6 0%, #d8bcb3 100%); }
.ph--slate  { background: linear-gradient(135deg, #d3d4d0 0%, #b7b9b3 100%); }
.ph--sand   { background: linear-gradient(135deg, #efe5d2 0%, #ddccaf 100%); }
.ph--ink    { background: linear-gradient(135deg, #2a2926 0%, #15140f 100%); }
.ph--ink .ph__cap { color: rgba(255,255,255,.6); }

/* ---------- Card grids ---------- */
.grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .grid, .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

/* Hotel / destination card */
.card { display: flex; flex-direction: column; }
.card__media { position: relative; }
.card__body { padding-top: var(--s-3); }
.card__loc {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.card h3 { margin-bottom: var(--s-1); }
.card h3 a { transition: color .3s var(--ease); }
.card h3 a:hover { color: var(--red); }
.card__hook {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: var(--s-3);
}
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  margin-top: auto;
  padding-top: var(--s-2);
  border-top: 1px solid var(--line);
}

/* small inline index tag used on cards */
.index-tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}
.index-tag b {
  font-family: var(--display);
  font-style: normal;
  font-size: 17px;
  color: var(--red);
  letter-spacing: 0;
}

/* ---------- THE FAMILY INDEX — signature components ---------- */

/* Circular certification seal */
.seal {
  --size: 156px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--ink);
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  flex: none;
  background: var(--paper);
}
.seal::before {
  content: "";
  position: absolute; inset: 7px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.seal__score {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}
.seal__score sup { font-size: 16px; color: var(--ink-muted); }
.seal__label {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 6px;
}
.seal--lg { --size: 200px; }
.seal--lg .seal__score { font-size: 56px; }
.seal--on-dark { background: transparent; color: #fff; border-color: #fff; }
.seal--on-dark::before { border-color: rgba(255,255,255,.4); }
.seal--on-dark .seal__label { color: #fff; }

/* Scorecard: criteria rows with a thin measured bar */
.scorecard {
  border-top: 2px solid var(--ink);
}
.score-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.score-row__crit {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
}
.score-row__crit small {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  margin-top: 2px;
}
.bar { height: 2px; background: var(--line-strong); position: relative; }
.bar > span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--red);
}
.score-row__num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.score-row__num small { font-size: 13px; color: var(--ink-muted); font-family: var(--body); }
.score-row--verdict .score-row__num {
  font-style: italic;
  font-size: 19px;
  color: var(--red);
}
@media (max-width: 620px) {
  .score-row { grid-template-columns: 1fr auto; }
  .bar { display: none; }
}

/* Verdict / index summary block */
.verdict {
  display: flex;
  gap: var(--s-5);
  align-items: center;
  flex-wrap: wrap;
}
.verdict__body { flex: 1 1 320px; }

/* ---------- Editorial article body ---------- */
.feature { display: grid; grid-template-columns: 1fr; gap: var(--s-7); }
.article {
  max-width: 720px;
}
.article > h2 { margin-bottom: var(--s-3); }
.article > p:first-of-type::first-letter,
.article .dropcap::first-letter {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.8;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--red);
}
.article .block + .block { margin-top: var(--s-6); }
.article .block h2 { margin-bottom: var(--s-2); }

/* pull aside / facts box */
.aside-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: var(--s-4);
}
.aside-card h3 { font-size: 20px; margin-bottom: var(--s-2); }
.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.facts li:last-child { border-bottom: 0; }
.facts .k { color: var(--ink-muted); letter-spacing: 0.04em; }
.facts .v { color: var(--ink); font-weight: 500; text-align: right; }

/* two-column layout for detail pages */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.sticky { position: sticky; top: 100px; }
@media (max-width: 880px) { .sticky { position: static; } }

/* simple list with notes (museums, walks, dining) */
.editlist { list-style: none; margin: 0; padding: 0; }
.editlist li {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.editlist li:first-child { border-top: 1px solid var(--line); }
.editlist h3 { font-size: 21px; margin-bottom: 6px; }
.editlist h3 a:hover { color: var(--red); }
.editlist p { margin: 0; font-size: 16px; }
.editlist .meta {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}

/* ---------- Filters ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  padding-block: var(--s-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.filters__label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted); margin-right: var(--s-2);
}
.chip {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.select {
  font-family: var(--body);
  font-size: 14px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}

/* ---------- Awards ---------- */
.award-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-4);
  align-items: center;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}
.award-row:first-child { border-top: 2px solid var(--ink); }
.award-cat {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
}
.award-row h3 { font-size: 24px; margin: 4px 0; }
.award-row .winner-loc { color: var(--ink-muted); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.award-row p { margin: 8px 0 0; font-size: 16px; max-width: 560px; }
.medal {
  width: 64px; height: 64px; flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  display: grid; place-content: center;
  font-family: var(--display); font-size: 22px; color: var(--red);
  background: var(--paper);
}
@media (max-width: 720px) {
  .award-row { grid-template-columns: auto 1fr; }
  .award-row .medal { grid-row: span 2; }
}

/* badge strip (downloadable laurels concept) */
.badge {
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: var(--s-4);
  text-align: center;
}
.badge .laurel {
  font-family: var(--display);
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}
.badge .laurel span { font-size: 13px; display:block; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-top: 8px; }
.badge .yr { font-size: 12px; letter-spacing: 0.2em; color: var(--ink-muted); margin-top: 6px; }

/* ---------- Newsletter ---------- */
.signup {
  display: flex;
  gap: var(--s-2);
  max-width: 480px;
  margin-top: var(--s-3);
  flex-wrap: wrap;
}
.signup input {
  flex: 1 1 240px;
  font-family: var(--body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
}
.signup input::placeholder { color: rgba(255,255,255,.55); }
.signup .btn { flex: none; }
.signup--light input { border-color: var(--line-strong); color: var(--ink); }
.signup--light input::placeholder { color: var(--ink-muted); }

/* ---------- Forms (contact) ---------- */
.form { display: grid; gap: var(--s-3); max-width: 560px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted);
}
.field input, .field textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); }

/* ---------- FAQ ---------- */
.faq dt { font-family: var(--display); font-size: 19px; font-weight: 600; margin-top: var(--s-4); }
.faq dd { margin: 6px 0 0; color: var(--ink-soft); }

/* ---------- Teasers (homepage index/awards) ---------- */
.teaser-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 820px) { .teaser-split { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #cfc8be;
  padding-block: var(--s-7) var(--s-5);
}
.footer a { color: #cfc8be; transition: color .3s var(--ease); }
.footer a:hover { color: #fff; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-5);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }
.footer .wordmark { color: #fff; }
.footer__col h4 {
  color: #fff; font-family: var(--body); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--s-2);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 10px; font-size: 15px; }
.footer__tag { font-family: var(--display); font-style: italic; font-size: 18px; color: #fff; margin-top: var(--s-2); max-width: 300px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  justify-content: space-between;
  padding-top: var(--s-4);
  font-size: 12px; letter-spacing: 0.08em; color: #8c867d;
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.muted { color: var(--ink-muted); }
.flow > * + * { margin-top: var(--s-3); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip:focus { left: var(--gutter); top: 10px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
