:root {
  --ink: #1b211d;
  --muted: #5e5548;
  --night: #101821;
  --night-2: #17363a;
  --teal: #245f60;
  --copper: #a95c38;
  --ember: #d47a45;
  --gold: #d7ad5d;
  --honey: #f2d593;
  --rose: #af5563;
  --paper: #f5e5cd;
  --paper-2: #fff7e8;
  --blush: #f3cfc4;
  --sage: #d9e6dc;
  --line-dark: rgba(27, 33, 29, 0.16);
  --line-light: rgba(255, 247, 232, 0.3);
  --shadow: 0 26px 80px rgba(19, 21, 20, 0.26);
  --soft-shadow: 0 18px 48px rgba(79, 50, 34, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --display: "Fraunces", "Georgia", serif;
  --sans: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 2%, rgba(215, 173, 93, 0.34), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(36, 95, 96, 0.18), transparent 26rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(27, 33, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 33, 29, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 80%, transparent);
}

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

a {
  color: inherit;
  text-underline-offset: 0.18rem;
}

p {
  margin: 0;
  line-height: 1.6;
}

p + p {
  margin-top: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 780;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.35rem, 12vw, 9.4rem);
  line-height: 0.78;
}

h2 {
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 0.9;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper-2);
  isolation: isolate;
}

.hero-art,
.hero-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  z-index: -3;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.hero-veil {
  z-index: -2;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 225, 172, 0.16), transparent 22rem),
    radial-gradient(circle at 30% 76%, rgba(16, 24, 33, 0.84), transparent 40rem),
    linear-gradient(90deg, rgba(13, 15, 18, 0.88), rgba(13, 15, 18, 0.54) 48%, rgba(13, 15, 18, 0.2)),
    linear-gradient(0deg, rgba(13, 15, 18, 0.72), rgba(13, 15, 18, 0.12) 58%);
}

.site-nav {
  position: absolute;
  top: 1rem;
  left: 50%;
  z-index: 20;
  display: flex;
  max-width: calc(100% - 2rem);
  gap: 0.28rem;
  padding: 0.36rem;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  background: rgba(21, 28, 31, 0.48);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.44rem 0.72rem;
  color: var(--paper-2);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: #17130f;
  background: var(--honey);
  transform: translateY(-1px);
}

.hero-shell {
  width: min(1180px, calc(100% - 2rem));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 6.8rem 0 4.4rem;
}

.hero-panel {
  position: relative;
  max-width: 760px;
  padding: clamp(1.1rem, 4vw, 2rem);
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 247, 232, 0.16), rgba(255, 247, 232, 0.04)),
    rgba(14, 18, 20, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  animation: riseIn 800ms ease both;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(242, 213, 147, 0.32);
  border-radius: inherit;
}

.hero-panel::before {
  inset: 0.6rem;
}

.hero-panel::after {
  width: 5.8rem;
  height: 5.8rem;
  right: -1.35rem;
  top: -1.35rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 173, 93, 0.18), transparent 62%);
}

.domain-pill,
.eyebrow,
.section-kicker {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.domain-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.48rem 0.7rem;
  color: #1f1a12;
  background: var(--honey);
  border-radius: 999px;
}

.eyebrow {
  color: #f5c878;
}

.hero-title {
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 680;
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: #ffe7bd;
}

.hero-date {
  width: fit-content;
  margin-top: 1rem;
  padding: 0.58rem 0.8rem;
  color: #21180f;
  background: rgba(255, 247, 232, 0.9);
  border-radius: 999px;
  font-weight: 900;
}

