/* =============================================================================
 *  Brady & Alyssa — Wedding Site Styles
 *  Rustic & warm · mobile-first · accessible
 *
 *  ▸ To recolor the whole site, edit the CSS variables in :root below.
 *  ▸ Palette: sage · lavender · dark green · dusty blue · cream · wheat/gold
 * ============================================================================= */

/* ----------------------------- THEME TOKENS ------------------------------- */
:root {
  /* Core palette */
  --sage:        #9caf88;
  --sage-deep:   #7e9370;
  --lavender:    #a692c9;
  --lavender-soft:#c8bce0;
  --forest:      #3f5140;   /* dark green */
  --dusty-blue:  #8fa9b8;
  --cream:       #f7f1e6;
  --cream-2:     #efe4d2;
  --wheat:       #d8b878;
  --gold:        #c39a52;

  /* Text */
  --ink:         #3a352c;   /* main text (warm near-black) */
  --ink-soft:    #5f5748;
  --on-dark:     #f7f1e6;

  /* Section tints (kept pale so dark text stays high-contrast) */
  --bg-cream:    #f7f1e6;
  --bg-sage:     #e9efe2;
  --bg-gold:     #f5ecd8;

  /* Fonts */
  --font-serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:   "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-script: "Tangerine", "Cormorant Garamond", cursive;

  /* Scale & effects */
  --wrap:        1080px;
  --wrap-narrow: 680px;
  --radius:      14px;
  --shadow:      0 10px 30px rgba(58, 53, 44, 0.12);
  --shadow-sm:   0 4px 14px rgba(58, 53, 44, 0.10);
  --ring:        0 0 0 3px rgba(166, 146, 201, 0.55); /* focus ring (lavender) */
  --header-h:    64px;
}

/* ------------------------------- RESET ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper grain over everything for a handcrafted feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-underline-offset: 3px; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; color: var(--forest); }

/* Skip link */
.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--forest); color: var(--on-dark);
  padding: 10px 16px; border-radius: 8px; z-index: 10001;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

.noscript-banner {
  background: var(--wheat); color: var(--ink);
  padding: 14px 18px; text-align: center; font-size: 0.95rem;
}

/* ------------------------------ LAYOUT ------------------------------------ */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section--cream { background: var(--bg-cream); }
.section--sage  { background: var(--bg-sage); }
.section--gold  { background: var(--bg-gold); }

/* Little decorative sprig divider under each section title */
.section__title {
  text-align: center;
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin-bottom: 0.5rem;
}
.section__title::after {
  content: "";
  display: block;
  width: 84px; height: 22px;
  margin: 0.6rem auto 0;
  background: no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='22' viewBox='0 0 84 22'%3E%3Cg fill='none' stroke='%23c39a52' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M6 11h24M54 11h24'/%3E%3Ccircle cx='42' cy='11' r='3.2' fill='%23a692c9' stroke='none'/%3E%3Cpath d='M42 8c2-3 5-4 8-4-1 3-3 5-6 5M42 8c-2-3-5-4-8-4 1 3 3 5 6 5'/%3E%3C/g%3E%3C/svg%3E");
}
.section__intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.75rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* ------------------------------ BUTTONS ----------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
  font-size: 0.95rem;
}
.btn--primary { background: var(--forest); color: var(--on-dark); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #33432f; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--on-dark); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ============================== NAVIGATION ================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(247, 241, 230, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(63, 81, 64, 0.10);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav {
  height: 100%;
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 600;
  color: var(--forest); text-decoration: none; letter-spacing: 0.06em;
}

