/* ============================================================
   Jackie & Meredith — Wedding site
   Font: Archivo (Google Fonts)
   Ink: #1B1B1B · Paper: #FDFDFC
   ============================================================ */

/* Archivo variable font, self-hosted (subset, woff2) */
@font-face {
  font-family: 'Archivo';
  src: url('fonts/Archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-display: block;
}

/* Apfel Grotezk (Collletttivo, OFL) — display face */
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('fonts/Apfel-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: block;
}
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('fonts/Apfel-Mittel.woff2') format('woff2');
  font-weight: 500;
  font-display: block;
}
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('fonts/Apfel-Satt.woff2') format('woff2');
  font-weight: 700;
  font-display: block;
}

/* TAY Basal (licensed) — hero display face */
@font-face {
  font-family: 'TAY Basal';
  src: url('fonts/TAYBasal-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: block;
}

:root {
  --ink: #1B1B1B;
  --paper: #F6F1E3;           /* warm cream ground */
  --ink-65: rgba(27, 27, 27, 0.65);
  --ink-60: rgba(27, 27, 27, 0.60);
  --ink-55: rgba(27, 27, 27, 0.55);
  --ink-50: rgba(27, 27, 27, 0.50);
  --ink-30: rgba(27, 27, 27, 0.30);
  --hair: rgba(27, 27, 27, 0.14);
  --hair-12: rgba(27, 27, 27, 0.12);
  --rule: #1B1B1B;            /* bold functional rules (Dawn Ranch style) */
  --cocoa: #6E5340;           /* chocolate band */
  --cream-on-cocoa: #F4EDE3;
  --cream-on-cocoa-55: rgba(244, 237, 227, 0.55);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Apfel Grotezk', 'Archivo', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* inline links written as [text](url) in the CMS */
.txt-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, currentColor 45%, transparent);
  transition: text-decoration-color 0.15s ease, color 0.15s ease;
}
.txt-link:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  font-family: 'TAY Basal', 'Archivo', sans-serif;
}

/* interior pages: bordered light nav on paper */
.nav--page {
  border-bottom: 1px solid var(--rule);
}

/* home: transparent nav overlaid on the hero */
.nav--hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: var(--ink);
}

.nav__monogram {
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 500;
  text-decoration: none;
}

.nav__monogram img {
  display: block;
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 10.5px;
  letter-spacing: 0.26em;
}

.nav__links a {
  text-decoration: none;
}

/* light nav (interior pages) */
.nav--page .nav__monogram { color: var(--ink); }
.nav--page .nav__links a { color: var(--ink-65); }
.nav--page .nav__links a.is-current {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.nav--page .nav__rsvp {
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 22px;
}

/* hero nav (home) */
.nav--hero .nav__monogram { color: var(--ink); }
.nav--hero .nav__links a { color: var(--ink); opacity: 0.92; }
.nav--hero .nav__links a.is-current {
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.nav--hero .nav__rsvp {
  opacity: 1;
  border: 1px solid var(--ink);
  padding: 10px 22px;
}

/* ============================================================
   Home — full-screen hero
   ============================================================ */

.home {
  /* behind iOS browser chrome, blend with the photo's sky */
  background: #3C7C9E;
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  min-height: 0;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;   /* headland + horizon high, open water below */
}

/* darkens top (nav legibility) and bottom edge */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: none;
}

.hero__tagline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  /* Floats the line low in the open water (centered ~60% down the photo,
     well below the ~50% horizon — per the approved mockup). Derived from
     the cover-crop geometry of the 2:3 hero at object-position 50% 48%:
     on-screen y of image fraction f = 1.5(f - 0.48)vw + 0.52vh (landscape) */
  padding-bottom: max(24px, calc(52vh - 19.5vw));
  text-align: center;
  color: var(--ink);
  pointer-events: none;
}

/* portrait screens: the full photo height is visible, so anchor directly */
@media (max-aspect-ratio: 2/3) {
  .hero__tagline {
    padding-bottom: 39vh;
  }
}


