@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Italic.ttf") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: "Noto Sans Local";
  src: url("assets/fonts/NotoSans-Regular.ttf") format("truetype");
  font-weight: 400;
}

:root {
  --olive: #9b9061;
  --olive-dark: #746d4b;
  --slate: #484d60;
  --slate-dark: #363b4d;
  --ink: #2d2d2d;
  --muted: #777;
  --soft: #f6f6f3;
  --white: #fff;
  --content: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 24px 70px rgba(34, 38, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Lato", "Noto Sans Local", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

main section {
  scroll-margin-top: 118px;
}

:focus-visible {
  outline: 3px solid rgba(155, 144, 97, 0.55);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 30;
  background: #161a23;
}

.topbar {
  height: 88px;
  color: #fff;
  background: linear-gradient(90deg, #665f41, #817852 48%, #686142);
  position: relative;
  z-index: 20;
}

.topbar__inner {
  width: min(var(--content), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.weather,
.agenda-btn,
.social {
  display: flex;
  align-items: center;
}

.weather {
  gap: 18px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.weather__icon {
  width: 55px;
  height: 44px;
}

.weather__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.topbar__divider {
  width: 1px;
  height: 29px;
  background: rgba(255, 255, 255, 0.45);
}

.agenda-btn {
  gap: 17px;
  color: #fff;
  min-width: 0;
  text-align: left;
}

.agenda-btn strong {
  font-weight: 700;
  font-size: 16px;
}

.agenda-btn em {
  font-size: 16px;
  font-style: italic;
  opacity: 0.96;
}

.bell {
  font-size: 16px;
}

.social {
  margin-left: auto;
  gap: 18px;
  color: #fff;
  font-weight: 900;
}

.social a {
  min-width: 13px;
  text-align: center;
  opacity: 0.95;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: clamp(720px, 72vw, 856px);
  background: #161a23;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -38px 0 -24px;
  z-index: -2;
  background: url("assets/hero-bg.jpg") center top / cover no-repeat;
  transform: translate3d(var(--hero-pan-x, 0), calc(var(--hero-shift, 0px) + var(--hero-pan-y, 0px)), 0) scale(1.035);
  transform-origin: center top;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 34% 42%, rgba(255, 255, 255, 0.12), transparent 25%),
    radial-gradient(circle at 71% 45%, rgba(202, 181, 103, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(15, 19, 30, 0.9) 0%, rgba(18, 22, 31, 0.5) 48%, rgba(16, 20, 28, 0.45) 100%),
    linear-gradient(180deg, rgba(7, 9, 14, 0.06) 0%, rgba(7, 9, 14, 0.1) 58%, rgba(7, 9, 14, 0.26) 100%);
  pointer-events: none;
}

.main-nav {
  position: absolute;
  z-index: 60;
  top: 18px;
  left: 50%;
  width: min(var(--content), calc(100% - 48px));
  height: 108px;
  padding: 0 39px;
  display: flex;
  align-items: center;
  gap: 62px;
  transform: translateX(-50%);
  background: #fff;
  color: #282828;
  box-shadow: 0 -4px 0 rgba(41, 48, 66, 0.7);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), top 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  will-change: transform;
}

body.is-scrolled .main-nav {
  position: fixed;
  z-index: 200;
  top: 14px;
  height: 78px;
  width: min(1180px, calc(100% - 36px));
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(20, 25, 36, 0.18);
  backdrop-filter: blur(14px);
}

body.is-scrolled .menu {
  gap: clamp(12px, 1.05vw, 20px);
}

body.is-scrolled .menu a,
body.is-scrolled .menu button {
  font-size: 15px;
}

.logo {
  flex: 0 0 auto;
  width: 137px;
}

.menu {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  white-space: nowrap;
}

.menu a,
.menu button {
  display: inline-flex;
  align-items: center;
  height: 44px;
  color: #2e2e2e;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.menu a:hover,
.menu button:hover,
.menu a:focus-visible,
.menu button:focus-visible {
  color: var(--olive);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 45px;
  left: -18px;
  min-width: 210px;
  padding: 14px 18px;
  display: grid;
  gap: 7px;
  background: #fff;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  height: 34px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(255px, 24vw, 368px);
  animation: heroCopy 900ms var(--ease) both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #d8cf9b;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

.hero__copy h1 {
  margin: 0;
  font-size: clamp(48px, 4.6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  max-width: 760px;
  text-wrap: balance;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.hero__copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.35;
  font-family: "Noto Sans Local", "Lato", sans-serif;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hero__actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.hero-btn {
  min-width: 186px;
  height: 56px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.hero-btn--primary {
  background: linear-gradient(90deg, #a99d6c, #8f855a);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.scroll-cue {
  position: absolute;
  left: 0;
  bottom: -128px;
  width: 31px;
  height: 51px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.45s ease-in-out infinite;
}

.liturgy {
  position: relative;
  height: 264px;
  color: #fff;
  background: url("assets/liturgy-bg.jpg") center top / cover no-repeat;
  overflow: hidden;
}

.liturgy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 70%);
  transform: translateX(-110%);
  animation: liturgySheen 8s ease-in-out infinite;
  pointer-events: none;
}

.liturgy__inner {
  width: min(1215px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding-top: 68px;
}

.liturgy h2 {
  margin: 0 0 34px;
  font-size: clamp(30px, 2.4vw, 40px);
  font-weight: 900;
}

.readings {
  display: flex;
  align-items: center;
  gap: 38px;
}

.readings button {
  min-height: 44px;
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), color 0.2s ease, background 0.2s ease;
}

.readings button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.reading-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.reading-icon.book::before,
.reading-icon.book::after {
  content: "";
  position: absolute;
  inset: 3px 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.reading-icon.book::after {
  left: 11px;
}

.reading-icon.music::before {
  content: "♪";
  position: absolute;
  inset: -6px 0 0;
  font-size: 30px;
  font-weight: 400;
}

.section-pad {
  padding: clamp(62px, 6vw, 108px) 0;
}

.content-grid {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
}

.bishop-section {
  padding-top: 64px;
  padding-bottom: 40px;
}

.bishop-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.bishop-photo {
  padding-left: 58px;
}

.bishop-photo img {
  width: 515px;
  filter: drop-shadow(0 25px 38px rgba(44, 49, 69, 0.09));
  animation: floatSoft 7s ease-in-out infinite;
}

.bishop-copy {
  padding-left: 14px;
}

.bishop-copy h2,
.territory-copy h2,
.community h2 {
  margin: 0;
  font-size: clamp(42px, 3.3vw, 57px);
  line-height: 1.02;
  font-weight: 900;
}

.bishop-copy h3 {
  margin: 31px 0 31px;
  font-size: 30px;
  line-height: 1.25;
  font-style: italic;
  font-weight: 900;
}

.bishop-copy p,
.territory-copy p,
.life-item span,
.info-item span {
  color: #717171;
  font-size: 19px;
  line-height: 1.58;
}

.bishop-copy p {
  max-width: 560px;
}

.text-links {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--olive);
  font-size: 15px;
  font-weight: 700;
}

.territory {
  padding-top: 47px;
  padding-bottom: 84px;
}

.territory-grid {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.territory-copy {
  padding-left: 18px;
}

.territory-copy p {
  margin: 40px 0 50px;
  max-width: 330px;
}

.territory-copy h2 {
  font-size: clamp(40px, 3vw, 54px);
}

.stats {
  display: grid;
  gap: 20px;
}

.stat-card {
  position: relative;
  width: min(332px, 100%);
  height: 299px;
  overflow: hidden;
  text-align: left;
  color: #555b78;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(72, 77, 96, 0.12);
}

.stat-card__number,
.stat-card__label {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: 56px;
}

.stat-card__number {
  padding-top: 143px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.stat-card__label {
  margin-top: 7px;
  color: #636363;
  font-size: 33px;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(295px, 330px);
  gap: 24px;
  align-items: center;
}

.map-stage {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 486 / 825;
  margin: -20px auto 0;
}

.map-stage::before {
  content: "";
  position: absolute;
  inset: 12% 5% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 144, 97, 0.12), transparent 63%);
  filter: blur(10px);
  pointer-events: none;
}

.map-stage img,
.map-regions {
  position: absolute;
  left: -11.523%;
  top: -13.697%;
  width: 135.802%;
  height: 123.03%;
}

.map-stage img {
  z-index: 1;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 28px 44px rgba(108, 99, 61, 0.16));
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.map-panel:hover .map-stage img,
.map-panel:hover .map-regions {
  transform: translateY(-8px) scale(1.012);
}

.map-panel:hover .map-stage img {
  filter: drop-shadow(0 35px 58px rgba(108, 99, 61, 0.2));
}

.map-regions {
  z-index: 4;
  pointer-events: none;
  transition: transform 0.45s var(--ease);
}

.map-region-area {
  fill: rgba(255, 255, 255, 0.01);
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  pointer-events: auto;
  transition: fill 0.22s ease, stroke 0.22s ease, filter 0.22s ease;
}

.map-region-area:focus {
  outline: none;
}

.map-region-area:hover,
.map-region-area:focus-visible {
  fill: rgba(72, 77, 96, 0.24);
  stroke: rgba(255, 255, 255, 0.94);
  filter: drop-shadow(0 12px 22px rgba(54, 59, 77, 0.2));
}

.map-region-area.is-active {
  fill: rgba(155, 144, 97, 0.38);
  stroke: rgba(255, 255, 255, 0.98);
  filter: drop-shadow(0 14px 24px rgba(108, 99, 61, 0.22));
  animation: regionGlow 2.8s ease-in-out infinite;
}

.map-directory {
  padding: 24px;
  border: 1px solid rgba(155, 144, 97, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(57, 62, 82, 0.11);
  backdrop-filter: blur(12px);
}

.map-directory__head span {
  display: block;
  margin-bottom: 8px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-directory__head strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 900;
}

.map-tools {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
}

.map-tools label {
  display: grid;
  gap: 7px;
  color: #666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-tools input,
.map-tools select {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(72, 77, 96, 0.16);
  border-radius: 0;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: 700 14px "Lato", sans-serif;
}

.map-results {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  max-height: 198px;
  overflow: auto;
  padding-right: 4px;
}

.map-result {
  padding: 12px 13px;
  display: grid;
  gap: 3px;
  text-align: left;
  border-left: 3px solid transparent;
  background: rgba(246, 246, 243, 0.86);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease);
}

.map-result:hover,
.map-result.is-active {
  border-color: var(--olive);
  background: #fff;
  transform: translateX(3px);
}

.map-result strong {
  font-size: 15px;
  line-height: 1.12;
  font-weight: 900;
}

.map-result span {
  color: #747474;
  font-size: 13px;
  line-height: 1.25;
}

.map-card {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(72, 77, 96, 0.12);
}

.map-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}

.map-card small {
  display: block;
  margin-top: 8px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card dl {
  margin: 17px 0 0;
  display: grid;
  gap: 11px;
}

.map-card div {
  display: grid;
  gap: 3px;
}

.map-card dt {
  color: #4e5369;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card dd {
  margin: 0;
  color: #656565;
  font-size: 15px;
  line-height: 1.35;
}

.map-empty {
  margin: 0;
  padding: 14px;
  color: #777;
  background: rgba(246, 246, 243, 0.86);
  font-size: 14px;
  line-height: 1.4;
}

.news {
  padding-top: 16px;
  padding-bottom: 118px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(42px, 3.7vw, 62px);
  line-height: 1.1;
  font-weight: 900;
}

.section-subtitle {
  margin: 22px 0 0;
  text-align: center;
  color: #404040;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.25;
}

.news-row {
  width: min(1170px, calc(100% - 48px));
  margin: 77px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 41px;
}

.news-card {
  position: relative;
  width: 368px;
  min-height: 438px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 25px 48px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card::after,
.route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
  transform: translateX(-115%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 28px 55px rgba(36, 40, 55, 0.12);
  outline: 0;
}

.news-card:hover::after,
.route-card:hover::after,
.route-card:focus-visible::after {
  transform: translateX(115%);
}

.news-card__image {
  height: 255px;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 66%);
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.news-card:hover .news-card__image img {
  transform: scale(1.06);
}

.news-card__body {
  padding: 15px 36px 28px;
}

.news-card__body span {
  color: #777;
  font-size: 16px;
}

.news-card h3 {
  margin: 18px 0 0;
  font-size: 27px;
  line-height: 1.12;
  font-weight: 900;
}

.news-card--featured {
  min-height: 528px;
  margin-top: -58px;
  color: #fff;
  background: linear-gradient(135deg, #565b70, #44495c);
  box-shadow: 0 35px 58px rgba(43, 48, 67, 0.16);
}

.news-card--featured .news-card__image {
  height: 269px;
}

.news-card--featured .news-card__body {
  padding: 7px 43px 45px;
}

.news-card--featured .news-card__body span {
  color: rgba(255, 255, 255, 0.88);
}

.news-card--featured h3 {
  margin-top: 20px;
  font-size: 39px;
}

.news-card--featured button,
.romaria__actions button,
.tourism-cta {
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #9e9264, #a69b6d);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card--featured button {
  width: 280px;
  height: 60px;
  margin-top: 30px;
  font-size: 14px;
}

.news-card--featured button:hover,
.romaria__actions button:hover,
.tourism-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.22);
}

.romaria {
  padding: 0 0 103px;
}

.romaria__frame {
  position: relative;
  width: min(1700px, calc(100% - 96px));
  height: 768px;
  margin: 0 auto;
  overflow: hidden;
}

.romaria__frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.romaria__frame:hover > img {
  transform: scale(1.035);
}

.romaria__panel {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 815px;
  padding-top: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  background: rgba(72, 78, 99, 0.86);
  backdrop-filter: blur(3px);
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 16% 100%);
  transform: translateX(-50%);
}

.play-large {
  width: 116px;
  height: 116px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.15);
  animation: pulseRing 2.6s ease-in-out infinite;
}

.play-large span,
.radio-play span {
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 22px solid #fff;
  transform: translateX(4px);
}

.romaria h2 {
  margin: 56px 0 24px;
  font-size: clamp(48px, 3.7vw, 66px);
  line-height: 0.98;
  font-weight: 900;
}

.romaria p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.romaria__actions {
  margin-top: 54px;
  display: flex;
  gap: 37px;
}

.romaria__actions button {
  min-width: 218px;
  height: 61px;
  padding: 0 34px;
  font-size: 13px;
}

.church-life {
  padding-top: 0;
  padding-bottom: 80px;
  text-align: center;
}

.life-grid {
  width: min(var(--content), calc(100% - 48px));
  margin: 94px auto 0;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 105px;
  align-items: center;
  text-align: center;
}

.life-illustration img {
  width: 615px;
  max-width: none;
  margin-left: -14px;
}

.life-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  row-gap: 72px;
  column-gap: 90px;
}

.life-item {
  min-height: 294px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.life-item:hover {
  transform: translateY(-5px);
}

.life-item img {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 18px 38px rgba(101, 93, 58, 0.14);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.life-item:hover img {
  transform: rotate(-2deg) translateY(-4px);
  box-shadow: 0 25px 48px rgba(101, 93, 58, 0.18);
}

.life-item strong {
  margin-top: 28px;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 900;
}

.life-item span {
  margin-top: 18px;
  max-width: 330px;
  font-size: 17px;
  line-height: 1.45;
}

.under-link {
  display: block;
  margin: 50px auto 0;
  color: #777;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
}

.community {
  padding-top: 10px;
  padding-bottom: 108px;
}

.community-grid {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  display: block;
}

.community h2 {
  padding-left: 21px;
  font-size: clamp(40px, 3vw, 54px);
  white-space: nowrap;
}

.community-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  row-gap: 58px;
  column-gap: 130px;
  padding-top: 139px;
}

.info-item {
  display: grid;
  grid-template-columns: 128px 1fr;
  grid-template-rows: auto auto;
  column-gap: 32px;
  min-height: 128px;
  text-align: left;
  transition: transform 0.2s ease;
}

.info-item:hover {
  transform: translateY(-4px);
}

.round-icon {
  grid-row: 1 / span 2;
  position: relative;
  width: 100px;
  height: 100px;
  margin: 12px auto 0;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 18px 34px rgba(101, 93, 58, 0.13);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.info-item:hover .round-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 25px 44px rgba(101, 93, 58, 0.18);
}

.round-icon::before,
.round-icon::after {
  content: "";
  position: absolute;
}

.clock-icon::before {
  inset: 29px;
  border: 5px solid #fff;
  border-radius: 50%;
}

.clock-icon::after {
  left: 50px;
  top: 34px;
  width: 21px;
  height: 26px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
}

.phone-icon::before {
  left: 28px;
  top: 23px;
  width: 29px;
  height: 54px;
  border: 5px solid #fff;
  border-radius: 4px;
}

.phone-icon::after {
  right: 22px;
  top: 42px;
  width: 38px;
  height: 27px;
  border: 5px solid #fff;
  border-radius: 2px;
  background: var(--olive);
  transform: rotate(-8deg);
}

.church-icon::before {
  left: 28px;
  top: 26px;
  width: 44px;
  height: 48px;
  border: 5px solid #fff;
  border-top: 0;
}

.church-icon::after {
  left: 42px;
  top: 18px;
  width: 18px;
  height: 28px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  transform: skewY(-25deg);
}

.moon-icon::before {
  left: 31px;
  top: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
}

.moon-icon::after {
  left: 48px;
  top: 13px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--olive);
}

.info-item strong {
  align-self: end;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
}

.info-item span:not(.round-icon) {
  margin-top: 13px;
  font-size: 18px;
  line-height: 1.45;
}

.community-link {
  width: min(var(--content), calc(100% - 48px));
  margin-top: 76px;
  text-align: left;
  padding-left: 5px;
}

.tourism {
  padding-top: 29px;
  padding-bottom: 128px;
}

.tourism-track {
  width: 100%;
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(280px, 1fr));
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

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

.route-card {
  position: relative;
  height: 405px;
  min-width: 350px;
  padding: 0 31px 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #fff;
  text-align: left;
  background: linear-gradient(145deg, #3e4355, #343948);
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.route-card::before {
  content: "";
  position: absolute;
  left: 52px;
  bottom: 150px;
  width: 22px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.94;
}

.route-card:hover,
.route-card:focus-visible {
  transform: translateY(-6px);
  filter: brightness(1.04);
  outline: 0;
}

.route-card--active {
  background: linear-gradient(145deg, #9c9368, #8c8257);
}

.route-card span,
.route-card strong {
  position: relative;
  z-index: 1;
}

.route-card span {
  margin-bottom: 19px;
  font-size: 15px;
  font-weight: 700;
}

.route-card strong {
  font-size: 29px;
  line-height: 1.08;
  font-weight: 900;
}

.tourism-cta {
  display: block;
  width: 320px;
  height: 68px;
  margin: 118px auto 0;
  background: #464b60;
  font-size: 13px;
}

.footer {
  padding-top: 0;
}

.partners {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 139px;
}

.radio-player {
  width: min(1728px, calc(100% - 96px));
  height: 152px;
  margin: 0 auto;
  padding: 0 255px;
  display: grid;
  grid-template-columns: 1fr 210px 1fr;
  align-items: center;
  color: #fff;
  background: linear-gradient(110deg, #4b5064, #454a5d);
}

.radio-player__copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  letter-spacing: 4px;
}

.radio-player__copy p {
  margin: 11px 0 0;
  font-size: 17px;
}

.radio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.skip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--slate);
  background: #fff;
  font-size: 29px;
  line-height: 1;
}

.radio-play {
  width: 78px;
  height: 78px;
  margin: 0 -5px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--olive);
  z-index: 1;
}

.radio-play.is-playing span {
  width: 20px;
  height: 28px;
  border: 0;
  border-left: 7px solid #fff;
  border-right: 7px solid #fff;
  transform: none;
}

.radio-timeline {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.bar {
  height: 7px;
  background: rgba(255, 255, 255, 0.35);
}

.bar i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--olive);
  transition: width 0.2s linear;
}

.footer-strip {
  height: 28px;
  background: var(--olive-dark);
}

.modal {
  width: min(640px, calc(100% - 36px));
  padding: 42px 48px 44px;
  border: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.modal::backdrop {
  background: rgba(22, 25, 35, 0.65);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 36px;
  line-height: 1;
}

.modal h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}

.modal p,
.modal li {
  color: #666;
  font-size: 18px;
  line-height: 1.55;
}

.modal ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-stagger="1"] {
  transition-delay: 90ms;
}

.reveal[data-stagger="2"] {
  transition-delay: 180ms;
}

.reveal[data-stagger="3"] {
  transition-delay: 270ms;
}

@keyframes heroCopy {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  28%,
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 19px);
  }
}

@keyframes liturgySheen {
  0%,
  58% {
    transform: translateX(-110%);
  }
  75%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.32);
  }
  50% {
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.15), 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

@keyframes mapPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.18);
  }
}

