/* ─────────────────────────────────────────────────────────────
   ema ozina — one stylesheet for the whole site.

   every page loads this file, so a change here changes everywhere.
   the colours and the two fonts are hers and are set once, at the top.
   ───────────────────────────────────────────────────────────── */

:root {
  /* her colours */
  --cream:        #f8f4ee;
  --cream-warm:   #f3ede4;
  --sand:         #ddd2c3;
  --clay:         #b09880;
  --clay-deep:    #8a7358;
  --bark:         #3a2d21;
  --bark-deep:    #2a2015;
  --forest:       #4a5e3a;
  --gold:         #c4a44a;
  --gold-muted:   #b89e5c;

  --text:         #3a2d21;
  --text-soft:    #6b5d50;
  --text-faint:   #8a7b6c;
  --line:         rgba(58, 45, 33, 0.14);

  /* her fonts */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* rhythm */
  --gutter: 1.5rem;
  --measure: 62ch;
  --band: clamp(4.5rem, 11vw, 9rem);
  --nav-h: 66px;

  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 720px) { :root { --gutter: 2.5rem; --nav-h: 76px; } }

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* paper grain — the whole site sits on a sheet of paper */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: var(--bark); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--forest); }

::selection { background: var(--clay); color: var(--cream); }

/* everything reachable by keyboard says so, clearly */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--bark);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.skip:focus { left: 0; color: var(--cream); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── shells ────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }

.band { padding: var(--band) 0; }
.band-warm { background: var(--cream-warm); }
.band-dark { background: var(--bark-deep); color: var(--cream); }
.band-dark .kicker { color: var(--gold-muted); }
.band-dark h2, .band-dark h3 { color: var(--cream); }
.band-dark p { color: rgba(248, 244, 238, 0.8); }
.band-dark a { color: var(--gold-muted); }
.band-dark a:hover { color: var(--cream); }

/* ── type ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--bark);
  letter-spacing: 0.005em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 8vw, 4.4rem); line-height: 1.04; }
h2 { font-size: clamp(1.85rem, 5vw, 3.1rem); line-height: 1.12; }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); line-height: 1.25; font-weight: 400; }

/* the thread-mark — a hairline and a small gold knot, before every section */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: lowercase;
  color: var(--clay-deep);
  margin-bottom: 1.4rem;
}
.kicker::before {
  content: '';
  flex: 0 0 auto;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clay));
  position: relative;
}
.kicker::after {
  content: '';
  order: -1;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}
.kicker.centre { justify-content: center; }

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-soft);
  max-width: var(--measure);
}
.prose { max-width: var(--measure); color: var(--text-soft); }
.prose p + p { margin-top: 1.15rem; }
.prose p { font-size: 1.02rem; line-height: 1.85; }

/* her own words, pulled out and given air */
.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3.4vw, 1.8rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--bark);
  border-left: 1px solid var(--clay);
  padding-left: 1.4rem;
  margin: 2.2rem 0;
  max-width: 34ch;
}

.note {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-faint);
  max-width: 52ch;
}

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

/* ── navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.nav.solid,
.nav.on-light {
  background: rgba(248, 244, 238, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(58, 45, 33, 0.07);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  transition: color 0.45s var(--ease);
  white-space: nowrap;
}
.nav.solid .nav-logo, .nav.on-light .nav-logo { color: var(--bark); }

.nav-links { display: none; gap: 1.9rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav.solid .nav-links a, .nav.on-light .nav-links a { color: var(--text-soft); }
.nav-links a:hover { color: var(--gold-muted); }
.nav-links .door { color: var(--gold-muted); }

.burger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-right: -10px;
  padding: 8px 8px;
  background: none; border: 0; cursor: pointer;
  z-index: 1010;
}
.burger span {
  display: block; width: 100%; height: 1px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease), background 0.45s var(--ease);
}
.nav.solid .burger span, .nav.on-light .burger span { background: var(--bark); }
.burger[aria-expanded="true"] span { background: var(--cream); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 1005;
  background: rgba(42, 32, 21, 0.975);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.menu.open { opacity: 1; pointer-events: auto; }
.menu a {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease-out), color 0.25s var(--ease);
}
.menu.open a { opacity: 1; transform: none; }
.menu.open a:nth-child(1) { transition-delay: 0.05s; }
.menu.open a:nth-child(2) { transition-delay: 0.09s; }
.menu.open a:nth-child(3) { transition-delay: 0.13s; }
.menu.open a:nth-child(4) { transition-delay: 0.17s; }
.menu.open a:nth-child(5) { transition-delay: 0.21s; }
.menu.open a:nth-child(6) { transition-delay: 0.25s; }
.menu a:hover { color: var(--gold-muted); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .burger { display: none; }
}

/* ── the opening picture ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bark-deep);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(42, 32, 21, 0.42) 0%,
    rgba(42, 32, 21, 0.14) 32%,
    rgba(42, 32, 21, 0.52) 74%,
    rgba(42, 32, 21, 0.82) 100%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(4rem, 12vh, 7rem);
  color: var(--cream);
  animation: rise 1.1s var(--ease-out) 0.2s both;
}
.hero-copy h1 { color: var(--cream); text-shadow: 0 2px 40px rgba(0, 0, 0, 0.28); }
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  color: rgba(248, 244, 238, 0.9);
  margin-bottom: 1.1rem;
  text-wrap: balance;          /* never leave "mentor" alone on a line */
  max-width: 30ch;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 3.4vw, 1.6rem);
  color: rgba(248, 244, 238, 0.94);
  margin-top: 1rem;
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* the shorter opening on an inner page */
.plate {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bark-deep);
}
.plate-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}
.plate::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(42,32,21,0.5) 0%, rgba(42,32,21,0.22) 40%, rgba(42,32,21,0.86) 100%);
}
.plate-copy {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(2.5rem, 7vh, 4.5rem);
  padding-top: calc(var(--nav-h) + 3rem);
  color: var(--cream);
  animation: rise 0.9s var(--ease-out) 0.15s both;
}
.plate-copy h1 { color: var(--cream); }
.plate-copy .kicker { color: rgba(248, 244, 238, 0.82); }
.plate-copy .kicker::before { background: linear-gradient(90deg, transparent, rgba(248,244,238,0.6)); }
.plate-price {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  color: var(--gold-muted);
  margin-top: 0.9rem;
}

