/* ════════════════════════════════════════════════════════════════════════
   Holiday Christmas Party Flyer — "Merry & Bright"
   · template/creative/html/party-christmas-flyer-merry-and-bright
   Festive-poster aesthetic: deep evergreen night, string lights, falling
   snow, gold serif lettering. Content panels warm up to cream so the RSVP
   form and reading stay comfortable.
   ────────────────────────────────────────────────────────────────────────
   Design tokens — edit the palette here to re-skin the whole poster.
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* palette */
  --night:       #0C2F24;   /* page background — deep evergreen */
  --evergreen:   #17543B;   /* poster face */
  --evergreen-2: #113F2C;   /* deeper poster gradient stop */
  --pine:        #2E6B4F;   /* leaves / accents */
  --cranberry:   #C23A2B;   /* primary red */
  --cranberry-d: #9C2B20;   /* pressed red */
  --gold:        #EFC464;   /* gold */
  --gold-d:      #D9A441;   /* deep gold */
  --cream:       #FBF3E2;   /* warm cream */
  --cream-soft:  #FDFAF1;   /* card surface */
  --ink:         #1E2B24;   /* near-black green */
  --ink-soft:    #66746B;   /* muted */
  --line:        rgba(30, 43, 36, .18);
  --error:       #B3261E;

  /* type */
  --display: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --sans:    system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* geometry */
  --radius: 18px;
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, .28);
  --shadow-hard: 6px 6px 0 rgba(0, 0, 0, .34);
}

/* ── reset & base ─────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { height: 100%; }

body {
  margin: 0;
  height: 100%;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--night);
  -webkit-font-smoothing: antialiased;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/* JS-enabled app shell: a single-viewport (100dvh) layout where only the
   active panel scrolls internally. Without JS everything stacks and the
   page scrolls normally (progressive enhancement). */
.js body {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.js .shell-head { flex: 0 0 auto; }
.js .shell-view { flex: 1 1 auto; min-height: 0; position: relative; overflow: hidden; }
.js .panel { display: none; }
.js .panel.is-active { display: block; }
.js .panel[hidden] { display: none; }

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

/* ── accessibility helpers ────────────────────────────────────────────── */

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid var(--ink);
  transform: translateY(-200%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ── shell header ─────────────────────────────────────────────────────── */

.shell-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  padding-top: calc(10px + env(safe-area-inset-top, 0px));
  background: var(--evergreen-2);
  border-bottom: 2px solid var(--gold-d);
  position: relative;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--cream);
  white-space: nowrap;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  background: var(--cranberry);
  color: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.shell-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shell-nav::-webkit-scrollbar { display: none; }

.nav-link {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-soft);
  border: 2px solid transparent;
  border-radius: 999px;
}
.nav-link:hover { color: var(--gold); }
.nav-link.is-active {
  background: var(--gold);
  color: var(--evergreen-2);
  border-color: var(--gold);
}
.nav-link.nav-hidden { display: none; }

/* ── Mobile menu button (shown only on narrow screens; without JS it never
      appears, so no-JS users keep the anchor pill row) ──────────────── */
.head-menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 9px 16px;
  font: inherit;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-soft);
  background: transparent;
  border: 2px solid var(--gold-d);
  border-radius: 999px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.head-menu-btn svg { width: 16px; height: 16px; flex: none; }
.head-menu-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ── Full-screen mobile menu overlay (built by main.js from the pills) ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(165deg, var(--evergreen-2) 0%, var(--night) 72%);
  color: var(--cream-soft);
  padding: calc(20px + env(safe-area-inset-top, 0px)) 20px calc(28px + env(safe-area-inset-bottom, 0px));
}
.menu-overlay.is-open { display: block; }
.menu-overlay-inner { max-width: 480px; margin: 0 auto; }
.menu-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.menu-overlay-brand { font-family: var(--display); font-size: 18px; color: var(--gold); }
.menu-overlay-close {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold-d);
  background: transparent;
  color: var(--cream-soft);
  font-size: 15px;
  cursor: pointer;
}
.menu-overlay-close:hover { background: var(--cranberry); border-color: var(--cranberry); color: var(--cream); }
.menu-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--gold-d);
  border-radius: 12px;
  background: rgba(253, 250, 241, .06);
  color: var(--cream-soft);
  font-family: var(--display);
  font-size: 17px;
  text-align: left;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.menu-item:hover,
