/* ============================================================
   Cozy Cottage Stocking Shoppe — design system
   Mood: hand-trimmed Christmas cottage, not corporate nonprofit.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Karla:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #fbe9e0;
  --paper: #fffaf1;
  --paper-soft: #fdeee2;
  --red: #b7222f;
  --red-deep: #7d1620;
  --red-berry: #d8383f;
  --pine: #2f6b4f;
  --pine-deep: #1c4a38;
  --gold: #c8933f;
  --gold-soft: #edcb86;
  --ink: #3d211f;
  --muted: #7e615a;
  --line: rgba(125, 22, 32, 0.18);
  --shadow-soft: 0 20px 45px -22px rgba(90, 24, 30, 0.48);
  --shadow-card: 0 14px 30px -14px rgba(90, 24, 30, 0.3);
  --radius-lg: 30px;
  --radius-md: 20px;
  /* candy-cane stripe used across whimsical accents */
  --candy: repeating-linear-gradient(-45deg, var(--red) 0 12px, #fffaf1 12px 24px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Karla", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  position: relative;
  overflow-x: clip;
}

/* faint paper grain, fixed so it never taxes scroll performance */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.22  0 0 0 0 0.17  0 0 0 0 0.14  0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--red-deep);
  line-height: 1.06;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.32rem; }

p { margin: 0 0 1rem; }

a { color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

section { position: relative; z-index: 1; padding-block: clamp(3.4rem, 7vw, 6.2rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--red);
  font-size: 1.02rem;
  margin-bottom: 0.9rem;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

/* ---------- sparkle / snow layers ---------- */
.sparkle-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.sparkle-field span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-soft);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  opacity: 0;
  animation: twinkle 4.5s ease-in-out infinite;
}
/* a scattering of the stars twinkle candy-red instead of gold */
.sparkle-field span:nth-child(3n) { background: var(--red-berry); }
.sparkle-field span:nth-child(5n) { background: #fff4dd; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  50% { opacity: 0.85; transform: scale(1.15) rotate(20deg); }
}

.snowfall { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.snowfall span {
  position: absolute;
  top: -5%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: drift linear infinite;
}
@keyframes drift {
  from { transform: translateY(-10vh) translateX(0); }
  to { transform: translateY(110vh) translateX(40px); }
}

/* ---------- whimsical Christmas decorations ---------- */
/* a swinging line of holiday emoji, used to top off festive sections */
.garland {
  display: flex;
  justify-content: center;
  gap: clamp(0.6rem, 2.5vw, 1.4rem);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1;
  margin: 0 0 1.4rem;
  position: relative;
  z-index: 2;
  user-select: none;
}
.garland span {
  display: inline-block;
  transform-origin: top center;
  animation: sway 3.6s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(90, 24, 30, 0.25));
}
.garland span:nth-child(2n) { animation-delay: -0.9s; }
.garland span:nth-child(3n) { animation-delay: -1.8s; }
.garland span:nth-child(4n) { animation-delay: -2.7s; }
@keyframes sway {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .garland span, .snowfall span, .sparkle-field span { animation: none; }
}

/* candy-cane striped rule to separate festive sections */
.candy-divider {
  height: 14px;
  border: none;
  margin: 0;
  background: var(--candy);
  box-shadow: inset 0 1px 2px rgba(90, 24, 30, 0.25), inset 0 -1px 2px rgba(90, 24, 30, 0.25);
}

/* a small emoji ornament tucked beside a heading or kicker */
.jingle {
  display: inline-block;
  margin-right: 0.35rem;
  animation: sway 3.6s ease-in-out infinite;
  transform-origin: top center;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(251, 233, 224, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
/* candy-cane ribbon across the very top of the header */
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--candy);
}

.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand-mark { flex-shrink: 0; }
.brand-text {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--red-deep);
  font-size: 1.18rem;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: "Karla", sans-serif;
  font-weight: 700;
  color: var(--pine);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--red-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span { top: 20px; }