.hero-note {
  max-width: 640px;
  margin-top: 1.2rem;
  color: rgba(255, 247, 232, 0.94);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.hero-actions,
.official-links,
.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-actions {
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
}

.primary {
  color: #1d160e;
  background: linear-gradient(135deg, var(--honey), var(--gold));
}

.ghost {
  color: var(--paper-2);
  border-color: rgba(255, 247, 232, 0.36);
  background: rgba(255, 247, 232, 0.08);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.45rem;
}

.quick-facts span {
  padding: 0.52rem 0.66rem;
  color: rgba(255, 247, 232, 0.9);
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-poster-card {
  align-self: center;
  justify-self: end;
  width: min(390px, 100%);
  animation: floatIn 950ms 160ms ease both;
}

.poster-frame {
  padding: 0.56rem;
  border: 1px solid rgba(255, 247, 232, 0.32);
  border-radius: 28px;
  background: rgba(255, 247, 232, 0.16);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 1055 / 1491;
  object-fit: cover;
  border-radius: 22px;
}

.poster-tag {
  max-width: 24rem;
  margin: 1rem auto 0;
  color: rgba(255, 247, 232, 0.88);
  text-align: center;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 3;
  color: rgba(255, 247, 232, 0.82);
  text-decoration: none;
  font-weight: 800;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 2rem;
  margin: 0.5rem auto 0;
  background: linear-gradient(transparent, rgba(255, 247, 232, 0.85));
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6.5vw, 6rem) 1.25rem;
}

.section::before {
  content: "";
  position: absolute;
  inset: 1rem;
  pointer-events: none;
  border: 1px solid rgba(169, 92, 56, 0.1);
  border-radius: 34px;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.paper {
  background:
    radial-gradient(circle at 84% 12%, rgba(215, 173, 93, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 247, 232, 0.98), rgba(245, 229, 205, 0.98));
}

.gallery-band {
  color: var(--paper-2);
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 173, 93, 0.22), transparent 24rem),
    radial-gradient(circle at 78% 30%, rgba(175, 85, 99, 0.18), transparent 28rem),
    linear-gradient(135deg, #111923, #173638 52%, #563726);
}

.night {
  color: var(--paper-2);
  background:
    radial-gradient(circle at 16% 12%, rgba(215, 173, 93, 0.18), transparent 24rem),
    radial-gradient(circle at 90% 60%, rgba(175, 85, 99, 0.15), transparent 26rem),
    linear-gradient(135deg, #0d131d, #14353a 54%, #342637);
}

.blush {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(36, 95, 96, 0.16), transparent 23rem),
    linear-gradient(135deg, #f4cfc4, #f7ead4 56%, #dbe9df);
}

.intro-grid,
.invitation-story,
.theme-layout,
.schedule-layout,
.rsvp-layout,
.camp-layout,
.packing-layout,
.camp-feature,
.split-heading {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.intro-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  align-items: start;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2rem;
}

.center-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.invitation-story {
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
  align-items: center;
}

.invitation-story.text-only {
  display: block;
}

.invitation-copy {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  text-align: center;
}

.invitation-copy p {
  margin-top: 1rem;
}

.invitation-poster {
  justify-self: end;
  width: min(100%, 430px);
}

.split-heading {
  max-width: none;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  align-items: end;
}

.section-kicker {
  margin-bottom: 0.85rem;
  color: var(--copper);
}

.night .section-kicker,
.gallery-band .section-kicker {
  color: var(--honey);
}

.section-lede {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.brief-card,
.theme-rule,
.guide-card,
.camp-notes article,
.ticket-card,
.bun-grid article,
.inspiration-panel,
.packing-panel,
.form-pending,
.travel-card,
.operator-note {
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.3rem);
}

.brief-card {
  min-height: 8.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--soft-shadow);
}

.brief-card.wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.brief-card span,
.theme-rule span,
.timeline span,
.rsvp-fields span,
.ticket-card span,
.bun-grid span,
.travel-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-card span {
  margin-bottom: 0.5rem;
  color: var(--copper);
}

.brief-card strong {
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.05;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.poster {
  margin: 0;
}

.poster-lift {
  margin-top: clamp(0rem, 4vw, 3rem);
}

.poster img {
  width: 100%;
  aspect-ratio: 1055 / 1491;
  object-fit: cover;
  border: 1px solid rgba(255, 247, 232, 0.38);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.poster figcaption {
  margin-top: 0.8rem;
  color: #f7dec0;
  font-weight: 700;
}

.theme-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.78fr);
  align-items: start;
}

.theme-rules,
.guide-grid,
.camp-notes,
.ticket-grid,
.bun-grid,
.travel-grid,
.rv-grid {
  display: grid;
  gap: 1rem;
}

.theme-rule,
.ticket-card,
.bun-grid article {
  border: 1px solid var(--line-light);
  background: rgba(255, 247, 232, 0.08);
}

.theme-rule p,
.ticket-card p,
.bun-grid p,
.guide-card p,
.camp-notes p,
.travel-card p {
  margin-top: 0.55rem;
}

.theme-rule span,
.ticket-card span,
.bun-grid span,
.travel-label {
  color: var(--honey);
}

.warning-rule {
  background: rgba(175, 85, 99, 0.16);
}

.packing-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.56fr);
  align-items: start;
}

.inspiration-panel,
.packing-panel,
.guide-card,
.camp-notes article,
.travel-card {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--soft-shadow);
}

