/* =========================================================
   Safari Guide — styles
   Dark premium · forest green + gold on near-black · mobile-first
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* palette */
  --night: #0E1512;
  --night-deep: #080D0B;
  --forest: #16241C;
  --moss: #24382C;
  --moss-lt: #33503E;
  --gold: #C9A227;
  --gold-lt: #E8CC6A;
  --gold-dk: #A5811A;
  --bone: #F2EDE3;
  --bone-dim: #A9B4AC;
  --white: #ffffff;

  /* semantic */
  --bg: var(--night);
  --surface: var(--forest);
  --surface-2: var(--moss);
  --text: var(--bone);
  --muted: var(--bone-dim);
  --accent: var(--gold);
  --border: rgba(242, 237, 227, 0.12);

  /* fluid type */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --fs-small: clamp(0.85rem, 0.82rem + 0.15vw, 0.92rem);
  --fs-body: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --fs-lead: clamp(1.08rem, 1rem + 0.5vw, 1.35rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 2vw, 3.1rem);
  --fs-hero: clamp(2.4rem, 1.4rem + 4.4vw, 5rem);

  /* spacing */
  --sp-xs: clamp(0.4rem, 0.35rem + 0.25vw, 0.6rem);
  --sp-sm: clamp(0.75rem, 0.6rem + 0.6vw, 1.1rem);
  --sp-md: clamp(1.2rem, 1rem + 1vw, 2rem);
  --sp-lg: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
  --section-y: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);

  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.55);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);

  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}
