:root {
  --rose-ink: #3b0d1c;
  --rose-deep: #8b1238;
  --rose: #c41e5a;
  --rose-hot: #e11d48;
  --rose-light: #ff4d7d;
  --rose-soft: #ff8fb8;
  --rose-mid: #ff6b9d;
  --pink: #f472b6;
  --blush: #fbcee4;
  --petal: #ffe4ef;
  --cream: #fff6f8;
  --paper: #fffdfb;
  --gold: #e8b4bc;
  --gold-deep: #b76e79;
  --muted: #8a5464;
  --line: rgba(196, 30, 90, 0.16);
  --shadow: 0 18px 50px rgba(139, 18, 56, 0.16);
  --glow-1: #ffd6e6;
  --glow-2: #ffc2d4;
  --glow-3: #ffdce8;
  --choice-top: #fff1f6;
  --choice-bot: #ffd6e6;
  --script-glow: #ffd6e4;
  --focus-ring: rgba(196, 30, 90, 0.12);
  --choice-ring: rgba(196, 30, 90, 0.08);
  --tap: rgba(196, 30, 90, 0.18);
  --hero-video-bg: #3b0d1c;
  --hero-fade-a: rgba(59, 13, 28, 0.15);
  --hero-fade-b: rgba(59, 13, 28, 0.18);
  --hero-fade-c: rgba(139, 18, 56, 0.82);
  --hero-glow: rgba(244, 114, 182, 0.28);
  --topbar-grad: rgba(59, 13, 28, 0.45);
  --vibe-fade: rgba(59, 13, 28, 0.82);
  --join-fade-a: rgba(59, 13, 28, 0.2);
  --join-fade-b: rgba(139, 18, 56, 0.78);
  --lightbox-bg: rgba(27, 4, 12, 0.92);
  --btn-shadow: 0 10px 24px rgba(196, 30, 90, 0.35);
  --cream-solid: rgba(255, 246, 248, 0.88);
  --cream-solid-strong: rgba(255, 246, 248, 0.92);
  --radius: 28px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rose-ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(1200px 600px at 10% -10%, var(--glow-1) 0%, transparent 55%),
    radial-gradient(900px 500px at 110% 8%, var(--glow-2) 0%, transparent 50%),
    radial-gradient(800px 700px at 50% 120%, var(--glow-3) 0%, transparent 45%),
    var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: var(--tap);
}

.petals {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -40px;
  width: 14px;
  height: 18px;
  border-radius: 80% 0 80% 0;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
  opacity: 0.55;
  animation: fall linear infinite;
  transform: rotate(25deg);
}

@keyframes fall {
  0% { transform: translate3d(0, -10vh, 0) rotate(0deg); }
  100% { transform: translate3d(40px, 110vh, 0) rotate(360deg); }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(12px + var(--safe-t)) 16px 12px;
  background: linear-gradient(180deg, var(--topbar-grad), transparent);
  color: #fff;
}

.topbar.is-solid {
  background: var(--cream-solid);
  color: var(--rose-ink);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.brand svg,
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.topbar.is-solid .brand-logo {
  box-shadow: 0 0 0 1px var(--line);
}

.top-actions {
  display: flex;
  gap: 8px;
}

.chip-btn,
.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  cursor: pointer;
}

.chip-btn {
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 600;
}

.topbar.is-solid .chip-btn {
  background: #fff;
  color: var(--rose);
  border-color: var(--line);
}

.chip-btn-fill {
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  border-color: transparent;
  color: #fff;
}

.topbar.is-solid .chip-btn-fill {
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  color: #fff;
  border-color: transparent;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  z-index: 0;
}

.hero-media video {
  z-index: 1;
}

.hero-media video.is-ready {
  background: var(--hero-video-bg);
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--hero-fade-a) 0%, var(--hero-fade-b) 38%, var(--hero-fade-c) 100%),
    radial-gradient(circle at 80% 20%, var(--hero-glow), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px 36px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(3.2rem, 14vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  color: var(--script-glow);
  display: block;
  margin: 8px 0 12px;
}

.hero p {
  margin: 0 0 18px;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
}

.btn {
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--rose-light), var(--rose) 55%, var(--rose-deep));
  color: #fff;
  box-shadow: var(--btn-shadow);
}

.btn-ghost {
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.marquee-wrap {
  background: var(--rose-deep);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
}

.marquee {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: drift 28s linear infinite;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.section {
  padding: 42px 18px 8px;
  scroll-margin-top: 72px;
}

#join {
  padding-bottom: 28px;
}

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

.eyebrow {
  color: var(--rose);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.section h2 {
  margin: 6px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 0.95;
}

.lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.event-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.event-body {
  padding: 18px;
}

.event-body > *:last-child {
  margin-bottom: 0;
}

.event-map {
  margin: 0 0 16px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}

.event-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.map-open {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  background: #fff;
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 600;
  border-top: 1px solid var(--line);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--petal);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 600;
}

.event-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.05;
}

.event-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.meta-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.meta {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 18px;
  background: var(--cream);
}

.meta b {
  display: block;
  font-size: 14px;
}

.meta span {
  color: var(--muted);
  font-size: 12px;
}

.icon-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
  color: #fff;
  font-size: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--rose-deep);
}

.stat span {
  font-size: 11px;
  color: var(--muted);
}

.about-card,
.host-card,
.form-card,
.expect-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 22px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 12% 18%, var(--blush), transparent 42%),
    radial-gradient(circle at 88% 8%, var(--petal), transparent 36%),
    var(--paper);
}

.quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 0 0 14px;
}

.promise {
  display: grid;
  gap: 10px;
}

.promise li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
  line-height: 1.45;
}

.promise {
  margin: 0;
  padding: 0;
}

.heart {
  color: var(--rose);
  flex-shrink: 0;
}

