:root {
  color-scheme: light;
  --red: #b70f1d;
  --red-dark: #4c0710;
  --black: #050505;
  --ink: #141414;
  --gold: #d9a441;
  --gold-light: #f3d37a;
  --teal: #047d89;
  --surface: #ffffff;
  --muted: #6f7177;
  --line: rgba(20, 20, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: Inter, system-ui, sans-serif;
}

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

.font-display {
  font-family: Montserrat, Inter, system-ui, sans-serif;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 0.7rem 1rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.42);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(217, 164, 65, 0.18);
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.brand-mark img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 164, 65, 0.5);
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
  padding: 0.08rem;
}

.brand-mark strong {
  display: block;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 0.95rem;
  line-height: 1;
}

.brand-mark small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.primary-menu {
  display: none;
}

.primary-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--gold-light);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle svg {
  width: 1.2rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(76, 7, 16, 0.76) 42%, rgba(5, 5, 5, 0.58) 100%),
    radial-gradient(circle at 20% 24%, rgba(217, 164, 65, 0.24), transparent 28rem),
    url("assets/images/1.jpg") center / cover;
  transform: scale(1.02);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-section > .mx-auto {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.hero-kicker span,
.section-tag,
.section-heading > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.1);
  color: var(--gold-light);
  padding: 0.42rem 0.78rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading > span {
  color: var(--red);
  background: rgba(183, 15, 29, 0.08);
  border-color: rgba(183, 15, 29, 0.18);
}

.section-tag {
  border-radius: 8px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.1rem;
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn-primary {
  border: 1px solid rgba(217, 164, 65, 0.28);
  background: linear-gradient(135deg, #e11a2c 0%, #8f0c18 48%, #070707 100%);
  color: #fff;
  box-shadow: 0 14px 36px rgba(183, 15, 29, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(217, 164, 65, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(217, 164, 65, 0.55);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-primary svg,
.btn-secondary svg {
  width: 1.05rem;
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.1rem;
  border-radius: 8px;
  padding: 0.85rem 1.4rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.28);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  width: 100%;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-statbar {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 1180px;
  margin: -3.5rem auto 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.hero-statbar div {
  min-height: 7rem;
  padding: 1.25rem;
  background: rgba(5, 5, 5, 0.48);
}

.hero-statbar strong {
  display: block;
  color: var(--gold-light);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
}

.hero-statbar span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-pad {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

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

.section-heading h2 {
  margin-top: 1rem;
  color: var(--ink);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
}

.section-heading p {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-heading-dark h2 {
  color: #fff;
}

.section-heading-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.image-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.13);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.7));
}

.image-panel img {
  width: 100%;
  min-height: 32rem;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.58);
  color: #fff;
  padding: 1rem;
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.image-caption svg {
  width: 1.2rem;
  color: var(--gold-light);
}

.info-card,
.program-card,
.stat-card,
.plan-card,
.contact-panel,
.contact-form,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(5, 5, 5, 0.06);
}

.info-card {
  padding: 1.35rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(183, 15, 29, 0.12), rgba(217, 164, 65, 0.16));
  color: var(--red);
}

.info-card h3,
.program-card h3,
.event-card h3,
.contact-panel h3 {
  margin-top: 1rem;
  color: var(--ink);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.info-card p,
.program-card p,
.event-card p {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.75;
}

.official-band,
.event-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(217, 164, 65, 0.18), transparent 28rem),
    linear-gradient(135deg, #080808 0%, #400710 50%, #030303 100%);
}

.official-band::before,
.event-band::before,
.membership-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.16;
}

.official-band > div,
.event-band > div,
.membership-band > div {
  position: relative;
  z-index: 1;
}

.official-card {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  padding: 1.4rem;
  color: #fff;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.official-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 164, 65, 0.44);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.official-avatar {
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.24), rgba(183, 15, 29, 0.12)),
    url("assets/images/tcwa-logo.png") center / cover;
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.28);
}

.official-avatar span {
  color: #fff;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
}

.official-card h3 {
  margin-top: 1.15rem;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.official-card .role {
  margin-top: 0.25rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-card p:last-child {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

/* Premium Member Cards */
.member-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 300ms cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 164, 65, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(217, 164, 65, 0.15);
}

.member-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.member-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.member-card:hover .member-image-wrapper img {
  transform: scale(1.08);
}

.member-order-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.75);
  border: 1px solid rgba(217, 164, 65, 0.4);
  color: var(--gold-light);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 0 0.5rem;
}

.member-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
}

.member-info h3 {
  margin: 0;
  color: #fff;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.member-role {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  padding: 1.45rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(183, 15, 29, 0.48), rgba(217, 164, 65, 0.42), rgba(4, 125, 137, 0.22));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 180ms ease;
}

.program-card > * {
  position: relative;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(5, 5, 5, 0.12);
}

.program-card:hover::before {
  opacity: 1;
}

.program-card > svg {
  width: 2.3rem;
  height: 2.3rem;
  color: var(--red);
}

