@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-v20.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../assets/fonts/noto-serif-latin-v33.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Serif";
  font-style: italic;
  font-weight: 600 700;
  font-display: swap;
  src: url("../assets/fonts/noto-serif-latin-v33-italic.woff2") format("woff2");
}

:root {
  --color-primary: #041539;
  --color-primary-container: #1b2a4e;
  --color-secondary: #946411;
  --color-secondary-soft: #f0c864;
  --color-gold-light: #f8df9a;
  --color-gold-shadow: rgba(148, 100, 17, 0.17);
  --color-background: #fcf9f4;
  --color-surface: #ffffff;
  --color-surface-low: #f6f3ee;
  --color-surface-mid: #f0ede9;
  --color-surface-high: #e5e2dd;
  --color-text: #1c1c19;
  --color-muted: #45464e;
  --color-outline: rgba(117, 119, 127, 0.2);
  --shadow-whisper: 0 20px 40px rgba(28, 28, 25, 0.06);
  --radius-card: 24px;
  --radius-panel: 32px;
  --radius-pill: 999px;
  --container: min(1200px, calc(100vw - 2rem));
  --font-display: "Noto Serif", Georgia, serif;
  --font-body: "Inter", sans-serif;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

button,
a.button {
  min-height: 44px;
}

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

:focus-visible {
  outline: 3px solid rgba(148, 100, 17, 0.5);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(4, 21, 57, 0.035) 0.6px, transparent 0.6px),
    radial-gradient(rgba(148, 100, 17, 0.025) 0.6px, transparent 0.6px);
  background-position: 0 0, 16px 16px;
  background-size: 32px 32px;
  opacity: 0.45;
  z-index: 1;
}

#main-content,
.site-header,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(252, 249, 244, 0.82);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--color-outline);
  box-shadow: var(--shadow-whisper);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-4);
  min-height: 78px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-primary);
}

.brand-icon {
  display: block;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.58rem;
  white-space: nowrap;
  line-height: 1;
}

.brand-wordmark-aa {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.brand-wordmark-bali {
  position: relative;
  padding-left: 0.62rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-wordmark-bali::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.22rem;
  bottom: -0.22rem;
  width: 2px;
  border-radius: 2px;
  background: var(--color-secondary-soft);
}

.header-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
  min-width: 0;
  margin-left: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem;
  border: 1px solid rgba(117, 119, 127, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.58);
}

.nav-link {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  color: rgba(4, 21, 57, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.nav-link:hover {
  color: var(--color-secondary);
  background: rgba(240, 200, 100, 0.13);
}

.nav-link.is-active {
  background: white;
  color: var(--color-secondary);
  box-shadow: 0 5px 14px rgba(28, 28, 25, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(117, 119, 127, 0.1);
  background: rgba(235, 232, 227, 0.88);
}

.lang-pill {
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-muted);
  min-width: 2.65rem;
  min-height: 2.65rem;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
}

.lang-pill.is-active {
  background: var(--color-primary);
  color: white;
}

.desktop-hotline {
  display: none;
}

.header-hotline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(148, 100, 17, 0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--color-gold-light), #e5b34c);
  color: var(--color-primary);
  box-shadow: 0 10px 22px var(--color-gold-shadow);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.header-hotline:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(148, 100, 17, 0.22);
  filter: saturate(1.05);
}

.header-hotline svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-hotline.desktop-hotline {
  display: none;
}

.mobile-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(117, 119, 127, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  padding: 0.65rem;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(117, 119, 127, 0.12);
  background: rgba(252, 249, 244, 0.98);
  box-shadow: 0 24px 48px rgba(4, 21, 57, 0.14);
  backdrop-filter: blur(20px);
}

.mobile-nav-inner {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}

.mobile-nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.mobile-nav-link {
  min-height: 3.1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(117, 119, 127, 0.12);
  border-radius: 14px;
  background: white;
  font-weight: 700;
  color: var(--color-primary);
}

.mobile-nav-link.is-active {
  border-color: rgba(148, 100, 17, 0.22);
  background: rgba(240, 200, 100, 0.12);
  color: var(--color-secondary);
}

.mobile-hotline {
  width: 100%;
}

.hero-section,
.page-hero,
.roundup-teaser {
  position: relative;
  overflow: clip;
}

.hero-section {
  min-height: 63vh;
}

.hero-section .hero-content {
  padding: clamp(3.75rem, 7vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
}

.page-hero {
  min-height: 56vh;
}

.page-hero-short {
  min-height: 44vh;
}

.page-hero-strip {
  min-height: auto;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-container));
  padding: 8rem 0 4rem;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  overflow: clip;
  color: white;
}

.contact-hero-media,
.contact-hero-media img,
.contact-hero-gradient {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.08);
}

.contact-hero-gradient {
  background:
    linear-gradient(115deg, rgba(4, 21, 57, 0.92) 0%, rgba(4, 21, 57, 0.66) 44%, rgba(46, 93, 85, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 21, 57, 0.16), rgba(4, 21, 57, 0.78));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-6);
  align-items: end;
  min-height: clamp(560px, 72vh, 760px);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.contact-hero-copy {
  max-width: 46rem;
}

.contact-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-signal {
  width: min(100%, 25rem);
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.contact-signal p,
.contact-signal span {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-signal p {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
}

.contact-signal strong {
  display: block;
  margin: 0.4rem 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-media img,
.roundup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06);
}

.roundup-media {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 21, 57, 0.92) 0%, rgba(4, 21, 57, 0.62) 45%, rgba(4, 21, 57, 0.12) 100%),
    linear-gradient(180deg, rgba(4, 21, 57, 0.16), rgba(4, 21, 57, 0.62));
}

.hero-section .eyebrow {
  color: var(--color-gold-light);
}

.hero-content,
.roundup-copy,
.hero-strip-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 6rem;
  color: white;
}

.page-hero-short .hero-content {
  padding: 9rem 0 4.5rem;
}

.page-hero-strip {
  padding: 0;
}

