@font-face {
  font-family: "Intro Rust";
  src: local("Intro Rust"), local("IntroRust");
  font-display: swap;
}

:root {
  --bte-orange: #ff751f;
  --bte-blue: #1f3a6f;
  --ink-900: #13213e;
  --ink-700: #2f426a;
  --paper: #f6f8fc;
  --white: #ffffff;
  --surface: #eef3fb;
  --radius: 6px;
  --shadow-soft: 0 8px 24px rgba(31, 58, 111, 0.12);
  --shadow-medium: 0 14px 34px rgba(31, 58, 111, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at 8% 10%, rgba(255, 117, 31, 0.12), transparent 38%),
    radial-gradient(circle at 85% 0%, rgba(31, 58, 111, 0.16), transparent 36%),
    linear-gradient(180deg, #f8fbff 0%, #edf3fb 58%, #f7f9fe 100%);
  line-height: 1.5;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(31, 58, 111, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 111, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 85%);
  z-index: -1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.25rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 58, 111, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-text {
  font-family: "Intro Rust", "Outfit", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-basin {
  color: var(--bte-orange);
}

.brand-te {
  color: var(--bte-blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  text-decoration: none;
  font-family: "Intro Rust", "Outfit", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--bte-blue);
  color: var(--bte-blue);
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--bte-blue);
  border-color: var(--bte-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 58, 111, 0.22);
}

.site-nav a.active,
.site-nav a[aria-current="page"] {
  background: var(--bte-blue);
  border-color: var(--bte-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 58, 111, 0.22);
}

.menu-toggle {
  display: none;
  font-family: "Intro Rust", "Outfit", "Segoe UI", sans-serif;
  color: var(--bte-blue);
}

.hero {
  padding-top: 5rem;
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-copy,
.hero-panel {
  background: var(--white);
  border: 1px solid rgba(31, 58, 111, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 2rem;
}

.hero-panel {
  padding: 1.4rem 1.5rem;
  background: linear-gradient(155deg, #fcfdff 0%, #f1f6ff 100%);
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", "Trebuchet MS", sans-serif;
  line-height: 1.12;
  margin-top: 0;
  color: var(--bte-blue);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.eyebrow {
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--bte-orange);
  margin-bottom: 0.6rem;
}

.mission {
  font-size: 1.04rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff751f 0%, #ff8f4f 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 117, 31, 0.35);
}

.btn-ghost {
  border-color: rgba(31, 58, 111, 0.2);
  color: var(--bte-blue);
  background: #fff;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-panel li {
  margin-bottom: 0.5rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

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

.destination-card {
  background: var(--white);
  border: 1px solid rgba(31, 58, 111, 0.13);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.destination-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.destination-card img {
  width: 132px;
  height: 132px;
  margin: 0.1rem auto 0.9rem;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  padding: 0.7rem;
  background: radial-gradient(circle at 30% 25%, #ffffff 0%, #eef4ff 100%);
  border: 1px solid rgba(31, 58, 111, 0.16);
  box-shadow: 0 8px 18px rgba(31, 58, 111, 0.16);
}

.destination-card div {
  padding: 0.2rem 0.35rem 0.15rem;
  text-align: center;
}

.destination-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}

.destination-card .club-name {
  margin-bottom: 0.2rem;
  color: var(--bte-blue);
}

.destination-card .club-subtitle {
  margin: 0 0 0.6rem;
  color: var(--bte-orange);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.destination-card .club-description {
  margin: 0;
  color: var(--ink-900);
}

.about {
  position: relative;
}

.about-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.about-card {
  background: var(--white);
  border: 1px solid rgba(31, 58, 111, 0.12);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow-soft);
}

.about-card ol {
  padding-left: 1.25rem;
}

.leader {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.leader:last-child {
  margin-bottom: 0;
}

.leader-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  border: 3px solid var(--bte-blue);
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-name {
  font-weight: 700;
  color: var(--bte-blue);
  margin: 0 0 0.18rem;
  font-size: 1rem;
}

.leader-title {
  font-size: 0.82rem;
  color: var(--bte-orange);
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.leader-bio {
  font-size: 0.9rem;
  margin: 0;
  color: var(--ink-900);
}

.contact-banner {
  background: linear-gradient(115deg, #1f3a6f 0%, #365793 55%, #4b6fae 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  padding: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-banner h2,
.contact-banner .eyebrow {
  color: #fff;
}

.contact-details a {
  color: #fff;
  font-weight: 600;
}

.privacy-hero {
  padding-top: 5rem;
}

.privacy-hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.privacy-last-updated {
  margin: 1rem 0 0;
  color: var(--ink-700);
  font-weight: 600;
}

.privacy-stack {
  display: grid;
  gap: 1rem;
  max-width: 980px;
}

.privacy-card {
  background: var(--white);
  border: 1px solid rgba(31, 58, 111, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.privacy-overview {
  padding: 1.5rem;
}

.privacy-overview p:last-child {
  margin-bottom: 0;
}

.privacy-disclosure {
  background: var(--white);
  border: 1px solid rgba(31, 58, 111, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.privacy-disclosure summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Outfit", "Trebuchet MS", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--bte-blue);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.privacy-disclosure summary::-webkit-details-marker {
  display: none;
}

.privacy-disclosure summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
}

.privacy-disclosure[open] summary {
  background: linear-gradient(115deg, #1f3a6f 0%, #365793 55%, #4b6fae 100%);
  color: #fff;
}

.privacy-disclosure[open] summary::after {
  content: "-";
}

.privacy-disclosure-panel {
  padding: 1.35rem 1.3rem 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.privacy-disclosure-panel h3,
.privacy-disclosure-panel h4 {
  margin-top: 1.2rem;
  margin-bottom: 0.65rem;
}

.privacy-disclosure-panel h3:first-child,
.privacy-disclosure-panel h4:first-child,
.privacy-disclosure-panel p:first-child {
  margin-top: 0;
}

.privacy-disclosure-panel p,
.privacy-disclosure-panel ul,
.privacy-disclosure-panel ol {
  margin-bottom: 0.9rem;
}

.privacy-disclosure-panel ul,
.privacy-disclosure-panel ol,
.privacy-support-list {
  padding-left: 1.2rem;
}

.privacy-disclosure-panel li,
.privacy-support-list li {
  margin-bottom: 0.45rem;
}

.privacy-disclosure-panel ul ul {
  margin-top: 0.55rem;
}

.privacy-disclosure-panel strong {
  color: var(--bte-blue);
}

.privacy-form-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.privacy-form-card,
.privacy-support-card {
  padding: 1.45rem;
}

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

.privacy-field-full {
  grid-column: 1 / -1;
}

.privacy-form-card form {
  margin-top: 1rem;
}

.privacy-form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.privacy-form-status {
  min-height: 1.4rem;
  margin: 0.85rem 0;
  font-weight: 600;
}

.privacy-form-status.error {
  color: #9a1a1a;
}

.privacy-form-status.success {
  color: #0b5e3a;
}

.privacy-support-card {
  background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
}

.privacy-support-card p:last-of-type {
  margin-bottom: 1rem;
}

.privacy-support-card a {
  color: var(--bte-blue);
  font-weight: 600;
}

.site-footer {
  background: #14294f;
  color: #eef3ff;
  padding: 2.5rem 0 1.2rem;
  margin-top: 2rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.footer-brand-text {
  font-family: "Intro Rust", "Outfit", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer-brand-text .brand-basin {
  color: var(--bte-orange);
}

.footer-brand-text .brand-te {
  color: #d6e4ff;
}

.footer-logo {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.site-footer a {
  color: #f0f5ff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}

.site-footer h4,
.site-footer p {
  color: #f3f7ff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.copyright {
  text-align: center;
  margin: 1.6rem 0 0;
  font-size: 0.92rem;
  color: #c6d8ff;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(14, 28, 56, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
  padding: 1rem;
  overflow-y: auto;
}

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

.modal-dialog {
  width: min(580px, 100%);
  max-height: calc(100vh - 2rem);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  padding: 1.35rem;
  position: relative;
  overflow-y: auto;
}

#contactForm {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}

.form-section {
  border: 1px solid rgba(31, 58, 111, 0.18);
  border-radius: var(--radius);
  padding: 0.9rem;
  margin: 0;
}

.form-section > legend {
  padding: 0 0.45rem;
  font-weight: 700;
  color: var(--bte-blue);
}

.form-section-info {
  border-color: rgba(31, 58, 111, 0.28);
  background: linear-gradient(180deg, #f9fbff 0%, #f2f7ff 100%);
}

.modal-close {
  position: absolute;
  right: 0.55rem;
  top: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--ink-700);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

label {
  display: block;
  margin: 0.58rem 0 0.28rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 58, 111, 0.28);
  border-radius: var(--radius);
  padding: 0.62rem 0.68rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 117, 31, 0.35);
  border-color: var(--bte-orange);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.75rem 0;
  font-weight: 600;
}

.form-status.error {
  color: #9a1a1a;
}

.form-status.success {
  color: #0b5e3a;
}

@media (max-width: 970px) {
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .contact-banner,
  .footer-grid,
  .privacy-form-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    border-radius: var(--radius);
    border: 1px solid rgba(31, 58, 111, 0.2);
    background: #fff;
    color: var(--bte-blue);
    padding: 0.4rem 0.7rem;
    font-weight: 700;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(31, 58, 111, 0.16);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .privacy-form-grid {
    grid-template-columns: 1fr;
  }
}
