/* ── TOKENS ───────────────────────────────────────── */
/* Warm pastoral palette: cream, soft white, deep forest green,
   muted brown, gentle gold, slate text. Calm and humble, not megachurch. */
:root {
  --cream:       #f6efe1;   /* warm page background */
  --cream-deep:  #efe6d3;   /* alternating section tint */
  --paper:       #fffdf8;   /* soft white card */
  --forest:      #34503f;   /* deep forest green, primary */
  --forest-deep: #25382c;   /* darker forest for panels/footer */
  --forest-soft: #4c6b58;   /* hover / lighter green */
  --brown:       #8a6f57;   /* muted brown */
  --brown-deep:  #6c543f;
  --gold:        #bd9a4e;   /* gentle gold accent */
  --gold-soft:   #d7bd84;
  --ink:         #313c44;   /* slate/navy body text */
  --ink-soft:    #5d6770;   /* secondary text */
  --muted:       #7c7363;   /* warm muted text */
  --line:        #e3d8c2;   /* borders on cream */
  --line-soft:   #ece3d2;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 4px 22px rgba(53,64,55,.06);
  --shadow-hover:0 14px 38px rgba(53,64,55,.11);
  --nav-h:       70px;
  --ribbon-h:    38px;
  --transition:  .22s ease;
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--nav-h) + var(--ribbon-h) + 8px); }

/* Concept disclaimer ribbon: this demo uses a real org's name, so make it
   unmistakably clear it is an unofficial redesign, not the official site. */
.concept-ribbon {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  min-height: var(--ribbon-h);
  display: grid;
  place-items: center;
  padding: .4rem 1rem;
  background: var(--gold);
  color: #2b2208;
  font-size: clamp(.72rem, 2.4vw, .82rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
@media (max-width: 600px) { :root { --ribbon-h: 56px; } }

body {
  font-family: 'DM Sans', 'Noto Sans SC', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  min-width: 320px;
}
img, iframe, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
/* Lora (warm serif) for headings & scripture; DM Sans for UI/body. */
h1, h2 {
  font-family: 'Lora', 'Noto Serif SC', Georgia, serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--forest-deep);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.5rem); }
h3 {
  font-family: 'DM Sans', 'Noto Sans SC', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.3;
}

.section-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .85rem;
}
.section-label.light { color: var(--gold-soft); }

/* ── LAYOUT ───────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 6.5rem 0; }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 1rem;
  line-height: 1.8;
}

/* Reusable line icon */
.icon {
  width: 100%; height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── NAV ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: var(--ribbon-h); left: 0; right: 0;
  z-index: 100;
  background: rgba(246,239,225,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(250,246,238,.95);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(53,64,55,.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.logo-cross { font-size: 1.1rem; color: var(--gold); }
.logo-name {
  font-family: 'Lora', 'Noto Serif SC', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--forest-deep);
  white-space: nowrap;
}

.nav-links { display: flex; gap: .1rem; margin-left: auto; }
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: .45rem .6rem;
  border-radius: 7px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--forest); background: rgba(52,80,63,.07); }

.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Fixed-width buttons so switching language doesn't shift layout */
.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(52,80,63,.08);
  border-radius: 9px;
  padding: 3px;
}
.lang-btn {
  min-width: 2.6rem;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: .3rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover { color: var(--forest); }
.lang-btn.active { background: var(--forest); color: #fff; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  padding: 1rem 1.5rem 1.5rem;
  gap: .15rem;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  padding: .85rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--forest); }
