/* ── Variables ── */
:root {
  --navy:    #0B1A2E;
  --navy2:   #0D2137;
  --gold:    #C8962A;
  --blue:    #1B6CA8;
  --light:   #F4F8FC;
  --white:   #FFFFFF;
  --muted:   #4A6070;
  --border:  #D6E4EF;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.is-admin { padding-top: 52px; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
p  { line-height: 1.7; }

/* ── Utilities ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 80px; }
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--blue { color: #60B4F0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  border-radius: 9999px;
  line-height: 1;
}
.btn--gold       { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #b07d1f; text-decoration: none; color: var(--navy); }
.btn--outline    { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn--outline:hover { background: rgba(255,255,255,0.2); text-decoration: none; }
.btn--blue       { background: var(--blue); color: var(--white); border-radius: 8px; }
.btn--blue:hover { background: #155a8a; text-decoration: none; }
.btn--full { width: 100%; text-align: center; display: flex; }

/* ── ═══════════════════════════════════════ ── */
/* ── NAV                                     ── */
/* ── ═══════════════════════════════════════ ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 56px;
  width: auto;
  /* Screen blend to drop white bg */
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.15s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active-gold { color: var(--gold); font-weight: 600; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: 9999px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #b07d1f; text-decoration: none; color: var(--navy); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
  text-decoration: none;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ── ═══════════════════════════════════════ ── */
/* ── HERO                                    ── */
/* ── ═══════════════════════════════════════ ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* nav height */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11,26,46,0) 0%,
    rgba(11,26,46,0.6) 35%,
    rgba(11,26,46,0.92) 65%,
    rgba(11,26,46,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  mix-blend-mode: screen;
  margin-bottom: 8px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -1px;
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 600px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── ═══════════════════════════════════════ ── */
/* ── SECTIONS — common                      ── */
/* ── ═══════════════════════════════════════ ── */
.section { padding: 100px 0; }
.section--dark  { background: var(--navy); }
.section--navy2 { background: var(--navy2); }
.section--light { background: var(--light); }
.section--white { background: var(--white); }

.section-header { margin-bottom: 56px; }
.section-header h2 { color: var(--white); }
.section-header--light h2 { color: var(--navy); }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin-left: auto; margin-right: auto; }

.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.65;
  margin-top: 12px;
}
.section-sub--dark { color: var(--muted); }

/* ── ═══════════════════════════════════════ ── */
/* ── ABOUT                                   ── */
/* ── ═══════════════════════════════════════ ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.about-text h2 { color: var(--navy); margin-bottom: 20px; }
.about-text p  { color: var(--muted); margin-bottom: 16px; }

.values-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.badge {
  padding: 7px 16px;
  border-radius: 9999px;
  background: var(--light);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
}

/* ── ═══════════════════════════════════════ ── */
/* ── STATS BAR                               ── */
/* ── ═══════════════════════════════════════ ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy2);
  padding: 48px 100px;
}
.stat-item { text-align: center; }
.stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── ═══════════════════════════════════════ ── */
/* ── SERVICES                                ── */
/* ── ═══════════════════════════════════════ ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 24px auto 0;
}

.svc-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s, border-color 0.2s;
}
.svc-card:hover { transform: translateY(-3px); border-color: rgba(200,150,42,0.3); }
.svc-card.custom {
  background: rgba(200,150,42,0.07);
  border-color: rgba(200,150,42,0.25);
}

.svc-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.svc-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.svc-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(200,150,42,0.15);
  padding: 4px 10px;
  border-radius: 9999px;
}
.svc-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.svc-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.svc-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  flex: 1;
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
  background: var(--blue);
  color: var(--white);
  margin-top: 4px;
}
.svc-cta.custom-cta { background: var(--gold); color: var(--navy); }
.svc-cta:hover { opacity: 0.88; text-decoration: none; color: inherit; }

/* ── ═══════════════════════════════════════ ── */
/* ── BOOKING                                 ── */
/* ── ═══════════════════════════════════════ ── */
.booking-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.booking-card {
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-card.dark  { background: var(--navy); }
.booking-card.blue  { background: var(--blue); }

.booking-card-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.booking-card-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.booking-card-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-body);
  line-height: 1;
}
.booking-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  flex: 1;
}
.booking-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.15s;
}
.booking-cta:hover { opacity: 0.88; text-decoration: none; color: var(--navy); }

.booking-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ── ═══════════════════════════════════════ ── */
/* ── CONTACT                                 ── */
/* ── ═══════════════════════════════════════ ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.contact-img {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.contact-form-panel {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.contact-form-panel h2 { color: var(--white); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .span2 { grid-column: span 2; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--navy); }

.form-notice {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.form-success {
  background: rgba(40,200,100,0.12);
  border: 1px solid rgba(40,200,100,0.3);
  color: #7eed9c;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.form-error {
  background: rgba(220,50,50,0.12);
  border: 1px solid rgba(220,50,50,0.3);
  color: #f08080;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
}

/* ── ═══════════════════════════════════════ ── */
/* ── WAIVER                                  ── */
/* ── ═══════════════════════════════════════ ── */
.waiver-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.waiver-left {
  background: var(--navy);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.waiver-left h2 { color: var(--white); }
.waiver-left p  { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; }

.waiver-steps { display: flex; flex-direction: column; gap: 14px; }
.waiver-step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-txt { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; padding-top: 4px; }

.waiver-right {
  background: var(--light);
  padding: 48px 48px;
}
.waiver-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.waiver-powered { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.waiver-iframe-wrap {
  width: 100%;
  min-height: 900px;
  border: none;
  background: transparent;
}
.waiver-iframe-wrap iframe {
  width: 100%;
  height: 900px;
  border: none;
}

/* ── ═══════════════════════════════════════ ── */
/* ── FOOTER                                  ── */
/* ── ═══════════════════════════════════════ ── */
.site-footer { background: #050E1A; }

.footer-main {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  padding: 64px 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.footer-logo img {
  height: 68px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 12px;
}
.footer-location { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-license  { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; margin-top: 8px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-waiver-link {
  display: inline-flex !important;
  padding: 6px 14px;
  background: rgba(27,108,168,0.2);
  color: #60B4F0 !important;
  border-radius: 9999px;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  max-width: 1320px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── ═══════════════════════════════════════ ── */
/* ── RESPONSIVE                              ── */
/* ── ═══════════════════════════════════════ ── */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .stats-bar  { padding: 40px; }
  .footer-main { padding: 48px 40px; }
  .footer-bottom { padding: 16px 40px; }
  .waiver-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .about-split, .about-split.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-row2 { grid-template-columns: 1fr; max-width: 100%; }
  .booking-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-img { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span2 { grid-column: span 1; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-title { font-size: 2.6rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 36px 20px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .footer-main { padding: 40px 20px; }
  .contact-form-panel { padding: 36px 20px; }
  .waiver-left { padding: 36px 24px; }
  .waiver-right { padding: 32px 24px; }
}