.nav-toggle::before { top: 14px; }
.nav-toggle::after { top: 26px; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a {
  text-decoration: none;
  color: var(--pine);
  font-weight: 700;
  font-size: 0.94rem;
  position: relative;
  padding-bottom: 2px;
}
.site-nav a:not(.tag-button)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.site-nav a:not(.tag-button):hover::after { right: 0; }

.tag-button {
  background: var(--red);
  color: var(--paper) !important;
  padding: 0.6rem 1.1rem 0.6rem 1rem;
  border-radius: 999px 6px 6px 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tag-button:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: var(--shadow-soft); }
.tag-button svg { width: 14px; height: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: "Karla", sans-serif;
}
.btn-primary { background: var(--gold-soft); color: var(--red-deep); box-shadow: var(--shadow-card); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost { border-color: rgba(255,255,255,0.55); color: var(--paper); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-outline { border-color: var(--line); color: var(--red-deep); background: var(--paper); }
.btn-outline:hover { border-color: var(--red); background: var(--paper-soft); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(172deg, var(--red-deep) 0%, var(--red) 52%, #9c2530 100%);
  color: var(--paper);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
.hero-eyebrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.hero h1 { color: var(--paper); max-width: 15ch; }
.hero-copy { color: rgba(255,250,240,0.82); font-size: 1.15rem; max-width: 46ch; margin-top: 1.1rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.hero-scene {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  justify-self: end;
}

.stat-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  backdrop-filter: blur(6px);
}
.stat-card:nth-child(2) { transform: translateY(-6px) rotate(0.6deg); }
.stat-card:nth-child(3) { transform: rotate(-0.6deg); }
.stat-number {
  font-family: "Fraunces", serif;
  font-size: 2.1rem;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 0.15rem;
}
.stat-card p { color: rgba(255,250,240,0.85); margin: 0; font-size: 0.96rem; }
.stat-card.stat-quote .stat-number { font-size: 1.3rem; line-height: 1.3; }

/* ---------- scallop divider ---------- */
.scallop {
  display: block;
  width: 100%;
  height: 34px;
  margin-bottom: -1px;
}

/* ---------- intro strip ---------- */
.intro-strip {
  background: var(--paper-soft);
  text-align: center;
}
.intro-strip .lede { margin-inline: auto; font-size: 1.2rem; color: var(--ink); }
.intro-strip .lede strong { color: var(--red); }

/* ---------- story ---------- */
.story { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.story p { color: var(--muted); font-size: 1.04rem; }
.story-figure {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--paper) 0%, var(--gold-soft) 120%);
  padding: 0.6rem;
  box-shadow: var(--shadow-card);
}
.story-figure-inner {
  border: 2px dashed rgba(114,32,41,0.4);
  border-radius: calc(var(--radius-lg) - 8px);
  min-height: 360px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2.4rem;
  gap: 0.4rem;
}
.story-figure-inner .cap {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-size: 0.8rem;
}
.story-figure-inner p { color: var(--muted); font-size: 0.94rem; max-width: 30ch; margin: 0 auto; }

/* ---------- how it works ---------- */
.how-it-works { background: linear-gradient(180deg, var(--red-deep), #6a121b); color: var(--paper); position: relative; overflow: hidden; }
.how-it-works .kicker { color: var(--gold-soft); }
.how-it-works .kicker::before { background: var(--gold-soft); }
.how-it-works h2 { color: var(--paper); max-width: 20ch; }
.how-it-works > .container { position: relative; z-index: 1; }

.steps {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem 1.5rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--red-deep);
  background: var(--gold-soft);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin-bottom: 1rem;
}
.step h3 { color: var(--paper); font-size: 1.12rem; }
.step p { color: rgba(255,250,240,0.78); font-size: 0.94rem; margin: 0; }

.how-cta { margin-top: 2.6rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.how-cta a.text-link { color: var(--gold-soft); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(227,195,131,0.5); }

/* ---------- treasure hunt ---------- */
.finds-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.finds-header .lede { margin-top: 0.4rem; }
.post-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.2rem;
}
.post-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.post-card:nth-child(odd) { transform: rotate(-0.5deg); }
.post-card:nth-child(even) { transform: rotate(0.5deg); }
.post-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.post-tag.find { background: #f3ded1; color: var(--red-deep); }
.post-tag.wishlist { background: #ded9c4; color: var(--pine-deep); }
.post-tag.sorting { background: #ecdcb8; color: #7a5719; }
.post-tag.countdown { background: #e6cfd2; color: var(--red-deep); }
.post-date { font-size: 0.78rem; color: var(--muted); font-weight: 700; letter-spacing: 0.04em; }
.post-card h3 { font-size: 1.08rem; margin-bottom: 0.1rem; }
.post-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- ways to help ---------- */
.help { background: linear-gradient(180deg, var(--cream), var(--paper-soft)); }
.help-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.2rem;
}
.help-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.5rem;
  border: 1px dashed var(--line);
  position: relative;
}
.help-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pine);
  display: grid;
  place-content: center;
  margin-bottom: 1rem;
}
.help-icon svg { width: 22px; height: 22px; stroke: var(--paper); }
.help-card h3 { font-size: 1.1rem; }
.help-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- contact ---------- */
.contact { background: var(--pine); color: var(--paper); position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; position: relative; z-index: 1; }
.contact h2 { color: var(--paper); }
.contact .lede { color: rgba(255,250,240,0.82); }
.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list .ico {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-content: center; flex-shrink: 0;
}
.contact-list .ico svg { width: 18px; height: 18px; stroke: var(--gold-soft); }
.contact-list strong { display: block; color: var(--paper); font-family: "Fraunces", serif; font-weight: 600; }
.contact-list span { color: rgba(255,250,240,0.78); font-size: 0.95rem; }

.contact-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
.contact-form h3 { color: var(--red-deep); }
.field { margin-bottom: 1.1rem; display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: "Karla", sans-serif;
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 100px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--pine-deep);
  color: rgba(255,250,240,0.72);
  padding: clamp(2.2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 3rem) 1.6rem;
  position: relative;
}
/* matching candy-cane ribbon across the top of the footer */
footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--candy);
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { font-family: "Fraunces", serif; color: var(--paper); font-size: 1.2rem; margin-bottom: 0.6rem; }
.footer-grid h4 { color: var(--gold-soft); font-family: "Karla", sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-grid a { color: rgba(255,250,240,0.78); text-decoration: none; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-bottom { max-width: 1180px; margin: 1.4rem auto 0; font-size: 0.85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

/* ---------- schedule page ---------- */
.page-hero {
  background: linear-gradient(172deg, var(--red-deep), var(--red));
  color: var(--paper);
  padding-block: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 { color: var(--paper); }
.page-hero .lede { color: rgba(255,250,240,0.85); }

.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}
.info-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px dashed var(--line);
  box-shadow: var(--shadow-card);
}
.info-card h3 { color: var(--red-deep); }
.info-card ul { padding-left: 1.15rem; color: var(--muted); margin: 0; }
.info-card li { margin-bottom: 0.55rem; }
.note-tag {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
}

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.coming-soon-card { text-align: center; padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.coming-soon-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-deep);
  background: var(--paper-soft);
  border: 1px dashed var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}
.coming-soon-card h3 { color: var(--red-deep); font-size: 1.5rem; }
.coming-soon-card p { color: var(--muted); max-width: 40ch; margin-inline: auto; }
.coming-soon-card .note-tag { display: block; border-top: none; margin-top: 1.4rem; padding-top: 0; }

/* ---------- thank-you page ---------- */
.thanks-hero {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(172deg, var(--red-deep), var(--red));
  color: var(--paper);
  padding: 3rem 1.5rem;
}
.thanks-hero .kicker { justify-content: center; color: var(--gold-soft); }
.thanks-hero > *:not(.snowfall):not(.sparkle-field) { position: relative; z-index: 2; }
.thanks-hero .kicker::before { background: var(--gold-soft); }
.thanks-hero h1 { color: var(--paper); max-width: 18ch; margin-inline: auto; }
.thanks-hero p { color: rgba(255,250,240,0.85); max-width: 46ch; margin-inline: auto; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-scene { display: none; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(3) { grid-column: span 2; }
  .story, .contact-grid, .schedule-wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .post-grid, .help-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem clamp(1.25rem, 4vw, 3rem) 1.6rem;
    gap: 1rem;
    display: none;
    box-shadow: var(--shadow-card);
  }
  .site-nav.open { display: flex; }
  .site-nav .tag-button { margin-top: 0.4rem; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-card:nth-child(3) { grid-column: auto; }
  .steps, .post-grid, .help-grid { grid-template-columns: 1fr; }
  .post-card:nth-child(odd), .post-card:nth-child(even) { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .finds-header { align-items: flex-start; }
}