.page-hero-strip .hero-strip-content {
  padding: 1rem 0;
}

.page-hero-strip .breadcrumb {
  margin-bottom: 0.5rem;
}

.page-hero-strip .hero-strip-content h1 {
  margin-top: 0.35rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.page-hero-strip .hero-body {
  margin-top: 0.25rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-content h1,
.roundup-copy h2,
.hero-strip-content h1,
.not-found-card h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: 1.01;
  letter-spacing: -0.03em;
}

.hero-section .hero-content h1 {
  white-space: pre-line;
}

.hero-body {
  margin: 1.5rem 0 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 16px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button.desktop-hotline {
  display: none;
}

.button-primary {
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-container));
  color: white;
}

.button-secondary {
  background: transparent;
  border-color: var(--color-outline);
  color: var(--color-secondary);
}

.button-light {
  background: white;
  color: var(--color-primary);
}

.button-terracotta {
  background: linear-gradient(145deg, var(--color-gold-light), var(--color-secondary-soft));
  color: var(--color-primary);
}

.button-hotline {
  border-color: rgba(148, 100, 17, 0.2);
  background: linear-gradient(145deg, var(--color-gold-light), #e5b34c);
  color: var(--color-primary);
  box-shadow: 0 10px 22px var(--color-gold-shadow);
  font-weight: 800;
}

.button-hotline:hover {
  box-shadow: 0 14px 28px rgba(148, 100, 17, 0.25);
  filter: saturate(1.05);
}

.hero-help-cta {
  gap: 0.6rem;
}

.hero-help-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-ghost {
  border-color: rgba(117, 119, 127, 0.24);
  color: var(--color-primary);
}

.editorial-section {
  padding: var(--space-9) 0;
}

.editorial-section-soft {
  background: var(--color-surface-low);
}

.surface-card,
.support-card,
.meeting-card,
.quote-card,
.city-card,
.feature-panel,
.map-card,
.not-found-card {
  background: var(--color-surface);
  box-shadow: var(--shadow-whisper);
}

.surface-card,
.detail-block,
.support-card,
.meeting-card {
  border-radius: var(--radius-card);
}

.today-section {
  margin-top: -5.25rem;
  position: relative;
  z-index: 3;
  padding-bottom: var(--space-8);
}

.today-card {
  padding: clamp(1.1rem, 2.2vw, 1.75rem);
  border: 1px solid rgba(117, 119, 127, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 94% 8%, rgba(240, 200, 100, 0.16), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #fffefa 68%, #faf5e9 100%);
  box-shadow: 0 24px 64px rgba(15, 21, 43, 0.11);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: 2rem;
}

.section-heading h2,
.copy-block h2,
.map-card h2,
.detail-block h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.support-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.section-subtle,
.copy-block p,
.support-card p,
.detail-block p,
.meeting-row p,
.meeting-card-group,
.meeting-card-meta,
.city-card-copy p {
  color: var(--color-muted);
}

.text-link {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.94rem;
}

.scroll-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.scroll-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.8rem 0.05rem 0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.scroll-track::-webkit-scrollbar {
  display: none;
}

.scroll-item {
  scroll-snap-align: start;
  display: flex;
}

.scroll-item > * {
  width: 100%;
}

.today-section .meeting-card {
  height: auto;
}

.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--color-outline);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 21, 43, 0.12);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  font-size: 1.1rem;
  line-height: 1;
}

.scroll-button.prev {
  left: -0.9rem;
}

.scroll-button.next {
  right: -0.9rem;
}

.scroll-button:hover {
  background: white;
  border-color: rgba(4, 21, 57, 0.18);
  transform: translateY(-50%) scale(1.05);
}

.scroll-button:disabled,
.scroll-button[aria-disabled="true"] {
  opacity: 0.32;
  cursor: default;
  transform: translateY(-50%);
}

.split-layout,
.two-column-layout,
.detail-layout,
.support-grid {
  display: grid;
  gap: var(--space-6);
}

.image-card {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.04);
}

.stat-badge {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-gold-light), var(--color-secondary-soft));
  color: var(--color-primary);
  box-shadow: 0 12px 28px rgba(4, 21, 57, 0.13);
}

.stat-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(117, 119, 127, 0.16);
}

.stats-row strong {
  display: block;
  font-size: 1.45rem;
  color: var(--color-primary);
}

.city-grid {
  display: grid;
  gap: 1rem;
}

.city-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  display: block;
  color: white;
}

.city-card.is-compact {
  min-height: 220px;
}

.city-card-media,
.city-card-media img,
.city-card-overlay {
  position: absolute;
  inset: 0;
}

.city-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06);
  transition: transform 500ms ease;
}

.city-card:hover .city-card-media img {
  transform: scale(1.04);
}

.city-card-overlay {
  background: linear-gradient(180deg, rgba(4, 21, 57, 0.08), rgba(4, 21, 57, 0.9));
}

.city-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 280px;
  padding: 1.5rem;
}

.city-card-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.city-card-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0.35rem 0 0;
}

.city-card-copy span {
  color: rgba(255, 255, 255, 0.82);
}

.feature-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(1.5rem, 4vw, 4rem);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
}

.newcomer-panel {
  border: 1px solid rgba(148, 100, 17, 0.1);
  background:
    radial-gradient(circle at 4% 4%, rgba(240, 200, 100, 0.18), transparent 28%),
    linear-gradient(135deg, #fffefa 0%, #f9f5eb 100%);
  box-shadow: 0 28px 70px rgba(34, 30, 26, 0.1);
}

.newcomer-panel::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: 35%;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(148, 100, 17, 0.08);
  border-radius: 50%;
}

