:root {
  --gather-ink: #1f2a2f;
  --gather-deep: #26353c;
  --gather-night: #172328;
  --gather-paper: #f2efe8;
  --gather-chalk: #fbf9f5;
  --gather-mist: #dbe5e7;
  --gather-water: #84a5b0;
  --gather-sun: #c96f4e;
  --gather-muted: #5d686b;
  --gather-line: rgba(31, 42, 47, .16);
  --gather-light-line: rgba(242, 239, 232, .18);
  --gather-page: clamp(22px, 5.2vw, 88px);
  --gather-ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--gather-ink);
  background: var(--gather-paper);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
h1, h2, h3, p, figure, blockquote, dl { margin-top: 0; }
a { color: inherit; }
button, input { font: inherit; }

.gather-skip {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--gather-paper);
  background: var(--gather-deep);
  text-decoration: none;
  transform: translateY(-150%);
}
.gather-skip:focus { transform: none; }
.gather-container { width: min(1180px, calc(100% - (2 * var(--gather-page)))); margin-inline: auto; }
.gather-eyebrow,
.nav-label {
  color: var(--gather-sun);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* The same Brotherhood architecture, expressed with a quieter daylight header. */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--gather-ink);
  border-bottom: 1px solid rgba(31, 42, 47, .1);
  background: rgba(242, 239, 232, .94);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding-inline: var(--gather-page);
}
.brand { width: fit-content; display: flex; align-items: center; text-decoration: none; }
.brand-copy { line-height: 1; }
.brand-copy strong,
.brand-copy small { font-family: "Barlow Condensed", sans-serif; }
body[data-brotherhood-page="gathering"] .brand-mark {
  border-color: rgba(31, 42, 47, .2);
  background: rgba(31, 42, 47, .04);
}
body[data-brotherhood-page="gathering"] .brand-mark img { filter: none !important; }
body[data-brotherhood-page="gathering"] .wb-home-link { --wb-home-accent: var(--gather-sun); }
.menu-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  grid-column: 2;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after { width: 24px; height: 1px; display: block; background: currentColor; content: ""; transition: transform .25s ease, opacity .25s ease; }
.menu-icon::before { transform: translateY(-7px); }
.menu-icon::after { transform: translateY(6px); }
body.nav-open .menu-icon { background: transparent; }
body.nav-open .menu-icon::before { transform: translateY(1px) rotate(45deg); }
body.nav-open .menu-icon::after { transform: translateY(0) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 125px var(--gather-page) 60px;
  color: var(--gather-paper);
  background: var(--gather-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; transform: none; }
.nav-grid { width: min(1180px, 100%); display: grid; grid-template-columns: 1.15fr .5fr; gap: 90px; margin-inline: auto; }
.nav-label { color: var(--gather-water); }
.nav-links { display: grid; margin-top: 24px; border-top: 1px solid var(--gather-light-line); }
.nav-links a { min-height: 90px; display: grid; grid-template-columns: 55px 1fr; align-items: center; border-bottom: 1px solid var(--gather-light-line); color: inherit; text-decoration: none; }
.nav-links small { color: var(--gather-water); font-family: "Barlow Condensed", sans-serif; font-size: 13px; letter-spacing: .12em; }
.nav-links strong { font-family: "Barlow Condensed", sans-serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 600; letter-spacing: .01em; line-height: 1; text-transform: uppercase; }
.nav-links a:hover strong,
.nav-links a:focus-visible strong { color: var(--gather-water); }
.nav-aside { align-content: start; }
.nav-aside p { max-width: 330px; margin-top: 24px; color: rgba(242, 239, 232, .62); }

/* Actions */
.gather-actions { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 32px; }
.gather-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.gather-button:hover,
.gather-button:focus-visible { transform: translateY(-2px); }
.gather-button--sun { border-color: var(--gather-sun); color: #fff; background: var(--gather-sun); }
.gather-button--sun:hover,
.gather-button--sun:focus-visible { color: var(--gather-sun); background: transparent; }
.gather-button--dark { border-color: var(--gather-ink); color: var(--gather-paper); background: var(--gather-ink); }
.gather-button--dark:hover,
.gather-button--dark:focus-visible { color: var(--gather-ink); background: transparent; }
.gather-text-link { padding: 8px 0 5px; border-bottom: 1px solid currentColor; font-family: "Barlow Condensed", sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.gather-section-action { width: fit-content; margin-top: 42px; }

/* A light, split-screen first room: the call is visible instead of implied. */
.gather-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  padding-top: 84px;
  background: var(--gather-paper);
}
.gather-hero__copy-panel { min-width: 0; display: grid; align-items: center; padding: clamp(70px, 8vw, 135px) var(--gather-page); }
.gather-hero__content { width: min(570px, 100%); margin-left: auto; }
.gather-hero h1 { margin: 0 0 24px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(86px, 10vw, 155px); font-weight: 600; letter-spacing: -.025em; line-height: .76; text-transform: uppercase; }
.gather-hero__lead { max-width: 590px; margin-bottom: 18px; font-family: "Fraunces", Georgia, serif; font-size: clamp(31px, 3.2vw, 48px); font-weight: 300; letter-spacing: -.035em; line-height: 1.05; }
.gather-hero__copy { max-width: 570px; margin-bottom: 0; color: var(--gather-muted); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.7; }
.gather-hero__media { position: relative; min-height: calc(100svh - 84px); overflow: hidden; background: #d5d1c8; }
.gather-hero__media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(17, 29, 34, .44)); content: ""; pointer-events: none; }
.gather-hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; filter: saturate(.78) contrast(.97) brightness(.97); }
.gather-hero__media-note { position: absolute; z-index: 1; right: 38px; bottom: 30px; color: rgba(255,255,255,.9); font-family: "Barlow Condensed", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* Immediate practical orientation */
body[data-brotherhood-page="gathering"] .wb-orientation { background: var(--gather-chalk); }
body[data-brotherhood-page="gathering"] .wb-orientation__eyebrow { color: var(--gather-water); font-family: "Barlow Condensed", sans-serif; font-size: 12px; }
body[data-brotherhood-page="gathering"] .wb-orientation__head h2 { font-family: "Fraunces", Georgia, serif; }

/* The central question, held beside a direct view of human attention outdoors. */
.gather-question {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  padding: clamp(120px, 16vh, 190px) var(--gather-page);
  background: var(--gather-chalk);
}
.gather-question__copy { width: min(730px, 100%); margin-left: auto; }
.gather-question__image { width: min(560px, 100%); height: min(64svh, 700px); overflow: hidden; }
.gather-question__image img { width: 100%; height: 100%; object-fit: cover; object-position: 42% center; filter: saturate(.72) contrast(.97); }
.gather-question h2,
.gather-rhythm h2,
.gather-life h2,
.gather-join h2 { margin-bottom: 32px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(58px, 7.2vw, 105px); font-weight: 600; letter-spacing: -.018em; line-height: .86; text-transform: uppercase; text-wrap: balance; }
.gather-question__copy > p:not(.gather-eyebrow) { max-width: 650px; color: var(--gather-muted); }
.gather-question blockquote { max-width: 670px; margin: 46px 0 0; padding-top: 26px; border-top: 2px solid var(--gather-sun); font-family: "Fraunces", Georgia, serif; font-size: clamp(24px, 2.5vw, 37px); font-weight: 300; letter-spacing: -.025em; line-height: 1.3; }

/* Heart and spine as a calm field, not another dark cinematic panel. */
.gather-polarity { position: relative; min-height: 92svh; display: grid; align-items: center; color: var(--gather-ink); background: var(--gather-mist); overflow: hidden; }
.gather-polarity::before,
.gather-polarity::after { position: absolute; border: 1px solid rgba(31,42,47,.1); border-radius: 50%; content: ""; }
.gather-polarity::before { width: min(66vw, 920px); aspect-ratio: 1; right: -22vw; top: -42%; }
.gather-polarity::after { width: min(38vw, 560px); aspect-ratio: 1; right: -4vw; top: 15%; }
.gather-polarity__inner { position: relative; z-index: 1; padding: 145px 0; text-align: center; }
.gather-polarity h2 { max-width: 1040px; margin: 0 auto; font-family: "Barlow Condensed", sans-serif; font-size: clamp(78px, 12vw, 175px); font-weight: 600; letter-spacing: -.03em; line-height: .76; text-transform: uppercase; }
.gather-polarity p:last-of-type { max-width: 730px; margin: 48px auto 0; color: var(--gather-muted); font-family: "Fraunces", Georgia, serif; font-size: clamp(23px, 2.4vw, 34px); font-weight: 300; }

/* The call rhythm is an editorial sequence, not a card grid. */
.gather-rhythm { min-height: 100svh; padding: clamp(130px, 18vh, 210px) 0; background: var(--gather-paper); }
.gather-rhythm__head { display: grid; grid-template-columns: minmax(0, .72fr) minmax(320px, .32fr); gap: clamp(55px, 9vw, 135px); align-items: end; }
.gather-rhythm__head .gather-eyebrow { grid-column: 1 / -1; margin-bottom: -18px; }
.gather-rhythm__head h2 { margin: 0; }
.gather-rhythm__head > p:last-child { margin: 0 0 8px; color: var(--gather-muted); }
.gather-rhythm__flow { margin-top: clamp(75px, 11vh, 125px); border-top: 1px solid var(--gather-line); }
.gather-rhythm__flow article { display: grid; grid-template-columns: minmax(220px, .4fr) 1fr; gap: 50px; align-items: baseline; padding: 31px 0; border-bottom: 1px solid var(--gather-line); }
.gather-rhythm__flow article > span { font-family: "Barlow Condensed", sans-serif; font-size: clamp(40px, 5vw, 68px); font-weight: 600; line-height: .9; text-transform: uppercase; }
.gather-rhythm__flow article p { max-width: 680px; margin: 0; color: var(--gather-muted); font-size: 18px; }
.gather-rhythm__action { margin-top: 55px; }

/* A quieter return to ordinary life. */
.gather-life {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .85fr);
  gap: clamp(55px, 6vw, 100px);
  align-items: center;
  padding: clamp(120px, 16vh, 190px) var(--gather-page);
  background: #ebe3d8;
}
.gather-life__copy { width: min(760px, 100%); margin-left: auto; }
.gather-life__copy > p:last-of-type { max-width: 660px; color: var(--gather-muted); font-size: clamp(18px, 1.55vw, 22px); }
.gather-life__media { width: min(760px, 100%); margin: 0; }
.gather-life__media img,
.gather-life__media video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: saturate(.7) contrast(.97); }