.inspiration-panel ul {
  margin: 0.9rem 0 1.2rem;
  padding-left: 1.1rem;
}

.inspiration-panel li + li {
  margin-top: 0.48rem;
}

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

.official-links {
  margin-top: 1.45rem;
}

.official-links a,
.travel-card a,
.guide-card a,
.mini-links a {
  font-weight: 900;
}

.official-links a {
  padding: 0.72rem 0.88rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  text-decoration: none;
}

.light-links a {
  color: var(--paper-2);
  border-color: var(--line-light);
  background: rgba(255, 247, 232, 0.08);
}

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

.ticket-card {
  color: var(--paper-2);
}

.urgent-card {
  background: linear-gradient(145deg, rgba(215, 173, 93, 0.22), rgba(255, 247, 232, 0.08));
}

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

.travel-card.featured {
  background:
    linear-gradient(145deg, rgba(36, 95, 96, 0.14), rgba(215, 173, 93, 0.2)),
    rgba(255, 255, 255, 0.48);
}

.travel-label {
  margin-bottom: 0.62rem;
  color: var(--rose);
}

.travel-card p + a,
.guide-card p + a,
.mini-links {
  margin-top: 0.8rem;
}

.rv-heading {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

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

.warning-card {
  background: rgba(175, 85, 99, 0.09);
}

.operator-note {
  margin-top: 1.1rem;
  color: var(--paper-2);
  border: 1px solid rgba(255, 247, 232, 0.18);
  background:
    radial-gradient(circle at 18% 10%, rgba(242, 213, 147, 0.18), transparent 18rem),
    linear-gradient(135deg, var(--teal), #283547);
  box-shadow: var(--shadow);
}

.whatsapp-link {
  margin-top: 1rem;
}

.camp-feature {
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  align-items: start;
}

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

.bun-grid p {
  color: #f7e4ca;
}

.camp-links {
  grid-column: 1 / -1;
  margin-top: 0;
}

.schedule-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  align-items: start;
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.46rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(var(--rose), rgba(169, 92, 56, 0.22));
}

.timeline li {
  position: relative;
  padding: 0 0 1.45rem 2rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.94rem;
  height: 0.94rem;
  border-radius: 50%;
  background: var(--rose);
  border: 3px solid #fff9ef;
  box-shadow: 0 0 0 6px rgba(175, 85, 99, 0.16);
}

.timeline strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.04rem;
}

.rsvp-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  align-items: start;
}

.rsvp-form-only {
  display: block;
  max-width: 900px;
}

.rsvp-callout {
  max-width: 760px;
  text-align: center;
}

.rsvp-callout .section-lede {
  margin-right: auto;
  margin-left: auto;
}

.rsvp-callout .button {
  margin-top: 1.1rem;
}

.rsvp-manifest {
  display: grid;
  gap: 0.72rem;
  margin: 1.35rem 0 0;
}

.rsvp-manifest article {
  position: relative;
  padding: 0.92rem 1rem 0.92rem 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.17);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(215, 173, 93, 0.26), transparent 0.24rem),
    rgba(255, 247, 232, 0.07);
}

.rsvp-manifest article::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  top: -2.2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 213, 147, 0.18), transparent 67%);
  pointer-events: none;
}

.rsvp-manifest span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rsvp-manifest p {
  margin: 0;
  color: rgba(255, 247, 232, 0.84);
}

.rsvp-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.rsvp-fields span {
  padding: 0.5rem 0.66rem;
  color: rgba(255, 247, 232, 0.94);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.08);
}

.form-shell {
  position: relative;
  min-width: 0;
  padding: 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 4%, rgba(215, 173, 93, 0.24), transparent 15rem),
    linear-gradient(145deg, rgba(255, 247, 232, 0.13), rgba(255, 247, 232, 0.055));
  box-shadow: var(--shadow);
}

.form-shell::before {
  content: "";
  position: absolute;
  inset: 0.72rem;
  border: 1px solid rgba(215, 173, 93, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.form-shell-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.35rem 0.5rem 0.82rem;
  color: var(--paper-2);
}

.form-shell-top span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-shell-top strong {
  color: #fff8ea;
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 850;
  text-align: right;
}

.rsvp-form {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 820px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 247, 232, 0.08);
  box-shadow: 0 18px 44px rgba(21, 25, 34, 0.28);
}

.form-pending {
  position: relative;
  z-index: 1;
  color: var(--paper-2);
  border: 1px solid var(--line-light);
  background: rgba(255, 247, 232, 0.08);
}

