:root {
  --color-dark: #111827;
  --color-gold: #c9a227;
  --color-sand: #f7f1e8;
  --color-white: #ffffff;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-dark);
  background: var(--color-white);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,24,39,.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  font-weight: 800;
  font-size: 22px;
}

.nav-menu,
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
}

.nav-menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: white;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 10px;
}

.nav-menu li:hover > ul {
  display: block;
}

.nav-menu ul a {
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-menu ul a:hover {
  background: var(--color-sand);
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.18);
  font-weight: 800;
  white-space: nowrap;
}

.header-contact-btn:hover {
  background: var(--color-sand);
}

.header-signup-form .signup-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-signup-form .signup-form input {
  width: 150px;
  padding: 9px 12px;
  border: 1px solid rgba(17,24,39,.16);
  border-radius: 999px;
  font-size: 14px;
}

.header-signup-form .signup-form button {
  margin-top: 0;
  padding: 10px 16px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    linear-gradient(135deg, #0f172a, #334155);
  color: white;
}

.hero-content {
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: .95;
  margin: 0 0 24px;
}

.hero p {
  font-size: 20px;
  max-width: 650px;
}

.hero-note {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--color-gold);
  color: #111;
  font-weight: 800;
  margin-top: 24px;
}

.section {
  padding: 88px 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 54px);
  margin: 0 0 18px;
}

.page-content {
  background: #ffffff;
  color: #111827;
  min-height: 60vh;
}

.page-title {
  font-size: clamp(38px, 5vw, 68px);
  margin: 0 0 28px;
}

.entry-content {
  font-size: 18px;
  line-height: 1.75;
  max-width: 860px;
}

.entry-content p {
  margin: 0 0 22px;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reel-card {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  background: #111827;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 24px;
}

.site-footer .signup-form input {
  background: white;
}

/* Contact Form */
.contact-form-clean {
  display: block !important;
  max-width: 760px;
  margin: 42px 0;
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 20px 60px rgba(17,24,39,.08);
}

.contact-form-clean label {
  display: block !important;
  width: 100%;
  margin: 0 0 24px 0;
}

.contact-form-clean label span {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.contact-form-clean label strong {
  color: #b91c1c;
}

.contact-form-clean small {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.contact-form-clean input[type="text"],
.contact-form-clean input[type="email"],
.contact-form-clean textarea {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.16);
  background: #fff;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
}

.contact-form-clean textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-form-clean input:focus,
.contact-form-clean textarea:focus {
  outline: none;
  border-color: #c9a227;
  box-shadow: 0 0 0 4px rgba(201,162,39,.16);
}

.contact-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0;
}

.contact-checkbox input {
  width: auto !important;
  margin-top: 5px;
}

.contact-checkbox span {
  margin: 0 !important;
}

.cf-turnstile {
  margin-top: 24px;
  margin-bottom: 28px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  background: #c9a227;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.contact-submit-btn:hover {
  background: #d8b63c;
}

@media (max-width: 1100px) {
  .header-signup-form,
  .header-contact-btn {
    display: none;
  }
}

@media (max-width: 900px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    display: none;
  }

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

@media (max-width: 768px) {
  .contact-form-clean {
    padding: 26px;
  }
}
/* Adventure Forms premium styling */
.afv-form {
  max-width: 820px;
  margin: 42px 0;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg,#f3f9ff,#fcfeff);
  border: 1px solid rgba(59,130,246,.10);
  box-shadow: 0 24px 70px rgba(59,130,246,.08);
}

.afv-field {
  display: block;
  margin-bottom: 24px;
}

.afv-field > span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.afv-field strong {
  color: #b91c1c;
}

.afv-field input,
.afv-field textarea,
.afv-field select {
  display: block;
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.14);
  background: #ffffff;
  color: #111827;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
}

.afv-field textarea {
  min-height: 180px;
  resize: vertical;
}

.afv-field input:focus,
.afv-field textarea:focus,
.afv-field select:focus {
  outline: none;
  border-color: #c9a227;
  box-shadow: 0 0 0 4px rgba(201,162,39,.16);
}

.afv-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-weight: 500;
}

.afv-check input {
  width: auto;
}

.afv-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  background: #c9a227;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.afv-submit:hover {
  background: #d8b63c;
}

@media (max-width: 768px) {
  .afv-form {
    padding: 26px;
    margin: 28px 0;
    border-radius: 22px;
  }

  .afv-field input,
  .afv-field textarea,
  .afv-field select {
    font-size: 16px;
  }
}

.afv-step {
  display: none;
}

.afv-step.active {
  display: block;
}

.afv-form-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.afv-prev,
.afv-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.16);
  background: #ffffff;
  color: #111827;
  font-weight: 800;
  cursor: pointer;
}

.afv-next,
.afv-submit {
  background: #c9a227;
  border-color: #c9a227;
}

.afv-agreement {
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.10);
}

.afv-agreement-text {
  max-height: 360px;
  overflow: auto;
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  margin-bottom: 18px;
}

.afv-upload-field input[type="file"] {
  padding: 14px;
  background: #ffffff;
}

.afv-turnstile-wrap {
  margin-top: 24px;
}

.afv-signature-pad {
  display: block;
  width: 100%;
  height: 220px;
  border: 1px solid rgba(17,24,39,.18);
  border-radius: 16px;
  background: #ffffff;
  touch-action: none;
}

.afv-clear-signature {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.18);
  background: white;
  font-weight: 700;
  cursor: pointer;
}

.afv-payment-page {
  max-width: 720px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg,#f3f9ff,#fcfeff);
  border: 1px solid rgba(59,130,246,.12);
  box-shadow: 0 24px 70px rgba(59,130,246,.08);
}

.afv-payment-page h1 {
  margin-top: 0;
}

.afv-payment-summary {
  margin: 28px 0;
  padding: 24px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(17,24,39,.08);
}

.afv-payment-success {
  padding: 16px 20px;
  border-radius: 16px;
  background: #dcfce7;
  color: #166534;
  font-weight: 800;
}

.afv-paypal-placeholder {
  padding: 24px;
  border-radius: 22px;
  background: #fff7ed;
  border: 1px solid rgba(201,162,39,.24);
}

.afv-payment-error {
  padding: 16px 20px;
  border-radius: 16px;
  background: #fee2e2;
  color: #991b1b;
  font-weight: 800;
}

#afv-paypal-button-container {
  margin-top: 24px;
}
