/* ==========================================================================
   pages.css
   Page-specific styles, organized by page and section using clear comment
   headers. Add new sections below in the same pattern as they're built.
   ========================================================================== */


/* ==========================================================================
   HOME — Section 1: Hero (video loop)
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-charcoal); /* shows briefly before video paints */
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Weighted slightly above center since portrait wedding footage usually
     frames faces in the upper-middle of the shot. Nudge this if your video
     crops out the wrong part on wide desktop screens. */
  object-position: center 30%;
}

/* Dark warm-brown scrim so the white hero text stays legible over the
   moving video, heavier at the bottom where the text sits. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(42, 29, 20, 0.75) 0%,
    rgba(42, 29, 20, var(--color-hero-scrim-alpha)) 45%,
    rgba(42, 29, 20, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: var(--space-md);
  padding-bottom: var(--space-xl);
  color: var(--color-text-hero);
}

.hero__eyebrow {
  color: var(--color-text-hero);
  opacity: 0.85;
  margin-bottom: var(--space-sm);
}

.hero__headline {
  font-family: var(--font-script);
  font-size: var(--fs-hero-headline);
  line-height: 1;
  color: var(--color-text-hero);
  max-width: 18ch;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero__cta {
  margin-top: var(--space-md);
}

/* Language switch — replaces the old hero RSVP button; kept compact since
   it's just two short words ("मराठी"), not a full-width CTA. */
.hero__lang-switch {
  min-width: 6.5rem;
  text-align: center;
}

/* Sound toggle for the background music — icon-only circular button that
   sits above the hero, unobtrusive. Accessible name lives on aria-label
   (see hero-media.js), not on visible text. */
.hero__sound-toggle {
  position: absolute;
  z-index: 3;
  right: var(--space-md);
  /* Matches .hero__content's padding-bottom (var(--space-xl)) so this
     lines up with the language-switch button sitting in that content
     flow, rather than the hero's own edge — keeps them on the same row
     without moving this button horizontally at all. */
  bottom: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--color-text-hero);
  border: 1px solid rgba(253, 251, 247, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.hero__sound-toggle:hover {
  border-color: var(--color-gold);
  background: rgba(0, 0, 0, 0.35);
}

.hero__sound-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero__content {
    padding-bottom: var(--space-lg);
  }

  .hero__sound-toggle {
    right: var(--space-sm);
    /* Mirrors the desktop fix: mobile hero__content padding-bottom below
       drops to var(--space-lg), so this matches that instead of --space-md. */
    bottom: var(--space-lg);
    width: 40px;
    height: 40px;
  }

  .hero__sound-icon {
    width: 16px;
    height: 16px;
  }
}


/* ==========================================================================
   HOME — Section 2: Quick details + invite (ivory background)
   ========================================================================== */

.details {
  background: var(--color-ivory);
  padding-block: var(--space-xl);
}

.details__inner {
  max-width: 720px;
  text-align: center;
}

.details__date {
  font-family: var(--font-serif);
  font-size: var(--fs-section-heading);
  color: var(--color-text-body);
  margin-bottom: var(--space-xs);
}

