/* ============================================================
   Jungle Land redesign — Walk-In Waivers page
   ============================================================ */

.how-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.how-card { background: #fff; border-radius: 26px; padding: 30px; box-shadow: var(--sh-card-sm); text-align: center; }
.how-card .hc-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
}
.how-card .hc-t { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin-top: 16px; }
.how-card .hc-s { font-weight: 600; font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.6; }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }

.waiver-warning {
  background: var(--pale-peach);
  border: 2.5px solid var(--accent);
  border-radius: var(--r-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.waiver-warning .ww-ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
}
.waiver-warning .ww-t { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: #9E3612; }
.waiver-warning .ww-s { font-weight: 600; font-size: 14px; color: #7A4B33; margin-top: 4px; }

.waiver-acc { margin: 26px 0 0; display: flex; flex-direction: column; gap: 10px; }

/* sign-in form */
.waiver-form-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 48px rgba(23, 66, 31, .12);
  padding: 40px 44px;
}
@media (max-width: 640px) { .waiver-form-card { padding: 26px 18px; } }
.waiver-form-card h2 { font-size: clamp(26px, 4vw, 34px); }
.waiver-form-card .wf-sub { font-weight: 600; font-size: 15px; color: var(--muted); margin: 8px 0 0; }

.wf-head, .wf-row {
  display: grid;
  grid-template-columns: 150px 1fr 1.3fr 1fr 150px 40px;
  gap: 10px;
  align-items: center;
}
.wf-head {
  margin: 26px 0 0;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--moss);
}
.wf-rows { display: flex; flex-direction: column; gap: 10px; margin: 10px 0 0; }
.wf-row input { width: 100%; }
.wf-row .wf-sig { font-family: var(--font-display); font-weight: 600; background: #FFFDF4; }
.wf-row .wf-remove {
  width: 36px; height: 36px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  background: var(--pale-peach);
  color: var(--accent-deep);
  cursor: pointer;
  transition: transform .2s;
}
.wf-row .wf-remove:hover { transform: scale(1.1); }
.wf-row .wf-remove[disabled] { background: #F0E9D2; color: #C9C0A4; cursor: default; transform: none; }
@media (max-width: 1080px) {
  .wf-head { display: none; }
  .wf-row {
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
    border-radius: var(--r-sm);
    padding: 16px;
    position: relative;
  }
  .wf-row .wf-remove { position: absolute; top: 10px; right: 10px; }
}
@media (max-width: 560px) { .wf-row { grid-template-columns: 1fr; } }

.wf-add {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  cursor: pointer;
  border: 2.5px dashed #B9C9A8;
  background: none;
  border-radius: var(--r-pill);
  padding: 11px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  transition: all .2s;
  user-select: none;
}
.wf-add:hover { border-color: var(--green); background: #F3F8E9; }
.wf-add .plus { font-family: var(--font-display); font-weight: 800; font-size: 17px; }

.wf-consent {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 24px 0 0;
  cursor: pointer;
  background: var(--bg);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  user-select: none;
}
.wf-consent .box {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  margin-top: 2px;
  background: #fff;
  color: transparent;
  border: 2.5px solid #C9C0A4;
  transition: all .2s;
}
.wf-consent.is-on .box { background: var(--green); color: #fff; border-color: var(--green); }
.wf-consent .txt { font-weight: 600; font-size: 13.5px; color: var(--body-2); line-height: 1.6; }

.wf-actions { display: flex; align-items: center; gap: 18px; margin: 26px 0 0; flex-wrap: wrap; }

.wf-done { display: none; text-align: center; position: relative; padding: 30px 0; }
.wf-done .wd-t { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 5vw, 40px); color: var(--ink); }
.wf-done .wd-s { font-weight: 600; font-size: 16px; color: var(--body); margin-top: 12px; line-height: 1.6; }

.waiver-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.waiver-info { background: var(--sand); border-radius: 26px; padding: 30px 34px; }
.waiver-info .wi-t { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); }
.waiver-info .wi-s { font-weight: 600; font-size: 14.5px; color: var(--body-2); margin-top: 12px; line-height: 1.85; }
@media (max-width: 800px) { .waiver-info-grid { grid-template-columns: 1fr; } }
