/* Pack 199 — outdoors-inspired design system */

:root {
  /* Brand palette: navy + scout gold + pine green + cream */
  --navy: #1a2a4a;
  --navy-deep: #0f1a30;
  --navy-soft: #2a3a5e;
  --gold: #f4b400;
  --gold-deep: #c98a00;
  --gold-soft: #f6c947;
  --pine: #3a5a40;
  --pine-deep: #2a4530;
  --pine-soft: #5a7a5e;
  --cream: #faf6ee;
  --cream-warm: #f3ecdc;
  --cream-deep: #e7dcc2;
  --ink: #1c1a14;
  --ink-muted: #5a564c;
  --ink-faint: #8e8a7e;
  --rule: #d9d0bb;
  --rule-soft: #ece4cf;
  --error: #a93232;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(15, 26, 48, 0.06), 0 1px 3px rgba(15, 26, 48, 0.04);
  --shadow: 0 4px 12px rgba(15, 26, 48, 0.08), 0 2px 4px rgba(15, 26, 48, 0.05);
  --shadow-lg: 0 18px 40px rgba(15, 26, 48, 0.14), 0 4px 12px rgba(15, 26, 48, 0.06);

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);

  --serif: "Fraunces", "Source Serif 4", Georgia, serif;
  --sans: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26, 42, 74, 0.35);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
a:hover { color: var(--gold-deep); text-decoration-color: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pine-deep);
  margin: 0 0 0.9rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }

.section-head { max-width: 720px; margin-bottom: 2.4rem; }
.section-head p { color: var(--ink-muted); font-size: 1.05rem; }

/* ============== Header ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy-deep); }
.brand:hover { color: var(--navy-deep); }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--serif); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em;
}
.brand-text span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pine-deep);
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink); font-size: 0.95rem; font-weight: 500; text-decoration: none; }
.nav a:hover { color: var(--gold-deep); }
.nav .btn { padding: 9px 18px; font-size: 0.9rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0; color: var(--navy-deep);
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--rule-soft);
    padding: 8px 0; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px var(--gutter); border-top: 1px solid var(--rule-soft); }
  .nav .btn { margin: 12px var(--gutter); text-align: center; }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: 0.98rem;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--gold); color: var(--navy-deep); border-color: var(--gold-deep); }
.btn--primary:hover { background: var(--gold-soft); color: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--navy-deep); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--dark { background: var(--navy-deep); color: var(--cream); border-color: var(--navy-deep); }
.btn--dark:hover { background: var(--navy); color: var(--cream); }
.btn--sm { padding: 9px 16px; font-size: 0.88rem; }

/* ============== Hero ============== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(244, 180, 0, 0.18), transparent 60%),
    radial-gradient(1200px 600px at -10% 110%, rgba(58, 90, 64, 0.16), transparent 65%),
    var(--cream);
  border-bottom: 1px solid var(--rule-soft);
}
.hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.hero { padding: clamp(40px, 6vw, 64px) 0; }
.hero__content .eyebrow { color: var(--pine-deep); }
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero__lede { font-size: 1.15rem; color: var(--ink-muted); max-width: 56ch; margin-bottom: 1.6rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.6rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 18px 24px;
  font-size: 0.92rem; color: var(--ink-muted);
  border-top: 1px dashed var(--rule); padding-top: 18px; margin-top: 6px;
}
.hero__meta strong { color: var(--navy-deep); font-weight: 600; }

.hero__art {
  position: relative; aspect-ratio: 5/6; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #2a3a5e 0%, #1a2a4a 55%, #0f1a30 100%);
}
.hero__art svg { width: 100%; height: 100%; display: block; }
.hero__badge {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--cream); color: var(--navy-deep);
  padding: 10px 14px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.25); }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__art { aspect-ratio: 5/4; max-height: 420px; }
}

/* ============== Highlights strip ============== */
.highlights {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 26px 0;
}
.highlights__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.highlights__item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; min-height: 48px; }
.highlights__item svg { flex-shrink: 0; color: var(--gold); }
.highlights__item strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; line-height: 1.2; color: #fff; }
.highlights__item span { display: block; color: rgba(250, 246, 238, 0.75); font-size: 0.88rem; line-height: 1.35; margin-top: 2px; }
@media (max-width: 860px) { .highlights__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 500px) { .highlights__inner { grid-template-columns: 1fr; } }

