/* ============================================================
   VERONICA'S VEIL FOUNDATION — Design System
   "Giving a shoulder to lean on"
   Primary identity: BLUE + PINK (from the official logo)
   Motif language: VEIL → LEAF → LIGHT
   ============================================================ */

:root {
  /* Brand */
  --blue: #075A9C;
  --blue-deep: #054877;
  --blue-soft: #E3EEF7;
  --pink: #E85A9D;
  --pink-deep: #C9417F;
  --pink-soft: #FBE7F1;
  --navy: #092B45;
  --navy-deep: #061D30;
  --ivory: #FAF8F3;
  --ivory-deep: #F1EDE3;
  --gold: #C8A951;
  --gold-soft: #F4ECD3;
  --green: #477A55;
  --green-soft: #E4EEE6;

  /* Neutrals */
  --ink: #16212B;
  --ink-2: #3C4A57;
  --ink-3: #6B7783;
  --line: rgba(9, 43, 69, 0.12);
  --white: #FFFFFF;

  /* Type */
  --serif: 'Playfair Display', 'Libre Baskerville', Georgia, serif;
  --sans: 'Manrope', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: 30px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(9, 43, 69, 0.25);
  --shadow-soft: 0 8px 30px -12px rgba(9, 43, 69, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto; }
html.lenis body { min-height: 100%; }
html.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0 0 0.6em; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 700; }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-2); line-height: 1.6; }
.muted { color: var(--ink-3); }
.small { font-size: 0.9rem; }
strong { font-weight: 700; }
hr.rule { border: 0; height: 1px; background: var(--line); margin: 2.5rem 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: 1rem; top: -100px; background: var(--navy); color: #fff; padding: 0.75rem 1.25rem; border-radius: 8px; z-index: 1000; }
.skip-link:focus { top: 1rem; }
.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; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: 30px; }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.86); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--blue-soft { background: var(--blue-soft); }
.section--pink-soft { background: var(--pink-soft); }
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1rem; }