.newcomer-panel-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.newcomer-panel-copy .section-kicker {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.52rem 0.8rem;
  border: 1px solid rgba(148, 100, 17, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(240, 200, 100, 0.12);
  color: var(--color-secondary);
}

.newcomer-panel-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.newcomer-panel-copy > p:not(.section-kicker) {
  max-width: 39rem;
  margin: 1.4rem 0 0;
  color: rgba(28, 28, 25, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.newcomer-panel-cta {
  margin-top: 1.6rem;
  padding-left: 1.25rem;
  box-shadow: 0 12px 26px rgba(4, 21, 57, 0.15);
}

.newcomer-panel-cta svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quote-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 20rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(240, 200, 100, 0.3), transparent 31%),
    linear-gradient(145deg, #14284f 0%, #041539 72%);
  box-shadow: 0 22px 42px rgba(4, 21, 57, 0.2);
  color: white;
}

.quote-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.quote-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 2.2rem;
  border-radius: 50%;
  background: var(--color-secondary-soft);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.quote-card blockquote {
  margin: 0 auto auto 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: white;
}

.quote-attribution {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.quote-attribution p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-avatar {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.roundup-teaser {
  min-height: 520px;
  color: white;
}

.roundup-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.roundup-copy .pill {
  margin-bottom: 0.25rem;
}

.roundup-copy h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.roundup-copy p {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.55;
}

.roundup-copy .button {
  margin-top: 0.5rem;
}

.roundup-next-heading,
.roundup-archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.roundup-next-heading h2,
.roundup-archive-heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
}

.roundup-next-heading > p,
.roundup-archive-heading p:not(.section-kicker) {
  max-width: 25rem;
  margin: 0;
  color: var(--color-muted);
}

.roundup-poster {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: #d60718;
  box-shadow: 0 24px 60px rgba(4, 21, 57, 0.14);
}

.roundup-poster img {
  width: 100%;
  height: auto;
}

.roundup-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.roundup-fact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-card);
  background: white;
}

.roundup-fact span,
.roundup-fact small {
  color: var(--color-muted);
}

.roundup-fact span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.roundup-fact strong {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.2;
}

.roundup-archive-count {
  flex: 0 0 auto;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(240, 200, 100, 0.18);
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 800;
}

.roundup-schedule-track {
  grid-auto-columns: 100%;
  gap: 0;
  padding-bottom: 0.65rem;
}

.roundup-schedule-slide {
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  margin: 0;
}

.roundup-schedule-slide a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-whisper);
}

.roundup-schedule-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 707;
  object-fit: contain;
}

.roundup-schedule-slide figcaption {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
}

.roundup-schedule-slide figcaption span:last-child {
  color: var(--color-secondary);
}

@media (max-width: 700px) {
  .roundup-next-heading,
  .roundup-archive-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .roundup-facts {
    grid-template-columns: 1fr;
  }

  .roundup-poster,
  .roundup-schedule-slide a {
    border-radius: 18px;
  }

  .roundup-schedule-slide figcaption {
    flex-direction: column;
    gap: 0.15rem;
  }
}

.contact-methods-section {
  position: relative;
}

.contact-section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.contact-section-heading h2,
.contact-method-card h2,
.contact-trust-panel h2,
.contact-privacy-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.contact-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.contact-method-grid {
  display: grid;
  gap: 1rem;
}

.contact-method-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(117, 119, 127, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(140deg, rgba(46, 93, 85, 0.08), transparent 42%),
    var(--color-surface);
  box-shadow: var(--shadow-whisper);
}

.contact-method-card::after {
  content: "";
  position: absolute;
  right: -4.5rem;
  top: -4.5rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(148, 100, 17, 0.16);
  border-radius: 50%;
}

.contact-method-primary {
  background:
    linear-gradient(145deg, rgba(240, 200, 100, 0.18), transparent 46%),
    linear-gradient(180deg, var(--color-primary), var(--color-primary-container));
  color: white;
}

.contact-method-primary h2,
.contact-method-primary p,
.contact-method-primary .section-kicker,
.contact-method-primary .contact-method-index {
  color: white;
}

.contact-method-index {
  position: absolute;
  right: 1.35rem;
  top: 1.25rem;
  color: rgba(4, 21, 57, 0.18);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  font-weight: 700;
  line-height: 1;
}

.contact-method-card h2 {
  max-width: 17rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.contact-method-card p:not(.section-kicker) {
  margin: 1rem 0 0;
  max-width: 24rem;
  color: var(--color-muted);
}

.contact-method-primary p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.contact-method-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
  padding-top: 2rem;
}

.contact-method-actions .button {
  overflow-wrap: anywhere;
  text-align: center;
}

.contact-text-link {
  color: var(--color-secondary-soft);
  font-weight: 800;
}

.contact-trust-section {
  padding: var(--space-9) 0;
  background:
    linear-gradient(90deg, rgba(4, 21, 57, 0.06), transparent 35%),
    var(--color-surface-low);
}

.contact-trust-grid {
  display: grid;
  gap: 1rem;
}

.contact-trust-panel,
.contact-privacy-panel {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 28px;
}

.contact-trust-panel {
  background: var(--color-surface);
  box-shadow: var(--shadow-whisper);
}

.contact-privacy-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(46, 93, 85, 0.88), rgba(4, 21, 57, 0.95)),
    var(--color-primary);
  color: white;
}

.contact-privacy-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.contact-trust-panel h2,
.contact-privacy-panel h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.contact-trust-panel p:not(.section-kicker),
.contact-privacy-panel p:not(.section-kicker) {
  max-width: 38rem;
  color: var(--color-muted);
}

.contact-privacy-panel h2,
.contact-privacy-panel .section-kicker,
.contact-privacy-panel p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  color: white;
}

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

.support-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.85rem;
  border-radius: 24px;
  min-height: 100%;
}

.support-card-primary {
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-container));
  color: white;
}

.support-card-primary h2,
.support-card-primary p,
.support-card-primary .section-kicker,
.support-card-primary .meeting-code {
  color: white;
}

.meeting-code,
.phone-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-primary);
}

.support-card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
}

.support-action {
  width: 100%;
}

.support-action-whatsapp {
  justify-content: center;
  color: white;
}

