:root {
  --gold: #d9b24c;
  --gold-light: #f7df93;
  --gold-dark: #9f741d;
  --black: #080807;
  --ink: #14110b;
  --ivory: #f7f0e3;
  --white: #ffffff;
  --muted: #aaa190;
  --header-height: 88px;
  --ticker-height: 40px;
  --header-height-mobile: 96px;
  font-family: Raleway, Lato, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 178, 76, 0.16), transparent 30rem),
    linear-gradient(135deg, #050505 0%, #15120d 58%, #060606 100%);
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 500ms ease, visibility 0s linear 0s;
}

.page-loader > * {
  grid-area: 1 / 1;
}

.page-loader-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(217, 178, 76, 0.18);
  border-top-color: var(--gold);
  animation: loaderSpin 1s linear infinite;
}

.page-loader-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 500ms ease, visibility 0s linear 500ms;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-ring,
  .page-loader-mark {
    animation: none;
  }
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0));
}

.site-header {
  position: absolute;
  top: calc(28px + var(--ticker-height));
  left: 0;
  z-index: 19;
  width: 100%;
  transition: background 220ms ease, box-shadow 220ms ease, top 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-fixed {
  position: fixed;
  top: var(--ticker-height);
  background: rgba(36, 18, 54, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.news-ticker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: var(--ticker-height);
  display: flex;
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid rgba(217, 178, 76, 0.25);
  transition: top 220ms ease;
}

.news-ticker.is-fixed {
  position: fixed;
  top: 0;
}

.news-ticker-label {
  flex: none;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-ticker-viewport {
  flex: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.news-ticker-track {
  display: flex;
  align-items: center;
  animation: tickerScroll var(--ticker-duration, 30s) linear infinite;
  will-change: transform;
}

.news-ticker:hover .news-ticker-track {
  animation-play-state: paused;
}

.news-ticker-seq {
  display: flex;
  flex: none;
  align-items: center;
}

.news-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.news-ticker-item .ticker-date {
  color: var(--gold-light);
  font-weight: 700;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--ticker-distance, 600px)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-ticker-track {
    animation: none;
  }

  .news-ticker-viewport {
    overflow-x: auto;
  }
}

.header-inner {
  width: min(1140px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.primary-nav a,
.nav-link {
  position: relative;
  padding: 28px 14px;
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms ease;
}

.primary-nav > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 19px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.primary-nav > a:hover,
.nav-item:hover > .nav-link,
.nav-link:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.primary-nav > a:hover::after,
.nav-item:hover > .nav-link::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 190px;
  padding: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(246, 223, 145, 0.16);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 178, 76, 0.12), transparent 11rem),
    linear-gradient(145deg, rgba(24, 10, 42, 0.96), rgba(48, 21, 73, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 220ms ease, transform 260ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  background: rgba(36, 18, 54, 0.96);
  border-left: 1px solid rgba(246, 223, 145, 0.16);
  border-top: 1px solid rgba(246, 223, 145, 0.16);
  transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-dropdown a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.mobile-break {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold-light);
  align-content: center;
  align-items: center;
  justify-content: center;
  grid-template-columns: 28px;
  grid-template-rows: repeat(3, 4px);
  gap: 4px;
  cursor: pointer;
  padding: 0 4px;
  box-shadow: none;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: currentColor;
  display: block;
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease, background 220ms ease;
}

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

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

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

.hero {
  min-height: 100vh;
  position: relative;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  z-index: 0;
  transition: opacity 1300ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: opacity;
  transform: translateZ(0);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 52% 51%, rgba(246, 223, 145, 0.16), transparent 18rem),
    radial-gradient(circle at 50% 105%, rgba(217, 178, 76, 0.2), transparent 26rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.5)),
    var(--slide-image) var(--slide-pos, center center) / cover no-repeat;
  transform: scale(1);
  transform-origin: center;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

@media (max-width: 767px) {
  .hero-slide::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.5)),
      var(--slide-image-sm, var(--slide-image)) var(--slide-pos-sm, center center) / cover no-repeat;
  }
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide.is-leaving {
  opacity: 0;
  z-index: 1;
}

.hero-slide.is-active::after {
  animation: kenBurns 9.5s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.hero-slide.is-leaving::after {
  animation: none;
  transform: scale(1.08) translate3d(-1.2%, -1%, 0);
}

.hero-slide.is-active .hero-content {
  animation: slideContentIn 1050ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide--video::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.5));
}