.menu-item:focus-visible {
  background: var(--cranberry);
  border-color: var(--cranberry);
  color: var(--cream);
}
.menu-overlay-foot {
  margin: 26px 0 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-d);
}

/* ── cover sky: stars + falling snow (decorative, cover only) ─────────── */

.js .cover-sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 12;                      /* above panels, below the header */
  opacity: 0;
  transition: opacity .5s ease;
}
.js .cover-sky.is-cover { opacity: 1; }

.star {
  position: absolute;
  top: 8%;
  left: var(--x);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 1px rgba(239, 196, 100, .9);
  animation: twinkle var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}
@keyframes twinkle {
  0%, 100% { opacity: .15; transform: scale(.7); }
  50%      { opacity: .95; transform: scale(1.15); }
}

.flake {
  position: absolute;
  top: -14px;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(255, 253, 246, .85);
  box-shadow: 0 0 6px rgba(255, 255, 255, .35);
  animation: snow-fall var(--d) linear infinite;
  animation-delay: var(--delay);
}
@keyframes snow-fall {
  0%   { transform: translate3d(0, -20px, 0) rotate(0deg); opacity: 0; }
  8%   { opacity: var(--flake-op, .9); }
  90%  { opacity: var(--flake-op, .9); }
  100% { transform: translate3d(38px, 108vh, 0) rotate(240deg); opacity: 0; }
}

/* ── panels ───────────────────────────────────────────────────────────── */

.panel { padding: 28px 16px; }

/* content panels warm up to cream paper with a faint snow-dot texture;
   the cover, flyer and video panels share the same bright paper so the
   dark poster card reads against a bright page */
.panel[data-panel="cover"],
.panel[data-panel="cheer"],
.panel[data-panel="moments"],
.panel[data-panel="flyer"],
.panel[data-panel="film"],
.panel[data-panel="free"],
.panel[data-panel="info"],
.panel[data-panel="rsvp"],
.panel[data-panel="guestbook"] {
  background-color: var(--cream);
  background-image: radial-gradient(rgba(194, 58, 43, .10) 1px, transparent 1.3px);
  background-size: 24px 24px;
}

.js .panel {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
}
.js .panel:focus { outline: none; }

.panel-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

/* ── section headings ─────────────────────────────────────────────────── */

.section-head { margin-bottom: 18px; }

.kicker {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cranberry-d);
}
.kicker::before { content: "✦ "; color: var(--gold-d); }

.section-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1.05;
  letter-spacing: .01em;
  color: var(--evergreen-2);
}

.section-desc { margin: 0; color: var(--ink-soft); font-size: 16px; }

.sub-title {
  margin: 32px 0 14px;
  font-family: var(--display);
  font-size: 19px;
  color: var(--evergreen-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-title::after {
  content: "";
  flex: 1;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--gold-d) 0 16px, transparent 16px 26px);
}

/* snowflake divider */
.festive-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--gold-d);
  font-size: 15px;
}
.festive-divider::before,
.festive-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-d));
}
.festive-divider::after { background: linear-gradient(90deg, var(--gold-d), transparent); }

/* ── Cover / poster ───────────────────────────────────────────────────── */

.poster {
  position: relative;
  background: linear-gradient(165deg, var(--evergreen) 0%, var(--evergreen-2) 78%);
  border: 3px solid var(--gold-d);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), var(--shadow-hard);
  padding: clamp(22px, 5vw, 42px) clamp(20px, 5vw, 44px) clamp(26px, 5vw, 44px);
  overflow: hidden;
}

/* soft firelight glow inside the poster */
.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% 118%, rgba(239, 196, 100, .22), transparent 60%),
    radial-gradient(90% 60% at 12% -10%, rgba(239, 196, 100, .10), transparent 55%);
}