.cta-band {
  background: var(--color-surface-low);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.faq-section {
  scroll-margin-top: 6rem;
  background:
    linear-gradient(180deg, rgba(240, 200, 100, 0.08), transparent 30%),
    var(--color-surface-low);
}

.faq-heading {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.faq-heading h2 {
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--color-primary);
}

.faq-heading > p {
  max-width: 62rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.faq-grid {
  display: grid;
  gap: 0.8rem;
  max-width: 58rem;
  margin-inline: auto;
}

.faq-item {
  align-self: start;
  overflow: clip;
  border: 1px solid rgba(117, 119, 127, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(28, 28, 25, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(148, 100, 17, 0.22);
  box-shadow: 0 18px 38px rgba(28, 28, 25, 0.07);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 5rem;
  padding: 1rem 1.15rem;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-number {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(240, 200, 100, 0.15);
  color: var(--color-secondary);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.faq-toggle {
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 1.5px;
  border-radius: 1rem;
  background: white;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 1.2rem 1.35rem 4.45rem;
}

.faq-answer p {
  margin: 0;
  color: rgba(28, 28, 25, 0.74);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--color-secondary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(148, 100, 17, 0.28);
  text-underline-offset: 0.18em;
}

.tradition-strip {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 4vw, 4rem);
  background: var(--color-surface-low);
}

.tradition-card {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(240, 200, 100, 0.24), transparent 32%),
    linear-gradient(135deg, #14284f 0%, #041539 75%);
  box-shadow: 0 24px 52px rgba(4, 21, 57, 0.18);
  color: white;
}

.tradition-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.tradition-emblem {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.tradition-emblem span {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--color-secondary-soft);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.tradition-copy .section-kicker {
  margin-bottom: 0.45rem;
  color: var(--color-secondary-soft);
}

.tradition-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.tradition-copy > p:last-child {
  max-width: 43rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.tradition-cta {
  position: relative;
  z-index: 1;
  justify-self: start;
  padding: 0.9rem 1.15rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.tradition-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.8rem;
  background: rgba(229, 226, 221, 0.92);
  color: var(--color-primary);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill-solid {
  background: var(--color-secondary-soft);
  color: #041539;
}

.meeting-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: visible;
  padding: 1.35rem;
  border: 1px solid rgba(117, 119, 127, 0.11);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
  box-shadow: 0 14px 30px rgba(28, 28, 25, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.meeting-card-marker {
  position: absolute;
  top: 0;
  right: 0.8rem;
  z-index: 2;
  padding: 0.32rem 0.62rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-52%);
}

.scroll-item.is-next .meeting-card {
  border-color: rgba(148, 100, 17, 0.48);
  box-shadow: 0 18px 42px rgba(148, 100, 17, 0.15);
}

.scroll-item.is-in-progress .meeting-card-marker {
  background: #2e5d55;
}

.scroll-item.is-past:not(.is-next) {
  opacity: 0.62;
}

.meeting-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-soft));
}

.today-section .meeting-card::before {
  left: 0.75rem;
  right: 0.75rem;
  border-radius: var(--radius-pill);
}

.meeting-card:hover {
  border-color: rgba(148, 100, 17, 0.26);
  box-shadow: 0 18px 38px rgba(28, 28, 25, 0.09);
  transform: translateY(-2px);
}

.meeting-card.is-compact {
  padding: 1.25rem;
}

.meeting-card-city,
.meeting-card-group {
  margin: 0;
}

.meeting-card-city {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.1vw, 1.95rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-primary);
  letter-spacing: 0;
}

.meeting-card-group {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.meeting-card-title {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0;
}

.meeting-card-body {
  display: grid;
  gap: 0;
  align-content: start;
}

.meeting-card-excerpt {
  margin: 1rem 0 0;
  color: rgba(69, 70, 78, 0.9);
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.meeting-card.is-compact .meeting-card-excerpt {
  display: none;
}

.meeting-card-meta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  font-size: 0.84rem;
}

.meeting-card-footer {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

.meeting-card-actions {
  display: grid;
  gap: 0.55rem;
}

.meeting-card-status-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.meeting-card-time {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.15rem;
  padding: 0.35rem 0.7rem 0.35rem 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(148, 100, 17, 0.08);
  color: #80580f;
  font-size: 0.95rem;
  font-weight: 700;
}

.meeting-card-time-dot {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
}

.meeting-card-time.without-icon {
  padding-left: 0.7rem;
}

.meeting-card-time-dot::before,
.meeting-card-time-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: white;
  border-radius: 999px;
  transform-origin: top center;
}

.meeting-card-time-dot::before {
  width: 1.5px;
  height: 0.32rem;
  transform: translate(-50%, -90%);
}

.meeting-card-time-dot::after {
  width: 0.28rem;
  height: 1.5px;
  transform: translate(-10%, -50%);
}

.card-button {
  width: 100%;
  min-height: 2.65rem;
  border-color: rgba(4, 21, 57, 0.12);
  background: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  box-shadow: inset 0 0 0 1px rgba(4, 21, 57, 0.02);
}

.card-button:hover {
  border-color: rgba(148, 100, 17, 0.35);
  color: var(--color-secondary);
}

.card-directions-button,
.card-directions-button:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.card-directions-button:hover {
  background: #0a265e;
  box-shadow: 0 10px 22px rgba(4, 21, 57, 0.18);
}

.suggestion-trigger {
  color: var(--color-secondary);
  background: rgba(240, 200, 100, 0.08);
}

.pill-compact {
  white-space: nowrap;
}

.today-section .section-heading {
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.today-section .section-heading h2 {
  position: relative;
  padding-left: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.today-section .section-heading h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--color-secondary);
}

.today-section .section-subtle {
  margin: 0.55rem 0 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.today-status {
  margin: 0.15rem 0 0;
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 800;
}

.today-section .text-link {
  align-self: center;
}

.today-schedule-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
}

.today-schedule-link svg {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
}

@media (min-width: 1024px) {
  .today-section .scroll-track {
    grid-auto-columns: calc((100% - 2.25rem) / 4);
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.detail-layout {
  align-items: start;
}

.detail-main,
.detail-sidebar {
  display: grid;
  gap: 1rem;
}

.detail-block {
  padding: 1.5rem;
}

.detail-list {
  margin: 0;
  padding-left: 1.1rem;
}

.map-card {
  padding: 1rem;
  border-radius: var(--radius-card);
  position: sticky;
  top: 6.5rem;
}

.map-card iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.map-card-directions {
  width: 100%;
  min-height: 3rem;
  text-align: center;
}

.map-card-venue-meetings {
  margin-top: 0.75rem;
}

.day-group + .day-group {
  margin-top: 2.5rem;
}

.day-group h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-primary);
}

.meeting-table {
  display: grid;
  gap: 1rem;
}

.meeting-row {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-whisper);
}

.meeting-row-time,
.meeting-row-group,
.meeting-row h4 {
  margin: 0;
}

.meeting-row-time {
  color: var(--color-primary);
  font-weight: 700;
}

.meeting-row-group {
  font-size: 0.88rem;
}

.meeting-row h4 {
  font-size: 0.94rem;
}

.meeting-row-actions {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
}

.meeting-row-actions .text-link {
  white-space: nowrap;
}

.schedule-shell {
  padding: clamp(1.5rem, 3vw, 2.75rem);
  display: grid;
  gap: 1.5rem;
}

.schedule-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-soft), #2e5d55);
}

.schedule-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(117, 119, 127, 0.1);
  box-shadow: 0 24px 58px rgba(15, 21, 43, 0.08);
}

.schedule-toolbar,
.schedule-filter-grid,
.schedule-filter-layout,
.location-grid {
  display: grid;
  gap: 1rem;
}

.schedule-filter-layout {
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 3.2fr);
  align-items: end;
}

