/* =========================================================
   The Image of Grace — Brand System
   Black & white editorial photography + gold accent
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --ink:        #141414;
  --ink-soft:   #2a2a2a;
  --charcoal:   #0e0e0e;
  --cream:      #f5f4f1;
  --cream-deep: #ebeae6;
  --paper:      #ffffff;
  /* Accent: azure blue, color-matched to the "Healing" logo blue (Aug 2026). */
  --gold:       #2e92d2;
  --gold-soft:  #6fbdec;
  --gold-deep:  #1e6fa6;
  --muted:      #6f6a61;
  --line:       rgba(46,146,210,0.35);
  --shadow:     0 18px 50px rgba(0,0,0,0.18);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1180px;

  /* Minimum font size floor — no text on the site renders smaller than this.
     Set low (8px) so it currently has no effect and text uses its natural sizes.
     Raise this one value later to enforce a larger floor everywhere. */
  --fs-min: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  font-size: max(var(--fs-min), 18.5px);   /* body copy, floored to the site minimum */
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0 0 .5em; }
h1 { font-size: clamp(2.9rem, 6.4vw, 5rem); letter-spacing: .5px; }
h2 { font-size: clamp(2.4rem, 4.8vw, 3.7rem); }
h3 { font-size: clamp(1.55rem, 2.7vw, 2.15rem); }
p  { margin: 0 0 1.1em; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: max(var(--fs-min), 1.1rem);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--deep  { background: var(--cream-deep); }
.section--dark  { background: var(--charcoal); color: var(--cream); }
.section--dark .eyebrow { color: var(--gold-soft); }

.center { text-align: center; }
.lede { font-family: var(--serif); font-size: clamp(1.3rem, 2.3vw, 1.7rem); font-weight: 400; color: var(--ink-soft); font-style: italic; }

.divider { width: 64px; height: 1px; background: var(--gold); margin: 1.6rem 0; border: 0; }
.center .divider { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: max(var(--fs-min), .78rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--light { background: transparent; color: var(--cream); border-color: var(--gold-soft); }
.btn--light:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,236,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand__logo { width: 48px; height: 48px; flex: none; display: block; border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: max(var(--fs-min), 1.5rem); letter-spacing: .12em; color: var(--ink); margin-left: -0.2em; }
.brand__sub  { font-family: var(--sans); font-size: max(var(--fs-min), .58rem); letter-spacing: .42em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; }
.nav__links { display: flex; gap: 30px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--sans); font-size: max(var(--fs-min), .76rem); letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); padding: 6px 0; position: relative;
}
.nav__links a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background: var(--gold); transition: width .25s ease; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--gold-deep); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background: var(--charcoal); color: var(--cream); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(46,146,210,0.18), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, #0c0c0c 0%, #171510 60%, #0c0c0c 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero-logo { width: 120px; height: 120px; display: block; margin: 0 0 26px; border-radius: 50%; }
.hero h1 { color: #fff; }
.hero h1 em { color: var(--gold-soft); font-style: italic; }
.hero__tag { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem,2.6vw,1.9rem); color: var(--gold-soft); margin-bottom: 1.2rem; }
.hero__sub { font-size: max(var(--fs-min), 1.05rem); color: rgba(247,243,236,0.82); max-width: 560px; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat { text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem,5vw,3.6rem); color: var(--gold-deep); line-height: 1; }
.stat__label { font-size: max(var(--fs-min), .92rem); color: var(--muted); margin-top: .6rem; }
.section--dark .stat__num { color: var(--gold-soft); }
.section--dark .stat__label { color: rgba(247,243,236,0.7); }