ul { list-style: none; padding: 0; }
button { font: inherit; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--surface { background: var(--forest); }
.section--deep { background: var(--night-deep); }

.eyebrow {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 0.8rem;
}
.section__head { max-width: 680px; margin-bottom: var(--sp-lg); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: var(--fs-h2); }
.section__head p { margin-top: var(--sp-sm); color: var(--muted); font-size: var(--fs-lead); }
.lead { font-size: var(--fs-lead); color: var(--muted); }

/* gold hairline under section headings */
.rule {
  width: 64px; height: 2px; margin-top: var(--sp-sm);
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section__head--center .rule { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold); color: var(--night);
  padding: 0.6rem 1rem; border-radius: 8px; z-index: 300;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--gold-lt); outline-offset: 3px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.75rem 1.6rem;
  font-weight: 600; font-size: 0.98rem;
  border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.2s var(--ease-spring), background 0.2s var(--ease),
              box-shadow 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn--primary { background: var(--gold); color: var(--night); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(242, 237, 227, 0.08); color: var(--bone); border-color: rgba(242, 237, 227, 0.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: var(--bone); color: var(--night); transform: translateY(-2px); border-color: var(--bone); }
/* WhatsApp brand green with near-black text: 7.91:1, passes WCAG AAA.
   Light text on this green only reaches 2.65:1 — don't switch it back. */
.btn--wa { background: #25D366; color: #0A2912; }
.btn--wa:hover { background: #2FD96F; transform: translateY(-2px); }
.btn--sm { min-height: 44px; padding: 0.55rem 1.2rem; font-size: 0.92rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.8rem; font-weight: 600; color: var(--gold-lt);
  min-height: 44px;
}
.link-arrow::after { content: "\2192"; transition: transform 0.2s var(--ease); }
.link-arrow:hover { text-decoration: underline; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 13, 11, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); width: 100%; }

.brand { display: flex; align-items: center; gap: 0.6rem; min-height: 44px; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem; font-weight: 700; color: var(--bone);
}
.brand__tag {
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold-lt); font-weight: 600;
}

.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav__list a {
  font-size: 0.94rem; font-weight: 500; color: var(--bone);
  display: inline-flex; align-items: center; min-height: 44px;
  position: relative; transition: color 0.2s var(--ease);
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 12px;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.25s var(--ease);
}
.nav__list a:hover { color: var(--gold-lt); }
.nav__list a:hover::after { transform: scaleX(1); }
.nav__list a[aria-current="page"] { color: var(--gold-lt); }
.nav__list a[aria-current="page"]::after { transform: scaleX(1); }

/* CTA lives in the header bar on desktop, inside the drawer on mobile */
.nav__cta { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; flex: none;
  background: transparent; border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; padding: 0; position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px;
  background: var(--bone); border-radius: 2px; transform: translateX(-50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; left: 0; transform: none; }
.nav-toggle span::after { top: 6px; left: 0; transform: none; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .header__cta { display: none; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(8, 13, 11, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-md) 0 var(--sp-lg);
    transform: translateY(-120%);
    transition: transform 0.32s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav-open .site-nav { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
  .nav__list a { min-height: 54px; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav__list a::after { display: none; }
  .nav__cta { display: block; margin-top: var(--sp-md); }
  .nav__cta a { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,13,11,0.82) 0%, rgba(8,13,11,0.55) 40%, rgba(8,13,11,0.95) 100%),
    linear-gradient(90deg, rgba(8,13,11,0.8) 0%, rgba(8,13,11,0.25) 70%);
}
.hero__content { max-width: 780px; padding-block: var(--sp-lg); }
.hero__title { font-size: var(--fs-hero); margin-bottom: var(--sp-sm); }
.hero__title em { font-style: normal; color: var(--gold-lt); }
.hero__sub { font-size: var(--fs-lead); color: var(--bone); max-width: 60ch; opacity: 0.94; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-top: var(--sp-md); }
.hero__countries {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem;
  margin-top: var(--sp-lg); padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
  font-size: var(--fs-small); color: var(--bone-dim);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--bone-dim); z-index: 1;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; isolation: isolate;
  padding-top: calc(var(--header-h) + var(--sp-lg));
  padding-bottom: var(--sp-lg);
  background: var(--night-deep);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner { max-width: 760px; }
.page-hero h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem); }
.page-hero p { margin-top: var(--sp-sm); font-size: var(--fs-lead); color: var(--muted); }

.breadcrumb { font-size: var(--fs-small); color: var(--bone-dim); margin-bottom: var(--sp-sm); }
.breadcrumb a:hover { color: var(--gold-lt); text-decoration: underline; }
.breadcrumb span { opacity: 0.5; margin-inline: 0.4rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: var(--sp-md); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

/* ---------- Cards ---------- */
.card {
  background: var(--forest);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-md);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.5); box-shadow: var(--shadow-md); }
.card h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.card p { color: var(--muted); }

/* numbered reason cards */
.reason { position: relative; padding-top: calc(var(--sp-md) + 0.6rem); }
.reason__num {
  position: absolute; top: var(--sp-md); left: var(--sp-md);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1;
  color: rgba(201, 162, 39, 0.32);
}
.reason h3 { margin-top: 1.9rem; }

/* ---------- Destination cards (portrait tiles) ---------- */
.dest-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); isolation: isolate;
  min-height: 380px;
  border: 1px solid var(--border);
}
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform 0.6s var(--ease);
}
.dest-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,13,11,0.15) 30%, rgba(8,13,11,0.88) 100%);
}
.dest-card:hover img, .dest-card:focus-visible img { transform: scale(1.06); }
.dest-card__body {
  position: absolute; inset: auto 0 0 0; padding: var(--sp-md);
}
.dest-card__body h3 { font-size: var(--fs-h3); }
.dest-card__body .eyebrow { margin-bottom: 0.35rem; }
.dest-card__body p { font-size: var(--fs-small); color: var(--bone); opacity: 0.92; margin-top: 0.3rem; }

/* ---------- Alternating image/text bands ---------- */
.band { display: grid; gap: var(--sp-lg); align-items: center; }
@media (min-width: 860px) {
  .band { grid-template-columns: 1fr 1fr; }
  .band--flip .band__media { order: 2; }
}
.band + .band { margin-top: var(--section-y); }
.band__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.band__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.band__body h2 { font-size: var(--fs-h2); }
.band__body p { margin-top: var(--sp-sm); color: var(--muted); }
.band__list { margin-top: var(--sp-md); display: grid; gap: 0.6rem; }
.band__list li { position: relative; padding-left: 1.6rem; color: var(--bone); }
.band__list li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}

/* ---------- Packages table -> cards ---------- */
.pkg-table-wrap { overflow-x: auto; }
.pkg-table {
  width: 100%; border-collapse: collapse; text-align: left;
  background: var(--forest); border-radius: var(--radius); overflow: hidden;
}
.pkg-table caption {
  text-align: left; color: var(--muted); font-size: var(--fs-small);
  padding-bottom: var(--sp-sm);
}
.pkg-table th, .pkg-table td {
  padding: var(--sp-sm) var(--sp-md);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pkg-table thead th {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-lt); font-weight: 600;
  background: var(--night-deep);
}
.pkg-table tbody th {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--fs-h3); font-weight: 700; color: var(--bone);
}
.pkg-table td { color: var(--muted); }
.pkg-table tbody tr:last-child th, .pkg-table tbody tr:last-child td { border-bottom: 0; }
.pkg-table tbody tr { transition: background 0.2s var(--ease); }
.pkg-table tbody tr:hover { background: rgba(201, 162, 39, 0.06); }