@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink-deep); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; opacity: 0.7; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ''; width: 28px; height: 2px; background: currentColor; opacity: 0.7; }
.eyebrow--blue { color: var(--blue); }
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: rgba(255,255,255,0.75); }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 0.9rem; }
.section-head .lead { margin-bottom: 0; }
.display { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.display em, h1 em, h2 em { font-style: italic; color: var(--pink); }
.section--navy .display em, .section--navy h2 em { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em; border: 2px solid transparent; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--pink); color: #fff; box-shadow: 0 12px 28px -12px rgba(232, 90, 157, 0.7); }
.btn--primary:hover { background: var(--pink-deep); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 12px 28px -12px rgba(7, 90, 156, 0.6); }
.btn--blue:hover { background: var(--blue-deep); color: #fff; }
.btn--outline { border-color: rgba(9,43,69,0.35); color: var(--navy); background: transparent; }
.btn--outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn--light { border-color: rgba(255,255,255,0.55); color: #fff; background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--navy); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #b8983f; color: var(--navy); }
.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.75rem; }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 0.9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.btn-row--center { justify-content: center; }
.link-arrow { font-weight: 700; display: inline-flex; gap: 0.4rem; align-items: center; font-size: 0.95rem; }
.link-arrow::after { content: '→'; transition: transform 0.25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
  color: var(--navy);
}
.site-header--transparent { color: #fff; }
.site-header--solid, .site-header.is-scrolled {
  background: rgba(250, 248, 243, 0.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(9,43,69,0.3); color: var(--navy); height: 72px;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.85rem; color: inherit; }
.brand__logo { height: 54px; width: auto; aspect-ratio: auto; object-fit: contain; transition: height 0.35s var(--ease); }
.site-header.is-scrolled .brand__logo, .site-header--solid .brand__logo { height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.02em; text-transform: uppercase; color: inherit; }
.brand__tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; margin-top: 0.25rem; }
.brand--wordmark .brand__mark { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--pink)); display: grid; place-items: center; color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.6vw, 1.6rem); }
.nav a { color: inherit; font-weight: 600; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; position: relative; padding: 0.35rem 0; opacity: 0.88; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { margin-left: 0.5rem; }
.nav-toggle { display: none; background: none; border: 0; color: inherit; width: 44px; height: 44px; border-radius: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px auto; transition: 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: calc(var(--header-h) - 0.5rem); right: 0; bottom: auto; width: min(68vw, 270px); max-height: calc(100svh - var(--header-h) - 1rem); overflow-y: auto;
    background: var(--navy); color: #fff; flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 1.25rem 1.25rem 1.5rem; gap: 0.4rem; border-radius: 16px 0 0 16px; box-shadow: 0 18px 40px rgba(6,29,48,0.28);
    transform: translateX(110%); transition: transform 0.4s var(--ease); z-index: 90;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-family: var(--serif); font-size: 1.05rem; text-transform: none; letter-spacing: 0; color: #fff; }
  .nav .btn { margin: 0.5rem 0 0; font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; }
  .nav-toggle { position: relative; z-index: 95; }
  .site-header .nav-toggle[aria-expanded="true"] { color: #fff; }
  .brand__text { display: none; }
}
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(78svh, 680px); display: flex; align-items: center; color: #fff; overflow: hidden;
  padding-top: var(--header-h); isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transform: scale(1.04); animation: heroZoom 18s var(--ease) forwards; }
.hero__shade { position: absolute; inset: 0; z-index: -2; background:
  linear-gradient(90deg, rgba(6, 29, 48, 0.88) 0%, rgba(6, 29, 48, 0.72) 40%, rgba(9, 43, 69, 0.35) 75%, rgba(9,43,69,0.2) 100%),
  linear-gradient(0deg, rgba(6, 29, 48, 0.85) 0%, rgba(6,29,48,0) 45%); }
.hero__veil { position: absolute; inset: -10% -20%; z-index: -1; pointer-events: none; opacity: 0.55; mix-blend-mode: screen;
  background: radial-gradient(60% 80% at 30% 50%, rgba(255,255,255,0.22), transparent 70%);
  filter: blur(20px); animation: veilDrift 16s ease-in-out infinite alternate; }
.hero__light { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(115deg, transparent 30%, rgba(200,169,81,0.28) 50%, transparent 70%); background-size: 300% 100%; animation: lightSweep 14s ease-in-out infinite; mix-blend-mode: screen; opacity: 0.8; }
.hero__inner { position: relative; padding-block: clamp(3rem, 6vw, 5rem); max-width: 700px; }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--pink); font-style: italic; }
.hero .lead { color: rgba(255,255,255,0.86); max-width: 600px; margin-bottom: 2.2rem; }
.hero__leaf { position: absolute; right: clamp(2rem, 10vw, 10rem); bottom: 18%; width: 46px; height: 46px; color: var(--gold); opacity: 0.85; animation: leafFloat 9s ease-in-out infinite; z-index: 1; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.hero__scroll::after { content: ''; width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }

/* Page hero (inner pages) */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(3.5rem, 7vw, 6rem)) 0 clamp(3rem, 6vw, 5rem); background: var(--navy); color: #fff; overflow: hidden; isolation: isolate; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.82); max-width: 720px; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9,43,69,0.95), rgba(9,43,69,0.6)); }
.page-hero--ivory { background: var(--ivory); color: var(--navy); }
.page-hero--ivory h1 { color: var(--navy); }
.page-hero--ivory .lead { color: var(--ink-2); }
.page-hero .veil-layer { position: absolute; inset: -20%; z-index: -1; background: radial-gradient(50% 60% at 70% 40%, rgba(255,255,255,0.14), transparent 70%); filter: blur(30px); animation: veilDrift 20s ease-in-out infinite alternate; pointer-events: none; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.75; margin-bottom: 1.5rem; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.5; }
.breadcrumbs a { color: inherit; }