/* ── two-column split ──────────────────────────────────────── */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.wide-left { grid-template-columns: 1.15fr 1fr; }
  .split.picture-first > .split-pic { order: -1; }
}
.split-pic img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 22px 54px rgba(58, 45, 33, 0.14);
}

/* ── the three doors on the home page ──────────────────────── */
.offers { border-top: 1px solid var(--line); }

.offer {
  display: grid;
  gap: 0.4rem 2.5rem;
  padding: clamp(2.2rem, 5vw, 3.2rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.4s var(--ease);
}
.offer:hover { background: rgba(176, 152, 128, 0.05); }

/* the price, set like a page number in the margin */
.offer-price {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--clay);
  white-space: nowrap;
}
.offer-price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--text-faint);
  margin-top: 0.55rem;
  line-height: 1.5;
}
.offer-name {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  font-weight: 300;
  color: var(--bark);
  line-height: 1.15;
}
.offer-name .no { color: var(--clay); font-size: 0.72em; margin-right: 0.5rem; }
.offer-body { color: var(--text-soft); font-size: 1rem; line-height: 1.8; max-width: 54ch; }
.offer-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.55rem;
  padding: 0.7rem 0;
  min-height: 44px;              /* a thumb can land on it */
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(74, 94, 58, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.offer-more:hover { color: var(--bark); text-decoration-color: var(--bark); }

/* the picture of what is behind each door — only where there is room for it */
.offer-pic { display: none; }
.offer-pic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(58, 45, 33, 0.12);
}

@media (min-width: 820px) {
  .offer { grid-template-columns: 150px 1fr; }
  .offer-price { text-align: right; padding-top: 0.3rem; }
  .offer-price small { text-align: right; }
}
@media (min-width: 1040px) {
  .offer { grid-template-columns: 150px minmax(0, 1fr) 250px; align-items: center; }
  .offer-pic { display: block; }
}

/* ── her three pillars, and any numbered list of hers ──────── */
.pillars { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 860px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--cream); padding: clamp(1.6rem, 4vw, 2.3rem); }
.band-warm .pillar { background: var(--cream-warm); }
.pillar-no {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-name {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--forest);
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.pillar-body { font-size: 0.95rem; line-height: 1.8; color: var(--text-soft); }

/* ── weeks: the cave curriculum, the month's shape ─────────── */
.weeks { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px) { .weeks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .weeks { grid-template-columns: repeat(3, 1fr); } }
/* four weeks go four across, so week four is never left alone on a row */
@media (min-width: 1000px) { .weeks.of-four { grid-template-columns: repeat(4, 1fr); } }
.week { background: var(--cream); padding: clamp(1.5rem, 3.6vw, 2rem); transition: background 0.4s var(--ease); }
.band-warm .week { background: var(--cream-warm); }
.week:hover { background: var(--sand); }
.week-no { font-family: var(--serif); font-size: 2.1rem; color: var(--clay); line-height: 1; }
.week-label {
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: var(--text-faint);
  margin: 0.35rem 0 0.9rem;
}
.week-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--bark); line-height: 1.3; margin-bottom: 0.55rem; }
.week-body { font-size: 0.92rem; line-height: 1.75; color: var(--text-soft); }

