@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: #0C2340;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-site-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #C99700; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 35, 64, 0.62);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 24px;
}
.hero-content h1 {
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.05;
}
.hero-content p {
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.hero-btn {
  display: inline-block;
  background: #C99700;
  color: #0C2340;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 40px;
  transition: background 0.2s;
}
.hero-btn:hover { background: #e0a800; }

/* ── SECTIONS ── */
.section { padding: 80px 48px; max-width: 860px; margin: 0 auto; }
.section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C99700;
  margin-bottom: 20px;
}
.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0C2340;
  margin-bottom: 28px;
  line-height: 1.1;
}
.section p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 3px;
  background: #C99700;
  margin: 0 auto 48px;
}
.divider.left { margin: 0 0 36px; }

/* ── DETAILS GRID ── */
.details-bg {
  background: #f7f6f2;
  padding: 80px 48px;
}
.details-inner {
  max-width: 860px;
  margin: 0 auto;
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.detail-block {
  border-left: 3px solid #C99700;
  padding-left: 24px;
}
.detail-block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C99700;
  margin-bottom: 14px;
}
.detail-block p, .detail-block li {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}
.detail-block ul { list-style: none; padding: 0; }
.detail-block ul li::before { content: '— '; color: #C99700; }

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.photo-strip img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── ABOUT PAGE ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 48px;
}
.about-split img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.credentials-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.cred::before {
  content: '✦';
  color: #C99700;
  flex-shrink: 0;
  margin-top: 2px;
}
.qa-box {
  background: #0C2340;
  color: #fff;
  padding: 48px;
  max-width: 860px;
  margin: 0 auto 80px;
}
.qa-box h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C99700;
  margin-bottom: 14px;
}
.qa-box p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.8); }

/* ── REGISTRATION PAGE ── */
.reg-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px 100px;
}
.reg-container h1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C99700;
  margin-bottom: 10px;
}
.reg-container h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0C2340;
  margin-bottom: 8px;
}
.reg-container > p {
  font-size: 14px;
  color: #888;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}
.form-section { margin-bottom: 48px; }
.form-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0C2340;
  border-bottom: 2px solid #0C2340;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #333;
}
.form-field label .req { color: #C99700; margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #f7f6f2;
  border: 1.5px solid #e0ddd6;
  padding: 11px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%230C2340' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #0C2340; background: #fff; }
.form-field textarea { resize: vertical; min-height: 80px; }

.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-group label, .check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f6f2;
  border: 1.5px solid #e0ddd6;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.2s;
  user-select: none;
}
.radio-group label:hover { border-color: #0C2340; }
.radio-group label:has(input:checked) {
  border-color: #0C2340;
  background: #fff;
  box-shadow: inset 0 0 0 1px #0C2340;
}
.radio-group input { accent-color: #0C2340; }

.child-block {
  border: 1.5px solid #e0ddd6;
  border-top: 3px solid #C99700;
  padding: 28px;
  margin-bottom: 20px;
}
.child-block-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0C2340;
  margin-bottom: 20px;
}

.waiver-text {
  background: #f7f6f2;
  border-left: 4px solid #0C2340;
  padding: 28px;
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}
.waiver-text h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0C2340;
  margin-bottom: 14px;
}
.waiver-text p { margin-bottom: 10px; }
.check-label {
  font-size: 13px;
  margin-bottom: 24px;
}
.check-label input { accent-color: #0C2340; width: 16px; height: 16px; flex-shrink: 0; }

.submit-btn {
  width: 100%;
  background: #0C2340;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.submit-btn:hover { background: #163354; }

/* ── FOOTER ── */
footer {
  background: #0C2340;
  text-align: center;
  padding: 40px 48px;
}
footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}
footer a { color: #C99700; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    flex-wrap: nowrap;
    gap: 8px;
    height: auto;
    min-height: 56px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-site-name {
    font-size: 10px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }
  .nav-links { gap: 10px; flex-shrink: 0; }
  .nav-links a { font-size: 10px; letter-spacing: 0.08em; }
  .hero { height: 70vh; min-height: 400px; }
  .section { padding: 48px 20px; }
  .details-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-split { grid-template-columns: 1fr; padding: 48px 20px; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: auto; width: 100%; }
  .qa-box { padding: 32px 20px; margin: 0 0 48px; }
  .reg-container { padding: 32px 20px 80px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  footer { padding: 32px 20px; }
  .radio-group { flex-direction: column; gap: 8px; }
  .radio-group label {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 14px;
    padding: 12px 16px;
    align-items: center;
  }
  .radio-group label span { text-transform: none; letter-spacing: normal; }
}
