/* Screens rise above the sticky chapter copy during each cinematic transition. */
.important-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.important-links a {
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .055em;
  text-decoration: none;
  transition: color .3s ease;
}

.important-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: #d0aa60;
  transition: right .35s ease;
}

.important-links a:hover,
.important-links a.active { color: #fff; }
.important-links a:hover::after,
.important-links a.active::after { right: 0; }

.back-to-top {
  position: fixed;
  z-index: 120;
  right: clamp(16px, 2.4vw, 38px);
  bottom: clamp(16px, 2.4vw, 38px);
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(210,171,96,.58);
  border-radius: 50%;
  background: rgba(8,20,21,.88);
  color: #e0be77;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.9);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease, background .35s ease;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { transform: translateY(-4px); background: rgba(16,45,38,.96); }
.back-to-top svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top .route-mark { stroke: #fff; stroke-dasharray: 2 2; }
.back-to-top span { text-transform: uppercase; font-size: 8px; font-weight: 600; letter-spacing: .15em; }

.screen-stage,
.portrait-stage,
.route-stage,
.finance-stage { z-index: 8; }

.product-screen,
.portrait-screen,
.map-screen,
.finance-screen-wrap { z-index: 9; }

.closing { min-height: 1250px; height: auto; padding: 150px 0; }

.closing-content {
  width: min(1380px, 92vw);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  text-align: left;
}

.closing-message h2 { font-size: clamp(3.5rem, 6.5vw, 7.5rem); }
.closing-message > p:not(.kicker) { max-width: 600px; color: rgba(255,255,255,.65); font-size: 17px; }
.closing-message small { display: block; margin-top: 20px; color: rgba(255,255,255,.45); }

.verification-form {
  position: relative;
  padding: clamp(24px, 3.5vw, 46px);
  background: rgba(247,243,234,.96);
  color: #111a1e;
  border: 1px solid rgba(214,176,102,.5);
  border-radius: 24px;
  box-shadow: 0 45px 120px rgba(0,0,0,.45);
  backdrop-filter: blur(24px);
}

.form-heading { margin-bottom: 30px; }
.form-heading span { display: block; color: #9c793c; text-transform: uppercase; letter-spacing: .18em; font-size: 9px; margin-bottom: 9px; }
.form-heading strong { font: 500 clamp(1.55rem,2.3vw,2.4rem) Manrope; letter-spacing: -.045em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.verification-form label { display: block; color: #4c5559; font-size: 10px; font-weight: 600; letter-spacing: .035em; }
.verification-form input,
.verification-form select,
.verification-form textarea { display: block; width: 100%; margin-top: 8px; padding: 12px 0; border: 0; border-bottom: 1px solid #c9c3b7; border-radius: 0; background: transparent; color: #111a1e; font: 13px "DM Sans",sans-serif; outline: 0; }
.verification-form input:focus,
.verification-form select:focus,
.verification-form textarea:focus { border-color: #9e7b3e; }
.verification-form input:invalid:not(:placeholder-shown),
.verification-form textarea:invalid:not(:placeholder-shown) { border-color: #a8564f; }
.verification-form textarea { resize: vertical; }
.field-wide { grid-column: 1/-1; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; margin: 22px 0; }
.consent input { width: 16px !important; margin: 1px 0 0 !important; accent-color: #977438; }
.consent span { line-height: 1.45; font-weight: 400; }
.verification-form .single-cta { border: 0; cursor: pointer; }
.verification-form .single-cta:disabled { cursor: wait; opacity: .68; transform: none; box-shadow: none; }
.form-status { min-height: 18px; margin: 12px 0 0; font-size: 11px; color: #59705e; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }
.tourismerp-alert { border: 1px solid rgba(156,121,60,.28); border-radius: 22px !important; font-family: "DM Sans",sans-serif; }

@media (max-width: 900px) {
  .important-links {
    position: fixed;
    top: 75px;
    left: 12px;
    right: 12px;
    padding: 13px 15px;
    gap: 18px;
    overflow-x: auto;
    background: rgba(5,11,14,.82);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    backdrop-filter: blur(18px);
    scrollbar-width: none;
  }
  .important-links::-webkit-scrollbar { display: none; }
  .important-links a { white-space: nowrap; }
  .closing { padding: 120px 0; }
  .closing-content { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 600px) {
  .back-to-top { width: 58px; height: 58px; }
  .back-to-top svg { width: 25px; height: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .verification-form { padding: 25px 20px; border-radius: 18px; }
  .verification-form .single-cta { width: 100%; font-size: 12px; gap: 14px; }
}