.hero-slide--video.is-active::after,
.hero-slide--video.is-leaving::after {
  animation: none;
  transform: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(246, 223, 145, 0.08) 50%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}

.hero-content {
  width: min(900px, calc(100% - 48px));
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 70px;
  opacity: 0;
  transform: translateY(12px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 8.8vw, 112px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.58);
  overflow-wrap: anywhere;
}

.hero p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 300;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.54);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 28px;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 55%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: left 520ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.button:hover::before {
  left: 118%;
}

.button-outline {
  border: 2px solid currentColor;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.button-outline:hover {
  color: var(--ink);
  background: linear-gradient(135deg, var(--ivory), #ffffff);
  border-color: var(--ivory);
}

.button-gold {
  color: #19130a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 48%, #b88821);
  border: 2px solid rgba(246, 223, 145, 0.65);
}

.button-gold:hover {
  background: linear-gradient(135deg, #fff0ad, var(--gold), var(--gold-dark));
  border-color: var(--gold-light);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 44px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0.88;
  backdrop-filter: none;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, color 220ms ease;
}

.slider-arrow:hover {
  color: var(--gold-light);
  background: transparent;
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow-left {
  left: 24px;
}

.slider-arrow-right {
  right: 24px;
}

.slide-count {
  position: absolute;
  z-index: 4;
  right: 32px;
  bottom: 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-size: 18px;
}

.slide-count span {
  width: auto;
  height: auto;
  display: inline;
  background: transparent;
}

.slide-count b {
  font-weight: 400;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
  transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.scroll-down svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: currentColor;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.scroll-down:hover {
  color: var(--white);
  transform: translateX(-50%) translateY(3px);
}

.promo {
  position: relative;
  color: var(--ivory);
  padding: 58px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 223, 145, 0.28), transparent 24rem),
    linear-gradient(135deg, #d6aa32 0%, #b98217 38%, #17110a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 34%, rgba(0, 0, 0, 0.18));
  background-size: 42px 42px, 42px 42px, 100% 100%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), #000 24%, #000 72%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.promo-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.promo-inner > div {
  min-width: 0;
  max-width: 100%;
  width: min(680px, 100%);
}

.promo h2 {
  margin: 0;
  color: #120e08;
  font-size: clamp(42px, 6vw, 62px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.promo p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.16;
  font-weight: 600;
}

.promo-button {
  flex: 0 0 auto;
}

.promo-button span {
  margin-left: 8px;
  font-size: 18px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(217, 178, 76, 0.12), transparent 24rem),
    linear-gradient(180deg, #080806, #14110d);
}

.feature-tile {
  min-width: 0;
  height: 330px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.feature-tile a,
.feature-tile img {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-tile img {
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.86) contrast(1.05);
  transition: transform 520ms ease, filter 520ms ease;
}

.feature-tile a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 40%, transparent, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.74));
  transition: background 320ms ease, opacity 320ms ease;
}

.feature-tile a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.2) 38%, transparent 58%);
  transform: translateX(-115%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.feature-tile span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  color: var(--white);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  transform: translateY(0);
  transition: transform 320ms ease, color 320ms ease;
}

.feature-tile span::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 18px rgba(217, 178, 76, 0.45);
}

.feature-tile:hover {
  transform: translateY(0);
}

.feature-tile:hover img {
  transform: scale(1.1);
  filter: saturate(1.04) contrast(1.09);
}

.feature-tile:hover a::before {
  background:
    linear-gradient(135deg, rgba(36, 18, 54, 0.48), rgba(65, 31, 86, 0.3)),
    radial-gradient(circle at 50% 40%, rgba(217, 178, 76, 0.12), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.78));
}

.feature-tile:active a::before,
.feature-tile:focus-within a::before {
  background:
    linear-gradient(135deg, rgba(36, 18, 54, 0.56), rgba(65, 31, 86, 0.36)),
    radial-gradient(circle at 50% 40%, rgba(217, 178, 76, 0.12), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.78));
}