.schedule-filter-toggle {
  display: none;
}

.day-chip-group {
  display: flex;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  gap: 0.6rem;
  padding: 0.1rem 0.15rem 0.4rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.day-chip-group::-webkit-scrollbar {
  display: none;
}

.day-chip {
  flex: 0 0 auto;
  border: 1px solid var(--color-outline);
  background: white;
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1rem;
  font-weight: 700;
  white-space: nowrap;
  scroll-snap-align: start;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.day-chip:hover {
  border-color: rgba(148, 100, 17, 0.42);
  transform: translateY(-1px);
}

.day-chip.is-active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.day-chip-all:not(.is-active) {
  border-color: rgba(148, 100, 17, 0.3);
  background: rgba(240, 200, 100, 0.13);
}

.schedule-field {
  display: grid;
  gap: 0.45rem;
}

.schedule-field span,
.schedule-field-label {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.schedule-input,
.schedule-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-outline);
  border-radius: 18px;
  background: white;
  color: var(--color-text);
  padding: 0.8rem 0.95rem;
}

.schedule-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-secondary) 50%),
    linear-gradient(135deg, var(--color-secondary) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.schedule-field-action {
  align-self: end;
}

.schedule-reset {
  width: 100%;
}

.schedule-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.schedule-results-bar .section-subtle {
  margin: 0;
}

.active-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.active-filter-chip {
  min-height: 34px;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(148, 100, 17, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(240, 200, 100, 0.12);
  color: #80580f;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
}

.active-filter-chip span {
  margin-left: 0.3rem;
  font-size: 1rem;
}

.schedule-table-shell {
  overflow-x: auto;
}

.schedule-suggestion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(148, 100, 17, 0.2);
  border-radius: 20px;
  background: linear-gradient(110deg, #fff9ec, #fffdfa);
}

.schedule-suggestion-row p {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
}

.schedule-suggestion-row .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.meeting-options-section {
  padding-top: 0;
}

.meeting-options-section .section-heading {
  max-width: 760px;
}

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

.meeting-option-card {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.meeting-option-card h3 {
  margin: 0 0 0.7rem;
}

.meeting-option-card h4 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}

.meeting-option-card p {
  line-height: 1.6;
}

.meeting-option-group {
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(4, 21, 57, 0.12);
}

.meeting-option-group .button {
  margin-top: 0.5rem;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.meeting-option-code {
  color: var(--color-primary);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.meeting-option-note {
  padding: 1rem;
  margin: 1.5rem 0 0;
  border-radius: 14px;
  background: #fff8e9;
}

@media (max-width: 760px) {
  .meeting-options-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.9rem;
}

.schedule-table th {
  padding: 0 1rem 0.25rem;
  text-align: left;
  color: var(--color-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-table td {
  padding: 1rem;
  background: white;
  vertical-align: top;
  box-shadow: var(--shadow-whisper);
}

.schedule-table td:nth-child(4) {
  min-width: 8.5rem;
}

.schedule-table td:first-child {
  border-radius: 20px 0 0 20px;
}

.schedule-table td:last-child {
  border-radius: 0 20px 20px 0;
}

.schedule-table strong {
  display: block;
}

.schedule-day-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-secondary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.schedule-meeting-cell,
.schedule-location-cell {
  display: grid;
  gap: 0.2rem;
}

.schedule-meeting-cell strong,
.schedule-location-cell strong {
  color: var(--color-text);
}

.schedule-meeting-cell span,
.schedule-location-cell span {
  color: var(--color-muted);
}

.schedule-actions {
  display: grid;
  grid-template-columns: minmax(9.5rem, 1fr);
  gap: 0.5rem;
}

.schedule-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--color-outline);
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.schedule-action-primary {
  background: white;
  color: var(--color-primary);
}

.schedule-action-secondary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 9px 20px rgba(4, 21, 57, 0.13);
}

.schedule-action-secondary:hover {
  transform: translateY(-1px);
  background: #102754;
  box-shadow: 0 13px 26px rgba(4, 21, 57, 0.2);
}

.suggestion-detail-trigger {
  width: 100%;
  margin-top: 0.75rem;
}

.suggestion-modal {
  width: min(42rem, calc(100% - 2rem));
  max-height: min(90vh, 54rem);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--color-text);
  box-shadow: 0 30px 90px rgba(4, 21, 57, 0.32);
  overflow: auto;
}

.suggestion-modal::backdrop {
  background: rgba(4, 21, 57, 0.7);
  backdrop-filter: blur(4px);
}

.suggestion-modal-card {
  padding: clamp(1.35rem, 4vw, 2.25rem);
  background:
    linear-gradient(135deg, rgba(240, 200, 100, 0.1), transparent 36%),
    var(--color-surface);
}

.suggestion-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.suggestion-modal-header h2 {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.05;
  color: var(--color-primary);
}

.suggestion-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--color-outline);
  border-radius: 50%;
  background: white;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.suggestion-modal-close:focus-visible,
.suggestion-field input:focus-visible,
.suggestion-field select:focus-visible,
.suggestion-field textarea:focus-visible {
  outline: 3px solid rgba(240, 200, 100, 0.65);
  outline-offset: 2px;
}

.suggestion-modal-description {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: var(--color-muted);
}

.suggestion-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.suggestion-field {
  display: grid;
  gap: 0.45rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 750;
}

.suggestion-field small {
  color: var(--color-muted);
  font-size: 0.82em;
  font-weight: 600;
}

.suggestion-field input,
.suggestion-field select,
.suggestion-field textarea {
  width: 100%;
  border: 1px solid var(--color-outline);
  border-radius: 16px;
  background: white;
  color: var(--color-text);
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-weight: 500;
}

.suggestion-field input,
.suggestion-field select {
  min-height: 48px;
}

.suggestion-field textarea {
  min-height: 8rem;
  resize: vertical;
  line-height: 1.5;
}

.suggestion-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.suggestion-privacy {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.suggestion-message {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.suggestion-message[data-kind="success"] {
  color: #245b3f;
}

.suggestion-message[data-kind="error"] {
  color: #9a2f25;
}

.suggestion-form.is-submitted .suggestion-field,
.suggestion-form.is-submitted .suggestion-privacy {
  display: none;
}

.suggestion-form.is-submitted .suggestion-message {
  padding: 1rem;
  border: 1px solid rgba(36, 91, 63, 0.2);
  border-radius: 16px;
  background: rgba(36, 91, 63, 0.08);
}

.suggestion-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.suggestion-actions .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.schedule-empty {
  padding: 2rem 1.5rem;
  border-radius: 24px;
  background: var(--color-surface-low);
  border: 1px dashed var(--color-outline);
  text-align: center;
}

.schedule-empty h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--color-primary);
}

.schedule-empty p {
  margin: 0;
  color: var(--color-muted);
}

.schedule-footnote {
  margin: 0;
  font-style: italic;
  text-align: center;
}

.location-card {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.location-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.location-card-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-primary);
}

.location-card-address {
  margin: 0;
  color: var(--color-muted);
}

.location-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.location-card-list li {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-outline);
}