/* a week written as one sentence of hers, not split into title + body */
.week-line { font-size: 1rem; line-height: 1.7; color: var(--text-soft); }

/* ── plain lists in her register ───────────────────────────── */
.ticks { list-style: none; display: grid; gap: 0.75rem; max-width: 56ch; }
.ticks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-soft);
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.72em;
  width: 6px; height: 1px;
  background: var(--clay);
}
.band-dark .ticks li { color: rgba(248, 244, 238, 0.82); }
.band-dark .ticks li::before { background: var(--gold-muted); }

.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  background: var(--cream);
}
.band-warm .tag { background: var(--cream-warm); }

/* ── her writing, set as a letter on the page ──────────────── */
.letter {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(1.8rem, 5vw, 3.4rem);
  box-shadow: 0 18px 44px rgba(58, 45, 33, 0.06);
}
.band-warm .letter { background: var(--cream); }
.letter p {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2.8vw, 1.35rem);
  line-height: 1.72;
  color: var(--bark);
}
.letter p + p { margin-top: 1rem; }
.letter .sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--clay-deep);
  margin-top: 1.8rem;
}

/* ── buttons ───────────────────────────────────────────────── */
.actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  min-height: 48px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: lowercase;
  text-align: center;
  border: 1px solid var(--bark);
  background: var(--bark);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn:hover { background: transparent; color: var(--bark); }
.btn-ghost { background: transparent; color: var(--bark); }
.btn-ghost:hover { background: var(--bark); color: var(--cream); }
.band-dark .btn { background: var(--gold-muted); border-color: var(--gold-muted); color: var(--bark-deep); }
.band-dark .btn:hover { background: transparent; color: var(--gold-muted); }
.band-dark .btn-ghost { background: transparent; color: var(--cream); border-color: rgba(248, 244, 238, 0.42); }
.band-dark .btn-ghost:hover { background: var(--cream); color: var(--bark-deep); border-color: var(--cream); }

/* ── the little grid of the land ───────────────────────────── */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
@media (min-width: 780px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tiles img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; }

/* ── posts ─────────────────────────────────────────────────── */
.posts { display: grid; gap: 0; }
@media (min-width: 760px) { .posts { grid-template-columns: repeat(2, 1fr); column-gap: 3rem; } }
.post {
  display: block;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease-out);
}
.post:hover { padding-left: 0.5rem; }
.post-date {
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: lowercase;
  color: var(--clay-deep);
  margin-bottom: 0.5rem;
}
.post-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--bark); line-height: 1.3; }
.post-sub { font-size: 0.9rem; line-height: 1.65; color: var(--text-soft); margin-top: 0.4rem; }

/* ── the library index ─────────────────────────────────────── */
.eps { border-top: 1px solid var(--line); }
@media (min-width: 860px) { .eps { columns: 2; column-gap: 3.5rem; } }
.ep {
  display: block;
  break-inside: avoid;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease-out);
}
.ep:hover { padding-left: 0.5rem; }
.ep-meta {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--clay-deep);
  margin-bottom: 0.45rem;
}
.ep-title {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--bark);
  line-height: 1.3;
}
.ep-sub { font-size: 0.88rem; line-height: 1.65; color: var(--text-soft); margin-top: 0.35rem; }

/* ── contact ───────────────────────────────────────────────── */
.reach { display: grid; gap: 1.8rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .reach { grid-template-columns: repeat(3, 1fr); } }
.reach .label {
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: lowercase;
  color: var(--clay-deep);
  margin-bottom: 0.5rem;
}
.reach .value { font-family: var(--serif); font-size: 1.15rem; word-break: break-word; }
.reach .value a { display: inline-flex; align-items: center; min-height: 44px; }

/* ── footer ────────────────────────────────────────────────── */
.foot {
  background: var(--bark-deep);
  color: rgba(248, 244, 238, 0.6);
  padding: clamp(3rem, 7vw, 4.5rem) 0 2.5rem;
  font-size: 0.8rem;
}
.foot a { color: rgba(248, 244, 238, 0.85); }
.foot a:hover { color: var(--gold-muted); }
.foot-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot h4 {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: lowercase;
  color: var(--gold-muted);
  margin-bottom: 0.9rem;
}
.foot ul { list-style: none; display: grid; }
.foot ul a { display: inline-flex; align-items: center; min-height: 44px; }
.foot-mark { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.foot-fine {
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 244, 238, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(248, 244, 238, 0.45);
}

/* ── quiet arrivals ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease-out); }
.reveal.seen { opacity: 1; transform: none; }

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