:root {
  --ink: #0c1f2e;
  --ink-soft: #1a3347;
  --sea: #0b5f7a;
  --sea-deep: #083d52;
  --foam: #f3f7f8;
  --mist: #e4eef1;
  --gold: #c4a35a;
  --gold-bright: #dbb96a;
  --gold-deep: #9a7d3a;
  --cream: #faf8f4;
  --white: #ffffff;
  --muted: #5c7380;
  --line: rgba(12, 31, 46, 0.12);
  --shadow: 0 24px 60px rgba(8, 61, 82, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --radius: 1.25rem;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 163, 90, 0.12), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(11, 95, 122, 0.1), transparent 38%),
    linear-gradient(180deg, var(--cream) 0%, var(--foam) 55%, var(--mist) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, var(--sea-deep), var(--sea));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.65rem 0;
  position: relative;
  z-index: 30;
}

.topbar-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
}

.topbar-text i {
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.site-navbar {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  position: relative;
  z-index: 40;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
}

.logo-mark {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--sea), var(--sea-deep));
  color: var(--gold-bright);
  box-shadow: 0 10px 24px rgba(8, 61, 82, 0.25);
  font-size: 1.15rem;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea);
}

.custom-toggler {
  border: 0;
  padding: 0.35rem;
  box-shadow: none;
}

.custom-toggler:focus {
  box-shadow: none;
}

.hamburger {
  width: 1.55rem;
  height: 1.1rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.custom-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

.site-navbar .nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.55rem 0.85rem;
  position: relative;
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--sea-deep);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("../images/hero-banner.jpg") center center / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 30, 42, 0.88) 8%, rgba(8, 61, 82, 0.55) 48%, rgba(12, 31, 46, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 30, 42, 0.75) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5.5rem;
  padding-top: 6rem;
}

.hero-panel {
  max-width: 40rem;
  animation: riseIn 1s var(--transition) both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin-bottom: 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(196, 163, 90, 0.35);
}

.btn-gold:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(196, 163, 90, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  animation: bob 2.4s ease-in-out infinite;
}

.section {
  padding: 5.5rem 0;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 0.85rem;
}

.section-kicker.light {
  color: var(--gold-bright);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.section-title.light {
  color: var(--white);
}

.section-text {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.section-text.light {
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--sea-deep);
}

.text-link:hover {
  color: var(--gold-deep);
  gap: 0.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-tile {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(8, 61, 82, 0.2);
}

.feature-tile i {
  color: var(--sea);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.feature-tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.experience-band {
  padding-top: 0;
}

.band-card {
  display: block;
  height: 100%;
  padding: 1.85rem 1.5rem;
  border-radius: calc(var(--radius) + 0.15rem);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(228, 238, 241, 0.75));
  border: 1px solid rgba(11, 95, 122, 0.1);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}

.band-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 163, 90, 0.55);
}

.band-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--sea), var(--sea-deep));
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}