.snap-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 18px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.snap-row::-webkit-scrollbar {
  display: none;
}

.vibe-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.vibe-card img,
.vibe-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.vibe-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(transparent, var(--vibe-fade));
  color: #fff;
}

.vibe-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.vibe-card p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 18px;
}

.mosaic figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.mosaic img,
.mosaic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic .tall {
  grid-row: span 2;
  min-height: 280px;
}

.mosaic .tall img,
.mosaic .tall video {
  object-position: center 78%;
}

.mosaic .wide {
  grid-column: span 2;
  min-height: 190px;
}

.mosaic figure:not(.tall):not(.wide) {
  min-height: 150px;
}

.expect {
  display: grid;
  gap: 10px;
}

.expect-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.expect-card img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
}

.expect-card h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.expect-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.host-card {
  overflow: hidden;
}

.host-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.host-copy {
  padding: 18px;
}

.host-copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.host-copy .script {
  color: var(--rose);
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.form-card {
  padding: 24px 20px 26px;
  position: relative;
  scroll-margin-top: 84px;
}

.form-progress {
  margin-bottom: 20px;
}

.form-head {
  margin-top: 14px;
}

.form-head h2 {
  margin: 6px 0 6px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.1;
}

.form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.step-label {
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-card::before,
.form-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 30% 30%, var(--pink), transparent 62%);
  opacity: 0.35;
  pointer-events: none;
}

.form-card::before { top: -8px; right: -8px; }
.form-card::after { bottom: -10px; left: -12px; transform: rotate(180deg); }

.steps {
  display: flex;
  gap: 8px;
  margin: 0;
}

.step-dot {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: var(--blush);
}

.step-dot.active {
  background: linear-gradient(90deg, var(--rose-mid), var(--rose));
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
}

.field {
  margin-bottom: 18px;
}

.field:last-child {
  margin-bottom: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--rose-ink);
  outline: none;
  appearance: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

.choice span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 10px 12px;
  text-align: center;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.choice input:checked + span {
  background: linear-gradient(180deg, var(--choice-top), var(--choice-bot));
  border-color: var(--rose);
  color: var(--rose-deep);
  box-shadow: 0 0 0 4px var(--choice-ring);
}

.choice.full {
  grid-column: 1 / -1;
}

.choice input:focus-visible + span {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.form-nav {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  margin-top: 8px;
}

.form-nav .btn {
  min-height: 50px;
}

.btn-light {
  background: #fff;
  color: var(--rose-deep);
  border: 1.5px solid var(--line);
  box-shadow: none;
}

.form-panel[hidden] {
  display: none !important;
}

.form-error {
  color: var(--rose-hot);
  font-size: 12px;
  margin-top: 6px;
  min-height: 0;
}

.success {
  display: none;
  text-align: center;
  padding: 8px 4px 4px;
}

.success.is-on {
  display: block;
}

.success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 8px 0;
}

.success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  padding: 36px 18px calc(28px + var(--safe-b));
  text-align: center;
  color: var(--muted);
}

.footer .brand-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  box-shadow: 0 0 0 1px var(--line);
}

.footer .script {
  color: var(--rose);
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(139, 18, 56, 0.08);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--rose);
  display: grid;
  place-items: center;
  font-weight: 600;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

#faq {
  scroll-margin-top: 84px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0;
}

.socials a {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
}

[hidden] {
  display: none !important;
}

.form-card:has(.success.is-on) .steps,
.form-card:has(.success.is-on) .form-progress {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--lightbox-bg);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lightbox.is-on {
  display: flex;
}

.lightbox img,
.lightbox video {
  max-height: 82svh;
  width: auto;
  max-width: 100%;
  border-radius: 18px;
}

.lightbox button {
  position: absolute;
  top: calc(12px + var(--safe-t));
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.join-hero {
  position: relative;
  height: 42svh;
  min-height: 220px;
  max-height: 320px;
  color: #fff;
  isolation: isolate;
}

.join-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--join-fade-a) 0%, var(--join-fade-b) 100%);
}

.join-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px 20px 26px;
}

.join-hero-copy .kicker {
  margin-bottom: 10px;
}

.join-hero-copy h1 {
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 9vw, 3rem);
  line-height: 0.95;
}

.join-hero-copy .script {
  margin: 6px 0 0;
  font-size: 1.7rem;
}

.page-join .topbar.is-solid {
  background: var(--cream-solid-strong);
}

.page-join #join {
  display: grid;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 36px;
}

.join-summary,
.join-gallery {
  margin: 0;
}

.join-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.join-gallery figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(139, 18, 56, 0.1);
}

.join-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.join-gallery figure:hover img {
  transform: scale(1.04);
}

.join-gallery figure:first-child {
  grid-column: 1 / -1;
}

.join-gallery figure:first-child img {
  height: 220px;
}

@media (min-width: 720px) {
  .hero-content,
  .section,
  .footer,
  .join-hero-copy {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .snap-row {
    max-width: 820px;
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .mosaic {
    max-width: 820px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
  }

  .vibe-card {
    flex-basis: 46%;
  }
}

@media (min-width: 900px) {
  .page-join #join {
    max-width: 1040px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 24px;
    padding-top: 34px;
  }

  .page-join .join-summary,
  .page-join .join-gallery {
    grid-column: 1;
  }

  .page-join .form-card {
    grid-column: 2;
    grid-row: 1 / span 3;
    padding: 30px 28px 32px;
  }

  .page-join .event-body {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee,
  .petal,
  .reveal {
    animation: none;
  }
}

.workshop-home-list,
.workshop-pick-list {
  display: grid;
  gap: 16px;
}

.pay-note {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--petal);
  color: var(--rose-deep);
  font-size: 14px;
  line-height: 1.45;
}
