:root {
  --black: #0b0a08;
  --gold: #c79f52;
  --gold-2: #f0d58d;
  --paper: #f3ead8;
  --muted: #766d5f;
  --line: #d8c69e;
  --white: #fffdfa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.adventure-hero {
  position: relative;
  min-height: clamp(500px, 72vh, 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.adventure-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

.adventure-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.9), rgba(11, 10, 8, 0.58) 42%, rgba(11, 10, 8, 0.1) 74%),
    linear-gradient(180deg, rgba(11, 10, 8, 0.04), rgba(11, 10, 8, 0.58));
  z-index: -1;
}

.topbar {
  position: absolute;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.logo-link {
  width: clamp(106px, 10vw, 146px);
  height: clamp(106px, 10vw, 146px);
  display: grid;
  place-items: center;
}

.logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.52));
}

.brand-copy {
  color: var(--white);
}

.brand-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.45vw, 2.3rem);
  font-weight: 600;
  line-height: 1;
}

.brand-copy span {
  display: block;
  margin-top: 5px;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(240, 213, 141, 0.68);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(11, 10, 8, 0.5);
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.adventure-hero__content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 64px;
  color: var(--white);
}

.adventure-hero__copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3.6vw, 3.45rem);
  line-height: 1;
}

.adventure-hero__content p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 253, 250, 0.84);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.5;
}

.gold-button {
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 21px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--black);
  box-shadow: 0 14px 32px rgba(118, 82, 30, 0.32);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 46px auto 60px;
}

.intro-row,
.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.intro-row {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(216, 198, 158, 0.85);
}

.intro-row > p,
.section-copy p,
.note-panel p,
.request-footer p {
  color: var(--muted);
  line-height: 1.5;
}

.option-strip {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
  border-top: 1px solid rgba(216, 198, 158, 0.85);
}

.option-strip article {
  position: relative;
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 126px;
  border-bottom: 1px solid rgba(216, 198, 158, 0.85);
  padding: 18px 142px 18px 0;
}

.option-strip span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.option-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.05;
}

.option-strip small {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.option-strip b {
  position: absolute;
  top: 50%;
  right: 0;
  min-width: 104px;
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 10, 8, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--black);
  font-size: 0.96rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  margin-bottom: 44px;
}

.feature-panel,
.note-panel,
.request-card {
  border: 1px solid rgba(216, 198, 158, 0.85);
  border-radius: 14px;
  background: rgba(251, 245, 232, 0.72);
}

.feature-panel {
  padding: 16px 18px;
}

.included-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 0;
  margin: 0;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.included-line span {
  display: inline-flex;
  align-items: center;
}

.included-line span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 10px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.7;
}

.note-panel {
  padding: 22px;
}

.note-panel {
  background:
    linear-gradient(135deg, rgba(240, 213, 141, 0.18), transparent 58%),
    rgba(251, 245, 232, 0.72);
}

.note-panel p:last-child {
  margin-bottom: 0;
}

.request-layout {
  border-top: 1px solid rgba(216, 198, 158, 0.85);
  padding-top: 34px;
}

.request-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

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

.date-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span,
.choice-row legend {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  padding: 0 2px;
}

.field textarea {
  min-height: 98px;
  padding-top: 10px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(118, 109, 95, 0.52);
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-row legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row span {
  min-height: 58px;
  display: grid;
  gap: 2px;
  place-items: center;
  border: 1px solid rgba(216, 198, 158, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.48);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.choice-row b,
.choice-row small {
  display: block;
}

.choice-row b {
  color: inherit;
  font-size: 0.94rem;
  line-height: 1;
}

.choice-row small {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  opacity: 0.78;
}

.choice-row input:checked + span {
  border-color: var(--gold);
  background: var(--black);
  color: var(--gold-2);
  box-shadow: inset 0 0 0 1px rgba(240, 213, 141, 0.72);
}

.request-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
  text-align: center;
}

.request-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.request-error {
  color: #8a2f1f !important;
  font-weight: 850;
}

.site-footer {
  width: min(1180px, calc(100% - 28px));
  display: grid;
  gap: 5px;
  margin: 0 auto 34px;
  border-top: 1px solid rgba(216, 198, 158, 0.85);
  padding-top: 20px;
  color: var(--muted);
  text-align: center;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.site-footer span {
  margin-top: 3px;
  font-size: 0.78rem;
}

.site-footer a {
  color: rgba(95, 83, 62, 0.78);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-methods {
  display: block;
  width: min(178px, 100%);
  height: auto;
  margin: 8px auto 0;
  border-radius: 3px;
}

@media (max-width: 820px) {
  .intro-row,
  .request-layout,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    width: min(100% - 22px, 1180px);
    gap: 10px;
  }

  .logo-link {
    width: 84px;
    height: 84px;
  }

  .brand-copy strong {
    font-size: 1.22rem;
  }

  .brand-copy span {
    font-size: 0.66rem;
  }
}

@media (max-width: 620px) {
  .adventure-hero {
    min-height: 520px;
  }

  .adventure-hero__background {
    object-position: 63% center;
  }

  .adventure-hero__shade {
    background:
      linear-gradient(90deg, rgba(11, 10, 8, 0.9), rgba(11, 10, 8, 0.48) 64%, rgba(11, 10, 8, 0.18)),
      linear-gradient(180deg, rgba(11, 10, 8, 0.12), rgba(11, 10, 8, 0.82));
  }

  .adventure-hero__content {
    width: min(100% - 24px, 1180px);
    padding: 120px 0 28px;
  }

  h1 {
    max-width: 330px;
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1;
  }

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

  .adventure-hero__content p:not(.eyebrow) {
    max-width: 330px;
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .adventure-hero__copy .gold-button {
    width: min(100%, 320px);
  }

  .text-link {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .logo-link {
    width: 72px;
    height: 72px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy span {
    font-size: 0.6rem;
  }

  main {
    width: min(100% - 18px, 1180px);
    margin-top: 26px;
  }

  .intro-row {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .intro-row > p,
  .section-copy p,
  .note-panel p,
  .request-footer p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .option-strip article {
    min-height: 104px;
    padding: 13px 92px 13px 0;
  }

  .option-strip strong {
    font-size: 1.08rem;
  }

  .option-strip small {
    font-size: 0.76rem;
  }

  .option-strip b {
    min-width: 82px;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .feature-panel,
  .note-panel,
  .request-card {
    border-radius: 10px;
    padding: 14px;
  }

  .details-grid {
    gap: 10px;
    margin-bottom: 30px;
  }

  .request-layout {
    gap: 14px;
    padding-top: 26px;
  }

  .field-grid,
  .date-choice-grid,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .choice-row span {
    border: 1px solid rgba(216, 198, 158, 0.9);
    background: rgba(255, 253, 250, 0.48);
  }

  .request-footer {
    display: grid;
  }

  .request-footer .gold-button {
    width: 100%;
  }
}