/* ============== About ============== */
.about__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start;
}
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 1.4rem; }
.value {
  background: var(--cream-warm); border: 1px solid var(--rule-soft);
  border-radius: var(--radius); padding: 18px;
}
.value h4 { margin: 0 0 4px; font-size: 0.95rem; color: var(--navy-deep); }
.value p { margin: 0; font-size: 0.92rem; color: var(--ink-muted); }
.value__icon { color: var(--pine); margin-bottom: 10px; display: inline-flex; }

.activities {
  background: var(--cream-warm); border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg); padding: 28px;
}
.activities ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 28px; }
.activities li {
  padding: 8px 0 8px 28px; position: relative; font-size: 0.96rem;
  break-inside: avoid;
}
.activities li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 16px; height: 16px;
  background: var(--gold); clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}
.activities__note {
  margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--rule);
  font-size: 0.9rem; color: var(--ink-muted);
}

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .values { grid-template-columns: 1fr; }
  .activities ul { columns: 1; }
}

/* ============== Scout Oath / Law ============== */
.promise {
  background:
    radial-gradient(700px 360px at 4% 0%, rgba(244, 180, 0, 0.14), transparent 60%),
    var(--cream-warm);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.promise__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
}
.promise__flag svg {
  width: 100%; height: auto; display: block;
}
.promise__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px;
}
.promise-card {
  background: var(--cream);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.promise-card h3 { margin: 0 0 10px; color: var(--navy-deep); }
.promise-card p { margin: 0; color: var(--ink-muted); font-size: 0.96rem; }

@media (max-width: 860px) {
  .promise__grid { grid-template-columns: 1fr; gap: 28px; }
  .promise__cards { grid-template-columns: 1fr; }
}

/* ============== Events ============== */
.events { background: var(--cream-warm); border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
.events__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 2rem; }
.events__head h2 { margin: 0; }
.events__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event {
  background: var(--cream); border: 1px solid var(--rule-soft);
  border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.event__date {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--serif); color: var(--navy-deep);
}
.event__day { font-size: 2.4rem; font-weight: 700; line-height: 1; }
.event__month { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pine-deep); }
.event__year { font-size: 0.78rem; color: var(--ink-faint); margin-left: auto; font-family: var(--sans); letter-spacing: 0.08em; }
.event h3 { margin: 14px 0 6px; font-size: 1.15rem; }
.event__meta { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 10px; }
.event__meta strong { color: var(--navy-deep); font-weight: 600; }
.event p { font-size: 0.94rem; color: var(--ink-muted); margin-bottom: 14px; flex: 1; }
.event__tag {
  display: inline-block; align-self: flex-start;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(58, 90, 64, 0.12); color: var(--pine-deep);
  padding: 4px 10px; border-radius: 999px;
}
@media (max-width: 860px) { .events__list { grid-template-columns: 1fr; } }

.events__footer {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 14px 24px;
  align-items: center; justify-content: space-between;
  padding: 22px; background: var(--cream); border-radius: var(--radius);
  border: 1px dashed var(--rule);
}
.events__footer p { margin: 0; font-size: 0.92rem; color: var(--ink-muted); max-width: 60ch; }

/* ============== Join / Costs ============== */
.join__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.steps { display: flex; flex-direction: column; gap: 18px; margin: 1.4rem 0 1.6rem; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-deep); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
}
.step h4 { margin: 6px 0 4px; font-size: 1.02rem; }
.step p { margin: 0; color: var(--ink-muted); font-size: 0.95rem; }

.cost-card {
  background: var(--navy-deep); color: var(--cream);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-lg);
}
.cost-card h3 { color: var(--gold-soft); font-family: var(--serif); margin: 0 0 6px; font-size: 1.15rem; }
.cost-card .price { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: #fff; margin: 0 0 4px; letter-spacing: -0.02em; }
.cost-card .price small { font-size: 0.7em; color: rgba(250, 246, 238, 0.6); font-weight: 500; }
.cost-card ul { list-style: none; padding: 0; margin: 18px 0; }
.cost-card li {
  padding: 10px 0 10px 28px; position: relative;
  border-top: 1px solid rgba(250, 246, 238, 0.12);
  font-size: 0.95rem; color: rgba(250, 246, 238, 0.92);
}
.cost-card li:first-child { border-top: 0; }
.cost-card li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.18);
}
.cost-card .footnote { font-size: 0.8rem; color: rgba(250, 246, 238, 0.6); margin: 0; }

@media (max-width: 860px) { .join__grid { grid-template-columns: 1fr; } }

/* ============== Resources / downloads ============== */
.resources__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.resource {
  background: var(--cream); border: 1px solid var(--rule-soft);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.resource:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold); }