.mobile-lang { display: flex; gap: .5rem; margin-top: .9rem; }
.mobile-lang .lang-btn {
  border: 1px solid var(--line);
  padding: .4rem .8rem;
  border-radius: 7px;
}
.mobile-lang .lang-btn.active { background: var(--forest); border-color: var(--forest); color: #fff; }

/* ── HERO ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(215,189,132,.30) 0%, transparent 58%),
    radial-gradient(ellipse 60% 50% at 12% 18%, rgba(255,253,248,.7) 0%, transparent 55%),
    linear-gradient(165deg, #faf4e8 0%, #f3ead8 55%, #ece0c9 100%);
}
/* Soft natural-light beams from the upper right (window light) */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255,252,244,.5) 55%, transparent 62%),
    linear-gradient(125deg, transparent 55%, rgba(255,250,238,.35) 68%, transparent 74%);
  pointer-events: none;
}
/* Faint Verdun map-line detail */
.hero-map {
  position: absolute;
  top: 0; right: 0;
  width: min(58%, 720px);
  height: 100%;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1;
  opacity: .10;
  pointer-events: none;
}
.hero-map-dot { fill: var(--gold); stroke: none; opacity: .9; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 1.5rem;
  margin-top: calc(var(--nav-h) + var(--ribbon-h));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.eyebrow-mark { color: var(--gold); font-size: 1rem; letter-spacing: 0; }

#hero h1 { margin-bottom: 1.5rem; }
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 580px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .9rem 2rem;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(52,80,63,.18);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--forest-soft); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(52,80,63,.24); }

.btn-secondary {
  border: 1.5px solid var(--brown);
  color: var(--brown-deep);
  font-weight: 600;
  font-size: .95rem;
  padding: .9rem 2rem;
  border-radius: 10px;
  white-space: nowrap;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.btn-secondary:hover { background: rgba(138,111,87,.08); border-color: var(--brown-deep); transform: translateY(-2px); }

.hero-meta {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ── WEEKLY VERSE (forest-green devotional panel) ─── */
#verse {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(189,154,78,.16) 0%, transparent 60%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: #f3ecdd;
  text-align: center;
  padding: 5.5rem 0;
}
.verse-inner { max-width: 800px; }
.verse-ornament {
  display: inline-block;
  width: 30px; height: 30px;
  color: var(--gold-soft);
  opacity: .85;
  margin-bottom: 1.25rem;
}
.verse-quote {
  font-family: 'Lora', 'Noto Serif SC', Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  color: #f6f0e3;
  margin: 0 auto 1.75rem;
  max-width: 760px;
}
.verse-ref {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-style: normal;
  position: relative;
  padding-top: 1.25rem;
}
.verse-ref::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--gold-soft);
  opacity: .5;
}

/* ── MEETINGS ─────────────────────────────────────── */
#events { background: var(--cream); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.event-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.event-card.featured {
  background: linear-gradient(160deg, #fffdf8 0%, #fbf5e8 100%);
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(189,154,78,.25), var(--shadow);
}

.event-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(52,80,63,.08);
  padding: .25rem .65rem;
  border-radius: 20px;
}
.event-tag.gold { color: var(--brown-deep); background: rgba(189,154,78,.18); }

.event-icon {
  display: block;
  width: 40px; height: 40px;
  color: var(--forest);
  margin-bottom: .5rem;
}
.event-card.featured .event-icon { color: var(--gold); }
.event-type { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 600; color: var(--forest-deep); }
.event-date { font-weight: 700; color: var(--brown); font-size: .95rem; }
.event-time { font-size: .95rem; color: var(--ink); }
.event-location { font-size: .92rem; color: var(--ink-soft); }
.event-link {
  margin-top: 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--forest);
  transition: color var(--transition), gap var(--transition);
}
.event-link:hover { color: var(--gold); }

/* ── WHAT TO EXPECT ───────────────────────────────── */
#expect { background: var(--cream-deep); }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.expect-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.expect-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.expect-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(52,80,63,.08);
  color: var(--forest);
  margin-bottom: 1.1rem;
}
.expect-icon .icon { width: 24px; height: 24px; }
.expect-item h3 { margin-bottom: .55rem; }
.expect-item p { font-size: .92rem; color: var(--ink-soft); line-height: 1.7; }