/* ---------- Cards ---------- */
.card { background: var(--white); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-soft); border: 1px solid rgba(9,43,69,0.06); position: relative; overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 0.6rem; }
.card p:last-child { margin-bottom: 0; }
.card--navy { background: var(--navy); color: rgba(255,255,255,0.85); border-color: transparent; }
.card--navy h3 { color: #fff; }
.card--flat { box-shadow: none; background: transparent; border: 1px solid var(--line); }
.card--flat:hover { transform: none; box-shadow: none; }
.card__leaf { position: absolute; right: -10px; bottom: -14px; width: 90px; height: 90px; color: var(--green); opacity: 0.08; transform: rotate(-15deg); pointer-events: none; }
.icon-circle { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1.25rem; background: var(--blue-soft); color: var(--blue); }
.icon-circle svg { width: 26px; height: 26px; }
.icon-circle--pink { background: var(--pink-soft); color: var(--pink-deep); }
.icon-circle--gold { background: var(--gold-soft); color: #9a7f2f; }
.icon-circle--green { background: var(--green-soft); color: var(--green); }
.pillar { padding-top: 2.25rem; }
.pillar__num { position: absolute; top: 1.1rem; right: 1.4rem; font-family: var(--serif); font-size: 2.6rem; color: var(--navy); opacity: 0.07; font-weight: 700; }

/* Media card */
.media-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.media-card:hover img { transform: scale(1.04); }
.media-card__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.25rem 1.5rem; color: #fff; background: linear-gradient(to top, rgba(6,29,48,0.85), transparent); font-size: 0.9rem; }
.media-card--tall { aspect-ratio: 3 / 4; }
.media-card--wide { aspect-ratio: 16 / 9; }
.media-stack { position: relative; }
.faith-image-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.faith-image-grid--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.faith-image-grid .media-card { width: 100%; }
.faith-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.faith-principles article { padding-top: 1rem; border-top: 2px solid var(--gold); }
.faith-principles h3 { margin-bottom: 0.45rem; font-size: 1.15rem; }
.faith-principles p { margin-bottom: 0; }
@media (max-width: 760px) {
  .faith-image-grid, .faith-image-grid--reverse { grid-template-columns: 1fr; }
  .faith-image-grid--reverse .media-card { grid-row: 1; }
  .faith-principles { grid-template-columns: 1fr; gap: 1.2rem; }
}
.media-stack .media-card--float { position: absolute; width: 46%; right: -6%; bottom: -10%; border: 6px solid var(--ivory); aspect-ratio: 1; }
@media (max-width: 960px) { .media-stack .media-card--float { display: none; } }

/* Quote */
.quote { font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.4; font-style: italic; color: var(--navy); position: relative; padding-left: 1.5rem; border-left: 3px solid var(--pink); margin: 0; }
.quote cite { display: block; font-family: var(--sans); font-style: normal; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-top: 1rem; }
.section--navy .quote { color: #fff; border-left-color: var(--gold); }
.section--navy .quote cite { color: rgba(255,255,255,0.6); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.stat { background: var(--white); padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem); position: relative; }
.stat__value { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.3rem); font-weight: 700; color: var(--blue); line-height: 1; letter-spacing: -0.02em; }
.stat__value.is-pink { color: var(--pink); }
.stat__value small { font-size: 0.45em; font-family: var(--sans); font-weight: 700; letter-spacing: 0.04em; margin-right: 0.2em; vertical-align: 0.6em; }
.stat__label { margin-top: 0.7rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.stat__note { font-size: 0.78rem; color: var(--ink-3); margin-top: 0.5rem; }
.stat__leaf { position: absolute; top: 1rem; right: 1rem; width: 18px; height: 18px; color: var(--green); opacity: 0.5; }
.section--navy .stats { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.1); }
.section--navy .stat { background: rgba(255,255,255,0.04); }
.section--navy .stat__value { color: #fff; }
.section--navy .stat__value.is-pink { color: var(--pink); }
.section--navy .stat__label, .section--navy .stat__note { color: rgba(255,255,255,0.6); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.placeholder { display: inline-block; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.6rem; border-radius: 6px; background: var(--gold-soft); color: #7a6320; font-weight: 700; vertical-align: middle; }
.section--navy .placeholder { background: rgba(200,169,81,0.2); color: var(--gold); }

/* ---------- Steps (How it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; counter-reset: step; }
.steps::before { content: ''; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--pink), var(--gold), var(--green)); opacity: 0.35; }
.step { position: relative; text-align: center; padding: 0 0.5rem; }
.step__num { width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.4rem; background: var(--white); border: 2px solid var(--line); font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--navy); position: relative; box-shadow: var(--shadow-soft); }
.step__num svg { position: absolute; width: 16px; height: 16px; right: -4px; top: -4px; color: var(--green); }
.step:nth-child(1) .step__num { border-color: var(--blue); color: var(--blue); }
.step:nth-child(2) .step__num { border-color: var(--pink); color: var(--pink-deep); }
.step:nth-child(3) .step__num { border-color: var(--gold); color: #8a7025; }
.step:nth-child(4) .step__num { border-color: var(--green); color: var(--green); }
.step h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: var(--ink-2); margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps::before { display: none; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- 10,000 Veils visual ---------- */
.veils-visual { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.veils-canvas-wrap { position: relative; aspect-ratio: 1; max-width: 560px; width: 100%; margin-inline: auto; }
.veils-canvas-wrap canvas { width: 100%; height: 100%; display: block; }
.veils-glow { position: absolute; inset: 10%; background: radial-gradient(circle, rgba(200,169,81,0.28), transparent 65%); filter: blur(30px); z-index: -1; }
.veils-progress { margin-top: 1.5rem; }
.veils-progress__bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.veils-progress__fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--pink)); transition: width 1.2s var(--ease); }
.veils-progress__meta { display: flex; justify-content: space-between; margin-top: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.veils-count { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; line-height: 1; color: #fff; }
.veils-count span { color: var(--pink); }
.veils-legend { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.veils-legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px 8px; margin-right: 0.4rem; vertical-align: -1px; }
.veils-sim { margin-top: 1.5rem; padding: 1.1rem 1.25rem; border: 1px dashed rgba(255,255,255,0.25); border-radius: var(--radius-sm); font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.veils-sim label { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 600; color: #fff; }
.veils-sim input[type=range] { width: 100%; margin-top: 0.75rem; accent-color: var(--pink); }
@media (max-width: 960px) { .veils-visual { grid-template-columns: 1fr; } }

/* ---------- Story cards ---------- */
.story-card { display: grid; grid-template-columns: 1fr; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(9,43,69,0.06); }
.story-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--blue-soft); }
.story-card__img img { width: 100%; height: 100%; object-fit: cover; }
.story-card__body { padding: 1.6rem; }
.story-card__meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.5rem; font-weight: 700; }
.story-card blockquote { font-family: var(--serif); font-style: italic; color: var(--navy); margin: 1rem 0 0; font-size: 1.05rem; line-height: 1.5; }
.tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.65rem; border-radius: 999px; background: var(--blue-soft); color: var(--blue); font-weight: 700; }
.tag--pink { background: var(--pink-soft); color: var(--pink-deep); }
.tag--gold { background: var(--gold-soft); color: #7a6320; }
.tag--green { background: var(--green-soft); color: var(--green); }

/* Empty state */
.empty-state { text-align: center; padding: clamp(2.5rem, 5vw, 4rem) 2rem; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--ink-3); background: rgba(255,255,255,0.5); }
.empty-state svg { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--green); opacity: 0.6; }
.empty-state h3 { font-size: 1.2rem; color: var(--navy); }
.empty-state p { margin: 0; max-width: 480px; margin-inline: auto; }
.member-dashboard { max-width: 780px; margin-inline: auto; }
.credit-summary { display: flex; align-items: center; gap: 1.25rem; padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-left: 5px solid var(--pink); border-radius: var(--radius); background: var(--ivory); box-shadow: var(--shadow-soft); }
.credit-summary__icon { display: grid; place-items: center; width: 64px; height: 64px; flex-shrink: 0; border-radius: 50%; color: var(--pink); background: var(--pink-soft); }
.credit-summary__icon svg { width: 30px; height: 30px; }
.credit-summary .eyebrow { margin-bottom: 0.35rem; }
.credit-summary__value { margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1; }
.member-dashboard__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; }
.member-dashboard__footer p { margin: 0; }
.member-logged-out { max-width: 640px; margin-inline: auto; }
@media (max-width: 620px) { .credit-summary { align-items: flex-start; } .member-dashboard__footer { align-items: stretch; flex-direction: column; } .member-dashboard__footer .btn { width: 100%; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }
.field label .req { color: var(--pink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid rgba(9,43,69,0.18); background: #fff; color: var(--ink); width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,90,156,0.12); }
.field input:invalid:not(:placeholder-shown) { border-color: var(--pink-deep); }
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 0.82rem; color: var(--ink-3); }
.checks { display: grid; gap: 0.6rem; }
.check { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-2); }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--pink); flex-shrink: 0; }
.check--inline { display: inline-flex; margin-right: 1rem; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.6rem; }
.form-status { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.95rem; display: none; }
.form-status.is-success { display: block; background: var(--green-soft); color: #2f5a3b; border: 1px solid rgba(71,122,85,0.3); }
.form-status.is-error { display: block; background: var(--pink-soft); color: #8c2b5b; border: 1px solid rgba(232,90,157,0.3); }
.form-status.is-info { display: block; background: var(--blue-soft); color: var(--blue-deep); }
.veil-signup-form { display: grid; gap: 0.6rem; margin-top: 1.25rem; }
.veil-signup-form label:not(.checkbox-label) { color: rgba(255,255,255,0.86); font-size: 0.82rem; font-weight: 700; }
.veil-signup-form input[type=text], .veil-signup-form input[type=email] { width: 100%; padding: 0.8rem 0.9rem; border: 1px solid rgba(255,255,255,0.28); border-radius: var(--radius-sm); background: rgba(255,255,255,0.1); color: #fff; font: inherit; }
.veil-signup-form input:focus { outline: 2px solid var(--pink); outline-offset: 2px; }
.veil-signup-form .checkbox-label { display: flex; gap: 0.6rem; align-items: flex-start; margin: 0.35rem 0 0.4rem; color: rgba(255,255,255,0.78); font-size: 0.78rem; line-height: 1.45; }
.veil-signup-form .checkbox-label input { margin-top: 0.2rem; accent-color: var(--pink); }
.veil-signup-form .form-status { color: var(--navy); }
.veil-login-form { display: grid; gap: 0.6rem; }
.veil-login-form label { color: rgba(255,255,255,0.86); font-size: 0.82rem; font-weight: 700; }
.veil-login-form input { width: 100%; padding: 0.8rem 0.9rem; border: 1px solid rgba(255,255,255,0.28); border-radius: var(--radius-sm); background: rgba(255,255,255,0.1); color: #fff; font: inherit; }
.veil-login-form input:focus { outline: 2px solid var(--pink); outline-offset: 2px; }
.veil-login-form .form-status { color: var(--navy); }
.btn--google { margin-top: 0.2rem; background: #fff; color: var(--navy); }
.auth-divider { display: flex; align-items: center; gap: 0.75rem; margin: 1.25rem 0 0.9rem; color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.auth-divider::before, .auth-divider::after { content: ''; height: 1px; flex: 1; background: rgba(255,255,255,0.22); }
.auth-card h3 { margin-bottom: 0.35rem; }
.auth-intro { color: rgba(255,255,255,0.74); font-size: 0.9rem; }
.auth-switch { margin: 1rem 0 0; color: rgba(255,255,255,0.72); font-size: 0.82rem; }
.auth-link { padding: 0; border: 0; background: none; color: var(--pink); font: inherit; font-weight: 800; text-decoration: underline; cursor: pointer; }
.member-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.btn--outline-light { border: 1px solid rgba(255,255,255,0.55); color: #fff; background: transparent; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.25rem; margin-bottom: 1rem; }
.partner-form, .volunteer-form { max-width: 820px; margin-top: 1.5rem; }
.partner-form label, .volunteer-form label { display: block; margin-bottom: 0.4rem; color: var(--navy); font-size: 0.82rem; font-weight: 700; }
.partner-form input, .partner-form select, .partner-form textarea, .volunteer-form input, .volunteer-form select, .volunteer-form textarea { width: 100%; padding: 0.8rem 0.9rem; border: 1px solid rgba(9,43,69,0.2); border-radius: var(--radius-sm); background: #fff; color: var(--ink); font: inherit; }
.partner-form textarea, .volunteer-form textarea { resize: vertical; min-height: 130px; margin-bottom: 1rem; }
.partner-form input:focus, .partner-form select:focus, .partner-form textarea:focus, .volunteer-form input:focus, .volunteer-form select:focus, .volunteer-form textarea:focus { outline: 2px solid var(--pink); outline-offset: 2px; }
.partner-form .form-status, .volunteer-form .form-status { margin-top: 1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-card { background: #fff; border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 3rem); box-shadow: var(--shadow); border: 1px solid rgba(9,43,69,0.06); }
.veil-id-card { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 65%, var(--pink) 130%); color: #fff; border-radius: var(--radius); padding: 2rem; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.veil-id-card::after { content: ''; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%; border: 30px solid rgba(255,255,255,0.08); }
.veil-id-card__label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.75; }
.veil-id-card__id { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; letter-spacing: 0.06em; margin: 0.3rem 0 1rem; }
.veil-id-card__name { font-size: 1.1rem; font-weight: 700; }
.veil-id-card__meta { font-size: 0.85rem; opacity: 0.8; margin-top: 0.25rem; }
.veil-id-card__logo { position: absolute; bottom: 1.4rem; right: 1.6rem; height: 48px; width: auto; background: rgba(255,255,255,0.92); border-radius: 8px; padding: 4px; }

/* ---------- Amount picker ---------- */
.amounts { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.amounts button { padding: 0.75rem 1.1rem; border-radius: 999px; border: 1.5px solid rgba(9,43,69,0.18); background: #fff; font-weight: 700; color: var(--navy); }
.amounts button[aria-pressed="true"] { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ---------- Tabs / FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 1.25rem 0; font-weight: 700; font-size: 1.05rem; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--pink); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 0 1.4rem; color: var(--ink-2); }
.faq .faq__body p:last-child { margin: 0; }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.feature-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); margin-top: 3px; }

/* ---------- Timeline / list rows ---------- */
.row-list { display: grid; gap: 1rem; }
.row-item { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; background: #fff; border: 1px solid rgba(9,43,69,0.08); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; }
.row-item__date { text-align: center; min-width: 64px; font-family: var(--serif); color: var(--blue); }
.row-item__date b { display: block; font-size: 1.8rem; line-height: 1; }
.row-item__date span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--sans); color: var(--ink-3); }
.row-item h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.row-item p { margin: 0; font-size: 0.92rem; color: var(--ink-2); }
@media (max-width: 620px) { .row-item { grid-template-columns: auto 1fr; } .row-item > .btn { grid-column: 1 / -1; justify-self: start; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--blue); color: #fff; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue) 45%, var(--pink) 130%); }
.cta-band .container { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band .btn-row { justify-content: flex-end; }
@media (max-width: 860px) { .cta-band .container { grid-template-columns: 1fr; } .cta-band .btn-row { justify-content: flex-start; } }
.cta-band .veil-layer { position: absolute; inset: -30%; background: radial-gradient(40% 60% at 80% 30%, rgba(255,255,255,0.18), transparent 70%); filter: blur(30px); animation: veilDrift 18s ease-in-out infinite alternate; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M10 70C10 40 30 20 60 18c-2 30-22 50-50 52Z' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3Cpath d='M10 70 60 18' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px; }
.site-footer::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.5; }
.footer-top { position: relative; padding: clamp(3rem, 5vw, 4.5rem) 0 2.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer-brand img { height: 68px; width: auto; background: #fff; border-radius: 12px; padding: 6px; }
.footer-brand__name { font-family: var(--serif); color: #fff; font-size: 1.15rem; margin-top: 1.25rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.footer-brand__tag { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: 0.4rem; }
.footer-brand p { font-size: 0.92rem; margin-top: 1.25rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; color: #fff; transition: 0.25s; }
.socials a:hover { background: var(--pink); border-color: var(--pink); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { position: relative; border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0 2rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; font-size: 0.82rem; }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; padding: 0; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Motifs ---------- */
.leaf-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: clamp(2rem, 5vw, 3.5rem) auto; color: var(--green); opacity: 0.7; }
.leaf-divider::before, .leaf-divider::after { content: ''; width: min(120px, 20vw); height: 1px; background: currentColor; opacity: 0.4; }
.leaf-divider svg { width: 22px; height: 22px; }
.leaf-bg { position: absolute; pointer-events: none; color: var(--green); opacity: 0.06; z-index: 0; }
.leaf-bg--tr { top: -40px; right: -40px; width: 320px; height: 320px; transform: rotate(20deg); }
.leaf-bg--bl { bottom: -60px; left: -60px; width: 380px; height: 380px; transform: rotate(-160deg); }
.light-orb { position: absolute; width: 60vw; max-width: 700px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,81,0.25), transparent 65%); filter: blur(40px); pointer-events: none; z-index: 0; }
.section > .container { position: relative; z-index: 1; }
.veil-texture { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.veil-texture::before, .veil-texture::after { content: ''; position: absolute; inset: -30%; background: radial-gradient(45% 55% at 30% 40%, rgba(255,255,255,0.7), transparent 70%); filter: blur(50px); animation: veilDrift 22s ease-in-out infinite alternate; }
.veil-texture::after { background: radial-gradient(40% 50% at 70% 60%, rgba(200,169,81,0.25), transparent 70%); animation-duration: 28s; animation-direction: alternate-reverse; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }

/* ---------- Animations ---------- */
@keyframes heroZoom { to { transform: scale(1); } }
@keyframes veilDrift { from { transform: translate3d(-4%, -2%, 0) rotate(-2deg); } to { transform: translate3d(5%, 3%, 0) rotate(2deg); } }
@keyframes lightSweep { 0% { background-position: 120% 0; } 50% { background-position: -20% 0; } 100% { background-position: -20% 0; } }
@keyframes leafFloat { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-18px) rotate(6deg); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

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

/* ---------- Article / prose ---------- */
.prose { font-size: 1.05rem; color: var(--ink-2); }
.prose h2, .prose h3 { color: var(--navy); margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote { border-left: 3px solid var(--gold); padding-left: 1.25rem; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--navy); margin: 2rem 0; }
.prose img { border-radius: var(--radius); }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 0.75rem; border-bottom: 1px solid var(--line); }
.prose th { color: var(--navy); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.side-nav { position: sticky; top: 100px; display: grid; gap: 0.4rem; }
.side-nav a { padding: 0.55rem 0.9rem; border-left: 2px solid var(--line); color: var(--ink-2); font-size: 0.92rem; }
.side-nav a:hover, .side-nav a.is-active { border-left-color: var(--pink); color: var(--navy); }
.with-sidenav { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .with-sidenav { grid-template-columns: 1fr; } .side-nav { position: static; display: flex; flex-wrap: wrap; } .side-nav a { border-left: 0; border-bottom: 2px solid var(--line); } }

/* ---------- Notice ---------- */
.notice { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 1.25rem; border-radius: var(--radius-sm); background: var(--gold-soft); color: #5f4c14; font-size: 0.92rem; border: 1px solid rgba(200,169,81,0.4); }
.notice svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.notice--blue { background: var(--blue-soft); color: var(--blue-deep); border-color: rgba(7,90,156,0.2); }
.notice p { margin: 0; }

/* ---------- Utilities ---------- */
.hidden { display: none !important; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.two-col-text { columns: 2; column-gap: 3rem; }
@media (max-width: 760px) { .two-col-text { columns: 1; } }
.aspect-square { aspect-ratio: 1; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
