/* =========================================================
   Eclipse Ranch Performance Horses — Spec preview
   Woodcrest Marketing
   ========================================================= */

:root {
  /* Brand palette (eclipse night + bone + burnished gold) */
  --ink:        #181612;   /* primary, near-black warm */
  --ink-700:    #2a261f;
  --ink-600:    #3a342b;
  --bone:       #f4efe4;   /* secondary, warm cream */
  --bone-200:   #ece5d6;
  --bone-300:   #ddd2bd;
  --gold:       #b8893f;   /* accent, burnished */
  --gold-bright:#cf9f54;
  --gold-deep:  #8f6a2e;
  --paper:      #fbf8f1;
  --line:       rgba(24,22,18,.12);
  --line-light: rgba(244,239,228,.18);

  /* Fluid type scale */
  --fs-eyebrow: clamp(.72rem, .68rem + .2vw, .82rem);
  --fs-body:    clamp(1rem, .96rem + .25vw, 1.12rem);
  --fs-lead:    clamp(1.12rem, 1.02rem + .55vw, 1.42rem);
  --fs-h3:      clamp(1.3rem, 1.1rem + .9vw, 1.7rem);
  --fs-h2:      clamp(1.9rem, 1.3rem + 2.9vw, 3.4rem);
  --fs-h1:      clamp(2.7rem, 1.5rem + 5.6vw, 5.4rem);
  --fs-display: clamp(3.4rem, 1.6rem + 7vw, 6.6rem);

  /* Spacing rhythm */
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --shell: 1180px;
  --gutter: clamp(1.2rem, .6rem + 3vw, 3rem);
  --radius: 4px;

  --font-display: "Hoefler Text", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -.015em; }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--ink); color: var(--bone); padding: .6rem 1rem; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  padding: .92rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn-solid { background: var(--gold); color: #1a140a; box-shadow: 0 10px 26px -14px rgba(184,137,63,.9); }
.btn-solid:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-line { border-color: currentColor; color: var(--ink); }
.btn-line:hover { transform: translateY(-2px); background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn-line--light { color: var(--bone); }
.btn-line--light:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-ghost { border-color: var(--line-light); color: var(--bone); padding: .6rem 1.1rem; font-size: .86rem; }
.btn-ghost:hover { background: rgba(244,239,228,.1); }
.btn-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 0 rgba(207,159,84,.7); animation: pulse 2.6s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(207,159,84,.55)} 70%{box-shadow:0 0 0 7px rgba(207,159,84,0)} 100%{box-shadow:0 0 0 0 rgba(207,159,84,0)} }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .92rem; color: var(--gold-deep);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: gap .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.link-arrow span { transition: transform .3s var(--ease); font-size: 1.2em; }
.link-arrow:hover { border-color: var(--gold); gap: .65rem; }
.link-arrow:hover span { transform: translateX(3px); }
.link-arrow--light { color: var(--gold-bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(24,22,18,0);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .9rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--bone); transition: color .4s var(--ease); }
.brand-mark { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: var(--bone); padding: 3px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; letter-spacing: .01em; }
.brand-sub { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; opacity: .8; }
.site-nav { display: none; gap: 2.2rem; }
@media (min-width: 880px) { .site-nav { display: flex; } }
.site-nav a {
  position: relative; color: var(--bone); font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  opacity: .9; transition: opacity .3s var(--ease), color .4s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0; background: var(--gold-bright);
  transition: width .3s var(--ease);
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { width: 100%; }

/* scrolled state (set by JS) */
.site-header.is-stuck {
  background: rgba(20,18,14,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-light), 0 14px 40px -30px rgba(0,0,0,.8);
}

@media (max-width: 560px) {
  .header-cta { display: none; }
}

/* ---------- Film grain (shared, self-contained) ---------- */
.grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: .10; mix-blend-mode: overlay;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(2.5rem, 1rem + 6vw, 5.5rem);
  margin-top: -76px; /* slide under the transparent header */
  padding-top: 76px;
  color: var(--bone);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.05) brightness(.97);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,14,10,.55) 0%, rgba(16,14,10,.14) 30%, rgba(16,14,10,.42) 60%, rgba(14,12,9,.96) 100%),
    linear-gradient(90deg, rgba(14,12,9,.78) 0%, rgba(14,12,9,.34) 42%, transparent 74%);
}

/* Brand signature: an eclipse corona ("ring of fire") echoing the ranch name,
   rising over the scene. Reused as a watermark on the dark sections below. */
