/* ============================================================
   CHEROKEE MONUMENTS — core design system
   Forest Green + Granite + Gold  ·  Cormorant Garamond + Inter Tight
   ============================================================ */

:root {
  --paper:       #F5F2EC;
  --paper-warm:  #EDE8DE;
  --paper-deep:  #E2DBCF;
  --ink:         #1C1C1A;
  --ink-soft:    #3B3A38;
  --ink-mute:    #6B6A68;
  --forest:      #1E4035;
  --forest-light:#2A5847;
  --forest-deep: #152C24;
  --granite:     #5C5A58;
  --granite-lt:  #8A8886;
  --granite-pale:#C8C5C0;
  --gold:        #B08D2A;
  --gold-deep:   #7A620E;
  --gold-pale:   #DCC98A;
  --rule:        rgba(28, 28, 26, 0.12);
  --rule-gold:   rgba(176, 141, 42, 0.28);

  --font-serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-sans:  "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-soft: 0 1px 2px rgba(28, 28, 26, 0.04), 0 12px 32px -16px rgba(28, 28, 26, 0.12);
  --shadow-lift: 0 2px 4px rgba(28, 28, 26, 0.06), 0 24px 48px -20px rgba(28, 28, 26, 0.18);
  --radius: 4px;

  --max-w:      1240px;
  --max-w-read: 720px;
  --gutter:     clamp(20px, 4vw, 56px);
}

/* ---------- reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- film-grain overlay (signature) ---------- */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ---------- typography ---------- */
.serif { font-family: var(--font-serif); }
.mono-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink-mute);
}
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.38em;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0;
}
h1 {
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
}
h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  font-weight: 400;
}
h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 400; }
h4 { font-size: 19px; font-weight: 500; }

p { margin: 0 0 1em; }
.lede {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
}
em, i { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

/* ---------- layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-read {
  max-width: var(--max-w-read);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section         { padding-block: clamp(72px, 10vw, 140px); }
.section--tight  { padding-block: clamp(56px, 7vw, 96px); }
.section--warm   { background: var(--paper-warm); }
.section--forest {
  background: var(--forest);
  color: var(--paper);
}
.section--forest h1,
.section--forest h2,
.section--forest h3 { color: var(--paper); }
.section--forest .eyebrow { color: var(--gold-pale); }
.section--forest .eyebrow::before { background: var(--gold); }
.section--forest a { color: var(--gold-pale); }
.section--forest a:hover { color: var(--paper); }
.section--granite {
  background: var(--granite);
  color: var(--paper);
}
.section--granite h2, .section--granite h3 { color: var(--paper); }
.section--granite .eyebrow { color: var(--gold-pale); }
.section--granite .eyebrow::before { background: var(--gold); }

/* ---------- divider ornament ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: clamp(56px, 8vw, 96px) auto;
  max-width: 280px;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule-gold);
}
.divider__gem {
  width: 10px; height: 10px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- monogram ---------- */
.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border: 1.5px solid var(--forest);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--forest);
  font-style: italic;
  background: transparent;
}
.monogram--paper { border-color: var(--gold-pale); color: var(--gold-pale); }
.monogram--gold  { border-color: var(--gold); color: var(--gold); }
.monogram--lg    { width: 88px; height: 88px; font-size: 42px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(245, 242, 236, 0.93);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.brand-lockup__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.brand-lockup__name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-lockup__tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--granite-lt);
}
.nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav a {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--forest); border-bottom-color: var(--gold); }
.nav a.is-active { color: var(--forest); border-bottom-color: var(--forest); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--paper);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .2s ease, transform .15s ease;
  white-space: nowrap;
}
.header-cta:hover { background: var(--forest-deep); color: var(--paper); transform: translateY(-1px); }
.header-cta svg { width: 15px; height: 15px; }
.header-cta__label { display: none; }
@media (min-width: 880px) { .header-cta__label { display: inline; opacity: .8; font-weight: 500; } }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
}
@media (max-width: 860px) {
  .nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto auto; gap: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 20px var(--gutter);
    gap: 4px;
  }
  .nav.is-open a { padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .nav.is-open a:last-child { border-bottom: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--forest-deep);
  transform: scale(1.06);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(21, 44, 36, .20) 0%,
      rgba(21, 44, 36, .30) 40%,
      rgba(21, 44, 36, .88) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px, 8vw, 96px);
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--paper);
  font-weight: 400;
  max-width: 16ch;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 400;
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 23px);
  color: rgba(245, 242, 236, .9);
  max-width: 44ch;
  line-height: 1.55;
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: var(--forest);
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform .15s ease, background .2s ease;
}
.hero__cta-primary:hover { background: var(--gold-pale); color: var(--forest-deep); transform: translateY(-1px); }
.hero__cta-primary svg { width: 18px; height: 18px; }
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 15px;
  border-bottom: 1px solid rgba(245, 242, 236, .4);
  padding-bottom: 2px;
}
.hero__cta-secondary:hover { color: var(--gold-pale); border-bottom-color: var(--gold-pale); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
}
.cta-band h2 { color: var(--paper); font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }
.cta-band p { color: var(--gold-pale); max-width: 52ch; margin: 0 auto 36px; font-style: italic; font-family: var(--font-serif); font-size: 18px; }