/* optional photo backdrop — the poster becomes a real flyer with a photo
   behind a dark evergreen scrim. Delete the img + scrim in index.html to
   go back to the pure illustrated poster. */
.poster-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poster-photo-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 47, 36, .9) 0%, rgba(12, 47, 36, .64) 48%, rgba(23, 84, 59, .42) 100%);
}
/* if the backdrop photo is missing, hide it + its scrim so the poster falls
   back to its evergreen illustrated face */
.poster-photo.img-missing { display: none; }
.poster-photo.img-missing + .poster-photo-scrim { display: none; }

/* string lights across the top of the poster */
.lights {
  position: relative;
  height: 34px;
  margin: -14px -4px 2px;
  z-index: 2;
}
.wire {
  position: absolute;
  top: 8px; left: 0; right: 0;
  height: 2px;
  background: rgba(253, 250, 241, .55);
  border-radius: 2px;
}
.bulb {
  position: absolute;
  top: 9px;
  left: var(--x);
  width: 13px;
  height: var(--h);
  transform-origin: top center;
  background: radial-gradient(circle at 38% 30%, rgba(255, 255, 255, .75), var(--c) 58%);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  box-shadow: 0 0 9px 1px var(--c);
  animation: bulb-glow 2.8s ease-in-out infinite;
  animation-delay: var(--delay);
}
.bulb::before {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  width: 7px; height: 7px;
  transform: translateX(-50%);
  background: var(--gold-d);
  border-radius: 3px 3px 1px 1px;
}
@keyframes bulb-glow {
  0%, 100% { opacity: .55; filter: brightness(.85); }
  50%      { opacity: 1;   filter: brightness(1.3); }
}

.poster-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.guest-greeting {
  margin: 0;
  font-weight: 800;
  font-size: 15px;
  color: var(--gold);
}
.private-note {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  color: var(--cream-soft);
  opacity: .85;
}

.stamp {
  padding: 5px 14px;
  border: 3px dashed var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.invite-line {
  position: relative;
  z-index: 2;
  margin: 0 0 4px;
  font-size: clamp(14px, 2.4vw, 17px);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  opacity: .92;
}

.poster-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 14vw, 118px);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--cream);
  text-shadow: 0 3px 0 rgba(0, 0, 0, .25), 0 0 34px rgba(239, 196, 100, .28);
  overflow-wrap: break-word;
}
.amp { color: var(--gold); }
.title-accent {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 3px 0 rgba(0, 0, 0, .22), 0 0 40px rgba(239, 196, 100, .5);
}

.poster-sub {
  position: relative;
  z-index: 2;
  margin: 18px 0 20px;
  font-size: clamp(16px, 2.6vw, 19px);
  font-weight: 600;
  color: var(--cream-soft);
  max-width: 36ch;
}