.resource__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cream-deep); color: var(--navy-deep); margin-bottom: 16px;
}
.resource h3 { margin: 0 0 6px; font-size: 1.1rem; }
.resource p { font-size: 0.92rem; color: var(--ink-muted); margin: 0 0 16px; flex: 1; }
.resource__link {
  align-self: flex-start;
  font-family: var(--sans); font-weight: 700; font-size: 0.92rem;
  color: var(--navy-deep); text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}
.resource__link:hover { color: var(--gold-deep); }
.resource__link::after { content: " →"; }

@media (max-width: 860px) { .resources__grid { grid-template-columns: 1fr; } }

/* ============== Gallery ============== */
.gallery__head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-bottom: 1.6rem; }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery__item {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius);
  overflow: hidden; background: var(--cream-deep);
  border: 1px solid var(--rule-soft);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery__placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream-warm), var(--cream-deep));
  color: var(--ink-muted); font-size: 0.85rem; text-align: center; padding: 16px;
}
.gallery__placeholder svg { color: var(--pine); opacity: 0.6; }
.gallery__note {
  margin-top: 18px; font-size: 0.85rem; color: var(--ink-muted); font-style: italic;
}
@media (max-width: 700px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
}

/* ============== Calendar ============== */
.calendar-embed {
  background: var(--cream);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 620px;
}
.calendar-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* ============== Calendar admin ============== */
.calendar-admin {
  background: var(--cream); border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg); padding: 28px;
  margin-top: 24px;
}
.calendar-admin h3 { margin-top: 0; }
.calendar-admin__row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin: 16px 0;
}
.file-input {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: 999px;
  background: var(--cream-warm); color: var(--navy-deep);
  font-weight: 600; font-size: 0.92rem; border: 1.5px solid var(--rule);
  cursor: pointer;
}
.file-input:hover { background: var(--cream-deep); }
.file-input input { display: none; }
#calendar-preview { margin-top: 18px; }
#calendar-preview .event { background: var(--cream-warm); }
#calendar-status { font-size: 0.9rem; color: var(--ink-muted); margin: 0; }
#calendar-status.error { color: var(--error); }

/* ============== Contact ============== */
.contact {
  background:
    radial-gradient(800px 400px at 100% 100%, rgba(244, 180, 0, 0.10), transparent 60%),
    var(--navy-deep);
  color: var(--cream);
}
.contact h2 { color: #fff; }
.contact .section-head p { color: rgba(250, 246, 238, 0.75); }
.contact .eyebrow { color: var(--gold-soft); }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(250, 246, 238, 0.15);
  border-radius: var(--radius); padding: 24px;
}
.contact-card h3 { color: #fff; margin: 0 0 4px; font-size: 1.1rem; }
.contact-card .role { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-bottom: 14px; }
.contact-card a { color: var(--cream); text-decoration-color: rgba(250, 246, 238, 0.4); }
.contact-card a:hover { color: var(--gold-soft); }
.contact-card p { margin: 4px 0; font-size: 0.96rem; }

.contact-form {
  background: rgba(250, 246, 238, 0.08);
  border: 1px solid rgba(250, 246, 238, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.form-row { display: grid; gap: 7px; margin-bottom: 14px; }
.form-row label {
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(250, 246, 238, 0.24);
  border-radius: 14px;
  background: rgba(250, 246, 238, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, .22);
}
.form-row textarea { resize: vertical; }
.hidden-field { display: none; }
.form-note {
  margin: 12px 0 0;
  color: rgba(250, 246, 238, 0.62);
  font-size: .82rem;
}

.where {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(250, 246, 238, 0.15);
  border-radius: var(--radius); padding: 24px;
}
.where__icon { color: var(--gold); }
.where h3 { color: #fff; margin: 0 0 6px; font-size: 1.05rem; }
.where p { margin: 0; color: rgba(250, 246, 238, 0.85); font-size: 0.96rem; }
.where .meta { font-size: 0.86rem; color: rgba(250, 246, 238, 0.6); margin-top: 6px; }

@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

/* ============== Footer ============== */
.footer {
  background: #0a1326; color: rgba(250, 246, 238, 0.65);
  padding: 36px 0; font-size: 0.88rem;
}
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.footer a { color: rgba(250, 246, 238, 0.85); }
.footer__socials { display: flex; gap: 14px; }
.footer__socials a { display: inline-flex; }

/* ============== Misc ============== */
.divider-leaves { display: flex; justify-content: center; padding: 12px 0; opacity: 0.4; }
.divider-leaves svg { color: var(--pine); }

.scroll-hint { font-size: 0.85rem; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