/* stacked-card mode on narrow screens — table semantics preserved */
@media (max-width: 700px) {
  .pkg-table, .pkg-table thead, .pkg-table tbody, .pkg-table tr, .pkg-table th, .pkg-table td {
    display: block; width: 100%;
  }
  .pkg-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .pkg-table { background: transparent; }
  .pkg-table tbody tr {
    background: var(--forest); border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: var(--sp-md);
    padding: var(--sp-sm) 0;
  }
  .pkg-table tbody th { border-bottom: 0; padding-bottom: 0.2rem; }
  .pkg-table td { border-bottom: 0; padding-block: 0.35rem; }
  .pkg-table td::before {
    content: attr(data-label);
    display: block;
    font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--gold-lt); font-weight: 600; margin-bottom: 0.15rem;
  }
}

/* package cards (homepage teaser) */
.pkg-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--forest); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform 0.25s var(--ease), border-color 0.25s var(--ease); }
.pkg-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.5); }
.pkg-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pkg-card:hover .pkg-card__media img { transform: scale(1.05); }
.pkg-card__body { padding: var(--sp-md); display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.pkg-card__body h3 { font-size: var(--fs-h3); }
.pkg-card__body p { color: var(--muted); font-size: var(--fs-small); }
.pkg-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: var(--sp-sm); }
.tag {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: rgba(201, 162, 39, 0.14); color: var(--gold-lt);
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.tag--plain { background: rgba(242, 237, 227, 0.07); color: var(--bone-dim); border-color: var(--border); }

/* ---------- Trust strip ---------- */
.trust { display: grid; gap: var(--sp-md); }
@media (min-width: 800px) { .trust { grid-template-columns: repeat(3, 1fr); } }
.trust__item { padding-top: var(--sp-sm); border-top: 2px solid var(--gold); }
.trust__item h3 { font-size: var(--fs-h3); margin-bottom: 0.4rem; }
.trust__item p { color: var(--muted); }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--forest); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--sp-lg) var(--sp-md) var(--sp-md);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: "Cormorant Garamond", Georgia, serif;
  position: absolute; top: -6px; left: var(--sp-md);
  font-size: 5rem; line-height: 1; color: rgba(201, 162, 39, 0.34);
}
.quote blockquote { font-size: var(--fs-lead); line-height: 1.55; color: var(--bone); }
.quote figcaption { margin-top: var(--sp-sm); font-size: var(--fs-small); color: var(--gold-lt); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 60%, var(--night-deep) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { font-size: var(--fs-h2); }
.cta-band p { margin-top: var(--sp-sm); color: var(--bone); opacity: 0.9; max-width: 60ch; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: var(--sp-md); }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }
.contact-card { background: var(--forest); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-md); }
.contact-card h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.contact-card a { color: var(--gold-lt); font-weight: 600; display: inline-flex; align-items: center; min-height: 44px; }
.contact-card a:hover { text-decoration: underline; }
.contact-card ul { display: grid; gap: 0.2rem; }
.office-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--sp-sm); }
.office-list li {
  padding: 0.45rem 1rem; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(242, 237, 227, 0.05);
  font-size: var(--fs-small);
}
.note {
  margin-top: var(--sp-md); padding: var(--sp-sm) var(--sp-md);
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.08);
  font-size: var(--fs-small); color: var(--bone);
  border-radius: 0 8px 8px 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--night-deep); border-top: 1px solid var(--border); padding-block: var(--sp-lg); }
.footer__grid { display: grid; gap: var(--sp-lg); }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
/* styled by class, not tag, so the heading level stays free to fit the page outline */
.footer__heading { font-family: "Inter", sans-serif; font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-lt); margin-bottom: var(--sp-sm); font-weight: 600; }
.footer__grid ul { display: grid; gap: 0.15rem; }
.footer__grid a { color: var(--bone-dim); display: inline-flex; align-items: center; min-height: 40px; }
.footer__grid a:hover { color: var(--gold-lt); text-decoration: underline; }
.footer__about p { color: var(--bone-dim); max-width: 40ch; margin-top: var(--sp-sm); }
.footer__bottom {
  margin-top: var(--sp-lg); padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: var(--sp-sm); justify-content: space-between;
  font-size: var(--fs-small); color: var(--bone-dim);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