/* marquee ribbon */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--cranberry);
  color: var(--cream);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-1.2deg);
  margin: 0 -8px 24px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .25);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-items, .marquee-seed {
  flex: 0 0 auto;
  padding: 9px 0;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-seed { animation: inherit; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* when / where row */
.poster-when {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* hanging ornament date medallion */
.ornament-date {
  position: relative;
  flex: 0 0 auto;
  width: clamp(132px, 34vw, 170px);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}
.or-thread {
  width: 2px;
  height: 16px;
  background: rgba(253, 250, 241, .6);
}
.or-cap {
  width: 20px;
  height: 10px;
  background: linear-gradient(180deg, var(--gold), var(--gold-d));
  border-radius: 4px 4px 6px 6px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .35);
}
.or-body {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50% 50% 48% 48% / 52% 52% 46% 46%;
  background: radial-gradient(circle at 34% 28%, #E96A50, var(--cranberry) 52%, #8E2419 100%);
  border: 3px solid var(--gold-d);
  box-shadow: inset 0 -6px 14px rgba(0, 0, 0, .3), 0 8px 16px rgba(0, 0, 0, .35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 1.02;
  padding-top: 4px;
}
.or-top, .or-bot { font-size: 13px; letter-spacing: .2em; color: var(--gold); }
.or-day { font-size: clamp(32px, 8.5vw, 48px); color: var(--cream); line-height: 1.05; }

.when-copy { flex: 1 1 220px; min-width: 210px; }

.when-line {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 0 0 11px;
  font-weight: 700;
  font-size: 16px;
  color: var(--cream-soft);
}
.when-label {
  flex: 0 0 58px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.when-line .event-date, .when-line .event-time,
.when-line .venue-name, .when-line .dress-note { overflow-wrap: anywhere; }
/* cover when/where values stay light on the dark poster — the darker
   .event-time / .venue-name colors below belong to the cream info panel */
.poster-when .when-line .event-time,
.poster-when .when-line .venue-name {
  color: var(--cream);
  text-shadow: 0 1px 2px rgba(8, 28, 19, .55);
}
.poster-when .when-line .event-time { font-size: 16px; }

.poster-cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* optional "view the backdrop photo" chip — opens the cover photo
   full-size in the built-in lightbox; removed by JS when the backdrop
   photo is deleted or missing */
.poster-photo-open {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 2px solid rgba(253, 250, 241, .5);
  border-radius: 999px;
  background: rgba(12, 47, 36, .55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  color: var(--cream-soft);
  font: inherit;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.poster-photo-open svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.poster-photo-open:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--evergreen-2);
}
.poster-photo-open:hover svg { color: var(--evergreen-2); }

/* ── buttons ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, .35);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(0, 0, 0, .35); }
.btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 rgba(0, 0, 0, .35); }

.btn-primary { background: var(--cranberry); color: var(--cream); border-color: var(--cream); }
.btn-primary:hover { background: var(--cranberry-d); }

.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-ghost:hover { background: rgba(239, 196, 100, .16); }

/* on cream content panels the ghost button reads better with evergreen text.
   Scoped to non-cover panels so the cover's gold ghost button keeps its
   gold-on-dark-green contrast. */
.panel[data-panel="cheer"] .btn-ghost,
.panel[data-panel="moments"] .btn-ghost,
.panel[data-panel="flyer"] .btn-ghost,
.panel[data-panel="film"] .btn-ghost,
.panel[data-panel="info"] .btn-ghost,
.panel[data-panel="rsvp"] .btn-ghost,
.panel[data-panel="guestbook"] .btn-ghost {
  color: var(--evergreen-2);
  border-color: var(--evergreen-2);
}
.panel[data-panel="cheer"] .btn-ghost:hover,
.panel[data-panel="moments"] .btn-ghost:hover,
.panel[data-panel="flyer"] .btn-ghost:hover,
.panel[data-panel="film"] .btn-ghost:hover,
.panel[data-panel="info"] .btn-ghost:hover,
.panel[data-panel="rsvp"] .btn-ghost:hover,
.panel[data-panel="guestbook"] .btn-ghost:hover {
  background: rgba(23, 84, 59, .08);
}

/* ── feature cards (photo highlights) ─────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 20px;
}

.feature-card {
  margin: 0;
  background: var(--cream-soft);
  border: 3px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(30, 43, 36, .8);
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(30, 43, 36, .8); }

.feature-card figcaption { padding: 14px 16px 16px; }

/* clickable photo button shared by every photo slot (opens the lightbox) */
.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--evergreen-2);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-open img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

/* feature highlight cards: 4:3 photo above the caption */
.feature-card .gallery-open {
  aspect-ratio: 4 / 3;
  border-bottom: 3px solid var(--ink);
}
.feature-card:hover .gallery-open img { transform: scale(1.05); }

/* graceful placeholder when a photo is missing/not yet uploaded */
.gallery-open.media-missing {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, var(--evergreen-2) 0 14px, #174F39 14px 28px);
}
.gallery-open.media-missing::after {
  content: "❄";
  font-size: 44px;
  color: var(--gold);
  opacity: .85;
}
.gallery-open .img-missing { display: none; }

.feature-tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-name { margin: 0 0 6px; font-family: var(--display); font-size: 18px; color: var(--evergreen-2); }
.feature-desc { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ── moments gallery (polaroid photo wall) ────────────────────────────── */

.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 22px;
}

.moment-card {
  margin: 0;
  background: var(--cream-soft);
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 10px 10px 12px;
  box-shadow: 4px 4px 0 rgba(30, 43, 36, .8);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .18s ease, box-shadow .18s ease;
}
.moment-card:nth-child(odd)  { --tilt: -1.2deg; }
.moment-card:nth-child(even) { --tilt: 1.4deg; }
.moment-card:hover { transform: translate(-2px, -2px) rotate(0deg); box-shadow: 6px 6px 0 rgba(30, 43, 36, .8); }

/* polaroid photo button (opens the built-in lightbox) */
.moment-card .gallery-open {
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: 4px;
}
.moment-card:hover .gallery-open img { transform: scale(1.05); }
.moment-card:focus-within { outline: 3px solid var(--gold); outline-offset: 2px; }

.moment-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 4px 2px;
}
.moment-tag {
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cranberry-d);
}
.moment-label {
  min-width: 0;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.25;
  color: var(--evergreen-2);
  text-align: right;
}

.moments-more { margin: 30px 0 0; text-align: center; }

/* ── The Flyer: optional showcase for an already-designed flyer/banner ── */
.flyer-figure {
  margin: 0 auto;
  max-width: 400px;
  background: var(--cream-soft);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 12px 12px 14px;
  box-shadow: 4px 4px 0 rgba(30, 43, 36, .8);
  transform: rotate(-1deg);
  transition: transform .18s ease, box-shadow .18s ease;
}
.flyer-figure:hover { transform: translate(-2px, -2px) rotate(0deg); box-shadow: 6px 6px 0 rgba(30, 43, 36, .8); }
.flyer-figure .gallery-open { aspect-ratio: 4 / 5; border: 2px solid var(--ink); border-radius: 6px; }
.flyer-figure:hover .gallery-open img { transform: scale(1.04); }
.flyer-figure:focus-within { outline: 3px solid var(--gold); outline-offset: 2px; }
.flyer-cap {
  margin: 0;
  padding: 12px 4px 2px;
  text-align: center;
  font-family: var(--display);
  font-size: 15px;
  color: var(--evergreen-2);
}

/* ── Video: optional embed (paste a URL) ─────────────────────────────── */
.film-figure { margin: 0; }
.film-embed {
  position: relative;
  width: 100%;
  /* cap by height so a tall phone screen never inflates the video; the
     16/9 ratio is preserved (width caps first on phones) */
  max-width: calc(56vh * 16 / 9);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(30, 43, 36, .8);
  /* warm evergreen fallback while the embed loads — never looks broken */
  background:
    radial-gradient(circle at 50% 40%, rgba(239, 196, 100, .16), transparent 60%),
    linear-gradient(165deg, var(--evergreen) 0%, var(--evergreen-2) 62%, var(--night) 100%);
}
.film-embed iframe,
.film-embed video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.film-cap {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.film-open { margin: 16px 0 0; text-align: center; }
.film-open a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 2px solid var(--evergreen-2);
  border-radius: 999px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--evergreen-2);
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.film-open a:hover { background: var(--evergreen-2); color: var(--cream); }

/* ── Lightbox: full-screen photo viewer (built by main.js) ────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  background: rgba(8, 28, 19, .94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(92vw, 880px);
  max-height: 76vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(239, 196, 100, .5);
  box-shadow: 0 34px 90px -30px rgba(0, 0, 0, .85);
  cursor: zoom-in;
  transition: transform .25s ease;
}
/* zoom state: the photo scales 2× and the viewer becomes a scrollable pane
   so guests can pan around — click the photo (or the zoom button) toggles,
   click the dark backdrop to close */
.lightbox.is-zoomed {
  align-items: flex-start;
  justify-content: flex-start;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.lightbox.is-zoomed img {
  max-width: none;
  max-height: none;
  transform: scale(2);
  transform-origin: 0 0;
  align-self: flex-start;
  cursor: zoom-out;
}
.lightbox-cap,
.lightbox-hint,
.lightbox-original { align-self: center; }
.lightbox-cap {
  margin: 14px 0 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.lightbox-hint {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253, 250, 241, .55);
  text-align: center;
}
.lightbox-original {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 14px;
  border: 2px solid var(--gold-d);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.lightbox-original:hover { background: var(--gold); color: var(--night); }
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-zoom {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(239, 196, 100, .6);
  border-radius: 50%;
  background: rgba(12, 47, 36, .8);
  color: var(--cream);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover, .lightbox-zoom:hover {
  background: var(--gold);
  color: var(--night);
}
.lightbox-close { top: calc(14px + env(safe-area-inset-top, 0px)); right: 14px; }
.lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-zoom { bottom: calc(14px + env(safe-area-inset-bottom, 0px)); right: 14px; }
.lightbox-zoom svg { width: 19px; height: 19px; }
.lightbox-prev.is-hidden, .lightbox-next.is-hidden { display: none; }
@media (max-width: 560px) {
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ── ornament bullet list ─────────────────────────────────────────────── */

.ornament-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px 18px;
}
.ornament-list-tight { grid-template-columns: 1fr; }

.ornament-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  background: var(--cream-soft);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 2px 2px 0 rgba(30, 43, 36, .65);
  font-weight: 700;
  font-size: 14.5px;
}

/* tiny hanging-ornament bullet */
.ornament-dot {
  flex: 0 0 auto;
  position: relative;
  margin-top: 6px;
  width: 15px;
  height: 16px;
  border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
  background: radial-gradient(circle at 35% 30%, #E96A50, var(--cranberry) 55%, #8E2419 100%);
  border: 2px solid var(--gold-d);
}
.ornament-dot::before {
  content: "";
  position: absolute;
  top: -5px; left: 50%;
  width: 6px; height: 5px;
  transform: translateX(-50%);
  background: var(--gold-d);
  border-radius: 2px 2px 1px 1px;
}
.ornament-item:nth-child(3n+2) .ornament-dot { background: radial-gradient(circle at 35% 30%, #7FC39A, var(--pine) 55%, #1D5338 100%); }
.ornament-item:nth-child(3n)   .ornament-dot { background: radial-gradient(circle at 35% 30%, #FFE9AE, var(--gold) 55%, #C08A2E 100%); }

.ornament-text { line-height: 1.42; }

/* ── note card ────────────────────────────────────────────────────────── */

.note-card {
  margin-top: 26px;
  padding: 16px 18px;
  background: linear-gradient(160deg, var(--evergreen), var(--evergreen-2));
  color: var(--cream-soft);
  border: 3px solid var(--gold-d);
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(30, 43, 36, .8);
}
.note-title {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.note-text { margin: 0; font-size: 14.5px; }

/* ── info: events, venue, organizers ──────────────────────────────────── */

.event-list { display: grid; gap: 16px; }

.event-entry {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream-soft);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 3px 3px 0 rgba(30, 43, 36, .8);
  padding: 14px 16px;
}

.event-badge {
  flex: 0 0 auto;
  width: 74px;
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--cranberry);
  border: 3px solid var(--gold-d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 1;
  color: var(--cream);
  transform: rotate(-3deg);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .18);
}
.event-day   { font-size: 12px; letter-spacing: .14em; color: var(--gold); }
.event-date  { font-size: 30px; }
.event-month { font-size: 12px; letter-spacing: .14em; }

.event-detail { min-width: 0; }
.event-title { margin: 0 0 4px; font-family: var(--display); font-size: 18px; color: var(--evergreen-2); }
.event-time  { margin: 0 0 2px; font-weight: 800; color: var(--cranberry-d); font-size: 15px; }
.event-note  { margin: 0; color: var(--ink-soft); font-size: 14px; }

.venue-card {
  margin-top: 22px;
  padding: 18px;
  background: var(--cream-soft);
  border: 3px dashed var(--evergreen);
  border-radius: 14px;
}
.venue-name { margin: 0 0 4px; font-family: var(--display); font-size: 20px; color: var(--evergreen-2); }
.venue-address { margin: 0 0 12px; color: var(--ink-soft); font-size: 14.5px; }

.venue-tips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.venue-tip { padding-left: 24px; position: relative; font-size: 14.5px; }
.venue-tip::before {
  content: "❄";
  position: absolute;
  left: 0;
  color: var(--cranberry);
  font-size: 12px;
  top: 1px;
}

.organizer-list { display: grid; gap: 12px; }

.organizer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-soft);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 2px 2px 0 rgba(30, 43, 36, .65);
  padding: 12px 14px;
}
.organizer-avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cranberry);
  color: var(--gold);
  border: 2px solid var(--gold-d);
  display: inline-grid;
  place-items: center;
  font-size: 17px;
}
.organizer-copy { min-width: 0; }
.organizer-name { margin: 0; font-weight: 900; font-size: 15px; }
.organizer-role { margin: 0; color: var(--ink-soft); font-size: 13.5px; }

/* ── corner holly sprigs (decorative) ─────────────────────────────────── */

.holly {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: .9;
}
.holly svg { display: block; }
.holly-l { bottom: -2px; left: -4px; }
.holly-r { bottom: -2px; right: -4px; }

/* ── RSVP form ────────────────────────────────────────────────────────── */

.rsvp-card {
  background: var(--cream-soft);
  border: 3px dashed var(--cranberry);
  border-radius: 16px;
  padding: clamp(18px, 4vw, 28px);
  box-shadow: 4px 4px 0 rgba(30, 43, 36, .6);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px 18px;
}

.form-group { margin-bottom: 2px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .02em;
  color: var(--evergreen-2);
}

.form-control {
  width: 100%;
  padding: 11px 13px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--evergreen);
  box-shadow: 0 0 0 3px rgba(46, 107, 79, .3);
  background: var(--cream-soft);
}
.form-control::placeholder { color: var(--ink-soft); opacity: .8; }

textarea.form-control { resize: vertical; min-height: 64px; }

.error {
  display: block;
  min-height: 1.15em;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--error);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.loading, .loading-guestbook {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.form-note { margin: 14px 0 0; font-size: 13px; color: var(--ink-soft); }

/* injected "thank you" state from the platform's rsvp script */
.thank-you-message {
  text-align: center;
  padding: 26px 12px;
}
.thank-you-message h3 { margin: 0 0 8px; font-family: var(--display); font-size: 22px; color: var(--evergreen-2); }
.thank-you-message p { margin: 0; color: var(--ink-soft); }
.thank-you-message small { display: block; margin-top: 14px; color: var(--ink-soft); font-size: 12.5px; max-width: 34ch; margin-inline: auto; }

/* ── guestbook (mount point — the platform injects the markup) ────────── */

.guestbook-body { min-height: 40px; }

.guestbook-form { display: block; }

#guestbookForm { display: grid; gap: 14px; }

#guestbookForm textarea.form-control { min-height: 84px; }

#guestbookForm button[type="submit"] {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--evergreen);
  color: var(--cream);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(30, 43, 36, .7);
}
#guestbookForm button[type="submit"]:hover { background: var(--evergreen-2); }

.guestbook-chapta { margin: 2px 0; }

.guestbook-wrap { margin-top: 26px; display: grid; gap: 12px; }

.guestbook-entry {
  background: var(--cream-soft);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 2px 2px 0 rgba(30, 43, 36, .65);
  padding: 13px 15px;
}
.guestbook-entry h5 {
  margin: 0;
  font-family: var(--display);
  font-size: 15px;
  color: var(--evergreen-2);
}
.guestbook-entry p { margin: 6px 0 4px; font-size: 14.5px; }
.guestbook-entry small { color: var(--ink-soft); font-size: 12.5px; }

.more-guestbook-wrap { text-align: center; margin-top: 16px; }

#load-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--cream-soft);
  color: var(--evergreen-2);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(30, 43, 36, .7);
}
#load-more:hover { background: var(--cream); }

/* ── free page (optional, host-filled) ───────────────────────────────── */

.free-blocks { display: grid; gap: 24px; }

/* one repeatable free block: title + free text + optional photo */
.free-block {
  margin: 0;
  background: var(--cream-soft);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 4px 4px 0 rgba(30, 43, 36, .8);
  transition: transform .18s ease, box-shadow .18s ease;
}
.free-block:nth-child(odd)  { transform: rotate(-.35deg); }
.free-block:nth-child(even) { transform: rotate(.35deg); }
.free-block:hover { transform: translate(-2px, -2px) rotate(0deg); box-shadow: 6px 6px 0 rgba(30, 43, 36, .8); }

/* optional photo — opens in the built-in lightbox like every photo slot */
.free-media { margin: 0 0 16px; }
.free-media .gallery-open {
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: 10px;
}
.free-media:hover .gallery-open img { transform: scale(1.05); }
.free-media:focus-within { outline: 3px solid var(--gold); outline-offset: 2px; }

.free-title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--evergreen-2);
}
.free-title::before { content: "✦ "; color: var(--gold-d); }
.free-content { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink); white-space: pre-line; }