@keyframes regionGlow {
  0%,
  100% {
    fill: rgba(155, 144, 97, 0.3);
  }
  50% {
    fill: rgba(72, 77, 96, 0.28);
  }
}

@media (max-width: 1320px) {
  .main-nav {
    gap: 34px;
  }

  .menu {
    gap: 16px;
  }

  .menu a,
  .menu button {
    font-size: 15px;
  }

  .radio-player {
    padding: 0 120px;
  }
}

@media (max-width: 1050px) {
  .topbar {
    height: auto;
    min-height: 74px;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
    gap: 14px 22px;
  }

  .social {
    margin-left: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background-position: 56% top;
  }

  .main-nav {
    position: absolute;
    height: 88px;
    padding: 0 24px;
    gap: 0;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 6px;
  }

  .menu-toggle span {
    width: 30px;
    height: 3px;
    background: #262626;
  }

  .menu {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    padding: 18px 24px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
  }

  body.is-scrolled .menu {
    top: 78px;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a,
  .menu button {
    width: 100%;
    justify-content: flex-start;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    padding: 0 0 10px 14px;
  }

  .hero__copy {
    padding-top: 300px;
  }

  .scroll-cue {
    bottom: -86px;
  }

  .readings {
    flex-wrap: wrap;
    gap: 18px 30px;
  }

  .bishop-grid,
  .territory-grid,
  .life-grid,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .bishop-photo,
  .territory-copy,
  .community h2 {
    padding-left: 0;
  }

  .bishop-photo img {
    margin: 0 auto;
  }

  .bishop-copy {
    padding-left: 0;
    text-align: center;
  }

  .bishop-copy p,
  .territory-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .text-links {
    justify-content: center;
  }

  .territory-copy {
    text-align: center;
  }

  .stats {
    justify-content: center;
  }

  .map-panel {
    grid-template-columns: 1fr;
  }

  .map-stage {
    width: min(560px, 100%);
  }

  .news-row {
    flex-wrap: wrap;
  }

  .news-card--featured {
    margin-top: 0;
  }

  .romaria__frame {
    width: min(1700px, calc(100% - 32px));
  }

  .romaria__panel {
    width: min(815px, 96%);
  }

  .life-illustration img {
    width: min(615px, 100%);
    max-width: 100%;
    margin: 0 auto;
  }

  .community-list {
    padding-top: 0;
  }

  .radio-player {
    height: auto;
    min-height: 190px;
    padding: 28px 32px;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .topbar__divider,
  .agenda-btn em {
    display: none;
  }

  .weather,
  .agenda-btn strong {
    font-size: 14px;
  }

  .hero {
    min-height: 690px;
  }

  .hero::before {
    background-position: 62% top;
    transform: translate3d(0, calc(var(--hero-shift, 0px) * 0.45), 0) scale(1.02);
  }

  .hero__copy {
    width: min(100% - 42px, 390px);
    padding-top: 266px;
  }

  .hero__copy h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero__copy p {
    font-size: 19px;
  }

  .hero__eyebrow {
    margin-bottom: 15px;
    font-size: 12px;
  }

  .hero__actions {
    margin-top: 28px;
    gap: 12px;
  }

  .hero-btn {
    min-width: 150px;
    height: 48px;
    padding: 0 17px;
    font-size: 12px;
  }

  .scroll-cue {
    display: none;
  }

  .liturgy {
    height: auto;
    min-height: 300px;
  }

  .liturgy__inner {
    padding: 42px 0;
  }

  .readings {
    display: grid;
  }

  .section-pad {
    padding: 62px 0;
  }

  .news-row,
  .life-items,
  .community-list {
    grid-template-columns: 1fr;
  }

  .news-row {
    display: grid;
  }

  .news-card,
  .news-card--featured {
    width: min(368px, 100%);
    margin: 0 auto;
  }

  .romaria__frame {
    height: 650px;
  }

  .romaria__panel {
    clip-path: none;
    padding: 90px 24px 0;
  }

  .romaria__actions {
    flex-direction: column;
    gap: 16px;
  }

  .community-list {
    display: grid;
  }

  .community h2 {
    white-space: normal;
  }

  .info-item {
    grid-template-columns: 96px 1fr;
    column-gap: 22px;
  }

  .round-icon {
    width: 82px;
    height: 82px;
  }

  .map-directory {
    padding: 22px;
  }

  .map-tools {
    grid-template-columns: 1fr;
  }

  .map-stage {
    width: min(360px, 100%);
  }

  .tourism-track {
    padding: 0 24px;
    gap: 24px;
  }

  .route-card {
    min-width: 285px;
  }

  .partners {
    margin-bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
