:root {
  color-scheme: light;
  --cream: #fffbf0;
  --paper: #fdf4df;
  --paper-deep: #f8ead0;
  --sun-100: #ffe294;
  --sun-300: #f6b93b;
  --sun-500: #e8a317;
  --sun-700: #b97a0f;
  --leaf-100: #e7efd9;
  --leaf-300: #8fae5d;
  --leaf-500: #5f7f3c;
  --leaf-700: #3f5b26;
  --leaf-900: #2d4218;
  --seed: #5c3a1e;
  --ink: #3a2c1a;
  --muted: #7a6a52;
  --line: rgba(92, 58, 30, 0.16);
  --shadow-soft: 0 10px 30px rgba(92, 58, 30, 0.12);
  --shadow-lift: 0 22px 48px rgba(92, 58, 30, 0.18);
  --max: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.6;
  background: var(--cream);
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--sun-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--leaf-700);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 78px;
  padding: 0.55rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 251, 240, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(185, 122, 15, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  transition: transform 0.5s ease;
}

.brand:hover .brand__mark {
  transform: rotate(40deg);
}

.brand__copy {
  display: grid;
  line-height: 1.12;
}

.brand__copy strong {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand__copy span {
  color: var(--sun-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.4vw, 1.3rem);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.6rem 0.15rem;
  text-decoration: none;
  color: var(--seed);
  opacity: 0.85;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.3rem;
  height: 3px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--sun-500);
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-pill {
  padding: 0.72rem 1.2rem !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--leaf-500), var(--leaf-700));
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(63, 91, 38, 0.3);
  opacity: 1 !important;
}

.nav-pill::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--seed);
  background: rgba(255, 251, 240, 0.9);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

/* ---------- Buttons & kickers ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  color: #43300a;
  background: linear-gradient(135deg, var(--sun-100), var(--sun-300) 55%, var(--sun-500));
  box-shadow: 0 10px 24px rgba(232, 163, 23, 0.4);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 30px rgba(232, 163, 23, 0.5);
}

.button--ghost {
  color: var(--leaf-700);
  background: transparent;
  border: 2px solid var(--leaf-500);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--leaf-100);
}

.kicker {
  margin: 0 0 0.6rem;
  color: var(--leaf-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kicker--gold {
  color: var(--sun-300);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px 0 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 70rem 30rem at 50% 96%, rgba(255, 226, 148, 0.65), transparent 72%),
    linear-gradient(180deg, var(--cream) 0%, #fff7e0 62%, #ffeec4 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 860px;
  padding: 0 1.25rem;
}

.hero h1 {
  margin: 0;
  display: grid;
  line-height: 1;
}

.hero__where {
  color: var(--seed);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
}

.hero__script {
  margin-top: 0.2em;
  color: var(--sun-700);
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3.4rem, 10.5vw, 7.8rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--sun-700), var(--sun-500) 45%, #d98e14 70%, var(--sun-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__divider {
  width: min(480px, 88%);
  height: auto;
  margin: 0.9rem auto 0;
}

.hero__dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.6rem;
  margin: 1rem 0 0;
  color: var(--seed);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
}

.hero__dates strong {
  font-weight: 700;
}

.hero__free {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.95rem;
  color: #43300a;
  background: linear-gradient(135deg, var(--sun-100), var(--sun-300));
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(232, 163, 23, 0.35);
}

.hero__lead {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero__field {
  position: relative;
  z-index: 1;
  width: max(100%, 980px);
  height: auto;
  margin-top: clamp(1rem, 3vh, 2.6rem);
  margin-bottom: -2px;
  pointer-events: none;
}

.hero__petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.petal {
  position: absolute;
  top: -60px;
  width: 18px;
  height: auto;
  opacity: 0;
  animation: petal-fall linear infinite;
}

@keyframes petal-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -4vh, 0) rotate(0deg);
  }
  8% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift, 6vw), 104vh, 0) rotate(var(--spin, 320deg));
  }
}

/* ---------- Section headings ---------- */

.section-head {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-head h2,
.carnival h2,
.countdown-card h2,
.info h2,
.location h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.06;
  color: var(--seed);
}

.section-head--light h2 {
  color: var(--paper);
}

.section-divider {
  width: min(420px, 80%);
  height: auto;
  margin: 1rem auto 0;
}

