/* ============================================================
   Arshana & Andrei — Wedding Invitation
   Warm Editorial · Lilac × Mossy Green
   ============================================================ */

:root {
  --cream: #F6F4F0;
  --bone: #EDEAE2;
  --espresso: #20251F;
  --espresso-soft: #3E443C;
  --terracotta: #8A6AB0;       /* lilac accent (primary) */
  --terracotta-deep: #6E4E95;
  --sage: #6E8A6A;
  --sage-deep: #4E6B4B;
  --soft-white: #FBFAF7;
  --ink: #1A1F18;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --grain-opacity: 0.25;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--espresso);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Paper grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: var(--grain-opacity);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
  color: var(--espresso-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--sage-deep);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--espresso-soft);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Hand-drawn underline mark */
.mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mark svg {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -10px;
  width: 108%;
  height: 14px;
  overflow: visible;
  pointer-events: none;
}
.mark svg path {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.container { max-width: 1240px; margin: 0 auto; }

/* Sprig divider */
.sprig {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 40px 0;
  color: var(--sage-deep);
}
.sprig .line {
  flex: 0 0 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--soft-white);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(138, 106, 176, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid rgba(46, 37, 31, 0.25);
}
.btn-ghost:hover { background: rgba(46, 37, 31, 0.06); }
.btn-sm { padding: 10px 18px; font-size: 11px; }

/* Photo */
.photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2E251F;
}
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96) sepia(0.08) brightness(1.02);
  z-index: 1;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(46, 37, 31, 0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(46, 37, 31, 0.35); }

::selection { background: var(--terracotta); color: var(--soft-white); }

/* ============================================================
   Language bar
   ============================================================ */
.lang-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  display: flex;
  justify-content: center;
  padding: 10px 16px;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid rgba(46, 37, 31, 0.08);
}
.lang-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
}
.lang-btn {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--espresso-soft);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}
.lang-btn:hover { color: var(--espresso); }
.lang-btn .lang-code { font-weight: 600; letter-spacing: 0.18em; }
.lang-btn .lang-name {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-style: italic;
  color: var(--espresso-soft);
  opacity: 0.75;
}
.lang-btn.on {
  color: var(--terracotta);
  background: color-mix(in oklab, var(--terracotta) 10%, transparent);
}
.lang-btn.on .lang-name { color: var(--terracotta); opacity: 0.9; }
.lang-sep { color: var(--espresso-soft); opacity: 0.35; font-size: 12px; }

@media (max-width: 640px) {
  .lang-bar { padding: 8px 10px; }
  .lang-btn .lang-name { display: none; }
  .lang-btn { padding: 5px 10px; }
}

/* ============================================================
   Floral decorations
   ============================================================ */
.floral-deco {
  position: absolute;
  pointer-events: none;
  color: var(--terracotta);
  opacity: 0.85;
  z-index: 1;
}
.floral-hero-tl { top: 24px; right: 6%; opacity: 0.6; }
.floral-countdown {
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}
.floral-venues { top: -20px; right: 8%; opacity: 0.55; transform: rotate(12deg); }
.floral-center { display: block; margin: 0 auto 22px; color: var(--terracotta); opacity: 0.6; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  padding: 72px 40px 0;
  display: flex;
  flex-direction: column;
}
.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  padding: 28px 0 40px;
}
.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 78vh;
  padding: 14px;
  background: var(--soft-white);
  border: 1px solid rgba(46, 37, 31, 0.1);
  box-shadow:
    0 1px 2px rgba(46, 37, 31, 0.04),
    0 12px 32px rgba(46, 37, 31, 0.12);
}
/* Inner thin lilac hairline */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(138, 106, 176, 0.35);
  pointer-events: none;
  z-index: 3;
}
/* Outer subtle paper-shadow bleed — gives the matboard some depth */
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(46, 37, 31, 0.05);
  pointer-events: none;
  z-index: -1;
}
.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: 1;
}
.hero-photo img { object-position: center 40%; }

/* Decorative corner flourishes — at the matboard edge, lilac */
.hero-photo-corner {
  position: absolute;
  width: 44px;
  height: 44px;
  pointer-events: none;
  color: var(--terracotta);
  opacity: 0.85;
  z-index: 4;
}
.hero-photo-corner--tl {
  top: -12px;
  left: -12px;
}
.hero-photo-corner--br {
  bottom: -12px;
  right: -12px;
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .hero-photo-wrap { padding: 10px; }
  .hero-photo-wrap::before { inset: 4px; }
  .hero-photo-corner { width: 34px; height: 34px; }
}