.eclipse-ring {
  position: absolute; z-index: -1; pointer-events: none;
  top: clamp(-8rem, -3rem - 9vw, -3rem);
  right: clamp(-6rem, -1.5rem - 8vw, -1.5rem);
  width: clamp(17rem, 11rem + 24vw, 37rem); aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      transparent 37%,
      rgba(214,170,96,.62) 38.4%, rgba(207,159,84,.16) 41.5%,
      rgba(255,232,190,.10) 50%, transparent 67%);
  filter: drop-shadow(0 0 46px rgba(207,159,84,.30));
  animation: eclipseDrift 34s ease-in-out infinite alternate;
}
@keyframes eclipseDrift { from { transform: translateY(0) } to { transform: translateY(16px) } }
.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: var(--fs-eyebrow); letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; color: var(--bone-200); margin-bottom: 1.4rem;
}
.hero-eyebrow .rule { width: 42px; height: 1.5px; background: var(--gold-bright); display: inline-block; flex: none; }
@media (max-width: 560px) {
  .hero-eyebrow { flex-wrap: wrap; letter-spacing: .15em; gap: .65rem; margin-bottom: 1.1rem; }
  .hero-eyebrow .rule { width: 30px; }
}
.hero-title {
  font-size: var(--fs-h1);
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-lede {
  margin-top: 1.5rem; max-width: 46ch; font-size: var(--fs-lead);
  color: var(--bone-200); line-height: 1.5;
}
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-meta {
  position: absolute; right: var(--gutter); bottom: clamp(2.5rem,1rem + 6vw,5.5rem);
  display: none; flex-direction: column; gap: .35rem; text-align: right;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-300);
}
.hero-meta::before { content: ""; display: block; width: 1px; height: 34px; background: var(--line-light); margin: 0 0 .6rem auto; }
@media (min-width: 900px) { .hero-meta { display: flex; } }

/* soft vignette to seat the photo */
.hero-vignette {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 36%, transparent 52%, rgba(10,8,5,.42) 100%);
}

/* scroll cue */
.hero-scroll {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 1.5rem; z-index: 1;
  display: none; flex-direction: column; align-items: center; gap: .55rem;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--bone-300); opacity: .85;
}
.hero-scroll .track { width: 1px; height: 38px; background: linear-gradient(var(--gold-bright), transparent); position: relative; overflow: hidden; }
.hero-scroll .track::after {
  content: ""; position: absolute; left: 0; top: 0; width: 1px; height: 12px; background: var(--bone);
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue { 0%{ transform: translateY(-14px); opacity: 0 } 30%{ opacity: 1 } 100%{ transform: translateY(40px); opacity: 0 } }
@media (min-width: 900px) { .hero-scroll { display: flex; } }

/* ---------- Strip ---------- */
.strip { background: var(--ink); color: var(--bone-200); border-bottom: 1px solid var(--ink-600); }
.strip-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.1rem;
  padding-block: 1.15rem;
  font-family: var(--font-display); font-size: clamp(.95rem,.85rem + .5vw,1.25rem); letter-spacing: .02em;
}
.strip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- Section heads ---------- */
.eyebrow {
  display: inline-block; font-size: var(--fs-eyebrow); letter-spacing: .24em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-deep); margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--gold-bright); }
.section-title { font-size: var(--fs-h2); max-width: 22ch; }
.section-head { max-width: 40rem; margin-bottom: clamp(2.4rem, 1rem + 4vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-title { margin-inline: auto; }
.section-note { margin-top: 1.2rem; color: var(--ink-600); max-width: 52ch; }
.section-head--center .section-note { margin-inline: auto; }

/* split masthead: title left, supporting line on a hairline-divided right rail */
.section-head--split { max-width: none; }
.section-head--split .section-title { max-width: 18ch; }
.section-aside { color: var(--ink-600); font-size: clamp(.96rem, .9rem + .25vw, 1.08rem); max-width: 42ch; }
@media (min-width: 880px) {
  .section-head--split {
    display: grid; grid-template-columns: 1.35fr .85fr; align-items: end;
    column-gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  }
  .section-head--split .section-aside {
    padding-left: clamp(1.6rem, 1rem + 2vw, 2.6rem);
    border-left: 1px solid var(--line); align-self: end; padding-bottom: .35rem;
  }
}
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-700); }
p + p { margin-top: 1.1rem; }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about-grid {
  display: grid; gap: clamp(2.4rem, 1rem + 5vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.about-figure { position: relative; }
.about-figure .about-frame { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.06); transition: transform 1.2s var(--ease);
}
.about-figure .about-frame { box-shadow: 0 40px 70px -36px rgba(24,22,18,.62); }
.js .about-figure.is-visible img { transform: scale(1); }
.about-figure::before {
  content: ""; position: absolute; right: -16px; top: 26px; bottom: -16px; width: 62%;
  border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: -1;
}
.about-caption {
  margin-top: 1.4rem; padding-left: 1rem; border-left: 2px solid var(--gold);
  font-size: .78rem; letter-spacing: .04em; color: var(--ink-600); line-height: 1.5;
  font-style: italic; max-width: 36ch;
}
.about-badge {
  position: absolute; left: -14px; bottom: 24px; z-index: 2;
  background: var(--ink); color: var(--bone); padding: 1rem 1.35rem; border-radius: var(--radius);
  display: flex; flex-direction: column; line-height: 1;
  box-shadow: 0 24px 46px -22px rgba(0,0,0,.7), 0 0 0 1px rgba(207,159,84,.25);
}
.about-badge-num { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-bright); }
.about-badge-label { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; margin-top: .5rem; opacity: .82; }