/* RSVP and confirmation */
.gather-join { min-height: 100svh; display: grid; align-items: center; padding: clamp(130px, 18vh, 210px) 0; color: var(--gather-paper); background: var(--gather-deep); }
.gather-join__grid { display: grid; grid-template-columns: minmax(0, .62fr) minmax(420px, .58fr); gap: clamp(55px, 8vw, 110px); align-items: center; }
.gather-join .gather-eyebrow { color: var(--gather-water); }
.gather-join h2 { margin-bottom: 24px; font-size: clamp(68px, 8vw, 116px); }
.gather-join__statement { max-width: 650px; font-family: "Fraunces", Georgia, serif; font-size: clamp(25px, 3vw, 41px); font-weight: 300; letter-spacing: -.03em; line-height: 1.2; }
.gather-join__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 45px 0 0; border-top: 1px solid var(--gather-light-line); border-bottom: 1px solid var(--gather-light-line); }
.gather-join__facts div { padding: 18px 15px; border-right: 1px solid var(--gather-light-line); }
.gather-join__facts div:last-child { border-right: 0; }
.gather-join__facts dt { color: var(--gather-water); font-family: "Barlow Condensed", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.gather-join__facts dd { margin: 5px 0 0; font-size: 14px; font-weight: 600; }
.gather-join__note { max-width: 610px; margin: 24px 0 0; color: rgba(242,239,232,.52); font-size: 13px; }
.gather-dates { border-top: 2px solid var(--gather-sun); }
.gather-dates__label { margin: 18px 0 8px; color: var(--gather-water); font-family: "Barlow Condensed", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gather-date { border-bottom: 1px solid var(--gather-light-line); }
.gather-date summary { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 18px 2px; list-style: none; cursor: pointer; }
.gather-date summary::-webkit-details-marker { display: none; }
.gather-date summary time { display: grid; grid-template-columns: 55px 1fr; gap: 14px; align-items: center; }
.gather-date summary time > strong { color: var(--gather-paper); font-family: "Barlow Condensed", sans-serif; font-size: 50px; font-weight: 600; line-height: .8; }
.gather-date summary time > span { display: grid; color: var(--gather-paper); font-family: "Barlow Condensed", sans-serif; font-size: 18px; font-weight: 600; letter-spacing: .03em; line-height: 1.1; text-transform: uppercase; }
.gather-date summary small { margin-top: 5px; color: rgba(242,239,232,.46); font-family: "Poppins", sans-serif; font-size: 10px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.gather-date summary > b { color: var(--gather-water); font-family: "Barlow Condensed", sans-serif; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.gather-date summary > b::after { margin-left: 9px; content: "+"; }
.gather-date[open] summary > b::after { content: "−"; }
.gather-date[open] summary { border-bottom: 1px solid var(--gather-light-line); }
.gather-date__media { height: clamp(170px, 18vw, 235px); margin: 20px 2px 0; overflow: hidden; background: rgba(242,239,232,.06); }
.gather-date__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(.96); }
.gather-form { padding: 24px 2px 28px; }
.gather-form__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.gather-form__fields label { display: grid; gap: 7px; margin-top: 17px; color: rgba(242,239,232,.62); font-family: "Barlow Condensed", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.gather-form input[type="text"],
.gather-form input[type="email"] { width: 100%; min-height: 52px; border: 0; border-bottom: 1px solid rgba(242,239,232,.38); border-radius: 0; outline: 0; color: var(--gather-paper); background: transparent; }
.gather-form input:focus { border-bottom-color: var(--gather-sun); }
.gather-form__consent { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin: 24px 0; color: rgba(242,239,232,.58); font-size: 12px; line-height: 1.55; }
.gather-form__consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gather-sun); }
.gather-form__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.gather-calendar { display: inline-flex; align-items: center; min-height: 48px; padding: 10px 0 7px; border-bottom: 1px solid rgba(242,239,232,.42); color: var(--gather-paper); font-family: "Barlow Condensed", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; }
.gather-calendar:hover,
.gather-calendar:focus-visible { border-bottom-color: var(--gather-sun); color: var(--gather-sun); }

/* Gathering-specific RSVP confirmation. */
body.gather-confirmation-open { overflow: hidden; }
.gather-confirmation[hidden] { display: none; }
.gather-confirmation { position: fixed; z-index: 5000; inset: 0; display: grid; place-items: center; padding: 24px; }
.gather-confirmation__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(16, 27, 31, .76); backdrop-filter: blur(9px); cursor: default; }
.gather-confirmation__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: clamp(42px, 7vw, 78px);
  color: var(--gather-ink);
  background: var(--gather-paper);
  border-top: 4px solid var(--gather-sun);
  outline: 0;
  box-shadow: 0 30px 100px rgba(5, 14, 17, .28);
}
.gather-confirmation__close { position: absolute; top: 18px; right: 20px; width: 42px; height: 42px; display: grid; place-items: center; border: 0; color: var(--gather-ink); background: transparent; font-size: 34px; font-weight: 300; line-height: 1; cursor: pointer; }
.gather-confirmation__close:focus-visible { outline: 1px solid var(--gather-ink); outline-offset: 2px; }
.gather-confirmation__eyebrow { margin-bottom: 20px; color: var(--gather-sun); font-family: "Barlow Condensed", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.gather-confirmation h2 { max-width: 620px; margin: 0; font-family: "Barlow Condensed", sans-serif; font-size: clamp(70px, 11vw, 118px); font-weight: 600; letter-spacing: -.025em; line-height: .78; text-transform: uppercase; }
.gather-confirmation__date { margin: 30px 0 0; color: var(--gather-ink); font-family: "Fraunces", Georgia, serif; font-size: clamp(24px, 3.3vw, 38px); font-weight: 300; letter-spacing: -.02em; line-height: 1.25; }
.gather-confirmation__body { max-width: 620px; margin: 24px 0 0; color: var(--gather-muted); font-size: 15px; line-height: 1.75; }
.gather-confirmation__body strong { color: var(--gather-ink); font-weight: 600; }
.gather-confirmation__calendars { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 34px; }
.gather-confirmation__calendar { min-height: 58px; display: grid; place-items: center; padding: 14px 18px; border: 1px solid rgba(31,42,47,.34); color: var(--gather-ink); font-family: "Barlow Condensed", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .1em; line-height: 1.3; text-align: center; text-decoration: none; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.gather-confirmation__calendar--primary { border-color: var(--gather-sun); color: #fff; background: var(--gather-sun); }
.gather-confirmation__calendar:hover,
.gather-confirmation__calendar:focus-visible { border-color: var(--gather-ink); color: var(--gather-paper); background: var(--gather-ink); outline: 0; }
.gather-confirmation__note { margin: 22px 0 0; color: rgba(31,42,47,.55); font-size: 12px; line-height: 1.65; }
.gather-confirmation__return { margin-top: 30px; padding: 7px 0 5px; border: 0; border-bottom: 1px solid currentColor; color: var(--gather-ink); background: transparent; font-family: "Barlow Condensed", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; cursor: pointer; }
.gather-confirmation__return:hover,
.gather-confirmation__return:focus-visible { color: var(--gather-sun); outline: 0; }

/* Brotherhood continuation and footer */
body[data-brotherhood-page="gathering"] .wb-continuation { background: var(--gather-night); }
body[data-brotherhood-page="gathering"] .wb-continuation__eyebrow,
body[data-brotherhood-page="gathering"] .wb-continuation__link small { color: var(--gather-water); }
body[data-brotherhood-page="gathering"] .wb-continuation__head h2,
body[data-brotherhood-page="gathering"] .wb-continuation__link strong { font-family: "Barlow Condensed", sans-serif; font-weight: 600; letter-spacing: 0; text-transform: uppercase; }
.site-footer { padding: 75px 0 28px; color: var(--gather-paper); background: #10191d; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .55fr .55fr; gap: 70px; }
.footer-intro strong { font-family: "Barlow Condensed", sans-serif; font-size: 47px; font-weight: 600; letter-spacing: .01em; line-height: 1; text-transform: uppercase; }
.footer-intro p { max-width: 430px; margin-top: 14px; color: rgba(242,239,232,.5); font-size: 14px; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column h3 { margin-bottom: 8px; color: var(--gather-water); font-family: "Barlow Condensed", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a { color: rgba(242,239,232,.7); font-size: 14px; text-decoration: none; }
.footer-column a:hover,
.footer-column a:focus-visible { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 65px; padding-top: 22px; border-top: 1px solid var(--gather-light-line); color: rgba(242,239,232,.38); font-family: "Barlow Condensed", sans-serif; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom a { text-decoration: none; }

.gather-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--gather-ease), transform .8s var(--gather-ease); }
.gather-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .gather-hero { grid-template-columns: 1fr 1fr; }
  .gather-hero__copy-panel { padding-inline: 38px; }
  .gather-question { grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr); gap: 55px; }
  .gather-life { grid-template-columns: 1fr .78fr; }
  .gather-rhythm__head,
  .gather-join__grid { grid-template-columns: 1fr; }
  .gather-rhythm__head .gather-eyebrow { margin-bottom: 0; }
  .gather-rhythm__head > p:last-child { max-width: 720px; margin-left: auto; }
  .gather-form { width: min(680px, 100%); margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 840px) {
  .gather-hero { min-height: 0; grid-template-columns: 1fr; padding-top: 70px; }
  .gather-hero__media { min-height: 46svh; order: -1; }
  .gather-hero__copy-panel { min-height: 54svh; padding: 74px var(--gather-page) 90px; }
  .gather-hero__content { margin: 0; }
  .gather-question { min-height: 0; grid-template-columns: 1fr; padding-block: 110px; }
  .gather-question__copy { margin: 0; }
  .gather-question__image { width: min(520px, 100%); height: 62svh; margin-left: auto; }
  .gather-life { min-height: 0; grid-template-columns: 1fr; padding-block: 110px; }
  .gather-life__copy { margin: 0; }
  .gather-life__media { width: min(540px, 88%); margin-left: auto; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .header-inner { min-height: 70px; padding-inline: 14px; }
  .menu-button { width: 42px; height: 42px; }
  .nav-overlay { align-items: start; padding: 100px 20px 40px; }
  .nav-grid { grid-template-columns: 1fr; gap: 44px; }
  .nav-links a { min-height: 72px; grid-template-columns: 42px 1fr; }
  .nav-links strong { font-size: 32px; }
  .gather-container { width: min(100% - 36px, 1180px); }
  .gather-hero__media { min-height: 43svh; }
  .gather-hero__media video { object-position: 50% center; }
  .gather-hero__media-note { right: 18px; bottom: 16px; font-size: 10px; }
  .gather-hero__copy-panel { min-height: 0; padding: 65px 20px 82px; }
  .gather-hero h1 { font-size: clamp(76px, 23vw, 104px); }
  .gather-hero__lead { font-size: 29px; }
  .gather-hero__copy { font-size: 15px; }
  .gather-actions { align-items: stretch; flex-direction: column; }
  .gather-actions .gather-button { width: 100%; }
  .gather-actions .gather-text-link { width: fit-content; }
  .gather-question,
  .gather-life { padding: 100px 20px; }
  .gather-question__image { height: 55svh; }
  .gather-question h2,
  .gather-rhythm h2,
  .gather-life h2,
  .gather-join h2 { font-size: clamp(52px, 16vw, 74px); }
  .gather-polarity { min-height: 86svh; }
  .gather-polarity__inner { padding: 110px 0; }
  .gather-polarity h2 { font-size: clamp(74px, 22vw, 104px); }
  .gather-polarity p:last-of-type { font-size: 21px; }
  .gather-rhythm,
  .gather-join { min-height: 0; padding: 110px 0; }
  .gather-rhythm__flow { margin-top: 68px; }
  .gather-rhythm__flow article { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .gather-rhythm__flow article p { font-size: 16px; }
  .gather-life__media { width: 100%; }
  .gather-join__grid { gap: 68px; }
  .gather-join__facts { grid-template-columns: 1fr; }
  .gather-join__facts div { border-right: 0; border-bottom: 1px solid var(--gather-light-line); }
  .gather-join__facts div:last-child { border-bottom: 0; }
  .gather-form { margin: 0; }
  .gather-date summary { gap: 10px; }
  .gather-date summary time { grid-template-columns: 44px 1fr; gap: 10px; }
  .gather-date summary time > strong { font-size: 42px; }
  .gather-date summary time > span { font-size: 16px; }
  .gather-date summary > b { font-size: 11px; }
  .gather-date__media { height: 170px; margin-top: 14px; }
  .gather-form__fields { grid-template-columns: 1fr; }
  .gather-form__actions,
  .gather-form__actions .gather-button { width: 100%; }
  .gather-confirmation { padding: 12px; }
  .gather-confirmation__dialog { max-height: calc(100svh - 24px); padding: 54px 22px 38px; }
  .gather-confirmation h2 { font-size: clamp(64px, 22vw, 92px); }
  .gather-confirmation__calendars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .gather-reveal { opacity: 1; transform: none; }
}