.masonry-gallery {
  columns: 1;
  column-gap: 1rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 18px 52px rgba(5, 5, 5, 0.1);
  cursor: zoom-in;
  break-inside: avoid;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 420ms ease, opacity 220ms ease;
}

.gallery-item.tall img {
  height: 28rem;
}

.gallery-item.wide img {
  height: 22rem;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 5, 5, 0.78));
}

.gallery-item span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  color: #fff;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
  opacity: 0.88;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  min-height: 11rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  backdrop-filter: blur(16px);
}

.date-badge {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 5.4rem;
  height: 5.4rem;
  border: 1px solid rgba(217, 164, 65, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.22), rgba(183, 15, 29, 0.2));
  color: #fff;
}

.date-badge strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.date-badge span {
  margin-top: 0.35rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card h3 {
  color: #fff;
}

.event-card p {
  color: rgba(255, 255, 255, 0.7);
}

.event-type {
  margin: 0 !important;
  color: var(--gold-light) !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.stat-card {
  display: grid;
  min-height: 13rem;
  place-items: center;
  padding: 1.4rem;
  text-align: center;
}

.stat-card svg {
  width: 2.1rem;
  height: 2.1rem;
  color: var(--gold);
}

.stat-card strong {
  margin-top: 0.9rem;
  color: var(--ink);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.stat-card span {
  margin-top: 0.65rem;
  color: var(--muted);
  font-weight: 800;
}

.membership-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(76, 7, 16, 0.82)),
    url("assets/images/2.jpg") center / cover;
}

.benefit-list {
  display: grid;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.benefit-list svg {
  margin-top: 0.18rem;
  width: 1.15rem;
  min-width: 1.15rem;
  color: var(--gold-light);
}

.plan-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(16px);
}

.plan-card-featured {
  border-color: rgba(217, 164, 65, 0.46);
  background: rgba(217, 164, 65, 0.12);
  box-shadow: 0 0 34px rgba(217, 164, 65, 0.14);
}

.plan-card p {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 0.55rem;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.plan-card span {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.testimonial-shell {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  transition: transform 320ms ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 1.55rem;
}

.testimonial-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--red);
}

.testimonial-card p {
  margin-top: 1rem;
  color: #45464a;
  font-size: 1.04rem;
  line-height: 1.8;
}

.testimonial-card strong {
  display: block;
  margin-top: 1.2rem;
  color: var(--ink);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
}

.testimonial-card span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.testimonial-dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.2);
}

.testimonial-dot.active {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(183, 15, 29, 0.12);
}

.contact-panel,
.contact-form {
  padding: 1.35rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: #4d4f55;
}

.contact-line svg {
  width: 1.12rem;
  color: var(--red);
}

.social-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
  border-color: rgba(183, 15, 29, 0.4);
  color: var(--red);
  transform: translateY(-2px);
}

.map-placeholder {
  display: grid;
  min-height: 15rem;
  margin-top: 1.45rem;
  place-items: center;
  border: 1px dashed rgba(183, 15, 29, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 15, 29, 0.06), rgba(217, 164, 65, 0.09)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(20, 20, 20, 0.03) 14px 15px);
  color: var(--ink);
  text-align: center;
}

.map-placeholder svg {
  width: 2.5rem;
  color: var(--red);
}

.map-placeholder span,
.map-placeholder small {
  display: block;
}

.map-placeholder span {
  font-weight: 900;
}

.map-placeholder small {
  color: var(--muted);
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(183, 15, 29, 0.5);
  box-shadow: 0 0 0 4px rgba(183, 15, 29, 0.08);
}

.form-status {
  min-height: 1.4rem;
  color: var(--teal);
  font-weight: 800;
}

.footer {
  background: linear-gradient(135deg, #050505, #260409 56%, #050505);
  color: #fff;
}

.footer h3 {
  color: var(--gold-light);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.1rem max(1rem, calc((100vw - 80rem) / 2));
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 5, 5, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-height: min(72vh, 46rem);
  width: min(100%, 70rem);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
}

.lightbox p {
  margin-top: 1rem;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.65);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .masonry-gallery {
    columns: 2;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonial-card {
    min-width: calc((100% - 2rem) / 3);
  }

  .testimonial-track {
    transform: none !important;
  }

  .testimonial-controls {
    display: none;
  }
}

@media (min-width: 1024px) {
  .primary-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .masonry-gallery {
    columns: 3;
  }
}

@media (max-width: 1023px) {
  .primary-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.2rem;
    border: 1px solid rgba(217, 164, 65, 0.18);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
    padding: 0.75rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    transform: translateY(-0.5rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-menu a {
    border-radius: 8px;
    padding: 0.9rem;
  }

  .primary-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 767px) {
  .brand-mark small {
    max-width: 10rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-statbar {
    grid-template-columns: 1fr;
    margin: -2rem 1rem 1rem;
  }

  .hero-statbar div {
    min-height: auto;
  }

  .image-panel img {
    min-height: 23rem;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

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

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