.details__venue {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.details__cta {
  margin-bottom: var(--space-lg);
}

.details__eyebrow {
  margin-bottom: var(--space-md);
}

.details__welcome {
  color: var(--color-text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.details__welcome--bold {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.5;
  color: var(--color-text-body);
  max-width: 46ch;
}

.details__invite {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 60ch;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .details {
    padding-block: var(--space-lg);
  }
}


/* ==========================================================================
   HOME — Section 3: Countdown (dark background)
   ========================================================================== */

.countdown-section {
  background: var(--color-charcoal);
  padding-block: var(--space-xl);
  text-align: center;
  color: var(--color-text-on-dark);
}

.countdown-section__label {
  margin-bottom: var(--space-md);
}

.countdown__timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.countdown__value {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--color-text-hero);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__unit-label {
  margin-top: var(--space-xs);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-mute);
}

.countdown__colon {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--color-gold);
  transform: translateY(-10px);
}

.countdown-section .divider {
  margin-bottom: var(--space-lg);
}

.countdown__monogram {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.countdown__tagline {
  font-size: var(--fs-small);
  color: var(--color-text-on-dark-mute);
  margin-bottom: var(--space-xs);
}

.countdown__hashtag {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

@media (max-width: 600px) {
  .countdown-section {
    padding-block: var(--space-lg);
  }

  .countdown__timer {
    gap: var(--space-xs);
  }

  .countdown__unit {
    min-width: 52px;
  }
}


/* ==========================================================================
   SCHEDULE — "Three days of celebration" timeline
   ========================================================================== */

.schedule-page {
  padding-top: var(--nav-height);
  background: var(--color-ivory);
  min-height: 100vh;
}

.schedule {
  padding-top: clamp(2rem, 7vw, 4rem);
  padding-bottom: var(--space-xl);
}

.schedule__head {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.schedule__heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-section-heading);
  color: var(--color-text-body);
}

/* ---- Timeline ---- */

.schedule__timeline {
  position: relative;
}

.schedule__line {
  position: absolute;
  top: 8px;
  left: var(--space-md);
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(74, 64, 56, 0.14);
}

.schedule__line-fill {
  display: block;
  width: 100%;
  height: 0%;
  background: var(--color-gold);
  transition: height 0.6s var(--ease-standard);
}

.schedule__list {
  position: relative;
}

.schedule__item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: baseline;
  gap: var(--space-md);
  padding-block: var(--space-md);
  padding-left: calc(var(--space-md) + 28px);
  border-top: 1px solid rgba(74, 64, 56, 0.12);
  transition: opacity 0.7s var(--ease-standard), transform 0.7s var(--ease-standard), background-color var(--transition-fast);
}

/* Only start hidden once JS has confirmed it's running (html.js) — if
   JavaScript fails to load for any reason, content stays visible instead
   of disappearing forever. */
.js .schedule__item {
  opacity: 0;
  transform: translateY(24px);
}

.schedule__item:first-child {
  border-top: none;
}

.schedule__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.schedule__item:hover {
  background-color: rgba(184, 147, 74, 0.06);
}

/* Timeline marker dot, aligned with the vertical line */
.schedule__dot {
  position: absolute;
  left: var(--space-md);
  top: calc(var(--space-md) + 6px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-ivory);
  border: 1.5px solid var(--color-gold);
  transform: translateX(-50%);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.schedule__item.is-visible .schedule__dot {
  background: var(--color-gold);
}

.schedule__item:hover .schedule__dot {
  transform: translateX(-50%) scale(1.25);
}

.schedule__item-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding-top: 0.3rem;
}

.schedule__item-name {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-text-body);
  transition: color var(--transition-fast);
}

.schedule__item:hover .schedule__item-name {
  color: var(--color-gold);
}

.schedule__item-time {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-gold);
  font-variant-numeric: tabular-nums;
  margin-top: 0.3rem;
}

@media (max-width: 640px) {
  .schedule__item {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
    padding-left: calc(var(--space-sm) + 24px);
  }

  .schedule__line {
    left: var(--space-sm);
  }

  .schedule__dot {
    left: var(--space-sm);
  }
}

.schedule__footnote {
  margin-top: clamp(1.75rem, 5vw, 3rem);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-muted);
  text-align: center;
}


/* ==========================================================================
   VENUE DETAILS — Venue & Location card + Directions/map card
   ========================================================================== */

.venue-page {
  padding-top: var(--nav-height);
  background: var(--color-ivory);
  min-height: 100vh;
}

.venue {
  padding-block: clamp(2rem, 6vw, var(--space-xl));
}

/* Section heading — same treatment as .gallery__head so Venue and Gallery
   read as a matching pair of sections when scrolling between them. */
.venue__head {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.venue__heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-section-heading);
  color: var(--color-text-body);
}

.venue__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 980px;
}

.venue-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42, 29, 20, 0.05);
  transition: opacity 0.7s var(--ease-standard), transform 0.7s var(--ease-standard), box-shadow var(--transition-fast);
}