.hero-type { position: relative; padding-left: 10px; }
.hero-eyebrow { margin-bottom: 40px; }

.hero-names {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 9vw, 136px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero-names .name-line { display: block; }
.hero-names .name-a { transform: translateX(-4px); }
.hero-names .name-b {
  transform: translateX(40px);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-names .amp-wrap {
  display: inline-block;
  margin: -8px 0 -12px 40px;
  color: var(--terracotta);
  transform: rotate(-6deg);
  line-height: 0;
}

.hero-meta {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 44px 0 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(46, 37, 31, 0.15);
  max-width: 460px;
}
.hero-meta-col { flex: 1; }
.hero-meta-col .label { display: block; margin-bottom: 6px; }
.hero-meta-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-meta-val .serif-num {
  font-size: 26px;
  color: var(--terracotta);
}
.hero-meta-val em { font-style: italic; font-weight: 300; color: var(--espresso-soft); }
.hero-meta-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(46, 37, 31, 0.15);
}

.hero-invite {
  font-size: 19px;
  max-width: 440px;
  margin-bottom: 36px;
  color: var(--espresso-soft);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px 0;
  border-top: 1px solid rgba(46, 37, 31, 0.12);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--espresso-soft);
}
.hero-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-footer-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
}
.hero-footer-center { flex-direction: column; gap: 8px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 20px; }
  .hero-photo-wrap { max-height: 50vh; }
  .hero-names .name-b { transform: translateX(20px); }
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  position: relative;
  padding: 70px 40px;
  background: var(--bone);
  border-top: 1px solid rgba(46, 37, 31, 0.08);
  border-bottom: 1px solid rgba(46, 37, 31, 0.08);
}
.countdown-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: center;
}
.countdown-prefix .label { display: block; margin-bottom: 8px; }
.countdown-lede {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.countdown-lede em { color: var(--terracotta); font-style: italic; }
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.countdown-cell {
  padding: 8px 18px;
  border-left: 1px solid rgba(46, 37, 31, 0.15);
  text-align: center;
}
.countdown-cell:first-child { border-left: none; }
.countdown-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  font-feature-settings: "tnum";
}
.countdown-lab {
  display: block;
  margin-top: 10px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--espresso-soft);
  font-family: var(--sans);
}
.countdown-suffix { color: var(--sage-deep); }

@media (max-width: 900px) {
  .countdown-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .countdown-suffix { display: flex; justify-content: center; }
}

/* ============================================================
   STORY
   ============================================================ */
.story { padding: 90px 0; background: var(--cream); }
.story-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding: 0 40px;
  margin-bottom: 60px;
}
.story-title {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.story-title em { font-style: italic; color: var(--terracotta); }
.story-header-left .eyebrow { margin-bottom: 20px; display: inline-flex; }
.story-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.story-nav { display: flex; gap: 8px; }
.story-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(46, 37, 31, 0.2);
  background: var(--soft-white);
  color: var(--espresso);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.story-arrow:hover {
  background: var(--espresso);
  color: var(--soft-white);
  border-color: var(--espresso);
}

.story-track-wrap { position: relative; overflow: hidden; }
.story-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 20px 0 40px;
  scrollbar-width: none;
}
.story-track::-webkit-scrollbar { display: none; }
.story-spacer-l,
.story-spacer-r { flex: 0 0 calc((100vw - 1240px) / 2 + 40px); }
@media (max-width: 1280px) {
  .story-spacer-l, .story-spacer-r { flex: 0 0 40px; }
}

.story-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--soft-white);
  padding: 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  box-shadow: 0 2px 12px rgba(46, 37, 31, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(46, 37, 31, 0.08);
}
.story-card:nth-child(odd) { transform: translateY(20px); }
.story-card:nth-child(odd):hover { transform: translateY(16px); }

.story-year-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.story-year {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--terracotta);
}
.story-month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--espresso-soft);
}
.story-photo { aspect-ratio: 4/3; border-radius: 3px; }
.story-card-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
}
.story-card-text { font-size: 15px; color: var(--espresso-soft); line-height: 1.6; }

.story-progress-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px 0;
  max-width: 1240px;
  margin: 0 auto;
}
.story-progress-track {
  flex: 1;
  height: 1px;
  background: rgba(46, 37, 31, 0.15);
  overflow: hidden;
}
.story-progress-fill {
  height: 100%;
  width: 0;
  background: var(--terracotta);
  transition: width 0.15s ease;
}