.stat-row {
  list-style: none; padding: 0; margin-top: 2.6rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line); padding-top: 1.9rem;
}
.stat-row li { padding-inline: clamp(1rem, .4rem + 1.6vw, 1.8rem); border-left: 1px solid var(--line); }
.stat-row li:first-child { padding-left: 0; border-left: 0; }
.stat-num {
  display: block; font-family: var(--font-display); font-size: clamp(2rem,1.3rem + 2.4vw,3rem);
  color: var(--gold-deep); line-height: 1; letter-spacing: -.01em;
}
.stat-label { display: block; margin-top: .6rem; font-size: .8rem; color: var(--ink-600); line-height: 1.4; }
@media (max-width: 540px) {
  .stat-row { grid-template-columns: 1fr; gap: 0; padding-top: 1.4rem; }
  .stat-row li {
    display: flex; align-items: baseline; gap: 1rem; padding-inline: 0;
    border-left: 0; border-top: 1px solid var(--line); padding-block: 1rem;
  }
  .stat-row li:first-child { border-top: 0; padding-top: 0; }
  .stat-num { font-size: 2rem; flex: none; min-width: 2.6em; }
  .stat-label { margin-top: 0; }
}

/* ---------- Services (typographic cards) ---------- */
.services {
  background:
    radial-gradient(120% 80% at 88% -10%, rgba(184,137,63,.10), transparent 55%),
    linear-gradient(180deg, var(--bone-200) 0%, var(--bone) 30%);
  border-top: 1px solid var(--line);
}
.svc-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc--lead, .svc--stud { grid-column: 1 / -1; }
}

.svc {
  position: relative; isolation: isolate;
  background: linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--bone-300);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 18px 40px -34px rgba(24,22,18,.45);
  padding: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.svc::before {
  content: ""; position: absolute; left: 0; top: -1px; width: 40px; height: 2px;
  background: var(--gold); transition: width .5s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 36px 60px -34px rgba(24,22,18,.5); border-color: var(--gold); }
.svc:hover::before { width: 96px; }
.svc-index {
  display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 1.6rem + 1.4vw, 2.8rem);
  font-weight: 600; font-style: italic;
  color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1; margin-bottom: 1.1rem;
}
.svc-title { font-size: var(--fs-h3); margin-bottom: .75rem; }
.svc p { color: var(--ink-600); margin-bottom: 1.4rem; }
.svc .link-arrow { margin-top: auto; align-self: flex-start; }

/* lead card: wide editorial split */
.svc--lead .svc-title { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); margin-bottom: 1.1rem; }
@media (min-width: 720px) {
  .svc--lead {
    display: grid; align-items: start;
    grid-template-columns: 1.05fr 1fr;
    column-gap: clamp(2rem, 1rem + 4vw, 5rem); row-gap: 1.2rem;
    padding-block: clamp(2.2rem, 1.4rem + 2.4vw, 3.4rem);
  }
  .svc--lead .svc-index { grid-column: 1 / -1; margin-bottom: 0; }
  .svc--lead .svc-lead-head { grid-column: 1; }
  .svc--lead .svc-lead-head .svc-title { margin-bottom: 0; }
  .svc--lead .svc-lead-body { grid-column: 2; display: flex; flex-direction: column; }
}