/* Only start hidden once JS has confirmed it's running (html.js) — if
   JavaScript fails to load for any reason, content stays visible instead
   of disappearing forever. */
.js .venue-card {
  opacity: 0;
  transform: translateY(28px);
}

.venue-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.venue-card:hover {
  box-shadow: 0 10px 32px rgba(42, 29, 20, 0.1);
}

/* ---- Card 1: Venue & Location ---- */

.venue-card:not(.venue-card--map) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.venue-card__image {
  position: relative;
  min-height: 260px;
  background: var(--color-ivory-soft);
}

.venue-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-standard);
}

.venue-card:hover .venue-card__image img {
  transform: scale(1.04);
}

/* Shown only if the image fails to load (the onerror handler on <img>
   adds the "img-error" class), so it never overlaps a real photo. */
.venue-card__image::after {
  content: 'Add venue photo at media/images/venue/venue-photo.jpg';
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.venue-card__image.img-error::after {
  display: flex;
}

.venue-card__body {
  padding: clamp(1.5rem, 4vw, var(--space-lg));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.venue-card__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--color-text-body);
  margin-bottom: 0.3rem;
}

.venue-card__address {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.venue-card__desc {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--color-text-body);
  max-width: 46ch;
}

/* ---- Card 2: Directions (map) ---- */

.venue-card--map .venue-card__body--centered {
  padding: clamp(1.5rem, 4vw, var(--space-lg));
  text-align: center;
}

.venue-card--map .venue-card__title {
  margin-bottom: var(--space-md);
}

.venue-map {
  position: relative;
  display: block;
  border-radius: calc(var(--radius-card) - 8px);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--color-ivory-soft);
}

.venue-map__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* The map is a visual preview only — pointer events pass through to the
     overlay link below, so the whole card is one predictable click target
     that opens Google Maps, rather than a pannable embedded map. */
  pointer-events: none;
}

.venue-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 29, 20, 0.18);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.venue-map:hover .venue-map__overlay,
.venue-map:focus-visible .venue-map__overlay {
  opacity: 1;
}

.venue-map__pill {
  font-family: var(--font-sans);
  font-size: var(--fs-nav-link);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ivory);
  background: var(--color-charcoal);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
}

@media (max-width: 760px) {
  .venue-card:not(.venue-card--map) {
    grid-template-columns: 1fr;
  }

  .venue-card__image {
    min-height: 220px;
  }

  .venue-map {
    aspect-ratio: 4 / 3;
  }

  /* On touch devices hover doesn't apply, so keep the pill visible so the
     click target is always obvious. */
  .venue-map__overlay {
    opacity: 1;
    background: rgba(42, 29, 20, 0.12);
  }
}


/* ==========================================================================
   GALLERY — "Memories So Far"
   ========================================================================== */

.gallery-page {
  padding-top: var(--nav-height);
  background: var(--color-ivory);
  min-height: 100vh;
}

.gallery {
  padding-block: clamp(2rem, 6vw, var(--space-xl));
}

.gallery__head {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.gallery__heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-section-heading);
  color: var(--color-text-body);
  margin-bottom: var(--space-xs);
}

.gallery__subcaption {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-gold);
}

/* ---- 3-column grid, each card sized to its own image (no cropping) ---- */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: var(--space-sm);
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-ivory-soft);
  cursor: pointer;
  transition: box-shadow 0.35s var(--ease-standard);
}

.gallery__item img,
.gallery__item video {
  display: block;
  width: 100%;
  height: auto; /* card height follows the image's own aspect ratio */
}

.gallery__item:hover {
  box-shadow: 0 10px 28px rgba(42, 29, 20, 0.16);
}

.gallery__item--video {
  position: relative;
}

.gallery__sound-toggle {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ivory);
  background: rgba(27, 23, 18, 0.55);
  border: 1px solid rgba(253, 251, 247, 0.35);
  border-radius: 50%;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.gallery__sound-toggle svg {
  width: 15px;
  height: 15px;
}

