:root {
  --sym-blue: #053d91;
  --sym-blue-dark: #062865;
  --sym-blue-deep: #041b45;
  --sym-accent: #0b66ff;
  --sym-gold: #f3a73a;
  --sym-red: #b81938;
  --sym-ink: #0a1e4d;
  --sym-muted: #63708a;
  --sym-line: rgba(5, 61, 145, 0.14);
  --sym-surface: #ffffff;
  --sym-soft: #f6f8fc;
  --sym-shadow: 0 18px 45px rgba(12, 33, 78, 0.12);
  --sym-radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--sym-ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  color: #fff;
  background: linear-gradient(90deg, var(--sym-blue-dark), var(--sym-blue));
  font-size: 13px;
}

.topbar__inner,
.mainnav__inner,
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.topbar__inner {
  min-height: 32px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.topbar a {
  opacity: 0.92;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.mainnav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.mainnav__inner {
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.06em;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 5%, transparent 6%),
    conic-gradient(from 220deg, var(--sym-red), var(--sym-blue), #0aa4d9, var(--sym-red));
  box-shadow: inset 0 0 0 4px #fff, 0 8px 20px rgba(4, 36, 91, 0.18);
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  color: var(--sym-red);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand__text small {
  color: var(--sym-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.custom-logo-link img {
  max-width: 190px;
  max-height: 74px;
}

.brand__logo {
  width: min(230px, 48vw);
  max-height: 72px;
  object-fit: contain;
}

.brand--footer .brand__logo {
  width: min(240px, 100%);
  max-height: 80px;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #101b35;
  font-weight: 700;
  font-size: 15px;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: var(--sym-accent);
  transition: transform 0.22s ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
  transform: scaleX(1);
}

.search-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--sym-blue);
  font-size: 28px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--sym-line);
  border-radius: 12px;
  background: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--sym-blue);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__image,
.hero-slider,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1s ease, transform 5.6s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(243, 167, 58, 0.2), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02));
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide span {
  position: absolute;
  right: min(5vw, 58px);
  bottom: 32px;
  max-width: 420px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--sym-accent);
  border-radius: 4px;
  background: rgba(4, 18, 48, 0.48);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.hero-slider__dots {
  position: absolute;
  right: min(5vw, 58px);
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-slider__dots button {
  width: 24px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-slider__dots button.is-active {
  background: #fff;
}

.hero__image {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 82% 30%, rgba(243, 167, 58, 0.32), transparent 28%),
    radial-gradient(circle at 28% 58%, rgba(184, 25, 56, 0.18), transparent 24%),
    linear-gradient(120deg, #21130b 0%, #7a4116 38%, #1b2b36 58%, #6d341e 100%);
}

.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42% 43%, transparent 43%),
    radial-gradient(ellipse at 73% 46%, rgba(255, 255, 255, 0.16) 0 6%, transparent 7%),
    radial-gradient(ellipse at 62% 53%, rgba(10, 10, 10, 0.45) 0 10%, transparent 11%),
    radial-gradient(ellipse at 78% 53%, rgba(7, 7, 7, 0.48) 0 8%, transparent 9%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero__overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.08));
}

.hero__inner {
  padding-block: 78px 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero p:not(.eyebrow) {
  max-width: 530px;
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.btn--primary {
  color: #fff;
  background: var(--sym-accent);
}

.btn--light {
  color: var(--sym-blue);
  background: #fff;
}

.feature-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
  margin-top: -32px;
  overflow: hidden;
  border: 1px solid rgba(4, 38, 100, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--sym-shadow);
  backdrop-filter: blur(14px);
}

.feature-strip a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 26px;
}

.feature-strip a + a {
  border-left: 1px solid var(--sym-line);
}

.feature-strip__icon {
  color: var(--sym-accent);
  font-size: 28px;
  font-weight: 900;
}

.feature-strip strong,
.feature-strip small {
  display: block;
}

.feature-strip strong {
  color: var(--sym-blue);
  font-size: 18px;
}

.feature-strip small {
  color: var(--sym-muted);
  font-weight: 700;
}