.hero__tagline h1 {
  margin: 0;
  font-family: 'TAY Basal', 'Apfel Grotezk', 'Archivo', sans-serif;
  font-weight: 400;
  /* scales with the photo so the line keeps the same relationship to
     the water at every window width (TAY runs optically wide) */
  font-size: clamp(15px, 1.9vw, 42px);
  line-height: 1.2;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

/* ============================================================
   Interior pages — shared page furniture
   ============================================================ */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page__main {
  flex: 1;
}

/* page title block */
.page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 100px 60px 76px;
  position: relative;
}

.eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.34em;
  color: var(--ink-55);
}

.page-title h1 {
  margin: 0;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 0.24em;
}

/* footer */
.site-footer {
  padding: 30px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-55);
}

/* ============================================================
   Schedule — flyer layout: vertical wordmark rail on the left,
   photo + ruled day ledger on the right
   ============================================================ */

.schD {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 56px 96px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  column-gap: 56px;
  align-items: stretch;
}

/* the vertical wordmark; sized to span the rail by the page script */
.schD__rail {
  position: relative;
}

.schD__word {
  margin: 0;
  position: absolute;
  inset: 0;
}

.schD__word svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.schD__word text {
  font-family: 'TAY Basal', 'Archivo', sans-serif;
  font-weight: 400;
  fill: var(--cocoa);
  user-select: none;
}

.schD__photo {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 50% 62%;   /* keep the harbor, trim the sky */
}

.schD-list {
  margin-top: 8px;
}

.schD-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  column-gap: 28px;
  padding: 22px 2px 24px;
  border-bottom: 1px solid var(--hair);
}

/* the list ends on its own rule so the page doesn't trail off */
.schD-row:last-child { border-bottom: 1.5px solid var(--rule); }

.schD-row__date {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
}

.schD-row__day {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 400;
  color: var(--ink-55);
  text-transform: uppercase;
}

.schD-event + .schD-event { margin-top: 26px; }

.schD-row__name {
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
}

.schD-row__meta {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-65);
  text-transform: uppercase;
}

.schD-row__meta span { white-space: nowrap; }

.schD-row__note {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--ink-65);
  max-width: 52ch;
}

/* ============================================================
   RSVP — standard centered page: title block, then the form
   ============================================================ */

.rsvpWrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 32px 110px;
}

.rsvpF__intro {
  margin: 0;
  font-size: 13.5px;
  line-height: 2;
  font-weight: 300;
  color: var(--ink-65);
  text-align: center;
}

.rsvpF__deadline {
  margin-top: 12px;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-55);
  text-align: center;
}

.rsvpF__field { margin-top: 40px; }

.rsvpWrap label,
.rsvpWrap legend {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
  padding: 0;
}

.rsvpF__optional {
  font-weight: 400;
  color: var(--ink-55);
}

.rsvpWrap input[type="text"],
.rsvpWrap textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  padding: 10px 2px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  resize: vertical;
}

.rsvpWrap input[type="text"]:focus,
.rsvpWrap textarea:focus {
  border-bottom-color: var(--cocoa);
}

.rsvpWrap ::placeholder { color: var(--ink-55); opacity: 1; }

.rsvpF__choices {
  border: none;
  margin: 40px 0 0;
  padding: 0;
}

.rsvpF__choice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  cursor: pointer;
}

.rsvpF__choice input {
  accent-color: var(--ink);
  width: 15px;
  height: 15px;
  margin: 0;
}

.rsvpF__choice span {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 400;
  text-transform: uppercase;
}

.rsvpF__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rsvpF__err {
  margin-top: 28px;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: var(--cocoa);
}

.rsvpF__submit {
  margin-top: 44px;
  font-family: inherit;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  font-weight: 500;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 16px 44px;
  cursor: pointer;
}

.rsvpF__submit:hover {
  background: var(--cocoa);
  border-color: var(--cocoa);
  color: var(--cream-on-cocoa);
}

/* ---- find-your-invitation row ---- */

.rsvpFind__row {
  display: flex;
  gap: 18px;
  align-items: flex-end;
}

.rsvpFind__row input { flex: 1; }

.rsvpFind__go {
  margin-top: 0 !important;
  flex: none;
  padding: 14px 26px;
}

/* multiple matching parties */
.rsvpChoices { margin-top: 36px; }

.rsvpChoices__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
}