.gallery__sound-toggle:hover,
.gallery__sound-toggle[aria-pressed="true"] {
  background: rgba(184, 147, 74, 0.85);
  border-color: var(--color-gold);
}

@media (max-width: 860px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---- Hover/tap preview: the picture pops to the center of the screen ---- */

.gallery-preview {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* Always click-through — this overlay is purely visual. Letting it
     capture pointer events was what caused the earlier flicker: hovering
     the enlarged image (which visually sits on top of the grid) would
     trigger the grid photo's mouseleave, closing the preview, which
     re-exposed the grid photo, which re-triggered mouseenter, and so on. */
  pointer-events: none;
  transition: opacity 0.35s var(--ease-standard);
}

.gallery-preview.is-active {
  opacity: 1;
}

.gallery-preview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 18, 0.75);
}

.gallery-preview__stage {
  position: relative;
  max-width: min(88vw, 880px);
  max-height: 86vh;
  transform: scale(0.82);
  transition: transform 0.45s var(--ease-standard);
}

.gallery-preview.is-active .gallery-preview__stage {
  transform: scale(1);
}

.gallery-preview__media {
  display: none;
  max-width: 100%;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.gallery-preview__media.is-shown {
  display: block;
}

/* Placeholder shown if a listed photo/video file hasn't been added yet */
.gallery__item--missing {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-sm);
}

.gallery__item--missing::after {
  content: 'Photo not found — check the file path in gallery.js';
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.gallery__item--missing img {
  display: none;
}


/* ==========================================================================
   RSVP — invite header, form, Kind Words wall
   ========================================================================== */

.rsvp-page {
  padding-top: var(--nav-height);
  background: var(--color-ivory);
}

.rsvp {
  padding-block: clamp(2rem, 6vw, var(--space-xl)) var(--space-lg);
}

.rsvp__head {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.rsvp__eyebrow {
  margin-bottom: var(--space-xs);
}

.rsvp__heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-section-heading);
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
}

.rsvp__head-divider {
  max-width: 120px;
}

/* ---- Form ---- */

.rsvp__form-wrap {
  max-width: 560px;
}

.rsvp-form__field {
  margin-bottom: var(--space-md);
  text-align: left;
}

.rsvp-form__field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.rsvp-form__field input,
.rsvp-form__field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-body);
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition-fast);
}

.rsvp-form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.rsvp-form__field input:focus,
.rsvp-form__field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.rsvp-form__submit {
  width: 100%;
  margin-top: var(--space-xs);
}

.rsvp-form__confirmation {
  margin-top: var(--space-sm);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-gold);
  min-height: 1.2em;
}

/* ---- Kind Words ---- */

.kind-words {
  padding-block: var(--space-lg) var(--space-xl);
}

.kind-words__head {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.kind-words__heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
}

.kind-words__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  max-width: 980px;
  margin-inline: auto;
}

.kind-words__card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  box-shadow: 0 4px 20px rgba(42, 29, 20, 0.05);
}

.kind-words__quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-body);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

/* Quote marks are generated here rather than typed into the HTML/translation
   text, so data-i18n can swap the wording without also having to carry
   quote characters through every language entry. */
.kind-words__quote::before {
  content: "\201C";
}

.kind-words__quote::after {
  content: "\201D";
}

.kind-words__author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-card-border);
}

.kind-words__author-sub {
  display: block;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

@media (max-width: 600px) {
  .rsvp {
    padding-block: var(--space-lg) var(--space-md);
  }

  .kind-words {
    padding-block: var(--space-md) var(--space-lg);
  }
}


/* ==========================================================================
   SITE FOOTER — dark closing footer (monogram, tagline, hashtag)
   ========================================================================== */

.site-footer {
  background: var(--color-charcoal);
  padding-block: var(--space-lg);
  text-align: center;
}

.site-footer__inner .divider {
  margin-bottom: var(--space-md);
}

.site-footer__monogram {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.site-footer__tagline {
  font-size: var(--fs-small);
  color: var(--color-text-on-dark);
  margin-bottom: 0.3rem;
}

.site-footer__hashtag {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  color: var(--color-gold);
}