.location-card-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.location-card-list span {
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
}

.meeting-locations-section {
  padding-top: var(--space-7);
}

.meeting-venue-profile-section {
  padding-top: var(--space-7);
  background: var(--color-surface-low);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

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

.article-intro h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.article-lede {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.75;
}

.article-section {
  max-width: 48rem;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.article-section h3,
.article-next-step h3 {
  margin: 0 0 0.75rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.15;
}

.article-section p,
.article-next-step p,
.article-sidebar-card p {
  color: var(--color-muted);
  line-height: 1.75;
}

.newcomer-callout {
  max-width: 52rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-left: 6px solid var(--color-secondary);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  background: linear-gradient(135deg, #fffdf7, #f5ecd3);
}

.newcomer-callout p {
  margin: 0;
  color: var(--color-primary);
  line-height: 1.65;
}

.newcomer-callout p:first-child {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.article-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.article-next-step p {
  margin: 0;
}

.article-next-step .section-kicker {
  margin-bottom: 0.4rem;
  color: var(--color-secondary);
}

.article-sidebar {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1rem;
}

.article-sidebar-card {
  padding: 1.5rem;
}

.article-sidebar-card h2 {
  margin: 0 0 0.75rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.locations-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(117, 119, 127, 0.14);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-whisper);
  color: var(--color-primary);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 700;
  list-style: none;
}

.locations-disclosure > summary::-webkit-details-marker {
  display: none;
}

.locations-disclosure > summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 1.25rem;
}

.locations-disclosure[open] > summary::after {
  content: "−";
}

.locations-summary-count {
  margin-left: auto;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
}

.locations-disclosure-body {
  padding-top: var(--space-7);
}

.venue-profiles-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(240, 200, 100, 0.12), transparent 24rem),
    var(--color-background);
}

.venue-profiles-heading {
  align-items: start;
}

.venue-profiles-heading p:last-child {
  max-width: 42rem;
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

.venue-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.venue-profile-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(117, 119, 127, 0.12);
}

.venue-profile-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-mid);
}

.venue-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.venue-profile-card:hover .venue-profile-media img {
  transform: scale(1.025);
}

.venue-profile-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.2rem, 2.4vw, 1.65rem);
}

.venue-profile-copy h3 {
  margin: 0.15rem 0 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.2;
}

.venue-profile-copy > p {
  margin: 0;
}