/* ---------- Generic grid ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }

/* ---------- Cards / features ---------- */
.feature { background: var(--paper); padding: 38px 32px; border: 1px solid rgba(20,20,20,0.07); transition: transform .25s, box-shadow .25s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon { font-family: var(--serif); font-style: italic; font-size: max(var(--fs-min), 1.6rem); color: var(--gold); margin-bottom: .4rem; }

/* ---------- Portrait placeholder ---------- */
.portrait {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(46,146,210,0.12), rgba(20,20,20,0.04)),
    repeating-linear-gradient(45deg, #e9e2d4 0 14px, #e3dccb 14px 28px);
  display: flex; align-items: flex-end;
  filter: grayscale(1) contrast(1.02);
  border: 1px solid rgba(20,20,20,0.08);
}
.portrait::before {
  content: '\2014'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: max(var(--fs-min), 3rem); color: rgba(20,20,20,0.18);
}

/* ---------- Village of Grace newsletter theme (blue / teal / tan) ---------- */
:root {
  --vog-navy:  #102a3f;
  --vog-navy2: #143d4e;
  --vog-teal:  #2e92d2;
  --vog-teal-d:#1e6fa6;
  --vog-tan:   #d8c6a4;
  --vog-tan-l: #efe6d4;
  --vog-cream: #f4efe6;
}
.vog-hero { position: relative; background: linear-gradient(158deg, #0c2233 0%, #143d4e 55%, #0c2233 100%); color: var(--vog-cream); padding: clamp(64px,10vw,120px) 0; overflow: hidden; }
.vog-hero__bg { position:absolute; inset:0; background: radial-gradient(circle at 78% 22%, rgba(46,146,210,0.4), transparent 55%); }
.vog-hero .wrap { position: relative; z-index: 2; }
.vog-hero h1 { color:#fff; }
.vog-hero .eyebrow { color: var(--vog-tan); }
.vog-eyebrow { color: var(--vog-teal); }
.section--tan  { background: var(--vog-tan-l); }
.section--navy { background: var(--vog-navy); color: var(--vog-cream); }
.section--navy .eyebrow, .section--navy .vog-eyebrow { color: var(--vog-tan); }
.section--navy h2, .section--navy h3 { color: #fff; }
.vog-divider { width: 64px; height: 3px; background: var(--vog-teal); border: 0; margin: 1.4rem 0; }
.center .vog-divider { margin-left:auto; margin-right:auto; }
.btn--teal { background: var(--vog-teal); border-color: var(--vog-teal); color: #fff; }
.btn--teal:hover { background: var(--vog-teal-d); border-color: var(--vog-teal-d); }
.btn--tan { background: transparent; border-color: var(--vog-tan); color: var(--vog-cream); }
.btn--tan:hover { background: var(--vog-tan); color: var(--vog-navy); }
.vog-card { background: #fff; border: 1px solid rgba(16,42,63,0.1); border-top: 4px solid var(--vog-teal); padding: clamp(32px,4vw,48px); box-shadow: var(--shadow); }
.vog-subscribe { display:flex; gap:12px; flex-wrap:wrap; max-width:520px; }
.vog-subscribe input { flex:1; min-width:220px; padding:15px 16px; border:1px solid rgba(255,255,255,0.35); background:rgba(255,255,255,0.08); color:#fff; font-family:var(--sans); font-size: max(var(--fs-min), 1rem); }
.vog-subscribe input::placeholder { color: rgba(244,239,230,0.65); }
.vog-subscribe input:focus { outline:none; border-color: var(--vog-tan); }
.vog-photo { width:100%; height:auto; display:block; border:8px solid #fff; box-shadow: var(--shadow); }
.section--navy .field label { color: rgba(244,239,230,0.75); }

/* ---------- Prominent founder caption ---------- */
.founder-cap { text-align: center; margin-top: 18px; }
.founder-cap strong { display: block; font-family: var(--serif); font-size: max(var(--fs-min), 1.5rem); color: var(--ink); line-height: 1.2; }
.founder-cap span { display: block; font-family: var(--sans); font-size: max(var(--fs-min), .8rem); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-top: 8px; }

/* ---------- Photo hover reveal (grayscale → color + caption) ---------- */
.photo-reveal { position: relative; overflow: hidden; display: block; border: 1px solid rgba(20,20,20,0.08); box-shadow: var(--shadow); }
.photo-reveal img { display: block; width: 100%; height: auto; transition: transform .6s ease; }
.photo-reveal:hover img, .photo-reveal:focus-within img { transform: scale(1.04); }
.photo-reveal__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 24px 22px; background: linear-gradient(transparent, rgba(8,22,30,0.9)); color: #fff; opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease; }
.photo-reveal:hover .photo-reveal__cap, .photo-reveal:focus-within .photo-reveal__cap { opacity: 1; transform: none; }
.photo-reveal__cap strong { display: block; font-family: var(--serif); font-size: max(var(--fs-min), 1.5rem); font-weight: 500; }
.photo-reveal__cap span { display: block; font-size: max(var(--fs-min), .82rem); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-top: 4px; }
@media (hover: none) {
  .photo-reveal__cap { opacity: 1; transform: none; position: static; background: var(--ink); padding: 18px 22px; }
}

/* ---------- Award medallions (replaces rectangle boxes) ---------- */
.medallions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.medallion { text-align: center; }
.medallion__seal { width: 158px; height: 158px; border-radius: 50%; margin: 0 auto 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 0 0 8px rgba(46,146,210,0.06), var(--shadow); position: relative; }
.medallion__seal::after { content: ''; position: absolute; inset: 10px; border-radius: 50%; border: 1px solid var(--line); }
.medallion__year { font-family: var(--serif); font-size: max(var(--fs-min), 2rem); color: var(--gold-deep); line-height: 1; }
.medallion__seal small { font-size: max(var(--fs-min), .58rem); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.medallion h3 { font-size: max(var(--fs-min), 1.35rem); margin-bottom: .2em; }
.medallion p { color: var(--muted); font-size: max(var(--fs-min), .95rem); margin: 0; }

/* ---------- Hover-reveal detail cards ---------- */
.reveal-card { position: relative; }
@media (hover: hover) {
  .reveal-card .reveal-card__body { max-height: 0; opacity: 0; overflow: hidden; transform: translateY(8px); transition: max-height .45s ease, opacity .35s ease, transform .35s ease; }
  .reveal-card:hover .reveal-card__body, .reveal-card:focus-within .reveal-card__body { max-height: 320px; opacity: 1; transform: none; }
  .reveal-card::after { content: '+'; position: absolute; top: 26px; right: 28px; font-family: var(--sans); font-weight: 400; color: var(--gold); font-size: max(var(--fs-min), 1.3rem); transition: opacity .3s; }
  .reveal-card:hover::after { opacity: 0; }
}

/* ---------- Carousel (video wall + Grace Notes) ---------- */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .45s ease; }
.carousel__slide { min-width: 100%; box-sizing: border-box; padding: 2px; }
.carousel__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: max(var(--fs-min), 1.5rem); line-height: 1; z-index: 4; transition: background .2s, color .2s; }
.carousel__nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.carousel__nav--prev { left: -10px; }
.carousel__nav--next { right: -10px; }
.carousel__dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.carousel__dot.active { background: var(--gold); transform: scale(1.3); }

/* Video slide placeholder */
.vid-slide { position: relative; aspect-ratio: 16/9; background: var(--charcoal); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--cream); border: 1px solid rgba(20,20,20,0.1); }
.vid-slide__play { width: 74px; height: 74px; border-radius: 50%; border: 2px solid var(--gold-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.vid-slide__play span { border-left: 20px solid var(--gold-soft); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 6px; }
.vid-slide h3 { color: var(--gold-soft); font-style: italic; margin: 0; }
.vid-slide p { color: rgba(247,243,236,0.6); font-size: max(var(--fs-min), .9rem); margin-top: 6px; }

@media (max-width: 900px) {
  .medallions { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- Author / real photos ---------- */
.author-photo { width: 100%; height: auto; display: block; object-fit: contain; border: 1px solid rgba(20,20,20,0.1); box-shadow: var(--shadow); }
.author-photo--framed { border: 8px solid var(--paper); outline: 1px solid var(--line); }
figure.author { margin: 0; }
figure.author figcaption { margin-top: 14px; font-size: max(var(--fs-min), .85rem); color: var(--muted); text-align: center; }
.section--dark figure.author figcaption { color: rgba(247,243,236,0.65); }

/* ---------- Stories gallery ---------- */
.story-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.story-card { position: relative; cursor: pointer; overflow: hidden; }
.story-card .portrait { transition: transform .4s ease; }
.story-card:hover .portrait { transform: scale(1.04); }
.story-card__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 22px 22px;
  background: linear-gradient(transparent, rgba(10,10,10,0.85));
  color: #fff; z-index: 2;
}
.story-card__cap h4 { color: #fff; margin: 0 0 4px; font-size: max(var(--fs-min), 1.35rem); }
.story-card__cap em { color: var(--gold-soft); font-size: max(var(--fs-min), .95rem); }
.story-card__plus { position: absolute; top: 16px; right: 16px; z-index: 3; width: 34px; height: 34px; border: 1px solid var(--gold-soft); color: var(--gold-soft); display:flex; align-items:center; justify-content:center; font-family: var(--sans); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8,8,8,0.78); backdrop-filter: blur(3px); }
.modal__box { position: relative; z-index: 2; background: var(--paper); max-width: 880px; width: 100%; max-height: 88vh; overflow: auto; display: grid; grid-template-columns: 1fr 1.2fr; }
.modal__img .portrait { aspect-ratio: auto; height: 100%; min-height: 320px; }
.modal__body { padding: 44px 40px; }
.modal__close { position: absolute; top: 14px; right: 16px; z-index: 5; background: none; border: 0; font-size: max(var(--fs-min), 1.6rem); cursor: pointer; color: var(--ink); line-height: 1; }
.modal__quote { font-family: var(--serif); font-style: italic; font-size: max(var(--fs-min), 1.5rem); color: var(--gold-deep); margin: 0 0 1rem; }

/* ---------- Grace Notes ---------- */
.notes-board { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 18px; }
.note { background: var(--paper); border-left: 3px solid var(--gold); padding: 22px 24px; font-family: var(--serif); font-size: max(var(--fs-min), 1.18rem); font-style: italic; color: var(--ink-soft); }
.note span { display: block; font-family: var(--sans); font-style: normal; font-size: max(var(--fs-min), .72rem); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: max(var(--fs-min), .74rem); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: max(var(--fs-min), 1rem); font-weight: 300;
  border: 1px solid rgba(20,20,20,0.18); background: var(--paper); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: max(var(--fs-min), .82rem); color: var(--muted); }
.form-msg { display:none; padding: 16px 18px; background: rgba(46,146,210,0.12); border-left: 3px solid var(--gold); margin-top: 12px; font-size: max(var(--fs-min), .95rem); }
.form-msg.show { display: block; }
.inline-form { display: flex; gap: 12px; flex-wrap: wrap; }
.inline-form input { flex: 1; min-width: 220px; }

/* ---------- Editions / pricing ---------- */
.editions { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
.edition { background: var(--paper); border: 1px solid rgba(20,20,20,0.1); padding: 40px 32px; display: flex; flex-direction: column; text-align: center; }
.edition--hero { border: 1px solid var(--gold); position: relative; box-shadow: var(--shadow); }
.edition__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: max(var(--fs-min), .64rem); letter-spacing: .2em; text-transform: uppercase; padding: 6px 16px; }
.edition__name { font-size: max(var(--fs-min), .78rem); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.edition__price { font-family: var(--serif); font-size: max(var(--fs-min), 3.2rem); color: var(--ink); margin: 10px 0; }
.edition__role { color: var(--muted); font-size: max(var(--fs-min), .95rem); flex: 1; margin-bottom: 24px; }

/* ---------- Quote band ---------- */
.quote-band { text-align: center; }
.quote-band p { font-family: var(--serif); font-style: italic; font-size: clamp(1.7rem,4vw,2.8rem); color: var(--cream); max-width: 900px; margin: 0 auto; }
.quote-band cite { display: block; margin-top: 1.2rem; font-family: var(--sans); font-style: normal; font-size: max(var(--fs-min), .78rem); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Scripture ---------- */
.scripture { font-family: var(--serif); font-style: italic; font-size: max(var(--fs-min), 1.4rem); color: var(--gold-deep); }
.scripture span { display:block; font-size: max(var(--fs-min), .9rem); font-style: normal; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--charcoal); color: var(--cream); padding: clamp(72px,11vw,140px) 0 clamp(56px,8vw,96px); position: relative; overflow: hidden; }
.page-hero__bg { position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(46,146,210,0.16), transparent 55%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color:#fff; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero p { color: rgba(247,243,236,0.82); max-width: 640px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(247,243,236,0.78); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.site-footer h4 { color: var(--cream); font-size: max(var(--fs-min), .82rem); letter-spacing: .2em; text-transform: uppercase; font-family: var(--sans); font-weight: 500; }
.site-footer .brand__name { color: #fff; }
.site-footer a { color: rgba(247,243,236,0.72); font-size: max(var(--fs-min), .92rem); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-thanks { text-align: center; font-family: var(--serif); font-style: italic; font-size: max(var(--fs-min), 1.3rem); color: var(--gold-soft); max-width: 660px; margin: 0 auto 44px; padding-top: 40px; border-top: 1px solid rgba(247,243,236,0.12); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(247,243,236,0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: max(var(--fs-min), .8rem); color: rgba(247,243,236,0.5); }
.footer-script { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: max(var(--fs-min), 1.05rem); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.pill { display:inline-block; font-size: max(var(--fs-min), .7rem); letter-spacing:.18em; text-transform:uppercase; color:var(--gold-deep); border:1px solid var(--line); padding:6px 14px; margin:4px 6px 4px 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { position: fixed; inset: 78px 0 auto 0; background: var(--cream); flex-direction: column; gap: 0; padding: 12px 28px 24px; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .3s ease; z-index: 40; }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(20,20,20,0.06); width: 100%; }
  .nav__cta { margin: 14px 0 0; }
  .nav__toggle { display: block; }
  .grid-2, .stats, .grid-3, .grid-4, .editions, .story-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats { gap: 36px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .modal__box { grid-template-columns: 1fr; }
  .modal__img { display: none; }
}
@media (max-width: 560px) {
  .story-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