.section {
  padding-block: 22px 8px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  color: var(--sym-ink);
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading a {
  color: var(--sym-blue);
  font-size: 14px;
  font-weight: 850;
}

.event-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card,
.spotlight,
.service,
.news-list {
  border: 1px solid rgba(4, 38, 100, 0.12);
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 33, 78, 0.06);
}

.event-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border-radius: 8px;
}

.event-card__media {
  height: 84px;
  background-size: cover;
}

.event-card__media--warm {
  background:
    radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.2), transparent 12%),
    linear-gradient(110deg, #160e0c, #8a401b 54%, #0d0d10);
}

.event-card__media--paint {
  background:
    radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.28), transparent 14%),
    repeating-linear-gradient(36deg, rgba(255, 255, 255, 0.14) 0 3px, transparent 3px 16px),
    linear-gradient(110deg, #a94e2e, #f1a6a1, #384a82);
}

.event-card__media--night {
  background:
    radial-gradient(circle at 70% 30%, rgba(243, 167, 58, 0.55), transparent 8%),
    radial-gradient(circle at 34% 70%, rgba(255, 255, 255, 0.14), transparent 10%),
    linear-gradient(110deg, #01133d, #17104a 48%, #a9322d);
}

.date-badge {
  position: absolute;
  top: 66px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  border-radius: 6px;
  background: var(--sym-accent);
  box-shadow: 0 10px 20px rgba(0, 56, 168, 0.22);
}

.date-badge strong {
  font-size: 22px;
  line-height: 1;
}

.date-badge span {
  font-size: 11px;
  font-weight: 900;
}

.event-card__body {
  padding: 15px 18px 16px 72px;
}

.event-card h3,
.spotlight h3,
.service h3,
.news-item h3 {
  margin: 0;
  color: var(--sym-ink);
  letter-spacing: -0.03em;
}

.event-card p,
.spotlight span,
.service p,
.news-item p,
.news-item time {
  color: var(--sym-muted);
}

.event-card p {
  margin: 2px 0 13px;
  font-size: 13px;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #2e374d;
  font-size: 12px;
  font-weight: 700;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.spotlight {
  overflow: hidden;
  border-radius: 8px;
}

.spotlight__media {
  height: 86px;
}

.spotlight__media--library {
  background: linear-gradient(110deg, #21120d, #7b4627, #0b0f17);
}

.spotlight__media--campus {
  background: linear-gradient(110deg, #b9c4d4, #eff4f8, #8a9db5);
}

.spotlight__media--cinema {
  background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.32), transparent 11%), linear-gradient(110deg, #0d0e12, #d68435, #0d0f14);
}

.spotlight__media--residence {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 2px, transparent 2px 18px), linear-gradient(110deg, #f5c987, #e65645, #253a78);
}

.spotlight p {
  margin: 12px 14px 2px;
  color: var(--sym-accent);
  font-size: 12px;
  font-weight: 900;
}

.spotlight h3 {
  margin-inline: 14px;
  font-size: 18px;
  line-height: 1.12;
}

.spotlight span {
  display: block;
  margin: 4px 14px 14px;
  font-size: 13px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--sym-blue);
  border: 1.5px solid rgba(11, 102, 255, 0.58);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.category-pills a:hover {
  color: #fff;
  background: var(--sym-accent);
  transform: translateY(-2px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.service {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px;
  border-radius: 10px;
}

.service > span {
  display: grid;
  place-items: center;
  width: 55px;
  min-width: 55px;
  height: 55px;
  color: var(--sym-accent);
  font-size: 34px;
  font-weight: 900;
}

.service h3 {
  font-size: 16px;
}

.service p {
  margin: 4px 0 0;
  font-size: 13px;
}

.news-list {
  overflow: hidden;
  border-radius: 10px;
}

.news-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
}

.news-item + .news-item {
  border-top: 1px dashed rgba(4, 38, 100, 0.22);
}

.news-thumb {
  display: block;
  overflow: hidden;
  width: 86px;
  height: 56px;
  border-radius: 6px;
  background: linear-gradient(110deg, #c98942, #142b65);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item h3 {
  font-size: 15px;
}

.news-item p {
  margin: 2px 0 0;
  font-size: 13px;
}

.news-item time {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.news-arrow {
  color: #101b35;
  font-size: 34px;
  line-height: 1;
}

.content-page {
  padding-block: 48px;
}

.site-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.home-with-sidebar {
  padding-top: 0;
}

.site-main-column {
  min-width: 0;
}

.site-main-column .spotlight-grid,
.site-main-column .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  align-self: start;
  padding-top: 22px;
}

.sidebar-card,
.sidebar-widgets .widget,
.sidebar-widgets .footer-widget {
  overflow: hidden;
  border: 1px solid rgba(4, 38, 100, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 33, 78, 0.06);
}

.sidebar-card {
  padding: 16px;
}

.sidebar-title,
.site-sidebar .widgettitle,
.site-sidebar .widget-title,
.site-sidebar .footer-widget__title,
.site-sidebar .wp-block-heading {
  margin: 0 0 12px;
  color: var(--sym-ink);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.facebook-page-box {
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  background: var(--sym-soft);
}

.facebook-page-box iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.sidebar-widgets {
  display: grid;
  gap: 18px;
}

.sidebar-widgets .widget,
.sidebar-widgets .footer-widget {
  padding: 18px;
}

.site-sidebar ul {
  margin: 0;
  padding-left: 18px;
}

.site-sidebar li + li {
  margin-top: 8px;
}

.site-sidebar p {
  margin: 0 0 12px;
  color: var(--sym-muted);
  font-size: 14px;
}

.site-sidebar a {
  color: var(--sym-blue);
  font-weight: 800;
}

.inner-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 300px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, rgba(243, 167, 58, 0.34), transparent 18%),
    radial-gradient(circle at 18% 76%, rgba(184, 25, 56, 0.22), transparent 22%),
    linear-gradient(115deg, var(--sym-blue-deep), var(--sym-blue) 52%, #18366c);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent);
  opacity: 0.72;
}

.inner-hero__content {
  position: relative;
  padding-block: 70px;
}

.inner-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.inner-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 650;
}

.page-layout {
  padding-block: 46px;
}

.page-content {
  max-width: 860px;
  color: #1d2b48;
  font-size: 18px;
}

.page-content h2 {
  margin: 0 0 14px;
  color: var(--sym-ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.page-content p {
  margin: 0 0 18px;
}

.linked-grid,
.post-grid,
.gallery-grid,
.contact-panel {
  margin-top: 30px;
}

.linked-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  display: block;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(4, 38, 100, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 252, 0.92)),
    radial-gradient(circle at 90% 15%, rgba(11, 102, 255, 0.16), transparent 26%);
  box-shadow: 0 12px 32px rgba(12, 33, 78, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(12, 33, 78, 0.12);
}

.detail-card span,
.post-card time {
  color: var(--sym-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-card h2,
.post-card h2,
.contact-panel h2 {
  margin: 10px 0 8px;
  color: var(--sym-ink);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-card p,
.post-card p,
.contact-panel p {
  margin: 0;
  color: var(--sym-muted);
}

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

.post-card {
  overflow: hidden;
  border: 1px solid rgba(4, 38, 100, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(12, 33, 78, 0.07);
}

.post-card > div {
  padding: 20px;
}

.post-card__thumb {
  display: block;
  height: 190px;
  background: linear-gradient(110deg, #c98942, #142b65);
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__thumb--placeholder {
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.3), transparent 16%),
    repeating-linear-gradient(40deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 18px),
    linear-gradient(120deg, #21130b, #7a4116, #053d91);
}

.archive-pagination {
  margin-top: 32px;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--sym-line);
  border-radius: 8px;
  color: var(--sym-blue);
  background: #fff;
  font-weight: 850;
}

.archive-pagination .current {
  color: #fff;
  background: var(--sym-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  min-height: 180px;
  border-radius: 18px;
  background: linear-gradient(120deg, #1b2b36, #d6852e);
  box-shadow: 0 12px 32px rgba(12, 33, 78, 0.09);
}

.gallery-tile--one {
  grid-row: span 2;
  background: linear-gradient(140deg, #21130b, #7a4116, #1b2b36);
}

.gallery-tile--two {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 15px), linear-gradient(120deg, #a94e2e, #f1a6a1, #384a82);
}

.gallery-tile--three {
  background: radial-gradient(circle at 72% 28%, rgba(243, 167, 58, 0.6), transparent 12%), linear-gradient(120deg, #01133d, #17104a, #a9322d);
}

.gallery-tile--four {
  background: linear-gradient(120deg, #b9c4d4, #eff4f8, #8a9db5);
}

.gallery-tile--five {
  background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.32), transparent 11%), linear-gradient(110deg, #0d0e12, #d68435, #0d0f14);
}

.gallery-tile--six {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 2px, transparent 2px 18px), linear-gradient(110deg, #f5c987, #e65645, #253a78);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.contact-panel > div {
  padding: 26px;
  border-radius: 18px;
  background: var(--sym-soft);
}

.single-featured {
  max-width: 920px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--sym-shadow);
}

.single-featured img {
  width: 100%;
}

.archive-list {
  display: grid;
  gap: 24px;
}

.archive-card {
  padding: 26px;
  border: 1px solid var(--sym-line);
  border-radius: var(--sym-radius);
}

.site-footer {
  margin-top: 40px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(11, 102, 255, 0.32), transparent 18%),
    linear-gradient(90deg, var(--sym-blue-deep), var(--sym-blue));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1.5fr 1.45fr 1fr 1.25fr;
  gap: 30px;
  padding-block: 34px;
}

.footer-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 30px;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text small {
  color: #fff;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.site-footer h2,
.site-footer .footer-widget__title,
.site-footer .wp-block-heading {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.site-footer p,
.site-footer a,
.footer-menu,
.site-footer li,
.site-footer .footer-widget {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.footer-menu,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li + li,
.site-footer ul li + li {
  margin-top: 6px;
}

.footer-widget > *:last-child {
  margin-bottom: 0;
}

.footer-widget p {
  margin-top: 0;
}

.footer-widget .wp-block-social-links {
  display: flex;
  gap: 10px;
  margin: 0 0 12px;
  padding: 0;
}

.footer-widget .wp-block-social-links a {
  color: inherit;
}

.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom__inner {
  min-height: 54px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.footer-bottom__inner .footer-widget {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1040px) {
  .site-with-sidebar {
    grid-template-columns: 1fr;
  }

  .site-sidebar {
    position: static;
    padding-top: 8px;
  }

  .facebook-page-box iframe {
    height: 420px;
  }

  .primary-nav {
    position: fixed;
    top: 124px;
    right: 24px;
    left: 24px;
    display: none;
    padding: 18px;
    border: 1px solid var(--sym-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--sym-shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-menu {
    display: grid;
    gap: 6px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .search-link {
    display: none;
  }

  .event-row,
  .spotlight-grid,
  .service-grid,
  .linked-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid > div + div {
    border-left: 0;
    padding-left: 0;
  }
}

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

  .topbar__right {
    display: none;
  }

  .mainnav__inner {
    min-height: 76px;
  }

  .brand__text {
    display: none;
  }

  .primary-nav {
    top: 108px;
  }

  .hero {
    min-height: 520px;
  }

  .hero__inner {
    padding-block: 56px 88px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-slide span {
    display: none;
  }

  .hero-slider__dots {
    right: 18px;
    bottom: 16px;
  }

  .btn {
    width: 100%;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: -42px;
  }

  .feature-strip a + a {
    border-left: 0;
    border-top: 1px solid var(--sym-line);
  }

  .section {
    padding-block: 28px 4px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .event-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .event-card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .spotlight-grid,
  .service-grid,
  .footer-grid,
  .linked-grid,
  .post-grid,
  .gallery-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .site-main-column .spotlight-grid,
  .site-main-column .service-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 330px;
  }

  .news-item {
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
  }

  .news-thumb {
    width: 70px;
    height: 52px;
  }

  .footer-bottom__inner {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding-block: 14px;
  }
}