.form-pending p {
  margin-top: 0.5rem;
}

.form-link {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0.8rem;
}

.camp-layout {
  grid-template-columns: minmax(0, 0.62fr) minmax(340px, 1fr);
  align-items: start;
}

.rsvp-modal[hidden] {
  display: none;
}

.rsvp-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 3vw, 2rem);
}

.rsvp-modal-open {
  overflow: hidden;
}

.rsvp-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(215, 173, 93, 0.22), transparent 24rem),
    rgba(13, 15, 18, 0.82);
  backdrop-filter: blur(14px);
}

.rsvp-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 920px);
}

.rsvp-dialog .form-shell {
  max-height: min(92vh, 920px);
}

.rsvp-dialog .rsvp-form {
  min-height: min(72vh, 760px);
}

.rsvp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  min-height: 2.35rem;
  padding: 0 0.85rem;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.camp-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.45rem 1.25rem;
  text-align: center;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 15% 0%, rgba(215, 173, 93, 0.2), transparent 18rem),
    var(--ink);
}

.footer a {
  font-weight: 900;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(26px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .hero-shell,
  .intro-grid,
  .theme-layout,
  .schedule-layout,
  .rsvp-layout,
  .camp-layout,
  .packing-layout,
  .camp-feature,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-poster-card {
    justify-self: start;
    width: min(320px, 76vw);
  }

  .guide-grid,
  .ticket-grid,
  .travel-grid,
  .rv-grid,
  .camp-notes,
  .bun-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-nav {
    top: auto;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: none;
    transform: none;
    justify-content: center;
  }

  .site-nav a {
    flex: 1 1 26%;
    min-height: 2rem;
    padding: 0.42rem 0.4rem;
    font-size: 0.72rem;
  }

  .hero-shell {
    width: min(100% - 1rem, 1180px);
    padding: 4.5rem 0 7rem;
  }

  .hero-panel {
    border-radius: 26px;
  }

  .hero-date {
    border-radius: 18px;
  }

  .quick-facts span,
  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 3.15rem 1rem;
  }

  .section::before {
    inset: 0.55rem;
    border-radius: 24px;
  }

  .poster-grid,
  .invitation-story,
  .brief-grid,
  .guide-grid,
  .ticket-grid,
  .travel-grid,
  .rv-grid,
  .camp-notes,
  .bun-grid {
    grid-template-columns: 1fr;
  }

  .poster-lift {
    margin-top: 0;
  }

  .rsvp-form {
    min-height: 650px;
  }

  .footer {
    display: block;
    padding-bottom: 5.6rem;
  }

  .footer a {
    display: inline-block;
    margin-top: 0.6rem;
  }
}

/* UX polish pass: preserve content, improve flow and interaction. */
html {
  scroll-behavior: smooth;
}

.section,
.hero {
  scroll-margin-top: 6.5rem;
}

.site-nav {
  position: fixed;
  width: min(calc(100% - 2rem), 980px);
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a[data-open-rsvp] {
  color: #17130f;
  background: linear-gradient(135deg, var(--honey), var(--gold));
  box-shadow: 0 10px 22px rgba(215, 173, 93, 0.28);
}

.site-nav a[data-open-rsvp]:hover {
  background: linear-gradient(135deg, #fff1c7, var(--honey));
}

.button,
.site-nav a,
.rsvp-modal-close {
  -webkit-tap-highlight-color: transparent;
}

.button:focus-visible,
.site-nav a:focus-visible,
.footer a:focus-visible,
.rsvp-modal-close:focus-visible {
  outline: 3px solid rgba(255, 247, 232, 0.95);
  outline-offset: 4px;
}

.section-heading > p:last-child,
.section-lede {
  max-width: 760px;
}

.inspiration-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: 10rem;
}

.pinterest-preview {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.pinterest-preview a {
  position: relative;
  display: block;
  min-height: 8.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 22px;
  background: rgba(255, 247, 232, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.pinterest-preview a:nth-child(2),
.pinterest-preview a:nth-child(5) {
  transform: translateY(0.8rem);
}

.pinterest-preview img {
  width: 100%;
  height: 100%;
  min-height: 8.5rem;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 240ms ease, filter 240ms ease;
}

.pinterest-preview a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(13, 15, 18, 0.28));
  pointer-events: none;
}

@media (hover: hover) {
  .pinterest-preview a:hover img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.04);
  }
}

.ticket-copy {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.ticket-copy p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--rust);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.22em;
}

