:root {
  --yellow: #ffc400;
  --yellow-soft: #ffdc5e;
  --ink: #252525;
  --ink-2: #343434;
  --paper: #ffffff;
  --mist: #f5f5f2;
  --line: #d9d9d3;
  --muted: #686863;
  --container: 1180px;
  --shadow: 0 24px 70px rgb(25 25 20 / 12%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

p {
  text-wrap: pretty;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(37 37 37 / 8%);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  max-width: 280px;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.main-nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.nav-cta:hover {
  background: #000;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 11px;
  display: none;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: var(--yellow);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(37 37 37 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(37 37 37 / 6%) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 88%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgb(37 37 37 / 12%);
  border-radius: 50%;
}

.hero-orb-one {
  width: 620px;
  height: 620px;
  top: -300px;
  right: -100px;
}

.hero-orb-two {
  width: 880px;
  height: 880px;
  right: -260px;
  bottom: -620px;
}

.hero-grid {
  position: relative;
  min-height: 550px;
  padding-block: 54px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1,
.section h2,
.location h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.25rem, 5.8vw, 5.25rem);
}

.hero-intro {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  min-height: 51px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #000;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.text-link-underlined {
  margin-top: 14px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
}

.logo-card {
  position: relative;
  padding: 21px 23px 22px;
  display: grid;
  gap: 16px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.logo-card::before {
  display: none;
}

.logo-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-card-kicker {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-card-place {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.3;
  text-align: right;
}

.logo-frame {
  height: 214px;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.logo-frame img {
  width: 100%;
  max-width: none;
  height: auto;
  transform: translateY(-19%);
}

.meeting-chip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgb(37 37 37 / 11%);
  border-radius: 16px;
  background: var(--mist);
  overflow: hidden;
}

.meeting-chip > div {
  padding: 11px 14px;
  display: grid;
  gap: 2px;
  line-height: 1.25;
}

.meeting-chip > div + div {
  border-left: 1px solid var(--line);
}

.meeting-chip span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meeting-chip strong {
  font-size: 1rem;
}

.section {
  padding-block: clamp(88px, 11vw, 145px);
}

.section h2,
.location h2 {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: clamp(50px, 9vw, 125px);
}

.about-copy {
  max-width: 590px;
  padding-top: 48px;
  justify-self: end;
  font-size: 1.08rem;
}

.about-copy p:first-child {
  margin-top: 0;
}

.about-copy p {
  margin-bottom: 19px;
}

.faith {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.faith::after {
  position: absolute;
  width: 440px;
  height: 440px;
  top: -250px;
  right: -170px;
  border: 1px solid rgb(37 37 37 / 15%);
  border-radius: 50%;
  content: "";
}

.faith-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: 50px;
}

.faith-heading > p {
  max-width: 520px;
  margin: 0;
  padding-top: 49px;
  justify-self: end;
  font-size: 1.06rem;
}

.belief-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.belief-card {
  min-height: 315px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(37 37 37 / 17%);
  border-radius: 22px 22px 22px 3px;
  background: rgb(255 255 255 / 65%);
}

.belief-card-dark {
  background: var(--ink);
  color: white;
}

.belief-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.belief-card h3 {
  margin: 52px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.belief-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.button-outline {
  margin-top: 32px;
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  background: var(--ink);
  color: white;
}

.gatherings {
  background: var(--mist);
}

.gatherings-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(390px, 1fr);
  align-items: start;
  gap: clamp(55px, 10vw, 135px);
}

.gatherings-intro p:last-child {
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.schedule {
  border-top: 1px solid var(--line);
}

.schedule-row {
  min-height: 150px;
  padding-block: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.day-badge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.schedule-row > div:nth-child(2) {
  display: grid;
}

.schedule-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.schedule-row strong {
  margin-top: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.1;
}

.location {
  position: relative;
  padding-block: clamp(88px, 10vw, 125px);
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.location::after {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -200px;
  bottom: -430px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.location-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 28px 28px 28px 4px;
  background: var(--yellow);
  color: var(--ink);
}

.location-card-heading {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgb(37 37 37 / 22%);
}

.location-card-heading span:first-child {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card-heading span:last-child {
  font-size: 1.3rem;
}

.location-card address {
  padding-block: clamp(29px, 4vw, 42px);
  display: grid;
  gap: 8px;
  font-style: normal;
}

.location-card address strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.location-card address span {
  font-size: 1rem;
  font-weight: 650;
}

.location-card-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(37 37 37 / 22%);
}

.location-card-times > div {
  padding-top: 18px;
  display: grid;
  gap: 3px;
}

.location-card-times > div + div {
  padding-left: 22px;
  border-left: 1px solid rgb(37 37 37 / 22%);
}

.location-card-times span {
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card-times strong {
  font-size: 1.15rem;
}

.eyebrow-light {
  color: var(--yellow);
}

.location-intro {
  max-width: 520px;
  margin: 28px 0 34px;
  color: #d3d3cc;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
}

.button-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.button-yellow:hover {
  background: var(--yellow-soft);
}

.contacts {
  background: var(--paper);
}

.contacts-heading {
  margin-bottom: clamp(38px, 6vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: clamp(42px, 8vw, 105px);
}

.contacts-heading > p {
  max-width: 540px;
  margin: 0;
  padding-top: 48px;
  justify-self: end;
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  min-height: 235px;
  padding: clamp(25px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px 24px 24px 4px;
  background: var(--mist);
}

.contact-card-link {
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.contact-card-email {
  background: var(--ink);
  color: white;
}

.contact-card-phone {
  border-color: var(--ink);
  background: var(--yellow);
}

.contact-card-label {
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card > strong {
  margin-top: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.contact-card-phone > strong {
  font-size: clamp(2.35rem, 4.5vw, 4.15rem);
}

.contact-card-action {
  margin-top: auto;
  padding-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-card-action span {
  transition: transform 180ms ease;
}

.contact-card-link:hover .contact-card-action span {
  transform: translate(2px, -2px);
}

.contact-card-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-status {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact-status-active {
  border-color: var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

.contact-card-instagram {
  border-color: var(--ink);
  background: white;
}

.contact-card-social > strong {
  margin-top: 42px;
}

.contact-card-social p {
  max-width: 420px;
  margin: auto 0 0;
  padding-top: 24px;
  color: var(--muted);
  font-size: 1rem;
}

.site-footer {
  padding-block: 38px;
  border-top: 1px solid #3e3e3e;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  padding: 4px;
  border-radius: 50%;
  background: white;
}

.footer-brand div {
  display: grid;
  line-height: 1.35;
}

.footer-brand span {
  color: #bdbdb8;
  font-size: 0.87rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: #e1e1dc;
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid #414141;
  color: #9e9e99;
  font-size: 0.82rem;
}

.privacy-page {
  background: var(--mist);
}

.privacy-home-link {
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.privacy-home-link:hover {
  background: var(--ink);
  color: white;
}

.privacy-hero {
  padding-block: clamp(72px, 9vw, 112px);
  border-bottom: 1px solid rgb(37 37 37 / 15%);
  background: var(--yellow);
}

.privacy-hero-inner {
  display: grid;
  justify-items: start;
}

.privacy-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.privacy-lead {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.23rem);
  line-height: 1.6;
}

.privacy-date {
  margin-top: 30px;
  padding: 8px 13px;
  border: 1px solid rgb(37 37 37 / 22%);
  border-radius: 999px;
  background: rgb(255 255 255 / 45%);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.privacy-layout {
  padding-block: clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: 245px minmax(0, 760px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.privacy-toc {
  position: sticky;
  top: 110px;
}

.privacy-toc > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.privacy-toc nav {
  margin-top: 16px;
  display: grid;
  border-top: 1px solid var(--line);
}

.privacy-toc a {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.privacy-toc a:hover {
  padding-left: 5px;
  color: var(--ink);
}

.privacy-article {
  min-width: 0;
}

.privacy-article section {
  padding: 0 0 58px;
  margin: 0 0 58px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.privacy-article section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-section-number {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
}

.privacy-article h2 {
  max-width: 650px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.privacy-article h3 {
  margin: 34px 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.privacy-article p {
  margin: 0 0 18px;
  color: #4e4e49;
  font-size: 1.02rem;
}

.privacy-article a {
  font-weight: 750;
  text-underline-offset: 4px;
}

.privacy-details {
  margin: 0 0 30px;
  border-top: 1px solid var(--line);
}

.privacy-details > div {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.privacy-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-details dd {
  margin: 0;
  font-weight: 750;
  line-height: 1.55;
}

.privacy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.privacy-list li {
  padding: 21px 0 21px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #4e4e49;
}

.privacy-list li::before {
  position: absolute;
  top: 29px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 1px var(--ink);
  content: "";
}

.privacy-list strong {
  color: var(--ink);
}

.privacy-highlight {
  margin-bottom: 27px;
  padding: 25px 27px 10px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--yellow);
}

.privacy-highlight > strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.privacy-highlight p {
  color: var(--ink);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    max-height: calc(100vh - 78px);
    padding: 28px 20px 38px;
    display: grid;
    gap: 4px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: white;
    box-shadow: 0 24px 60px rgb(25 25 20 / 14%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 4px;
    font-size: 1.08rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
    padding-inline: 20px !important;
    justify-self: start;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr 0.76fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7.6vw, 5.2rem);
  }

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

  .faith-heading,
  .about-grid,
  .gatherings-grid,
  .contacts-heading {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 690px;
    padding-top: 0;
    justify-self: start;
  }

  .faith-heading {
    gap: 25px;
  }

  .faith-heading > p {
    max-width: 650px;
    padding-top: 0;
    justify-self: start;
  }

  .contacts-heading {
    gap: 24px;
  }

  .contacts-heading > p {
    max-width: 650px;
    padding-top: 0;
    justify-self: start;
  }

  .gatherings-grid {
    gap: 50px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .privacy-toc {
    position: static;
  }

  .privacy-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .main-nav {
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 48px 54px;
    grid-template-columns: 1fr;
  }

  .hero::before {
    background-size: 48px 48px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .hero-visual {
    width: min(94%, 430px);
    margin: 4px auto 0;
  }

  .section h2,
  .location h2 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .belief-grid {
    grid-template-columns: 1fr;
  }

  .belief-card {
    min-height: 260px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    width: min(100%, 540px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }

  .privacy-header .brand-copy small {
    display: none;
  }

  .privacy-home-link {
    padding: 9px 13px;
    font-size: 0.8rem;
  }

  .privacy-toc nav {
    grid-template-columns: 1fr;
  }

  .privacy-details > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 460px) {
  .nav-wrap {
    gap: 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    max-width: 172px;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14.5vw, 4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-card {
    padding: 17px;
    border-radius: 22px;
  }

  .logo-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .logo-card-place {
    text-align: left;
  }

  .logo-frame {
    height: 184px;
  }

  .meeting-chip > div {
    padding-inline: 11px;
  }

  .location-card-times {
    grid-template-columns: 1fr;
  }

  .location-card-times > div + div {
    padding-top: 15px;
    padding-left: 0;
    margin-top: 15px;
    border-top: 1px solid rgb(37 37 37 / 22%);
    border-left: 0;
  }

  .schedule-row {
    gap: 18px;
  }

  .day-badge {
    width: 62px;
    height: 62px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .privacy-header .brand-copy strong {
    max-width: 145px;
    font-size: 0.72rem;
  }

  .privacy-home-link {
    padding: 8px 10px;
    font-size: 0.74rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