.band-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.band-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.band-cta {
  font-weight: 600;
  color: var(--sea-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.highlight-section {
  padding-top: 1rem;
}

.highlight-shell {
  border-radius: calc(var(--radius) + 0.5rem);
  padding: 2.75rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(196, 163, 90, 0.22), transparent 35%),
    linear-gradient(135deg, var(--sea-deep), #0a4a61 55%, #0c2d3d);
  box-shadow: var(--shadow);
  color: var(--white);
}

.ritual-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.ritual-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ritual-list i {
  color: var(--gold-bright);
  margin-top: 0.2rem;
}

.ritual-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.ritual-list span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.site-footer {
  background: linear-gradient(180deg, #0a2433, #071821);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 1.75rem;
  margin-top: 2rem;
}

.footer-logo .logo-title,
.footer-logo .logo-subtitle {
  color: var(--white);
}

.footer-logo .logo-subtitle {
  color: var(--gold-bright);
}

.footer-blurb {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 22rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links,
.footer-meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-meta li {
  margin-bottom: 0.55rem;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-meta li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.94rem;
}

.footer-meta i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.footer-legal a:hover {
  color: var(--gold-bright);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.65;
  }
  50% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-navbar .nav-link {
    padding: 0.75rem 0.9rem;
  }

  .site-navbar .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-bottom: 4.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .highlight-shell {
    padding: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .topbar-text {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.media-split {
  overflow: hidden;
}

.media-frame {
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition);
}

.media-frame:hover img {
  transform: scale(1.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 1.6rem 1.35rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--sea), var(--sea-deep));
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.cta-banner {
  border-radius: calc(var(--radius) + 0.4rem);
  padding: 3rem 2.25rem;
  background:
    linear-gradient(120deg, rgba(8, 61, 82, 0.88), rgba(12, 31, 46, 0.72)),
    url("../images/port-terrace.jpg") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-banner .section-title {
  color: var(--white);
  max-width: 28rem;
}

.cta-banner .section-text {
  color: rgba(255, 255, 255, 0.84);
  max-width: 32rem;
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 30, 42, 0.9) 10%, rgba(8, 61, 82, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3rem;
}

.page-hero .hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-hero .hero-lead {
  margin-bottom: 0;
  max-width: 36rem;
}

.menu-board,
.event-list,
.legal-panel,
.info-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: calc(var(--radius) + 0.15rem);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.menu-group + .menu-group {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.menu-group h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--sea-deep);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(12, 31, 46, 0.1);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item strong {
  display: block;
  font-weight: 600;
}

.menu-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-price {
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}

.event-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.event-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.event-date {
  border-radius: 0.9rem;
  background: linear-gradient(145deg, var(--sea), var(--sea-deep));
  color: var(--white);
  text-align: center;
  padding: 0.85rem 0.4rem;
}

.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.event-date span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.event-card p {
  margin: 0;
  color: var(--muted);
}

.form-shell {
  background: rgba(255, 255, 255, 0.82);
  border-radius: calc(var(--radius) + 0.15rem);
  box-shadow: var(--shadow);
  padding: 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.form-shell .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.form-shell .form-control,
.form-shell .form-select {
  border-radius: 0.8rem;
  border-color: rgba(12, 31, 46, 0.14);
  padding: 0.75rem 0.95rem;
  background: rgba(255, 255, 255, 0.95);
}

.form-shell .form-control:focus,
.form-shell .form-select:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 0.2rem rgba(11, 95, 122, 0.15);
}

.legal-panel h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--sea-deep);
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
}

.legal-panel ul {
  padding-left: 1.15rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-list i {
  color: var(--sea);
  margin-top: 0.2rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(7, 24, 33, 0.78);
  backdrop-filter: blur(8px);
}

.age-gate.is-open {
  display: flex;
}

.age-gate-card {
  width: min(100%, 28rem);
  background: linear-gradient(165deg, #faf8f4, #eef5f7);
  border-radius: 1.35rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.age-gate-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--sea), var(--sea-deep));
  color: var(--gold-bright);
  font-size: 1.25rem;
}

.age-gate-card h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.age-gate-card p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.age-gate-actions .btn {
  min-width: 8.5rem;
  justify-content: center;
}

.btn-sea {
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
  color: var(--white);
}

.btn-sea:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-ink {
  background: transparent;
  border-color: rgba(12, 31, 46, 0.25);
  color: var(--ink);
}

.btn-outline-ink:hover {
  color: var(--ink);
  border-color: var(--sea);
  transform: translateY(-2px);
}

body.age-locked {
  overflow: hidden;
}

body.age-locked > :not(.age-gate) {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 991.98px) {
  .gallery-grid,
  .steps-row {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 575.98px) {
  .gallery-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .event-card {
    grid-template-columns: 4.5rem 1fr;
  }

  .cta-banner {
    padding: 2.25rem 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-panel,
  .hero-scroll,
  .feature-tile,
  .band-card,
  .btn,
  .media-frame img,
  .gallery-item img {
    animation: none !important;
    transition: none !important;
  }
}