.love-heart {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0.6rem auto 0;
  color: var(--rust);
  border: 1px solid rgba(131, 80, 52, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.56);
  box-shadow: 0 12px 26px rgba(131, 80, 52, 0.12);
  font-size: 1.1rem;
}

.guide-card,
.travel-card,
.packing-panel,
.operator-note,
.form-shell,
.camp-feature,
.timeline li {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover: hover) {
  .guide-card:hover,
  .travel-card:hover,
  .packing-panel:hover,
  .operator-note:hover,
  .camp-feature:hover,
  .timeline li:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(44, 30, 19, 0.14);
  }
}

.rsvp-callout {
  position: relative;
  max-width: 820px;
  padding: clamp(2.2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: clamp(28px, 5vw, 46px);
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 173, 93, 0.28), transparent 17rem),
    radial-gradient(circle at 82% 88%, rgba(198, 112, 76, 0.2), transparent 17rem),
    linear-gradient(145deg, rgba(255, 247, 232, 0.13), rgba(255, 247, 232, 0.055));
  box-shadow: var(--shadow);
}

.rsvp-callout::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(215, 173, 93, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.rsvp-callout > * {
  position: relative;
  z-index: 1;
}

.rsvp-callout .button {
  min-width: min(100%, 18rem);
}

.rsvp-modal {
  animation: modalFade 180ms ease both;
}

.rsvp-dialog {
  animation: modalLift 220ms ease both;
}

.rsvp-dialog .form-shell {
  max-height: min(92vh, 920px);
  overflow: auto;
}

.rsvp-dialog .form-shell-top {
  padding-right: 5.2rem;
}

.rsvp-dialog .rsvp-form {
  min-height: min(72vh, 760px);
}

.rsvp-modal-close:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalLift {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@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;
  }
}

@media (max-width: 980px) {
  .site-nav {
    width: min(calc(100% - 1.5rem), 820px);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 4.9rem;
  }

  .section,
  .hero {
    scroll-margin-top: 1rem;
  }

  .site-nav {
    position: fixed;
    top: auto;
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    width: auto;
    max-width: none;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-width: max-content;
    padding-right: 0.78rem;
    padding-left: 0.78rem;
  }

  .rsvp-callout {
    padding: 2rem 1.1rem;
    border-radius: 28px;
  }

  .rsvp-modal {
    padding: 0.5rem;
  }

  .rsvp-dialog,
  .rsvp-dialog .form-shell {
    max-height: calc(100vh - 1rem);
  }

  .rsvp-dialog .form-shell {
    border-radius: 24px;
  }

  .rsvp-dialog .form-shell-top {
    display: block;
    padding-right: 4.6rem;
  }

  .rsvp-dialog .form-shell-top strong {
    display: block;
    margin-top: 0.25rem;
    text-align: left;
  }

  .rsvp-dialog .rsvp-form {
    min-height: 72vh;
  }

  .rsvp-modal-close {
    top: 0.85rem;
    right: 0.85rem;
  }
}

@media (max-width: 640px) {
  .pinterest-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pinterest-preview a,
  .pinterest-preview img {
    min-height: 9.5rem;
  }

  .pinterest-preview a:nth-child(2),
  .pinterest-preview a:nth-child(5) {
    transform: none;
  }
}

/* Full visual redesign pass: preserve content, improve hierarchy and flow. */
:root {
  --ux-max: 1120px;
  --ux-section-y: clamp(3.5rem, 7vw, 6.5rem);
  --ux-card-radius: 30px;
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 173, 93, 0.2), transparent 26rem),
    linear-gradient(180deg, #221810 0%, #fff2d9 36%, #f5dfbd 100%);
}

.hero {
  position: relative;
  min-height: min(860px, 94vh);
  padding: clamp(6.5rem, 10vw, 9rem) 1.25rem clamp(2.8rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
}

.hero-veil {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 232, 176, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(13, 15, 18, 0.9), rgba(13, 15, 18, 0.54) 48%, rgba(13, 15, 18, 0.18)),
    linear-gradient(0deg, rgba(13, 15, 18, 0.86), rgba(13, 15, 18, 0.1) 62%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100%, var(--ux-max));
  margin: 0 auto;
  align-items: end;
  gap: clamp(1.25rem, 4vw, 3.5rem);
}