/* ---------- Music ---------- */

.music {
  position: relative;
  padding: clamp(64px, 8vw, 100px) max(1rem, calc((100vw - var(--max)) / 2)) clamp(90px, 11vw, 150px);
  background:
    radial-gradient(ellipse 60rem 30rem at 50% 0, rgba(246, 185, 59, 0.12), transparent 70%),
    linear-gradient(180deg, #2d4218, #243611);
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(34px, 5vw, 70px);
  pointer-events: none;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave--top {
  top: -1px;
}

.wave--bottom {
  bottom: -1px;
}

.music .wave path {
  fill: var(--cream);
}

.music-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}

.music-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.music-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.34);
}

.music-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--leaf-900);
}

.music-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.music-card__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(45, 66, 24, 0.55));
}

.music-card__ticket {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.4rem 1.3rem 1.5rem;
  text-align: center;
}

.date-badge {
  justify-self: center;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.42rem 1.05rem;
  color: var(--paper);
  background: var(--leaf-500);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.date-badge span {
  color: var(--sun-100);
}

.music-card__ticket h3 {
  margin: 0.1rem 0 0;
  color: var(--seed);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.show-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.4rem;
  padding-top: 0.9rem;
  border-top: 2px dashed rgba(185, 122, 15, 0.4);
}

.show-time strong {
  display: block;
  color: var(--sun-700);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.1;
}

.show-time span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Highlights ---------- */

.highlights {
  padding: clamp(70px, 9vw, 110px) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

.highlight-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  padding: 1.8rem 1.4rem 1.6rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(185, 122, 15, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.highlight-card img {
  width: 78px;
  height: 78px;
  padding: 14px;
  background: linear-gradient(160deg, var(--paper), var(--paper-deep));
  border: 2px dashed rgba(185, 122, 15, 0.4);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.highlight-card:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.highlight-card h3 {
  margin: 0.6rem 0 0;
  color: var(--seed);
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ---------- Carnival ---------- */

.carnival {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 12vw, 150px) 1.25rem;
  text-align: center;
  background:
    linear-gradient(rgba(40, 28, 8, 0.72), rgba(45, 66, 24, 0.78)),
    url("assets/carnival-ferris-wheel.jpg") center 38% / cover no-repeat;
}

.carnival__inner {
  max-width: 720px;
  margin: 0 auto;
}

.carnival h2 {
  color: var(--cream);
}

.carnival p:not(.kicker) {
  margin: 1rem auto 0;
  color: rgba(255, 251, 240, 0.88);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

/* ---------- Countdown ---------- */

.countdown-band {
  padding: clamp(70px, 9vw, 110px) 1rem;
  background:
    radial-gradient(ellipse 70rem 30rem at 50% 120%, rgba(246, 185, 59, 0.3), transparent 70%),
    linear-gradient(135deg, var(--sun-300), var(--sun-500));
}

.countdown-card {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding: clamp(1.5rem, 3.4vw, 2.6rem);
  background: var(--cream);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 30px 60px rgba(92, 58, 30, 0.28);
}

.countdown-card__flower {
  width: clamp(96px, 12vw, 150px);
  height: auto;
  animation: slow-spin 60s linear infinite;
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

.countdown-card__note {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "days label"
    "days message";
  align-items: center;
  gap: 0.15rem 1.1rem;
  min-width: min(330px, 100%);
  padding: 1.2rem 1.5rem;
  color: var(--paper);
  background: linear-gradient(150deg, var(--leaf-500), var(--leaf-900));
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 2px rgba(255, 226, 148, 0.25);
}

.countdown strong {
  grid-area: days;
  color: var(--sun-100);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  line-height: 0.9;
}

.countdown span {
  grid-area: label;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.countdown p {
  grid-area: message;
  margin: 0;
  color: rgba(253, 244, 223, 0.8);
  font-size: 0.92rem;
}

.countdown[data-status="active"],
.countdown[data-status="past"] {
  display: block;
  text-align: center;
}

.countdown[data-status="active"] strong,
.countdown[data-status="past"] strong {
  display: none;
}

.countdown[data-status="active"] span,
.countdown[data-status="past"] span {
  display: block;
  color: var(--sun-100);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ---------- Visitor info ---------- */

.info {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(70px, 9vw, 110px) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: linear-gradient(150deg, var(--leaf-700), var(--leaf-900));
}

.info h2 {
  color: var(--paper);
}

.info__content p:not(.kicker) {
  color: rgba(253, 244, 223, 0.85);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 5px solid var(--sun-300);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  list-style: none;
  color: var(--seed);
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--paper);
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sun-300);
  transition: transform 0.25s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2.4px;
  border-radius: 2px;
  background: #43300a;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(135deg);
}

.faq-item__answer {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Location ---------- */

.location {
  width: min(var(--max), calc(100% - 2rem));
  margin: clamp(70px, 9vw, 100px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3.4vw, 2.6rem);
  background: #fff;
  border: 1px solid rgba(185, 122, 15, 0.22);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lift);
}

.location__content {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.location__content img {
  width: 84px;
  height: 84px;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  padding: 0 max(1rem, calc((100vw - var(--max)) / 2)) 2rem;
  color: rgba(253, 244, 223, 0.85);
  background: linear-gradient(180deg, #46300f, #33230b);
}

.site-footer__garland {
  width: min(900px, 92%);
  height: auto;
  margin: 0 auto;
  padding-top: 1.6rem;
  opacity: 0.92;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  align-items: center;
  margin-top: 1.4rem;
}

.footer-note p {
  margin: 0;
  color: var(--sun-100);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.4;
}

.footer-thanks {
  padding: 0.6rem clamp(1rem, 3vw, 2rem);
  text-align: center;
  border-left: 1px solid rgba(246, 185, 59, 0.35);
}

.footer-thanks p:last-child {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--delay {
  transition-delay: 0.12s;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .music-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(860px, 100%);
    margin: 0 auto;
  }

  .music-card:last-child {
    width: min(420px, 100%);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .countdown-card {
    grid-template-columns: auto 1fr;
  }

  .countdown {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    min-height: 72px;
    padding: 0.5rem 0.9rem;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    top: calc(100% + 8px);
    display: grid;
    gap: 0.1rem;
    padding: 0.8rem;
    background: var(--cream);
    border: 1px solid rgba(185, 122, 15, 0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lift);
    opacity: 0;
    transform: scaleY(0.96);
    transform-origin: top;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .nav-pill {
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }

  .info,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-thanks {
    border-left: 0;
    border-top: 1px solid rgba(246, 185, 59, 0.35);
  }

  .footer-note {
    text-align: center;
  }

  .location {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .location__content {
    justify-content: center;
  }

  .location__actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .music-grid {
    grid-template-columns: 1fr;
    width: min(460px, 100%);
  }

  .music-card:last-child {
    width: auto;
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .brand__copy span {
    display: none;
  }

  .brand__copy strong {
    font-size: 1.18rem;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero__actions,
  .location__actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .countdown-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .countdown-card__flower {
    width: 90px;
  }

  .highlight-grid,
  .show-times {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: 1fr;
    grid-template-areas:
      "days"
      "label"
      "message";
    text-align: center;
  }

  .location__content {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .petal {
    display: none;
  }
}

/* ---------- News (Facebook feed) ---------- */

.news {
  padding: clamp(70px, 9vw, 110px) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.4rem;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
  border-radius: var(--radius);
  border-top: 5px solid var(--sun-300);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.news-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px) calc(var(--radius) - 4px) 0 0;
  background: var(--paper-deep);
  transform: translateZ(0); /* forces Safari to honor the rounded clipping */
}

/* Blurred copy of the photo fills the square behind the full image. */
.news-card__media::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: inherit;
  background-image: var(--news-img);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.92);
}

.news-card__media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  padding: 1.2rem 1.35rem 1.35rem;
}

.news-card__date {
  color: var(--leaf-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-card__text {
  margin: 0;
  color: var(--ink);
  white-space: pre-line;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__text a {
  color: var(--leaf-500);
  font-weight: 700;
  text-decoration-color: var(--sun-300);
}

.news-card__link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--seed);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 2px solid var(--sun-300);
}

.news-card__link:hover {
  color: var(--sun-700);
}

.news-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  color: var(--muted);
  text-align: center;
}

.news-empty a {
  color: var(--leaf-500);
  font-weight: 700;
}

.news__more {
  margin: 2rem auto 0;
  text-align: center;
}