.feature-tile:hover a::after {
  transform: translateX(115%);
}

.feature-tile:hover span {
  color: var(--gold-light);
  transform: translateY(-4px);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #0d0c0a;
  color: rgba(246, 240, 228, 0.68);
  font-size: 14px;
  border-top: 1px solid rgba(246, 223, 145, 0.12);
  padding: 34px 0;
}

.footer-inner {
  width: min(1140px, calc(100% - 40px));
  min-height: 154px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  margin-bottom: 9px;
  display: flex;
  gap: 5px;
  color: var(--ivory);
  font-weight: 700;
}

.site-footer p,
.site-footer address {
  margin: 0;
  line-height: 1.65;
  font-style: normal;
}

.site-footer a {
  color: var(--ivory);
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(246, 240, 228, 0.72);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(246, 223, 145, 0.18);
  background: rgba(255, 255, 255, 0.03);
  transition: border 220ms ease, color 220ms ease, background 220ms ease, transform 220ms ease;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.footer-social a:hover {
  color: #15110b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 223, 145, 0.35);
  border-radius: 50%;
  background: rgba(10, 9, 7, 0.78);
  color: var(--gold-light);
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.to-top.is-visible {
  opacity: 0.85;
  pointer-events: auto;
}

.to-top:hover {
  transform: translateY(-2px);
  opacity: 1;
  background: rgba(25, 20, 12, 0.92);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes kenBurns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, -1%, 0);
  }
}