.nav__menu { list-style: none; display: flex; gap: 1.5rem; padding: 0; }
.nav__menu a {
  color: var(--ink); text-decoration: none; font-weight: 600;
  font-size: 0.95rem; padding: 0.25rem 0; position: relative;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--lavender); transition: width .2s ease;
}
.nav__menu a:hover::after, .nav__menu a.is-active::after { width: 100%; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav__toggle-bar { display: block; width: 26px; height: 2px; background: var(--forest); transition: transform .25s ease, opacity .2s ease; margin-inline: auto; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    padding: 0.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(63,81,64,.12);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu li { border-bottom: 1px solid rgba(63,81,64,.08); }
  .nav__menu a { display: block; padding: 0.9rem 0.25rem; font-size: 1.05rem; }
  .nav__menu a::after { display: none; }
}

/* ================================ HERO ==================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-h);
  isolation: isolate;
}

.hero__scene { position: absolute; inset: 0; z-index: -1; }
.parallax-layer {
  position: absolute; left: -5%; right: -5%; bottom: 0;
  width: 110%;
  will-change: transform;
}

/* Sky: warm cream fading up into dusty blue, with a soft sun glow */
.hero__sky {
  top: -5%; height: 110%;
  background:
    radial-gradient(120% 80% at 72% 12%, rgba(247,235,204,0.9) 0%, rgba(247,235,204,0) 42%),
    linear-gradient(180deg, #bcd0da 0%, #dfe6dd 42%, #f3ead4 78%, #f7f1e6 100%);
}
.hero__hills {
  height: 46%;
  background: bottom center / cover no-repeat url("../svg/hills.svg");
}
.hero__lavender {
  height: 40%;
  background: bottom left / auto 100% repeat-x url("../svg/lavender-field.svg");
}
.hero__wheat {
  height: 34%;
  background: bottom left / auto 100% repeat-x url("../svg/wheat-field.svg");
}

.hero__content {
  position: relative;
  padding: 2rem 1.25rem;
  max-width: 760px;
}
.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(2rem, 7vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.hero__names {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem 1.25rem;
  font-size: clamp(3rem, 12vw, 6rem);
  color: var(--forest);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.hero__amp { font-family: var(--font-script); color: var(--lavender); font-size: 1.1em; font-weight: 400; }
.hero__date {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 3.4vw, 1.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.hero__venue { margin-top: 0.4rem; color: var(--ink-soft); font-size: 1rem; }

/* Countdown */
.countdown {
  display: flex; justify-content: center; gap: clamp(0.5rem, 3vw, 1.75rem);
  margin: 1.9rem 0 1.75rem;
}
.countdown__unit {
  min-width: 64px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(63, 81, 64, 0.12);
  border-radius: 12px;
  padding: 0.6rem 0.4rem 0.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.countdown__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 600; color: var(--forest);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__cta { margin-top: 0.25rem; }

/* Scroll cue */
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  width: 30px; height: 46px;
}
.hero__scroll-arrow {
  position: absolute; inset: 0; margin: auto;
  width: 20px; height: 20px;
  border-right: 2px solid var(--forest); border-bottom: 2px solid var(--forest);
  transform: rotate(45deg);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(-4px) rotate(45deg); } 50% { transform: translateY(4px) rotate(45deg); } }
@media (prefers-reduced-motion: reduce) { .hero__scroll-arrow { animation: none; } }

/* ============================== OUR STORY ================================= */
.timeline { list-style: none; padding: 0; max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 6px; bottom: 6px; left: 20px;
  width: 2px; background: linear-gradient(var(--sage), var(--lavender));
}
.timeline__item { position: relative; padding: 0 0 2.25rem 3.5rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: 12px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cream); border: 3px solid var(--lavender);
}
.timeline__date { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-size: 1.05rem; }
.timeline__title { font-size: 1.5rem; margin: 0.1rem 0 0.4rem; }
.timeline__text { color: var(--ink-soft); }
.timeline__img { margin-top: 0.9rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* =============================== DETAILS ================================== */
.detail-cards {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 3rem;
}
.detail-card {
  background: var(--cream);
  border: 1px solid rgba(63,81,64,.10);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.detail-card__icon { width: 40px; height: 40px; margin: 0 auto 0.75rem; color: var(--sage-deep); }
.detail-card__title { font-size: 1.35rem; margin-bottom: 0.35rem; }
.detail-card__time { font-size: 1.15rem; font-weight: 700; color: var(--forest); }
.detail-card__loc { color: var(--ink); margin-top: 0.15rem; }
.detail-card__note { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.6rem; }

.details-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .details-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.details-sub { font-size: 1.5rem; margin-bottom: 1rem; }

.schedule__list { list-style: none; padding: 0; }
.schedule__item { display: flex; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px dashed rgba(63,81,64,.18); }
.schedule__item:last-child { border-bottom: none; }
.schedule__time { flex: 0 0 84px; font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; }
.schedule__body strong { display: block; color: var(--forest); }
.schedule__body span { color: var(--ink-soft); font-size: 0.92rem; }

.map__address { color: var(--ink-soft); margin-bottom: 0.75rem; white-space: pre-line; }
.map__embed { margin-top: 1rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; background: #dfe6dd; }
.map__embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Click-to-load map placeholder (defers Google's heavy embed) */
.map__facade {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; cursor: pointer; border: none;
  color: var(--forest);
  background:
    radial-gradient(circle at 30% 28%, rgba(156,175,136,.28), transparent 60%),
    repeating-linear-gradient(0deg, rgba(63,81,64,.06) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(63,81,64,.06) 0 1px, transparent 1px 26px),
    var(--bg-sage);
  transition: background-color .2s ease;
}
.map__facade:hover { background-color: #dfe7d5; }
.map__facade-pin { width: 44px; height: 44px; color: var(--gold); }
.map__facade-label {
  background: var(--forest); color: var(--on-dark);
  padding: 0.5rem 1.15rem; border-radius: 999px;
  font: 700 0.9rem var(--font-body); letter-spacing: 0.03em;
}

/* =============================== GALLERY ================================== */
.gallery {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 620px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery__item {
  position: relative; padding: 0; border: none; cursor: pointer;
  aspect-ratio: 1 / 1; overflow: hidden; border-radius: 10px;
  background: var(--cream-2); box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.06); }

/* Labeled placeholder shown when an image file is missing */
.gallery__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center; padding: 8px;
  background:
    repeating-linear-gradient(45deg, #efe4d2 0 10px, #e7dcc7 10px 20px);
  color: var(--ink-soft);
}
.gallery__placeholder svg { width: 30px; height: 30px; opacity: 0.7; }
.gallery__placeholder span { font-size: 0.72rem; line-height: 1.3; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(35, 30, 22, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; max-width: 92vw; max-height: 86vh; text-align: center; }
.lightbox__img { max-width: 92vw; max-height: 78vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); margin-inline: auto; }
.lightbox__caption { color: var(--cream); margin-top: 0.75rem; font-size: 0.95rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(247,241,230,.14); color: var(--cream);
  border: none; cursor: pointer; border-radius: 50%;
  width: 48px; height: 48px; font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(247,241,230,.28); }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__nav--prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 12px; top: 50%; transform: translateY(-50%); }

/* =============================== REGISTRY ================================= */
.registry { display: grid; gap: 1.1rem; }
.registry__item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--cream); border: 1px solid rgba(63,81,64,.10);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm);
  text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .2s ease;
}
.registry__item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.registry__name { font-family: var(--font-serif); font-size: 1.35rem; color: var(--forest); }
.registry__desc { color: var(--ink-soft); font-size: 0.92rem; }
.registry__arrow { color: var(--gold); font-size: 1.4rem; flex: 0 0 auto; }

/* ================================= RSVP =================================== */
.rsvp__deadline { text-align: center; color: var(--ink-soft); margin-bottom: 2rem; }
.rsvp-form { background: var(--cream); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); border: 1px solid rgba(63,81,64,.10); }
.field { margin-bottom: 1.35rem; }
.field > label, .field legend { display: block; font-weight: 700; margin-bottom: 0.45rem; color: var(--forest); }
.req { color: #b4552f; }

.field input[type="text"],
.field input[type="email"],
.field input[type="number"],
.field textarea {
  width: 100%;
  font: inherit; color: var(--ink);
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(63,81,64,.22);
  border-radius: 10px;
  background: #fffdf8;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--lavender); box-shadow: var(--ring); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c0492a; }

.field--radio { border: none; padding: 0; }
.radio { display: flex; align-items: center; gap: 0.6rem; padding: 0.35rem 0; font-weight: 400; cursor: pointer; color: var(--ink); }
.radio input { width: 1.15rem; height: 1.15rem; accent-color: var(--sage-deep); }

.field__error { color: #b4552f; font-size: 0.85rem; margin-top: 0.35rem; min-height: 1em; }

/* Honeypot — visually hidden but present for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.rsvp-form__submit { width: 100%; margin-top: 0.5rem; }
.rsvp-form__status { margin-top: 1.1rem; text-align: center; font-weight: 600; }
.rsvp-form__status.is-success { color: var(--sage-deep); }
.rsvp-form__status.is-error { color: #b4552f; }

/* Success panel replaces the form on completion */
.rsvp-success {
  text-align: center; background: var(--cream); border-radius: var(--radius);
  padding: clamp(2rem, 6vw, 3.5rem); box-shadow: var(--shadow); border: 1px solid rgba(63,81,64,.10);
}
.rsvp-success__check {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.rsvp-success h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.rsvp-success p { color: var(--ink-soft); }

/* ================================= FAQ ==================================== */
.faq { display: grid; gap: 0.85rem; }
.faq__item { background: var(--cream); border: 1px solid rgba(63,81,64,.10); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font: 600 1.1rem/1.35 var(--font-serif); color: var(--forest);
  padding: 1.15rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .25s ease; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq__icon::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq__icon::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: transform .25s ease; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 1.4rem 1.25rem; color: var(--ink-soft); }

/* ================================ FOOTER ================================== */
.site-footer {
  background: var(--forest); color: var(--on-dark);
  text-align: center; padding: 3rem 0;
}
.site-footer__names { font-family: var(--font-serif); font-size: 2rem; color: var(--wheat); }
.site-footer__msg { margin-top: 0.35rem; color: rgba(247,241,230,.82); }
.site-footer__meta { margin-top: 0.75rem; font-size: 0.9rem; letter-spacing: 0.06em; color: rgba(247,241,230,.7); }
.site-footer__contact { margin-top: 0.9rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.site-footer a { color: var(--wheat); }
.site-footer__hashtag { color: var(--lavender-soft); font-weight: 600; }

/* Reveal-on-scroll animation (progressive enhancement; JS adds .is-in) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