.rsvpChoices__btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: transparent;
  border: 1.5px solid var(--ink);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.rsvpChoices__btn:hover {
  border-color: var(--cocoa);
  color: var(--cocoa);
}

/* ---- the party's cards ---- */

.rsvpParty__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.rsvpParty__name {
  font-size: 15px;
  letter-spacing: 0.26em;
  font-weight: 600;
  text-transform: uppercase;
}

.rsvpParty__again {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-55);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  flex: none;
}

.rsvpParty__updated {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--cocoa);
}

.rsvpCard {
  border-top: 1px solid var(--hair);
  margin-top: 52px;
  padding-top: 36px;
}

/* the first card sits directly under the party header — no divider needed */
.rsvpCard:first-child {
  border-top: none;
  margin-top: 40px;
  padding-top: 0;
}

.rsvpCard__name {
  font-size: 13px;
  letter-spacing: 0.24em;
  font-weight: 600;
  text-transform: uppercase;
}

.rsvpCard .rsvpCard__group { margin-top: 24px; }
.rsvpCard .rsvpCard__diet { margin-top: 26px; }

/* follow-up question, indented under its parent answer */
.rsvpCond {
  margin-left: 27px;
  padding-left: 20px;
  border-left: 1px solid var(--hair);
}

/* read-only summary once a party has replied */
.rsvpSum__row {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 300;
}

.rsvpSum__row span {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: var(--ink-55);
}

/* confirmation state */
.rsvpD {
  text-align: center;
  padding: 0 0 40px;
  margin-top: -48px;   /* pull the star up close under the RSVP title */
}

/* spur-rowel spin on reveal: fast flick, friction decay, comes to rest */
@keyframes spur-spin {
  from { transform: rotate(0turn); }
  to   { transform: rotate(3turn); }
}

.rsvpD__star {
  animation: spur-spin 3.3s cubic-bezier(.15, .68, .25, 1);
}

@media (prefers-reduced-motion: reduce) {
  .rsvpD__star { animation: none; }
}

.rsvpD__title {
  margin-top: 22px;
  font-size: 15px;
  letter-spacing: 0.26em;
  font-weight: 600;
  text-transform: uppercase;
}

.rsvpD__note {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 2;
  font-weight: 300;
  color: var(--ink-65);
}

.rsvpD__video:not(:empty) {
  margin-top: 36px;
}

.rsvpD__video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

/* ============================================================
   Split sections — image beside copy (the approved pattern)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px 56px;
  align-items: start;
}

.split--flip {
  grid-template-columns: 1fr 420px;
}

.split--flip .split__txt { order: 2; }
.split--flip .split__img { order: 1; }

.split__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.split__txt .eyebrow { margin-bottom: 20px; }

.split__txt h1,
.split__txt h2 {
  margin: 0 0 26px;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.22em;
}

.split__intro {
  margin: 0 0 40px;
  font-size: 13.5px;
  line-height: 2;
  font-weight: 300;
  color: var(--ink-65);
  max-width: 44ch;
}

.split__img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.split--flip .split__img { height: 540px; }

/* no photo set → single centered column */
.split:not(:has(.split__img)) {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.split:not(:has(.split__img)) .split__txt {
  align-items: center;
  text-align: center;
}
.split:not(:has(.split__img)) .split__intro { text-align: center; }

/* bold arrowed rows — functional lines, not hairlines */
.linklist {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 460px;
}

.linklist__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 2px 14px;
  border-bottom: 1.5px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
}

.linklist__main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.linklist__label {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  font-weight: 500;
}

.linklist__arrow {
  flex: none;
  transition: transform 0.22s ease;
}

a.linklist__row:hover .linklist__arrow {
  transform: translate(3px, -3px);
}

@media (prefers-reduced-motion: reduce) {
  .linklist__arrow { transition: none; }
  a.linklist__row:hover .linklist__arrow { transform: none; }
}

.linklist__sub {
  font-size: 12.5px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--ink-65);
}

/* ============================================================
   Things To Do — travel's split pattern, photos a size down
   ============================================================ */

.split--head { padding-bottom: 8px; }

.split--compact {
  max-width: 1140px;
  padding-top: 52px;
  padding-bottom: 52px;
}
.split--compact .split__img { height: 400px; }