@media (max-width: 980px) {
  :root {
    --ticker-height: 34px;
  }

  .site-header {
    top: 0;
    padding: 10px 0;
    background: rgba(36, 18, 54, 0.94);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .site-header.is-fixed {
    top: 0;
  }

  .news-ticker,
  .news-ticker.is-fixed {
    top: var(--header-height-mobile);
    transition: none;
  }

  .news-ticker-label {
    padding: 0 12px;
    font-size: 10px;
  }

  .news-ticker-item {
    padding: 0 16px;
    font-size: 12px;
  }

  .header-inner {
    min-height: 76px;
    border-radius: 0;
  }

  .menu-toggle {
    display: inline-grid;
    position: absolute;
    right: 22px;
    top: 24px;
    z-index: 70;
    transform: none;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: clamp(6px, 1.6vh, 14px);
    padding: 96px 28px 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(217, 178, 76, 0.14), transparent 18rem),
      radial-gradient(circle at 82% 76%, rgba(117, 63, 158, 0.24), transparent 22rem),
      linear-gradient(145deg, rgba(24, 10, 42, 0.99), rgba(48, 21, 73, 0.99) 52%, rgba(14, 7, 24, 0.99));
    box-shadow: none;
    backdrop-filter: blur(22px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease, transform 320ms ease;
  }

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

  .primary-nav a {
    width: min(440px, calc(100vw - 56px));
    margin: 0 auto;
    padding: clamp(12px, 2.4vh, 18px) 20px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(20px, 6.4vw, 34px);
    line-height: 1;
    text-align: center;
    border-radius: 0;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  }

  .nav-item {
    width: min(440px, calc(100vw - 56px));
    margin: 0 auto;
  }

  .nav-item::after {
    display: none;
  }

  .nav-item > .nav-link {
    display: block;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    width: min(360px, calc(100vw - 84px));
    min-width: 0;
    margin: -2px auto 4px;
    padding: 0;
    gap: 2px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 12px;
    color: rgba(246, 223, 145, 0.82);
    font-size: clamp(14px, 4vw, 17px);
    letter-spacing: 0.12em;
    text-shadow: none;
    transform: none;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus {
    text-align: center;
    transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .promo-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .mobile-break {
    display: block;
  }

  .menu-toggle {
    top: 14px;
    right: 20px;
  }

  .header-inner,
  .promo-inner,
  .footer-inner {
    width: calc(100% - 28px);
    max-width: 1140px;
  }

  .logo-link img {
    width: 62px;
    height: 62px;
  }

  .hero {
    min-height: 720px;
    background-position: 61% top;
  }

  .hero-content {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.2vw, 52px);
    letter-spacing: 0.01em;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: min(260px, 100%);
  }

  .slide-count {
    display: none;
  }

  .slider-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    font-size: 38px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .scroll-down {
    bottom: 18px;
  }

  .promo {
    padding: 38px 0;
  }

  .promo h2 {
    max-width: calc(100vw - 28px);
    font-size: clamp(31px, 9.2vw, 40px);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .promo-inner > div {
    width: 100%;
  }

  .promo p {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    font-size: 17px;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .tile-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .feature-tile {
    height: 272px;
  }
}


/* ==========================================================================
   Contact page — banner, form card, and field styling
   ========================================================================== */

.primary-nav a.is-current {
  color: var(--gold-light);
}

.primary-nav > a.is-current::after {
  transform: scaleX(1);
}

.page-banner {
  position: relative;
  isolation: isolate;
  min-height: clamp(300px, 34vw, 400px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + var(--ticker-height) + 54px) 0 52px;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.6)),
    url("assets/worship-hero.webp") 58% 30% / cover no-repeat;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 24%, rgba(246, 223, 145, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(20, 9, 34, 0.68), rgba(8, 8, 7, 0.92));
  pointer-events: none;
}

.page-banner-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-banner-eyebrow {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-banner-eyebrow::before {
  content: "";
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page-banner h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.page-banner-copy {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(246, 240, 228, 0.86);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
}

.contact-section {
  padding: clamp(46px, 6vw, 82px) 0 clamp(56px, 7vw, 96px);
  background: #ffffff;
}

.contact-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.contact-aside h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.contact-aside > p {
  margin: 0 0 28px;
  color: rgba(20, 17, 11, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.contact-details {
  margin: 0;
  display: grid;
  gap: 20px;
}

.contact-details dt {
  margin-bottom: 6px;
  color: #8a6413; /* gold darkened to clear AA contrast on the white ground */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: rgba(20, 17, 11, 0.86);
  font-size: 15px;
  line-height: 1.55;
}

.contact-details address {
  font-style: normal;
}

.contact-details a {
  border-bottom: 1px solid rgba(138, 100, 19, 0.45);
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-details a:hover {
  color: #8a6413;
  border-color: #8a6413;
}

.map-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.map-link-pin {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  flex: 0 0 auto;
  fill: currentColor;
  transition: transform 200ms ease;
}

.map-link:hover .map-link-pin {
  transform: translateY(-2px);
}

/* On the white aside the pin carries the darkened gold, and the underline sits on
   the text so the icon is not underlined with it. */
.contact-details .map-link {
  border-bottom: 0;
}

.contact-details .map-link-pin {
  fill: #8a6413;
}

.contact-details .map-link span {
  border-bottom: 1px solid rgba(138, 100, 19, 0.45);
  transition: border-color 200ms ease;
}

.contact-details .map-link:hover span {
  border-color: #8a6413;
}

/* In the footer the pin follows the link colour, ivory shifting to gold on hover. */
.site-footer .map-link {
  display: inline-flex;
}

.site-footer .map-link span {
  border-bottom: 1px solid rgba(246, 223, 145, 0.32);
  transition: border-color 200ms ease;
}

.site-footer .map-link:hover span {
  border-color: var(--gold-light);
}

.contact-aside-social {
  margin-top: 28px;
  padding-top: 24px;
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(20, 17, 11, 0.12);
}

.contact-aside-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 17, 11, 0.18);
  border-radius: 50%;
  color: rgba(20, 17, 11, 0.62);
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.contact-aside-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-aside-social a:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-card {
  position: relative;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(246, 223, 145, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 178, 76, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(24, 10, 42, 0.96), rgba(48, 21, 73, 0.94));
  box-shadow: 0 28px 64px rgba(20, 17, 11, 0.26);
}

.contact-card-head {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(246, 223, 145, 0.14);
}

.contact-card-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-card-head p {
  margin: 8px 0 0;
  color: rgba(246, 240, 228, 0.66);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.field-label label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-flag {
  color: rgba(246, 223, 145, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-flag::before {
  content: "* ";
}

.field-count {
  color: rgba(246, 240, 228, 0.64);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  transition: color 200ms ease;
}

.field-count.is-near-limit {
  color: var(--gold-light);
}

.field-count.is-over-limit {
  color: #ff9a8a;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid rgba(246, 223, 145, 0.18);
  border-radius: 6px;
  background: rgba(8, 6, 14, 0.5);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(246, 240, 228, 0.52);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(246, 223, 145, 0.32);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(8, 6, 14, 0.72);
  box-shadow: 0 0 0 3px rgba(217, 178, 76, 0.18);
}

.contact-form input.has-error,
.contact-form textarea.has-error {
  border-color: rgba(255, 138, 118, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 138, 118, 0.14);
}

.contact-form input:-webkit-autofill {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 40px #17102a inset;
}

.field-error {
  margin: 0;
  color: #ff9a8a;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.form-alert {
  margin: 0;
  padding: 14px 16px;
  color: #ffd9d1;
  font-size: 13px;
  line-height: 1.55;
  border: 1px solid rgba(255, 138, 118, 0.42);
  border-left: 3px solid #ff8a76;
  border-radius: 6px;
  background: rgba(255, 138, 118, 0.1);
}

.field-legend {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  position: relative;
  display: inline-flex;
}

.chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 17px;
  color: rgba(246, 240, 228, 0.86);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  border: 1px solid rgba(246, 223, 145, 0.24);
  border-radius: 999px;
  background: rgba(8, 6, 14, 0.42);
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.chip span:hover {
  color: var(--white);
  border-color: rgba(246, 223, 145, 0.5);
  background: rgba(8, 6, 14, 0.66);
  transform: translateY(-1px);
}

.chip input:focus-visible + span {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 178, 76, 0.24);
}

.chip input:checked + span {
  color: #19130a;
  border-color: var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 52%, #b88821);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
}

.choice-chips.has-error .chip span {
  border-color: rgba(255, 138, 118, 0.62);
}

.form-note {
  margin: 0;
  padding: 14px 16px;
  color: rgba(246, 240, 228, 0.66);
  font-size: 13px;
  line-height: 1.55;
  border: 1px solid rgba(246, 223, 145, 0.14);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.form-actions {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.form-required-key {
  margin: 0;
  color: rgba(246, 240, 228, 0.64);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.form-required-key span {
  color: var(--gold-light);
}

.form-submit {
  min-width: 190px;
  border-width: 2px;
  cursor: pointer;
}

.form-submit:disabled {
  color: rgba(246, 240, 228, 0.66);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(246, 223, 145, 0.18);
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.form-submit:disabled::before {
  display: none;
}

.form-success {
  padding: clamp(10px, 2vw, 26px) 0;
  text-align: center;
}

.form-success-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(246, 223, 145, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(217, 178, 76, 0.28), transparent 70%);
}

.form-success-mark svg {
  width: 34px;
  height: 34px;
  fill: var(--gold-light);
}

.form-success h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-success p {
  max-width: 460px;
  margin: 0 auto;
  color: rgba(246, 240, 228, 0.76);
  font-size: 15px;
  line-height: 1.6;
}

.form-success-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .page-banner {
    min-height: 0;
    padding: calc(var(--header-height-mobile) + var(--ticker-height) + 44px) 0 44px;
  }

  .page-banner::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.62)),
      url("assets/worship-hero-mobile.webp") 58% 28% / cover no-repeat;
  }

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

  /* On the stacked mobile layout these push the form far down the page. The same
     address, directions link and social links are in the footer, so nothing is lost. */
  .contact-details,
  .contact-aside-social {
    display: none;
  }

  .contact-aside > p {
    margin-bottom: 0;
  }
}

@media (max-width: 620px) {
  .page-banner {
    padding: calc(var(--header-height-mobile) + var(--ticker-height) + 32px) 0 34px;
  }

  .page-banner-inner,
  .contact-inner {
    width: calc(100% - 28px);
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form textarea {
    min-height: 168px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit {
    width: 100%;
  }

  .form-required-key {
    text-align: center;
  }

  .form-success-actions .button {
    width: 100%;
  }
}