/* stud card: dark anchor with a faded reining-horse watermark */
.svc--stud {
  background: var(--ink); color: var(--bone);
  border-color: var(--ink-600); overflow: hidden;
}
.svc--stud::before { background: var(--gold-bright); }
.svc--stud::after {
  content: ""; position: absolute; z-index: -1;
  right: -4%; bottom: -10%; width: clamp(15rem, 10rem + 22vw, 26rem); height: 118%;
  background: url("photo-3.webp") right bottom / contain no-repeat;
  filter: invert(1); mix-blend-mode: screen; opacity: .15; pointer-events: none;
}
.svc--stud:hover { box-shadow: 0 30px 54px -30px rgba(0,0,0,.7); border-color: var(--ink-600); }
.svc--stud .svc-stud-copy { max-width: 40rem; }
.svc--stud p { color: var(--bone-300); }
.svc--stud .svc-index { color: var(--gold-bright); }
.svc-flag {
  display: inline-block; align-self: flex-start;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: #1a140a; background: var(--gold-bright); padding: .3rem .7rem; border-radius: 999px;
  margin-bottom: .9rem;
}

/* ---------- The Ranch / cinematic band ---------- */
.stable {
  position: relative; isolation: isolate; color: var(--bone);
  min-height: clamp(26rem, 18rem + 30vw, 42rem);
  display: flex; align-items: flex-end; overflow: hidden;
}
.stable-media { position: absolute; inset: 0; z-index: -2; }
.stable-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.04) brightness(.97);
  animation: stableDrift 22s ease-out forwards;
}
@keyframes stableDrift { to { transform: scale(1.13); } }
.stable-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,12,9,.30) 0%, rgba(14,12,9,.08) 32%, rgba(14,12,9,.80) 100%),
    linear-gradient(90deg, rgba(14,12,9,.72) 0%, rgba(14,12,9,.18) 52%, transparent 78%);
}
.stable-content {
  padding-block: clamp(3rem, 2rem + 6vw, 6.5rem);
  max-width: 46rem;
}
.stable .section-title { color: var(--bone); max-width: 24ch; }
.stable .section-note { color: var(--bone-200); }
.stable .link-arrow { margin-top: 1.7rem; }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--bone); position: relative; isolation: isolate; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  top: clamp(-9rem, -4rem - 8vw, -4rem); right: clamp(-8rem, -3rem - 8vw, -3rem);
  width: clamp(18rem, 12rem + 22vw, 34rem); aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      transparent 38%,
      rgba(214,170,96,.40) 39.4%, rgba(207,159,84,.10) 43%,
      transparent 62%);
  filter: drop-shadow(0 0 50px rgba(207,159,84,.16));
}
.contact-grid {
  display: grid; gap: clamp(2.5rem,1rem + 5vw,5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.2fr .8fr; align-items: center; } }
.contact .section-title { color: var(--bone); }
.contact .lead { color: var(--bone-300); }
.contact-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.contact .btn-line { color: var(--bone); }

.contact-details { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.6rem; }
.contact-details li {
  display: grid; gap: .3rem;
  padding-bottom: 1.6rem; border-bottom: 1px solid var(--line-light);
}
.contact-details li:last-child { border-bottom: 0; padding-bottom: 0; }
.cd-label { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; }
.cd-value { font-family: var(--font-display); font-size: 1.4rem; color: var(--bone); transition: color .3s var(--ease); }
a.cd-value:hover { color: var(--gold-bright); }
.cd-note { font-size: .82rem; color: var(--bone-300); letter-spacing: .02em; }

/* ---------- Footer ---------- */
.site-footer { background: #100e0b; color: var(--bone-300); padding-block: 2.6rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; }
.footer-brand { display: flex; flex-direction: column; gap: .35rem; }
.footer-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--bone); }
.footer-tag { font-size: .82rem; max-width: 38ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a { font-size: .88rem; transition: color .3s var(--ease); }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-loc { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; }

/* ---------- Spec footer (mandated) ---------- */
.spec-footer {
  background: #0c0a08; color: #b9b09c; text-align: center;
  font-size: .82rem; line-height: 1.6; padding: 1.2rem var(--gutter);
}
.spec-footer a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Motion / reveal — visible by default, enhanced when JS on
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* staggered hero entrance under JS */
.js .hero [data-reveal] { transition-delay: 0ms; }
.js .hero [data-reveal][data-reveal-delay="1"].is-visible { transition-delay: .12s; }
.js .hero [data-reveal][data-reveal-delay="2"].is-visible { transition-delay: .24s; }
.js .hero [data-reveal][data-reveal-delay="3"].is-visible { transition-delay: .36s; }
.js .hero [data-reveal][data-reveal-delay="4"].is-visible { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-media img, .stable-media img { animation: none; transform: none; }
  .about-figure img { transform: none !important; transition: none !important; }
  .eclipse-ring { animation: none; }
  .btn-dot { animation: none; }
  .hero-scroll .track::after { animation: none; }
  * { scroll-behavior: auto !important; }
}