/* the spur star as an asterisk — spins once like a rowel, again on hover */
.fav-star {
  flex: none;
  width: 13px;
  height: 13px;
  margin-top: -7px; /* raised, asterisk-style */
  color: var(--ink);
}

@keyframes spur-spin { to { transform: rotate(3turn); } }
@keyframes spur-respin { to { transform: rotate(2turn); } }

.fav-star path {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: spur-spin 3.3s cubic-bezier(0.15, 0.68, 0.25, 1);
}
.linklist__row:hover .fav-star path {
  animation: spur-respin 1.6s cubic-bezier(0.15, 0.68, 0.25, 1);
}

/* key under the intro: star = OUR FAV */
.fav-key {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  font-weight: 500;
  color: var(--ink-65);
  margin-top: -14px; /* tucks up under the intro's bottom margin */
}
.fav-key .fav-star { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .fav-star path,
  .linklist__row:hover .fav-star path { animation: none; }
}

/* legacy photo placeholder box */
.photo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAE3D1;
  color: var(--ink-50);
  font-size: 10px;
  letter-spacing: 0.32em;
}

/* ============================================================
   Cocoa closing band
   ============================================================ */

.cocoa-band {
  background: var(--cocoa);
  color: var(--cream-on-cocoa);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 80px 60px 92px;
  text-align: center;
  margin-top: 48px;
}

.cocoa-band__art { height: 84px; width: auto; opacity: 0.92; }

.cocoa-band__signoff {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.cocoa-band__cta {
  background: var(--cream-on-cocoa);
  color: #3E2E22;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.34em;
  padding: 17px 44px;
}

.cocoa-band__note {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--cream-on-cocoa-55);
}

/* ============================================================
   Registry / FAQ specifics (both live in split sections now)
   ============================================================ */

.registry__note {
  margin: 0 0 40px;
  font-size: 13.5px;
  line-height: 2;
  font-weight: 300;
  color: var(--ink-65);
  max-width: 44ch;
}

.btn-outline {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  border: 1.5px solid var(--ink);
  padding: 14px 34px;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: 100%;
  max-width: 560px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__q {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.faq__item { text-align: left; }

.faq__a {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--ink-65);
}

/* rich-text answers arrive as paragraphs/lists — keep them airy but tight */
.faq__a p { margin: 0; }
.faq__a p + p { margin-top: 0.7em; }
.faq__a ul, .faq__a ol { margin: 0.4em 0 0; padding-left: 1.2em; }

/* ============================================================
   Photo bands (optional editorial images between sections)
   ============================================================ */

.photo-band {
  max-width: 1180px;
  margin: 0 auto 84px;
  padding: 0 60px;
}

.photo-band img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.registry__photo {
  width: 380px;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 18px;
    padding: 22px 24px;
  }
  .nav__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
  }
  /* nav floats over the full-bleed photo on phones too */
  .nav--hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }

  .split,
  .split--flip {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px;
  }
  .split--flip .split__txt { order: 1; }
  .split--flip .split__img { order: 2; }
  .split__img,
  .split--flip .split__img { height: 340px; }
  .split--compact .split__img { height: 300px; }
  .split__txt h1,
  .split__txt h2 { font-size: 24px; }

  .schD {
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 32px;
    padding: 48px 24px 72px;
  }
  .schD__photo { height: 300px; }
  .schD-row {
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 20px;
  }

  .page-title { padding: 72px 32px 56px; }

  .photo-band {
    padding: 0 24px;
    margin-bottom: 64px;
  }
  .photo-band img { height: 260px; }

  .cocoa-band { padding: 64px 28px 72px; }
}

@media (max-width: 560px) {
  .hero__tagline h1 {
    letter-spacing: 0.16em;
  }
  .page-title h1 { font-size: 24px; }

  .schD {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 22px;
    padding: 40px 20px 64px;
  }
  .schD__photo { height: 220px; }
  .schD-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 20px 2px;
  }
  .schD-row__date { display: inline; }
  .schD-row__day { display: inline; margin-left: 10px; }

  /* RSVP lookup: stack the field and button on phones */
  .rsvpFind__row {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }
  .rsvpFind__go { width: 100%; padding: 16px 26px; }
}
