/* NUHUEMAN — Hot Air Balloon Ascent skeleton
   Light dawn-field palette led by Envelope Coral #D4574E. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F3EFE3;
  color: #2E2D28;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Noscript-safe reveal fallback */
.no-js [data-reveal],
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Basket rim header (not sticky) ---- */
.basket-rim {
  background: #2A2C26;
  color: #FBF7EC;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.basket-rim::before,
.basket-rim::after {
  content: "";
  height: 8px;
  width: 3px;
  align-self: stretch;
  background: #FBF7EC;
  border: 1px solid #B9924B;
  background-repeat: repeat-x;
  opacity: 1;
}

.rim-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-plate {
  background: #D4574E;
  color: #FBF7EC;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
}

.burner-glyph {
  display: inline-block;
  width: 14px;
  height: 16px;
  background: #FBF7EC;
  border-radius: 2px;
  box-shadow: 0 0 0 0 #D4574E;
}
.burner-glyph b {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4574E;
  margin: 0 2px;
}

.rim-links {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
}
.rim-links a {
  display: inline-block;
  background: #FBF7EC;
  color: #2A2C26;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 12px; /* hung sandbag feel */
  font-size: 14px;
}
.rim-links a:hover {
  background: #D4574E;
  color: #FBF7EC;
}

.rim-cta {
  margin-left: auto;
}
.rim-cta a {
  display: inline-block;
  background: #D4574E;
  color: #FBF7EC;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
}
.rim-cta a:hover {
  background: #FBF7EC;
  color: #2A2C26;
}

/* ---- Altitude band / gore arc ---- */
.gore-arc {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 56px 0 90px 0;
  position: relative;
}
.gore-strip {
  display: flex;
  height: 92px;
  width: 78%;
  max-width: 920px;
  border-radius: 0 0 480px 480px;
  overflow: hidden;
  box-shadow: 0 4px 10px #E2D7C2;
}
.gore-strip span {
  display: block;
  flex: 1;
}
.gore-coral { background: #D4574E; }
.gore-cream { background: #FBF7EC; }
.gore-sky { background: #8FA6B8; }
.gore-gold { background: #B9924B; }
.gore-slate { background: #2A2C26; }

.plaque {
  position: absolute;
  top: 44px;
  right: 12%;
  background: #2A2C26;
  color: #FBF7EC;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 2px;
}
.plaque-left {
  left: 12%;
  right: auto;
}

.gore-title-row {
  text-align: center;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.gore-title-row h2 {
  font-size: 30px;
  margin: 0;
  color: #2E2D28;
  letter-spacing: 2px;
}

/* ---- Inflation / ground rule ---- */
.field-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.inflate-fan {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #8FA6B8;
  position: relative;
}
.inflate-fan b {
  display: block;
  width: 4px;
  height: 14px;
  background: #D4574E;
  margin: 10px auto 0;
  border-radius: 2px;
}
.standfirst {
  max-width: 560px;
  font-size: 19px;
  line-height: 1.8;
  color: #3A3A33;
}
.ground-rule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 10px 0;
}
.ground-rule-line {
  width: 120px;
  height: 3px;
  background: #D4574E;
  position: relative;
}
.ground-rule-line::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -6px;
  width: 12px;
  height: 3px;
  background: #B9924B;
  box-shadow: 34px 0 0 #B9924B, 68px 0 0 #B9924B;
}
.ground-rule span {
  font-style: italic;
  color: #8FA6B8;
  letter-spacing: 1px;
}

/* ---- ALT bands each sit on its own wash ---- */
.altitude-band {
  position: relative;
  padding: 0 0 84px 0;
}

/* A2 gores grid */
.gore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 0;
}
@media (max-width: 820px) {
  .gore-grid { grid-template-columns: 1fr; }
}
.gore-panel {
  background: #FBF7EC;
  border: 1px solid #C2B9A6;
  border-top: 18px solid #D4574E;
  border-radius: 0 0 10px 10px;
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 4px 0 0 #B9924B, 0 12px 18px #E3D9C8;
}
.gore-panel .boom {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8FA6B8;
  margin-bottom: 8px;
}
.gore-panel h3 {
  font-size: 19px;
  margin: 0 0 10px;
  line-height: 1.4;
}
.gore-panel h3 a {
  color: #3A3A33;
  text-decoration: none;
}
.gore-panel h3 a:hover { color: #D4574E; text-decoration: underline; }
.gore-panel p {
  margin: 0 0 12px;
  font-size: 15px;
}
.gore-panel .lift-link {
  margin-top: auto;
  color: #D4574E;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.gore-panel .lift-link:hover { text-decoration: underline; }

/* A3 burner deck */
.lift-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
@media (max-width: 820px) {
  .lift-row { grid-template-columns: 1fr; }
}
.lift-prose {
  max-width: 62ch;
}
.lift-prose p { margin: 0 0 18px; font-size: 17px; }
.lift-prose strong { color: #2E2D28; }

.burner-column {
  background: #2A2C26;
  border-radius: 14px;
  padding: 28px 22px;
  color: #FBF7EC;
  position: relative;
  min-height: 260px;
}
.rigging-rope {
  width: 8px;
  background: #B9924B;
  height: 210px;
  margin: 0 auto;
  border-radius: 4px;
  position: relative;
}
.rigging-rope::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.burner-dot {
  display: block;
  width: 2px;
  height: 2px;
}
.burner-flames {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
}
.burner-flames i {
  width: 18px;
  height: 26px;
  background: #D4574E;
  border-radius: 50% 50% 50% 50% / 60% 60% 30% 30%;
  display: inline-block;
}
.burner-flames i:last-child { background: #8FA6B8; }
.burner-rail {
  font-size: 12px;
  text-align: center;
  letter-spacing: 2px;
  color: #8FA6B8;
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
}
.burner-lower-caption {
  margin-top: 26px;
  text-align: center;
  color: #8FA6B8;
  font-style: italic;
}

/* A4 crown / contact */
.contact-band-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}
.flight-log {
  background: #FBF7EC;
  box-shadow: 0 0 0 6px #D4574E, 0 0 0 7px #B9924B, 0 8px 20px #E5DAC4;
  border-radius: 8px;
  padding: 34px 36px;
  max-width: 720px;
}
.flight-log h3 {
  margin-top: 0;
  font-size: 22px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8FA6B8;
  margin-bottom: 6px;
}
.form-field input {
  width: 100%;
  background: #FFFCF3;
  border: 1px solid #C2B9A6;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
  color: #2E2D28;
  height: 22px;
  vertical-align: middle;
}
.form-field textarea {
  width: 100%;
  background: #FFFCF3;
  border: 1px solid #C2B9A6;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
  color: #2E2D28;
  min-height: 130px;
  resize: vertical;
}
.primary-cta {
  background: #D4574E;
  color: #FBF7EC;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}
.primary-cta:hover {
  background: #2A2C26;
  color: #FBF7EC;
}

/* Basket plaque details */
.plaque-row {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  background: #2A2C26;
  border: 3px solid #B9924B;
  border-radius: 14px;
  padding: 26px 30px;
  color: #FBF7EC;
}
.plaque-cell h4 {
  color: #8FA6B8;
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.plaque-cell p {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}
.plaque-cell a {
  color: #B9924B;
  text-decoration: none;
}
.plaque-cell a:hover { color: #D4574E; text-decoration: underline; }

/* ---- field base footer ---- */
.field-base {
  background: #2A2C26;
  color: #C9C0AE;
  padding: 48px 24px 28px;
  position: relative;
  z-index: 1;
}
.field-base::before {
  content: "";
  display: block;
  height: 10px;
  background: #B9924B;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.field-base-links {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.field-base-links a {
  color: #FBF7EC;
  text-decoration: none;
}
.field-base-links a:hover {
  color: #D4574E;
  text-decoration: underline;
}
.field-base-identity {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
}
.field-base-identity a {
  color: #B9924B;
  text-decoration: none;
}
.field-base-identity a:hover { text-decoration: underline; }

/* Field-note strips (contact FAQ) */
.field-notes {
  margin-top: 40px;
  max-width: 720px;
}
.field-notes summary {
  background: #FBF7EC;
  border-left: 6px solid #D4574E;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
  color: #2E2D28;
}
.field-notes details {
  margin-bottom: 10px;
  border: 1px solid #C2B9A6;
  border-radius: 0 6px 6px 0;
}
.field-notes p {
  padding: 10px 16px 14px;
  margin: 0;
  font-size: 15px;
  color: #3A3A33;
}
.field-notes h3 {
  color: #2E2D28;
}

/* Generic wrappers */
.site-wrap {
  overflow-x: hidden;
}
.wrap-width {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.band-intro {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 24px 4px;
}
.band-intro h2 {
  margin: 0 0 10px;
  color: #2E2D28;
}

/* A1 big title */
.ascent-title {
  text-align: center;
  padding-top: 6px;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.ascent-title h1 {
  font-size: 46px;
  line-height: 1.25;
  letter-spacing: 2px;
  margin: 0 0 20px;
}
.ascent-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* hero top layer */
.band-a1 {
  background: #F3EFE3;
}
.band-a2 {
  background: #EFE9D8;
}
.band-a3 {
  background: #F3EFE3;
}
.band-a4 {
  background: #EFE9D8;
  padding-bottom: 0;
}

/* secondary page band heading reuse */
.simple-page {
  padding: 20px 0 70px;
}

/* Decorated section heading */
.section-heading {
  font-size: 22px;
  color: #2E2D28;
  letter-spacing: 2px;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #B9924B;
  display: inline-block;
}
.field-copy {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
}

/* go to top */
.go-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #D4574E;
  color: #FBF7EC;
  border: 0;
  font-size: 22px;
  box-shadow: 0 4px 12px #B7A98F;
  cursor: pointer;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.go-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* decorative watermark — hidden */
.watermark {
  position: absolute;
  pointer-events: none;
}