/* ---------- contact band ---------- */
.contact-band {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(56px, 8vw, 100px) 0;
}
.contact-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 880px) {
  .contact-band__inner { grid-template-columns: 1.3fr 1fr; gap: 64px; }
}
.contact-band h2 { color: var(--paper); font-weight: 400; font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 16px; }
.contact-band p { color: var(--gold-pale); font-style: italic; font-family: var(--font-serif); font-size: 18px; max-width: 46ch; }
.contact-band .eyebrow { color: var(--gold-pale); }
.contact-band .eyebrow::before { background: var(--gold); }
.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 880px) { .contact-phones { align-items: flex-end; } }
.contact-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: var(--forest-deep);
  padding: 20px 32px;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .2s ease;
  text-decoration: none;
}
.contact-phone-link:hover { background: var(--gold-pale); color: var(--forest-deep); transform: translateY(-1px); }
.contact-phone-link svg { width: 22px; height: 22px; flex-shrink: 0; }
.contact-phone-link--toll {
  background: transparent;
  color: var(--gold-pale);
  border: 1px solid rgba(220, 201, 138, .4);
  font-size: clamp(18px, 2vw, 24px);
  padding: 14px 28px;
}
.contact-phone-link--toll:hover { background: rgba(220, 201, 138, .12); color: var(--paper); }
.contact-note {
  color: var(--granite-pale);
  font-size: 13px;
  font-style: italic;
  margin-top: 4px;
}

/* ---------- STATS BAND ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 640px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  text-align: center;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-cell:last-child { border-right: none; }
.stat-cell__value {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-cell__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  font-family: var(--font-sans);
  font-weight: 500;
}

/* ---------- split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--nl { grid-template-columns: 1fr 1.3fr; }
  .split--nr { grid-template-columns: 1.3fr 1fr; }
}
.split__media {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-deep);
  border-radius: var(--radius);
  position: relative;
}
.split__copy .eyebrow { margin-bottom: 20px; }
.split__copy h2 { margin-bottom: 24px; }
.split__copy .lede { margin-bottom: 24px; max-width: 50ch; }
.split__copy p { max-width: 50ch; color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- PRODUCT CARDS ---------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.product-card:hover::before { transform: scaleX(1); }
.product-card__num {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-family: var(--font-sans);
  font-weight: 600;
}
.product-card h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin-top: 4px;
  margin-bottom: 0;
}
.product-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ---------- PROCESS STEPS ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; padding-top: 24px; }
.process-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--forest) 100%);
}
.process-step__num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--granite-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--forest);
}
.process-step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- VOICES / TESTIMONIALS ---------- */
.voices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) { .voices { grid-template-columns: repeat(3, 1fr); } }
.voice {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 0;
  position: relative;
}
.voice::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  top: 16px; left: 24px;
}
.voice p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 16px;
  position: relative;
}
.voice cite {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--granite-lt);
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 600;
}

/* ---------- BIG QUOTE ---------- */
.big-quote {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.big-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.4;
  color: var(--paper);
  margin: 0 0 28px;
}
.big-quote cite {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-style: normal;
  font-family: var(--font-sans);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--forest  { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.btn--forest:hover { background: var(--forest-deep); color: var(--paper); }
.btn--gold    { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); color: var(--paper); }
.btn--ghost   { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--paper); }
.btn--paper   { background: var(--paper); color: var(--forest-deep); border-color: var(--paper); }
.btn--paper:hover { background: var(--gold-pale); color: var(--forest-deep); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--granite-pale);
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: 40px;
  border-top: 3px solid var(--gold);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(200, 197, 192, .15);
}
@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}
.site-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--granite-pale);
  max-width: 38ch;
  margin-top: 16px;
}
.site-footer__brand .ftr-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  display: block;
  margin-bottom: 4px;
}
.site-footer__brand .ftr-est {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.site-footer__col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
  margin-bottom: 16px;
}
.site-footer__col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--granite-pale);
}
.ftr-phone {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--paper);
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.ftr-phone:hover { color: var(--gold-pale); }
.site-footer__base {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-size: 12px;
  color: var(--granite-lt);
  justify-content: space-between;
  align-items: center;
}
.site-footer__credit a { color: var(--gold-pale); }
.site-footer__credit a:hover { color: var(--paper); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { transition: opacity .55s ease, transform .55s ease; }
.reveal--hidden { opacity: 0; transform: translateY(22px); }
.reveal--shown  { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal--hidden { opacity: 1; transform: none; }
}

/* ---------- UTILITY ---------- */
address { font-style: normal; }