@media (max-width: 760px) {
  .story-header { grid-template-columns: 1fr; gap: 24px; }
  .story-header-right { align-items: flex-start; }
  .story-card { flex: 0 0 280px; padding: 18px; }
  .story-year { font-size: 34px; }
}

/* ============================================================
   DAY
   ============================================================ */
.day { padding: 90px 40px; background: var(--cream); }
.day-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.day-header .eyebrow { margin-bottom: 24px; }
.day-title {
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.day-title em { font-style: italic; color: var(--terracotta); }
.day-sub { font-size: 19px; color: var(--espresso-soft); }

.day-timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.day-rail {
  position: absolute;
  left: 160px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(46, 37, 31, 0.25) 0 4px,
    transparent 4px 8px
  );
}

.day-row {
  display: grid;
  grid-template-columns: 140px 40px 1fr;
  gap: 20px;
  padding: 28px 0;
  align-items: start;
  position: relative;
}
.day-time { text-align: right; padding-right: 12px; }
.day-time-num {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  font-feature-settings: "tnum";
}
.day-time-label { display: block; margin-top: 6px; }

.day-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--soft-white);
  border: 1px solid rgba(46, 37, 31, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--cream);
}
.day-row--terracotta .day-dot {
  background: var(--terracotta);
  color: var(--soft-white);
  border-color: var(--terracotta);
}
.day-row--sage .day-dot {
  background: var(--sage);
  color: var(--soft-white);
  border-color: var(--sage);
}

.day-content { padding-top: 4px; }
.day-row-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.day-row-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.day-venue {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage-deep);
}
.day-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso-soft);
  max-width: 540px;
}

@media (max-width: 720px) {
  .day-timeline { padding-left: 0; }
  .day-rail { left: 20px; }
  .day-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .day-time {
    grid-column: 1 / -1;
    text-align: left;
    padding-right: 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-left: 60px;
  }
  .day-time-num { font-size: 22px; }
  .day-time-label { margin-top: 0; }
  .day-dot { grid-column: 1; }
  .day-content { grid-column: 2; padding-top: 0; }
}

/* ============================================================
   VENUES
   ============================================================ */
.venues { padding: 90px 40px; background: var(--bone); position: relative; }
.venues-header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.venues-title {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-top: 20px;
}
.venues-title em { font-style: italic; color: var(--terracotta); }

.venues-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .venues-split { grid-template-columns: 1fr; }
}

.venue-block {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 6px;
  border: 1px solid rgba(46, 37, 31, 0.08);
  display: flex;
  flex-direction: column;
}
.venue-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.venue-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  letter-spacing: -0.02em;
}
.venue-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.venue-addr {
  font-size: 13px;
  color: var(--espresso-soft);
  margin-bottom: 18px;
}
.venue-map-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(46, 37, 31, 0.1);
  background: var(--bone);
}
.venue-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(0.96);
}
.venue-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(46, 37, 31, 0.1);
  margin-bottom: 16px;
}
.venue-meta .label { display: block; }
.venue-meta p {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 4px;
}

.venues-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(46, 37, 31, 0.12);
}
@media (max-width: 720px) {
  .venues-facts { grid-template-columns: 1fr; }
}
.fact .label { display: block; margin-bottom: 10px; }
.fact p {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 70px 40px 32px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.88  0 0 0 0.1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.site-footer > * { position: relative; z-index: 1; }
.site-footer .eyebrow,
.site-footer .label { color: rgba(245, 241, 234, 0.6); }

.footer-signoff { display: flex; justify-content: center; margin-bottom: 40px; }
.signoff-svg text { fill: var(--cream); }

.site-footer .sprig { color: rgba(155, 168, 143, 0.8); }
.site-footer .sprig .line { background: rgba(245, 241, 234, 0.2); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  border-bottom: 1px solid rgba(245, 241, 234, 0.12);
  margin-bottom: 28px;
}
.footer-grid > div > .label {
  display: block;
  margin-bottom: 12px;
}
.footer-names {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.015em;
}
.footer-names em { color: var(--terracotta); font-style: italic; }
.footer-grid p {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 241, 234, 0.85);
}
.footer-fine {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.45);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-fine { flex-direction: column; gap: 8px; }
}

@media (max-width: 720px) {
  .hero,
  .countdown,
  .day,
  .venues,
  .site-footer { padding-left: 22px; padding-right: 22px; }
}