.venue-profile-count {
  margin: 0;
  color: var(--color-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venue-profile-address {
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.venue-profile-links {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.2rem;
}

.venue-profile-directions {
  width: 100%;
  min-height: 3rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(4, 21, 57, 0.14);
}

.venue-profile-directions:hover,
.map-card-directions:hover {
  background: linear-gradient(180deg, #102754, var(--color-primary));
  box-shadow: 0 14px 30px rgba(4, 21, 57, 0.22);
}

.venue-profile-links .text-link {
  justify-self: center;
}

.venue-profile-meetings,
.map-card-venue-meetings {
  width: 100%;
}

.venue-detail-layout,
.venue-meeting-list {
  display: grid;
  gap: 1rem;
}

.venue-detail-layout {
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.venue-detail-aside {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-card);
}

.venue-detail-aside h2,
.venue-meeting-copy h3 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.venue-detail-aside h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.venue-detail-aside p,
.venue-meeting-copy p {
  margin: 0;
  color: var(--color-muted);
}

.venue-detail-aside .section-kicker {
  color: var(--color-secondary);
}

.venue-detail-address {
  padding-top: 1rem;
  border-top: 1px solid var(--color-outline);
}

.venue-detail-aside .button {
  margin-top: 0.25rem;
}

.venue-meeting-row {
  display: grid;
  grid-template-columns: minmax(9rem, 0.8fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem;
  border: 1px solid var(--color-outline);
  border-radius: 20px;
}

.venue-meeting-day,
.venue-meeting-copy {
  display: grid;
  gap: 0.3rem;
}

.venue-meeting-day > span {
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 800;
}

.venue-meeting-day strong {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.venue-meeting-copy h3 {
  font-size: 1.15rem;
}

.venue-meeting-copy .venue-next-date {
  margin-top: 0.25rem;
  color: var(--color-text);
  font-size: 0.88rem;
}

.venue-next-date time {
  font-weight: 750;
}

.venue-meeting-link {
  white-space: nowrap;
}

.contact-aside {
  padding: 1.5rem;
}

.not-found-wrap {
  min-height: calc(100vh - 240px);
  display: grid;
  place-items: center;
}

.not-found-card {
  padding: clamp(1.75rem, 4vw, 4rem);
  border-radius: 32px;
  text-align: center;
}

.site-footer {
  background: var(--color-primary);
  color: rgba(252, 249, 244, 0.92);
  padding: 4rem 0 2rem;
}

.brand-mark-footer,
.brand-mark-footer .brand-wordmark {
  color: white;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-heading {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.footer-contact-line a {
  color: rgba(252, 249, 244, 0.82);
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-line a:hover,
.footer-contact-line a:focus-visible {
  color: white;
  text-decoration-color: currentColor;
}

.footer-quote {
  max-width: 28rem;
  color: rgba(252, 249, 244, 0.62);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

@media (min-width: 768px) {
  .split-layout,
  .two-column-layout,
  .feature-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: center;
  }

  .contact-hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  }

  .contact-signal {
    justify-self: end;
  }

  .tradition-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.5rem;
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

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

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

  .contact-method-primary {
    transform: translateY(-1rem);
  }

  .contact-trust-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }

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

  .meeting-row {
    grid-template-columns: minmax(140px, 0.8fr) minmax(220px, 1fr) minmax(180px, 0.9fr) auto;
    align-items: center;
  }

  .schedule-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(160px, auto);
    align-items: end;
  }

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

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

  .tradition-inner,
  .cta-band-inner,
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }

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

@media (min-width: 1050px) {
  .footer-grid {
    grid-template-columns: minmax(16rem, 1.4fr) repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .desktop-nav,
  .header-hotline.desktop-hotline {
    display: inline-flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .venue-detail-layout {
    grid-template-columns: minmax(17rem, 0.85fr) minmax(0, 1.8fr);
  }
}

@media (max-width: 1100px) and (min-width: 960px) {
  .nav-link {
    padding-inline: 0.68rem;
  }

  .header-cluster {
    gap: 0.65rem;
  }
}

@media (min-width: 1024px) {
  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .today-card {
    padding: 1.65rem 2.1rem 1.9rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .schedule-table-shell {
    overflow: visible;
  }

  .schedule-table {
    border-spacing: 0;
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td {
    display: block;
    width: 100%;
  }

  .schedule-table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .schedule-table tr {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    margin: 0;
    padding: 1.15rem;
    border: 1px solid rgba(117, 119, 127, 0.16);
    border-radius: 20px;
    background: white;
    box-shadow: 0 16px 34px rgba(28, 28, 25, 0.06);
  }

  .schedule-table td,
  .schedule-table td:first-child,
  .schedule-table td:last-child {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .schedule-table td:nth-child(3) {
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-outline);
  }

  .schedule-table td:nth-child(4) {
    min-width: 0;
  }

  .schedule-table td:first-child strong {
    display: inline-flex;
    padding: 0.5rem 0.7rem;
    border-radius: 14px;
    background: var(--color-surface-low);
    color: var(--color-primary);
  }

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

  .schedule-action-link {
    padding-inline: 0.35rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 767px) {
  .hero-actions .hero-help-cta {
    flex: 1 1 auto;
  }

  .faq-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .faq-item summary {
    gap: 0.7rem;
    padding-inline: 0.85rem;
  }

  .faq-answer {
    padding: 0 1rem 1.2rem;
  }

  .tradition-cta {
    width: 100%;
  }

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

  .newcomer-panel-copy h2 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .newcomer-panel-cta {
    width: 100%;
  }

  .quote-card {
    min-height: 18rem;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-row: 2;
  }

  .article-next-step {
    align-items: stretch;
    flex-direction: column;
  }

  .article-next-step .button {
    width: 100%;
  }

  .page-hero-short {
    min-height: 25rem;
  }

  .page-hero-short .hero-content {
    padding: 6rem 0 3rem;
  }

  .today-section {
    margin-top: -1.75rem;
  }

  .today-card {
    border-radius: 22px;
    padding: 1rem;
  }

  .today-section .section-heading {
    gap: 0.8rem;
    align-items: flex-start;
  }

  .today-section .section-heading h2 {
    padding-left: 1rem;
    font-size: 2rem;
  }

  .today-schedule-link {
    max-width: 7.5rem;
    justify-content: flex-end;
    text-align: right;
    font-size: 0.85rem;
  }

  .today-section .scroll-track {
    grid-auto-columns: minmax(15rem, 78vw);
  }

  .meeting-card {
    padding: 1.35rem;
  }

  .editorial-section {
    padding: var(--space-7) 0;
  }

  .contact-hero,
  .contact-hero-content {
    min-height: 620px;
  }

  .contact-hero-content {
    align-items: end;
    padding: 3rem 0;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.45rem, 16vw, 4.3rem);
  }

  .contact-hero-actions .button,
  .contact-method-actions .button {
    width: 100%;
  }

  .contact-signal {
    padding: 1rem;
    border-radius: 20px;
  }

  .contact-method-card {
    min-height: 19rem;
    border-radius: 22px;
  }

  .contact-trust-section {
    padding: var(--space-7) 0;
  }

  .schedule-shell {
    gap: 1.1rem;
    padding: 1rem;
    border-radius: 20px;
  }

  .schedule-shell .section-heading {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0.25rem;
  }

  .schedule-shell .section-heading h2 {
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .suggestion-modal {
    width: calc(100% - 1rem);
    max-height: calc(100vh - 1rem);
    border-radius: 22px;
  }

  .suggestion-modal-card {
    padding: 1.2rem;
  }

  .suggestion-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .suggestion-actions .button {
    width: 100%;
  }

  .schedule-toolbar,
  .schedule-filter-grid,
  .schedule-filter-layout {
    gap: 0.75rem;
  }

  .schedule-suggestion-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1.1rem;
  }

  .schedule-suggestion-row .button {
    width: 100%;
  }

  .schedule-filter-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .schedule-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 8.5rem;
    min-height: 46px;
    border-radius: 14px;
  }

  .schedule-filter-count {
    display: inline-grid;
    place-items: center;
    min-width: 1.35rem;
    min-height: 1.35rem;
    padding: 0.1rem 0.3rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    line-height: 1;
  }

  .schedule-filter-grid {
    grid-column: 1 / -1;
    padding: 0.9rem;
    border: 1px solid rgba(117, 119, 127, 0.14);
    border-radius: 18px;
    background: rgba(246, 243, 238, 0.62);
  }

  .day-chip-group {
    gap: 0.5rem;
    margin-inline: -0.15rem;
  }

  .day-chip {
    min-width: 5.25rem;
    padding: 0.62rem 0.85rem;
    font-size: 0.92rem;
  }

  .schedule-field {
    gap: 0.32rem;
  }

  .schedule-field span,
  .schedule-field-label {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .schedule-input,
  .schedule-select {
    min-height: 46px;
    border-radius: 14px;
    padding: 0.68rem 0.82rem;
    font-size: 0.96rem;
  }

  .schedule-field-action {
    display: grid;
    grid-template-columns: auto minmax(9rem, 1fr);
    align-items: center;
    gap: 0.75rem;
  }

  .schedule-field-action:has(.schedule-reset[hidden]) {
    display: none;
  }

  .schedule-reset {
    min-height: 46px;
    border-radius: 14px;
  }

  .schedule-results-bar {
    padding-top: 0.25rem;
  }

  .schedule-results-bar .section-subtle {
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 800;
  }

  .schedule-table-shell {
    overflow: visible;
  }

  .schedule-table {
    border-spacing: 0;
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td {
    display: block;
    width: 100%;
  }

  .schedule-table td:nth-child(4) {
    min-width: 0;
  }

  .schedule-table tbody {
    display: grid;
    gap: 0.9rem;
  }

  .schedule-table tr {
    display: grid;
    grid-template-columns: minmax(5.6rem, auto) minmax(0, 1fr);
    gap: 0.72rem 0.9rem;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(117, 119, 127, 0.16);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(28, 28, 25, 0.06);
  }

  .schedule-table tr + tr {
    margin-top: 0;
  }

  .schedule-table td {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .schedule-table td:first-child {
    border-radius: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .schedule-table td:last-child {
    border-radius: 0;
    grid-column: 1 / -1;
  }

  .schedule-table td::before {
    content: none;
  }

  .schedule-table td:nth-child(1) strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.6rem;
    min-height: 3.2rem;
    padding: 0.45rem 0.6rem;
    border-radius: 16px;
    background: var(--color-surface-low);
    color: var(--color-primary);
    font-size: 1.02rem;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .schedule-table td:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .schedule-table td:nth-child(3),
  .schedule-table td:nth-child(4) {
    grid-column: 1 / -1;
  }

  .schedule-table td:nth-child(3) {
    padding-top: 0.72rem;
    border-top: 1px solid rgba(117, 119, 127, 0.14);
  }

  .schedule-meeting-cell {
    gap: 0.08rem;
  }

  .schedule-meeting-cell strong {
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .schedule-meeting-cell span,
  .schedule-location-cell span {
    font-size: 0.94rem;
  }

  .schedule-location-cell {
    gap: 0.05rem;
  }

  .schedule-location-cell strong {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .schedule-table .pill-row {
    gap: 0.4rem;
    margin-top: 0;
  }

  .schedule-table .pill {
    padding: 0.34rem 0.62rem;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .schedule-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding-top: 0.1rem;
  }

  .schedule-action-link {
    min-height: 44px;
    padding: 0.55rem 0.35rem;
    border: 1px solid var(--color-outline);
    font-size: 0.76rem;
  }

  .schedule-action-primary {
    background: white;
    border-color: var(--color-outline);
    color: var(--color-primary);
  }

  .schedule-action-secondary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
  }

  .venue-meeting-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .venue-meeting-link {
    width: 100%;
  }

  .location-card-list li {
    flex-direction: column;
  }

  .meeting-locations-section {
    padding-top: 1rem;
  }

  .locations-disclosure > summary {
    min-height: 66px;
    border-radius: 18px;
    font-size: 1.05rem;
  }

  .locations-disclosure-body {
    padding-top: 2rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* A readable online meeting action on the navy support card. */
.support-card-primary .support-action[data-i18n="home.joinOnline"],
.card-button[data-i18n="home.joinOnline"] {
  background: white;
  color: #946411;
  border-color: rgba(148, 100, 17, 0.4);
  box-shadow: none;
}
.support-card-primary .support-action[data-i18n="home.joinOnline"]:hover,
.card-button[data-i18n="home.joinOnline"]:hover {
  background: #946411;
  color: white;
  border-color: #946411;
}
.roundup-booking-code {
  margin-top: 1rem;
  background: var(--color-surface-low);
}
.roundup-booking-code strong {
  letter-spacing: 0.12em;
}