.hero-panel {
  max-width: 660px;
  padding: clamp(1.3rem, 3.4vw, 2.35rem);
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(22, 18, 15, 0.82), rgba(22, 18, 15, 0.5)),
    rgba(255, 247, 232, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.hero-panel h1 {
  color: #fff7e8;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}

.hero-date {
  display: inline-flex;
  width: auto;
  color: #21150d;
  background: linear-gradient(135deg, #fff0c2, var(--honey));
}

.hero-note {
  max-width: 56ch;
  color: rgba(255, 247, 232, 0.86);
  font-size: clamp(1rem, 1.55vw, 1.14rem);
}

.hero-poster-card {
  max-width: 330px;
  justify-self: end;
  transform: rotate(1.5deg);
}

.section {
  padding: var(--ux-section-y) 1.25rem;
}

.section-inner {
  width: min(100%, var(--ux-max));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  margin-bottom: clamp(1.5rem, 4vw, 2.8rem);
}

.section h2,
.hero-panel h1 {
  letter-spacing: -0.045em;
}

.section h2 {
  max-width: 12ch;
}

.section-heading.invitation-copy h2,
.rsvp-callout h2,
.schedule-layout h2,
.packing-layout h2,
.camp-feature h2 {
  max-width: none;
}

.gallery-band,
.section.paper {
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 173, 93, 0.18), transparent 23rem),
    linear-gradient(180deg, rgba(255, 248, 232, 0.96), rgba(245, 225, 190, 0.98));
}

.section.night {
  background:
    radial-gradient(circle at 84% 8%, rgba(215, 173, 93, 0.2), transparent 22rem),
    radial-gradient(circle at 12% 92%, rgba(198, 112, 76, 0.16), transparent 22rem),
    linear-gradient(145deg, #16100d, #2b1a14 62%, #1c1412);
}

.section.blush {
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 247, 232, 0.62), transparent 22rem),
    linear-gradient(135deg, #f7d9c1, #fff1da 58%, #eebf93);
}

.invitation-copy {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(131, 80, 52, 0.16);
  border-radius: clamp(30px, 5vw, 52px);
  background: rgba(255, 248, 232, 0.64);
  box-shadow: 0 24px 70px rgba(131, 80, 52, 0.12);
}

.invitation-copy p {
  max-width: 66ch;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.78;
}

.theme-layout {
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.theme-layout > div:first-child p:not(.section-kicker) {
  max-width: 64ch;
  line-height: 1.78;
}

.inspiration-panel {
  padding: clamp(0.75rem, 1.6vw, 1.1rem);
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 34px;
  background: rgba(255, 247, 232, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.pinterest-preview {
  gap: 0.78rem;
}

.pinterest-preview a {
  min-height: clamp(9.5rem, 15vw, 13rem);
  border-radius: 24px;
}

.guide-grid,
.travel-grid,
.rv-grid {
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.guide-card,
.travel-card,
.packing-panel,
.operator-note {
  border-radius: var(--ux-card-radius);
}

.guide-card p,
.travel-card p,
.operator-note p {
  line-height: 1.66;
}

.split-heading {
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.ticket-copy {
  max-width: 670px;
}

.ticket-copy .button,
.packing-layout .button {
  justify-self: start;
  margin-top: 0.2rem;
}

.packing-layout,
.camp-feature,
.schedule-layout {
  display: block;
  max-width: 860px;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid rgba(131, 80, 52, 0.14);
  border-radius: clamp(30px, 5vw, 48px);
  background: rgba(255, 248, 232, 0.68);
  box-shadow: 0 24px 70px rgba(131, 80, 52, 0.12);
}

.schedule-layout {
  background: rgba(255, 248, 232, 0.56);
}

.camp-feature p,
.schedule-layout p,
.packing-layout p {
  max-width: 68ch;
  line-height: 1.74;
}

.rsvp-callout {
  max-width: 820px;
}

.footer {
  padding: 2rem 1.25rem;
}

@media (min-width: 981px) {
  .theme-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.82fr);
  }

  .split-heading {
    grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  }

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

@media (max-width: 760px) {
  :root {
    --ux-section-y: 3.4rem;
  }

  .hero {
    min-height: auto;
    padding: 6.5rem 1rem 2.4rem;
  }

  .hero-shell {
    display: block;
  }

  .hero-panel {
    padding: 1.15rem;
    border-radius: 28px;
  }

  .hero-panel h1 {
    font-size: clamp(3.1rem, 18vw, 4.9rem);
    line-height: 0.86;
  }

  .hero-note {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-poster-card {
    display: none;
  }

  .section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section h2 {
    max-width: none;
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .invitation-copy,
  .packing-layout,
  .camp-feature,
  .schedule-layout,
  .rsvp-callout {
    padding: 1.35rem;
    border-radius: 28px;
  }

  .invitation-copy p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .theme-layout {
    gap: 1.5rem;
  }

  .inspiration-panel {
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 1rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .pinterest-preview {
    display: flex;
    width: calc(100vw - 2rem);
    margin-right: auto;
    margin-left: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pinterest-preview::-webkit-scrollbar {
    display: none;
  }

  .pinterest-preview a {
    flex: 0 0 46%;
    min-height: 13rem;
    scroll-snap-align: start;
  }

  .travel-card,
  .guide-card,
  .operator-note {
    padding: 1.1rem;
  }

  .travel-grid,
  .rv-grid,
  .guide-grid {
    gap: 0.85rem;
  }

  .split-heading {
    gap: 1rem;
  }

  .button {
    width: 100%;
  }

  .ticket-copy .button,
  .packing-layout .button {
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .hero-shell {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
}

.invitation-copy,
.invitation-copy h2,
.invitation-copy p {
  color: var(--ink);
}

.invitation-copy .love-heart {
  color: var(--rust);
}

#rising-buns .camp-feature,
#rising-buns .camp-feature h2,
#rising-buns .camp-feature p {
  color: var(--ink);
}

#rising-buns .camp-feature .section-kicker {
  color: var(--rust);
}

/* Rhythm cleanup: alternate color fields, normalize spacing, improve line breaks. */
#packing {
  background:
    radial-gradient(circle at 14% 10%, rgba(242, 213, 147, 0.2), transparent 22rem),
    radial-gradient(circle at 88% 90%, rgba(198, 112, 76, 0.2), transparent 22rem),
    linear-gradient(145deg, #2a1a13, #533221 62%, #241713);
}

#travel-rv {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 247, 232, 0.62), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(183, 104, 70, 0.16), transparent 24rem),
    linear-gradient(180deg, #f9ecd6, #ead0ad 58%, #f7e5ca);
}

#rising-buns {
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 173, 93, 0.22), transparent 24rem),
    radial-gradient(circle at 82% 82%, rgba(255, 247, 232, 0.08), transparent 24rem),
    linear-gradient(145deg, #171512, #2c2118 62%, #11100e);
}

#schedule {
  background:
    radial-gradient(circle at 72% 10%, rgba(255, 247, 232, 0.7), transparent 22rem),
    linear-gradient(135deg, #eebf9b, #fff0d7 50%, #d9a47f);
}

#packing .packing-layout,
#rising-buns .camp-feature,
#schedule .schedule-layout {
  background: rgba(255, 248, 232, 0.88);
}

.section-heading p:not(.section-kicker),
.ticket-copy p,
.packing-layout p,
.camp-feature p,
.schedule-layout p,
.rsvp-callout p,
.travel-card p,
.guide-card p,
.operator-note p {
  text-wrap: pretty;
}

.section-heading p + p,
.ticket-copy p + p,
.packing-layout p + p,
.camp-feature p + p,
.schedule-layout p + p,
.rsvp-callout p + p {
  margin-top: 0.85rem;
}

.section-lede {
  margin-top: 0.75rem;
}

.travel-card p + p,
.guide-card p + p,
.operator-note p + p {
  margin-top: 0.72rem;
}

.official-links {
  margin-top: clamp(1.3rem, 3vw, 2rem);
}

@media (min-width: 761px) {
  .section-heading:not(.invitation-copy),
  .packing-layout,
  .camp-feature,
  .schedule-layout,
  .rsvp-callout {
    max-width: 940px;
  }

  .section-heading:not(.invitation-copy) h2 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  .section h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }

  #travel-rv h2,
  #tickets h2,
  #packing h2,
  #schedule h2,
  #rising-buns h2 {
    max-width: 10.8ch;
  }

  #travel-rv .section-heading,
  #burning-man .section-heading,
  #tickets .section-heading {
    margin-bottom: 1.15rem;
  }

  .section-heading p:not(.section-kicker),
  .ticket-copy p,
  .packing-layout p,
  .camp-feature p,
  .schedule-layout p,
  .travel-card p,
  .guide-card p,
  .operator-note p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .section-lede {
    font-size: 1.02rem !important;
    line-height: 1.58 !important;
  }

  .section-kicker {
    margin-bottom: 0.55rem;
  }

  .section,
  #travel-rv,
  #burning-man,
  #tickets,
  #packing,
  #rising-buns,
  #schedule,
  #rsvp {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .packing-layout,
  .camp-feature,
  .schedule-layout,
  .rsvp-callout,
  .invitation-copy {
    padding: 1.15rem;
  }

  .travel-card,
  .guide-card,
  .operator-note {
    border-radius: 24px;
  }

  .official-links,
  .official-links.light-links {
    gap: 0.62rem;
  }
}

/* Final mobile readability tuning. */
.section h2 + p,
.section h2 + .section-lede,
.section h2 + .ticket-copy,
.section h2 + div {
  margin-top: 0.85rem;
}

@media (max-width: 760px) {
  #travel-rv h2,
  #tickets h2,
  #packing h2,
  #schedule h2,
  #rising-buns h2,
  #burning-man h2,
  #rsvp h2 {
    max-width: 100%;
  }

  #travel-rv h2,
  #tickets h2,
  #packing h2,
  #rising-buns h2,
  #schedule h2 {
    font-size: clamp(2.05rem, 9.4vw, 2.72rem);
    line-height: 1;
    text-wrap: balance;
  }

  #travel-rv .section-heading > p:first-of-type:not(.section-kicker),
  #tickets .ticket-copy > p:first-child,
  #packing .section-lede,
  #rising-buns .section-lede,
  #schedule .section-lede {
    margin-top: 0.9rem;
  }

  .section-heading p + p,
  .ticket-copy p + p,
  .packing-layout p + p,
  .camp-feature p + p,
  .schedule-layout p + p {
    margin-top: 1rem;
  }
}