/* ── footer brand placeholder (platform swaps the text/logo) ──────────── */

.app-footer {
  display: block;
  padding: 18px 18px 30px;
  text-align: center;
}
/* in the app shell main.js tucks it into the last live panel */
.js .app-footer { display: none; }
.js .panel .app-footer {
  display: block;
  margin-top: 34px;
  padding: 16px 0 4px;
  border-top: 2px dashed var(--gold-d);
  text-align: center;
}
.footer-brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-brand-mark { color: var(--gold-d); }

/* ── full-width powered-by brand strip (Free Powered By field overrides) ── */

.powered-by {
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  background: var(--evergreen-2);
  border-top: 2px solid var(--gold-d);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.powered-by .link-footer { color: var(--gold); }
/* in the JS shell the strip becomes the fixed-height flex child at the
   bottom of the viewport (below the scrolling panel) */
.js .powered-by { flex: 0 0 auto; }

/* ── mobile: swap the pill row for the Menu button ────────────────────── */
@media (max-width: 719px) {
  .js .shell-nav { display: none; }
  .js .head-menu-btn { display: inline-flex; }
}

/* ── reduced motion ───────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .marquee { overflow: visible; transform: none; }
  .marquee-track { width: auto; animation: none; flex-wrap: wrap; justify-content: center; }
  .marquee-seed { display: none; }
  .star, .flake, .bulb { animation: none; }
  .cover-sky { display: none !important; } /* snow & stars are pure decoration; drop them entirely */
  .poster-title { text-shadow: 0 3px 0 rgba(0, 0, 0, .25); }
  .btn, .feature-card, .moment-card, .ornament-item, .organizer, .event-entry, .note-card, .rsvp-card, .free-block { box-shadow: 2px 2px 0 rgba(30, 43, 36, .6); }
}
html.no-motion .marquee { overflow: visible; transform: none; }
html.no-motion .marquee-track { width: auto; animation: none; flex-wrap: wrap; justify-content: center; }
html.no-motion .marquee-seed { display: none; }
html.no-motion .star, html.no-motion .flake, html.no-motion .bulb { animation: none; }
html.no-motion .cover-sky { display: none !important; }

/* ── print: show every panel stacked, hide chrome & forms ─────────────── */

@media print {
  body { height: auto; overflow: visible; display: block; background-color: var(--cream); background-image: none; }
  .shell-head, .skip-link, .poster-cta, .marquee, .lights, .cover-sky,
  .holly, .form-actions, .form-note, .powered-by { display: none !important; }
  .shell-view { height: auto; overflow: visible; display: block; }
  .panel { display: block !important; height: auto; overflow: visible; padding: 16px 0; page-break-inside: avoid; }
  .panel[hidden] { display: block !important; }
  .panel[data-panel="cover"], .panel[data-panel="cheer"], .panel[data-panel="moments"],
  .panel[data-panel="flyer"], .panel[data-panel="film"], .panel[data-panel="free"],
  .panel[data-panel="info"], .panel[data-panel="rsvp"], .panel[data-panel="guestbook"] { background: none; background-image: none; }
  .panel-inner { max-width: 100%; }
  #rsvp-form, .guestbook-body, #panel-live { display: none; }
  .poster { box-shadow: none; border-color: #333; }
  .poster::after { display: none; }
  .js body { height: auto; overflow: visible; }
}