/* ── CHURCH LIFE ──────────────────────────────────── */
#life { background: var(--cream); }
.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.life-card {
  padding: 2rem 1.85rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--forest);
  transition: box-shadow var(--transition), transform var(--transition);
}
.life-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.life-icon { display: block; width: 34px; height: 34px; color: var(--brown); margin-bottom: 1rem; }
.life-card h3 { margin-bottom: .5rem; }
.life-card p { font-size: .92rem; color: var(--ink-soft); line-height: 1.7; }

/* ── GOSPEL & THE WORD ────────────────────────────── */
#gospel { background: var(--cream-deep); }
.gospel-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4.5rem;
  align-items: start;
}
.gospel-text h2 { margin-bottom: 1.25rem; }
.gospel-text > p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.02rem; line-height: 1.85; }

.gospel-verse {
  margin-top: 2rem;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  color: #f3ecdd;
}
.gospel-verse blockquote {
  font-family: 'Lora', 'Noto Serif SC', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: #f6f0e3;
  margin-bottom: .9rem;
}
.gospel-verse cite {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-style: normal;
}

.study-list { display: flex; flex-direction: column; gap: 1rem; }
.study-list-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .25rem;
}
.study-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.study-card:hover { box-shadow: var(--shadow-hover); transform: translateX(3px); }
.study-book {
  font-family: 'Lora', 'Noto Serif SC', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: .3rem;
}
.study-desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }

/* ── WHO WE ARE ───────────────────────────────────── */
#about { background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4.5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.05rem; line-height: 1.85; }

.about-values {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.about-values-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.value-list { display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-family: 'Lora', 'Noto Serif SC', serif;
  font-size: 1.08rem;
  color: var(--forest-deep);
  line-height: 1.45;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-mark { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: .15rem; }

/* ── RESOURCES / ARCHIVES ─────────────────────────── */
#resources { background: var(--cream-deep); }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 1.25rem;
}
.resource-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.65rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.resource-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--gold-soft);
}
.resource-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(52,80,63,.08);
  color: var(--forest);
  margin-bottom: 1rem;
}
.resource-icon .icon { width: 22px; height: 22px; }
.resource-badge {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(189,154,78,.16);
  color: var(--brown-deep);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 1rem;
}
.resource-card h3 { margin-bottom: .35rem; }
.resource-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }

/* ── VISIT / CONTACT ──────────────────────────────── */
#contact { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: stretch;
}
.contact-block {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-heading {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .6rem;
}
.contact-block p { color: var(--ink); font-size: 1rem; line-height: 1.65; }
.contact-note { font-size: .9rem !important; color: var(--muted) !important; font-style: italic; margin-top: .35rem; }
.contact-links { display: flex; flex-direction: column; gap: .4rem; }
.contact-links a { color: var(--forest); font-size: .98rem; font-weight: 600; transition: color var(--transition); }
.contact-links a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; }

/* ── FOOTER ───────────────────────────────────────── */
#footer {
  background: var(--forest-deep);
  color: rgba(243,236,221,.55);
  padding: 3rem 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .65rem; text-align: center; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Lora', 'Noto Serif SC', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #f3ecdd;
}
.footer-brand .logo-cross { color: var(--gold-soft); }
.footer-tagline { font-family: 'Lora', serif; font-style: italic; font-size: .98rem; color: rgba(243,236,221,.72); }
.footer-address { font-size: .85rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: .35rem; }
.footer-links a { font-size: .85rem; color: rgba(243,236,221,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-soft); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .gospel-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-map { min-height: 320px; }
  .contact-map iframe { min-height: 320px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 4.5rem 0; }
  #hero { min-height: 100svh; }
  .section-head { margin-bottom: 2.25rem; }
}

@media (max-width: 480px) {
  .expect-grid, .life-grid, .events-grid, .resource-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { text-align: center; }
}

/* ── SCROLL REVEAL ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ── LANG SWITCH ANIMATION ────────────────────────── */
[data-en], [data-fr], [data-zh] { transition: opacity .15s ease; }
.lang-switching { opacity: 0; }

/* ── FOCUS & PRESS ────────────────────────────────── */
.btn-primary:active, .btn-secondary:active { transform: scale(.98); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

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