/* Mobile hero adjustment: show the invitation photo and lift the couple card. */
@media (max-width: 760px) {
  .hero {
    padding-top: 3.6rem;
    padding-bottom: 1.6rem;
  }

  .hero-poster-card {
    display: block;
    width: min(78vw, 280px);
    max-width: 280px;
    margin: 1.1rem auto 0;
    transform: rotate(-1deg);
  }

  .hero-poster-card .poster-frame {
    padding: 0.45rem;
    border-radius: 24px;
  }

  .hero-poster-card img {
    display: block;
    width: 100%;
    border-radius: 18px;
  }
}

main > section:first-child {
  padding-top: clamp(1.4rem, 3vw, 2.6rem);
}

/* Desktop spacing fix: the first section was low because the hero was too tall, not because the section padding was large. */
@media (min-width: 761px) {
  .hero {
    min-height: min(760px, 82vh);
    padding-top: clamp(5.2rem, 8vw, 7rem);
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
  }

  .hero-shell {
    min-height: 0;
  }

  main > section:first-child {
    padding-top: clamp(1rem, 2.2vw, 2rem);
  }
}

/* First-timer short-trip reassurance section. */
.short-burn {
  background:
    radial-gradient(circle at 18% 10%, rgba(242, 213, 147, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 90%, rgba(198, 112, 76, 0.18), transparent 24rem),
    linear-gradient(145deg, #1d1712, #3b271a 62%, #17120f);
  color: var(--paper);
}

.short-trip-layout {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.short-trip-copy {
  max-width: 860px;
  margin-bottom: 0;
}

.short-trip-copy h2 {
  max-width: 13ch;
  color: #fff7e8;
  line-height: 0.98;
}

.short-trip-copy p {
  max-width: 72ch;
  color: rgba(255, 247, 232, 0.86);
}

.short-trip-grid {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.1rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.short-trip-grid .guide-card {
  background:
    radial-gradient(circle at 85% 0%, rgba(215, 173, 93, 0.18), transparent 12rem),
    rgba(255, 247, 232, 0.12);
  border-color: rgba(255, 247, 232, 0.2);
  color: var(--paper);
}

.short-trip-grid .guide-card h3 {
  color: #fff7e8;
}

.short-trip-grid .guide-card p {
  color: rgba(255, 247, 232, 0.82);
}

.short-trip-grid .guide-card a {
  color: var(--gold);
}

.short-trip-note {
  max-width: 820px;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 28px;
  background: rgba(255, 247, 232, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.short-trip-note p {
  margin: 0;
  color: rgba(255, 247, 232, 0.88);
  font-weight: 700;
}

.short-trip-note p + p {
  margin-top: 0.75rem;
}

.short-trip-note a {
  color: var(--gold);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.24em;
}

@media (max-width: 1100px) {
  .short-trip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .short-trip-copy h2 {
    max-width: 100%;
    font-size: clamp(2.85rem, 13vw, 4.2rem);
    line-height: 1;
  }

  .short-trip-grid {
    grid-template-columns: 1fr;
  }

  .short-trip-note {
    border-radius: 24px;
  }
}
