.csr-app {
  position: relative;
  width: 100%;
  min-width: 0;
  isolation: isolate;
  --ink: #082c39;
  --ink-deep: #041f2a;
  --ink-soft: #36545d;
  --snow: #f7fbfa;
  --ice: #e8f3f1;
  --line: #d6e3e0;
  --white: #ffffff;
  --lime: #d8ff4f;
  --lime-dark: #b9e71d;
  --mint: #ccf1df;
  --blue: #cce8f5;
  --sand: #f2e7cc;
  --error: #a63726;
  --max: 1220px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(4, 31, 42, 0.16);
  color-scheme: light;
}

.csr-app [hidden] {
  display: none !important;
}

.csr-app img {
  max-width: 100%;
}

.csr-app * {
  box-sizing: border-box;
}

.csr-app {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

.csr-app {
  margin: 0;
  background: var(--snow);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.csr-app,
.csr-app button,
.csr-app input,
.csr-app select {
  font: inherit;
}

.csr-app a {
  color: inherit;
  text-decoration: none;
}

.csr-app button,
.csr-app select,
.csr-app summary {
  cursor: pointer;
}

.csr-app button:disabled {
  cursor: wait;
}

.csr-app :focus-visible {
  outline: 3px solid var(--lime-dark);
  outline-offset: 3px;
}

.csr-app .skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.csr-app .skip-link:focus {
  transform: translateY(0);
}

.csr-app .section-shell,
.csr-app .nav-shell,
.csr-app .hero-content,
.csr-app .search-wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* Defer style, layout and paint work for content well below the first viewport. */
.csr-app .deferred-section {
  content-visibility: auto;
  contain-intrinsic-size: auto var(--deferred-block-size, 700px);
}

.csr-app .trust-strip { --deferred-block-size: 230px; }
.csr-app .answer-section { --deferred-block-size: 560px; }
.csr-app .packages-section { --deferred-block-size: 670px; }
.csr-app .locations-section { --deferred-block-size: 850px; }
.csr-app .process-section { --deferred-block-size: 720px; }
.csr-app .guide-section { --deferred-block-size: 680px; }
.csr-app .faq-section { --deferred-block-size: 760px; }
.csr-app .disclosure-section { --deferred-block-size: 480px; }
.csr-app .final-cta { --deferred-block-size: 360px; }
.csr-app .site-footer { --deferred-block-size: 250px; }

.csr-app .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.csr-app .nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.csr-app .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.csr-app .brand-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 36px;
  border-bottom: 3px solid var(--lime);
}

.csr-app .peak {
  position: absolute;
  bottom: 4px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.csr-app .peak-one {
  left: 1px;
  border-width: 0 13px 24px;
  border-color: transparent transparent currentColor;
}

.csr-app .peak-two {
  right: 0;
  border-width: 0 11px 18px;
  border-color: transparent transparent currentColor;
  opacity: 0.72;
}

.csr-app .brand-copy {
  display: grid;
  line-height: 1;
  letter-spacing: -0.02em;
}

.csr-app .brand-copy strong {
  font-size: 18px;
  font-weight: 800;
}

.csr-app .brand-copy small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.76;
}

.csr-app .desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 40px;
  font-size: 14px;
  font-weight: 650;
}

.csr-app .desktop-nav a {
  transition: opacity 160ms ease;
}

.csr-app .desktop-nav a:hover {
  opacity: 0.66;
}

.csr-app .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.csr-app .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.csr-app .nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.csr-app .hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 730px;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.csr-app .hero-media,
.csr-app .hero-wash {
  position: absolute;
  inset: 0;
}

.csr-app .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.csr-app .hero-wash {
  background:
    linear-gradient(90deg, rgba(3, 24, 33, 0.91) 0%, rgba(3, 24, 33, 0.66) 48%, rgba(3, 24, 33, 0.2) 82%),
    linear-gradient(0deg, rgba(3, 24, 33, 0.55) 0%, transparent 45%);
}

.csr-app .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 80px;
  padding-top: 95px;
  padding-bottom: 105px;
}

.csr-app .hero-copy {
  max-width: 790px;
}

.csr-app .eyebrow,
.csr-app .section-kicker,
.csr-app .step-label,
.csr-app .coverage-kicker {
  margin: 0 0 17px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.csr-app .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.csr-app .eyebrow span {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--lime);
}

.csr-app .hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(52px, 6.1vw, 88px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.csr-app .hero-intro {
  max-width: 685px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.55;
}

.csr-app .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 650;
}

.csr-app .hero-proof span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--lime);
  font-weight: 900;
}

.csr-app .coverage-note {
  align-self: end;
  padding: 24px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(3, 27, 36, 0.48);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.csr-app .coverage-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 10px;
}

.csr-app .coverage-note strong {
  display: block;
  font-size: 17px;
}

.csr-app .coverage-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 13px;
  line-height: 1.55;
}

.csr-app .search-wrap {
  position: relative;
  z-index: 10;
  margin-top: -66px;
}

.csr-app .search-card {
  padding: 27px 30px 20px;
  border: 1px solid rgba(214, 227, 224, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.csr-app .search-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.csr-app .search-heading h2 {
  margin: 2px 0 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.csr-app .step-label {
  margin: 0;
  color: #587177;
  font-size: 9px;
}

.csr-app .search-heading > p {
  margin: 0 0 2px;
  color: var(--ink-soft);
  font-size: 13px;
}

.csr-app .search-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr 1fr 1.08fr 1.05fr;
  gap: 10px;
  align-items: end;
}

.csr-app .field {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.csr-app .field > span:first-child,
.csr-app .field legend {
  padding: 0;
  color: #48636a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.csr-app .field-control {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfdfc;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.csr-app .field-control:focus-within {
  border-color: #77979d;
  box-shadow: 0 0 0 3px rgba(216, 255, 79, 0.3);
}

.csr-app .field-icon {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  color: #6c858b;
  font-size: 17px;
}

.csr-app .field select,
.csr-app .field input {
  width: calc(100% - 38px);
  height: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.csr-app .field select {
  padding-right: 5px;
}

.csr-app .field input {
  padding-right: 10px;
}

.csr-app .equipment-field {
  gap: 7px;
}

.csr-app .segment-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 56px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f1f6f4;
}

.csr-app .segment-control button {
  min-width: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #587077;
  font-size: 12px;
  font-weight: 750;
}

.csr-app .segment-control button.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(8, 44, 57, 0.1);
}

.csr-app .search-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 19px;
  border: 0;
  border-radius: 11px;
  background: var(--lime);
  color: var(--ink-deep);
  font-size: 13px;
  font-weight: 850;
  transition: background 160ms ease, transform 160ms ease;
}

.csr-app .search-button:hover:not(:disabled) {
  background: var(--lime-dark);
  transform: translateY(-1px);
}

.csr-app .search-button:disabled {
  opacity: 0.65;
}

.csr-app .button-arrow {
  font-size: 19px;
}

.csr-app .search-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  color: #6c8186;
  font-size: 11px;
}

.csr-app .search-foot p {
  margin: 0;
}

.csr-app .form-message,
.csr-app .secure-note {
  color: #4d666c;
}

.csr-app .form-message.error {
  color: var(--error);
  font-weight: 700;
}

.csr-app .form-message.success {
  color: #1b6b4b;
  font-weight: 700;
}

.csr-app .secure-note {
  flex-shrink: 0;
  font-weight: 700;
}

.csr-app .results-section {
  padding: 80px 0 34px;
  scroll-margin-top: 96px;
}

.csr-app .results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 25px;
}

.csr-app .results-head h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.csr-app .results-head p:not(.section-kicker) {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.csr-app .results-filter {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #eaf1ef;
}

.csr-app .results-filter button {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.csr-app .results-filter button.active {
  background: var(--ink);
  color: var(--white);
}

.csr-app .result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.csr-app .result-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(5, 37, 48, 0.06);
}

.csr-app .result-card-top {
  display: flex;
  min-height: 48px;
  flex-direction: column;
  gap: 3px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.csr-app .result-card-top span {
  color: #687f84;
}

.csr-app .result-card-top strong {
  color: #2b7456;
}

.csr-app .result-card h3 {
  margin: 14px 0 2px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.csr-app .composition {
  min-height: 48px;
  margin: 8px 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.csr-app .price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
}

.csr-app .price-row strong {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.csr-app .price-row span {
  color: #87999d;
  font-size: 14px;
  text-decoration: line-through;
}

.csr-app .price-caption {
  margin: 7px 0 19px;
  color: #71878c;
  font-size: 11px;
}

.csr-app .result-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.csr-app .result-cta:hover {
  background: var(--ink-deep);
}

.csr-app .all-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 14px;
  padding: 19px 22px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
}

.csr-app .all-options-row div {
  display: grid;
  gap: 2px;
}

.csr-app .all-options-row strong {
  font-size: 14px;
}

.csr-app .all-options-row span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}

.csr-app .all-options-row > a {
  flex-shrink: 0;
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
}

.csr-app .quote-disclaimer {
  margin: 11px 3px 0;
  color: #71868a;
  font-size: 11px;
}

.csr-app .booking-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 24px;
  background: rgba(3, 25, 34, 0.76);
  backdrop-filter: blur(7px);
}

.csr-app .booking-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: var(--snow);
  box-shadow: 0 28px 90px rgba(3, 25, 34, 0.35);
}

.csr-app .booking-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.csr-app .booking-modal-head {
  padding-right: 52px;
}

.csr-app .booking-modal-head h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.csr-app .booking-modal-head > p:last-child {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.csr-app .participant-form {
  margin-top: 25px;
}

.csr-app .participant-count-field {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.csr-app .participant-count-field select {
  width: 74px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.csr-app .participant-list {
  display: grid;
  gap: 11px;
  margin-top: 16px;
}

.csr-app .participant-card {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 0.8fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.csr-app .participant-card legend {
  padding: 0 7px;
  color: #567078;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.csr-app .participant-card label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.csr-app .participant-card label span {
  color: #567078;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.csr-app .participant-card input,
.csr-app .participant-card select {
  width: 100%;
  height: 45px;
  min-width: 0;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: #fbfdfc;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.csr-app .participant-card input:focus,
.csr-app .participant-card select:focus,
.csr-app .participant-count-field select:focus {
  border-color: #77979d;
  box-shadow: 0 0 0 3px rgba(216, 255, 79, 0.3);
}

.csr-app .checkout-message {
  min-height: 20px;
  margin: 14px 2px 0;
  color: #647b81;
  font-size: 12px;
}

.csr-app .checkout-message.error {
  color: var(--error);
  font-weight: 750;
}

.csr-app .booking-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 14px;
}

.csr-app .modal-secondary-button,
.csr-app .modal-primary-button {
  min-height: 50px;
  padding: 0 19px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 850;
}

.csr-app .modal-secondary-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.csr-app .modal-primary-button {
  display: flex;
  align-items: center;
  gap: 28px;
  border: 0;
  background: var(--lime);
  color: var(--ink-deep);
}

.csr-app .modal-primary-button:hover:not(:disabled) {
  background: var(--lime-dark);
}

.csr-app .modal-primary-button:disabled,
.csr-app .modal-secondary-button:disabled,
.csr-app .booking-modal-close:disabled {
  opacity: 0.6;
}

.csr-app .partner-handoff-note {
  margin: 10px 0 0;
  color: #71868a;
  font-size: 10px;
  text-align: right;
}

.csr-app .trust-strip {
  padding: 46px 0 58px;
}

.csr-app .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.csr-app .trust-grid > div {
  position: relative;
  padding: 27px 23px 25px;
}

.csr-app .trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.csr-app .trust-number {
  display: block;
  margin-bottom: 22px;
  color: #526d72;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.csr-app .trust-grid strong {
  display: block;
  font-size: 14px;
}

.csr-app .trust-grid p {
  margin: 4px 0 0;
  color: #536a70;
  font-size: 12px;
}

.csr-app .answer-section,
.csr-app .packages-section,
.csr-app .process-section,
.csr-app .guide-section,
.csr-app .faq-section,
.csr-app .disclosure-section {
  padding: 105px 0;
}

.csr-app .answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 95px;
  align-items: start;
}

.csr-app .section-kicker {
  color: #58757b;
}

.csr-app .section-kicker.light {
  color: var(--lime);
}

.csr-app .answer-grid h2,
.csr-app .section-heading-row h2,
.csr-app .locations-intro h2,
.csr-app .process-heading h2,
.csr-app .guide-panel h2,
.csr-app .faq-intro h2,
.csr-app .disclosure-card h2,
.csr-app .final-cta h2 {
  margin: 0;
  font-size: clamp(39px, 4.7vw, 66px);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.csr-app .answer-copy {
  padding-top: 29px;
}

.csr-app .answer-copy p {
  max-width: 630px;
  color: var(--ink-soft);
  font-size: 16px;
}

.csr-app .answer-copy .lead-answer {
  margin-top: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.csr-app .text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--lime-dark);
  font-size: 13px;
  font-weight: 850;
}

.csr-app .packages-section {
  background: var(--white);
}

.csr-app .section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}

.csr-app .section-heading-row > div {
  max-width: 790px;
}

.csr-app .section-heading-row > p {
  max-width: 335px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.csr-app .package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.csr-app .package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 385px;
  padding: 25px;
  overflow: hidden;
  border-radius: var(--radius);
}

.csr-app .package-card.mint { background: var(--mint); }
.csr-app .package-card.lime { background: var(--lime); }
.csr-app .package-card.blue { background: var(--blue); }
.csr-app .package-card.sand { background: var(--sand); }

.csr-app .package-index {
  position: absolute;
  top: -15px;
  right: 12px;
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.csr-app .package-card.mint .package-index { color: #6b847a; }
.csr-app .package-card.lime .package-index { color: #75833e; }
.csr-app .package-card.blue .package-index { color: #687f89; }
.csr-app .package-card.sand .package-index { color: #8c7853; }

.csr-app .package-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(8, 44, 57, 0.17);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.csr-app .package-card h3 {
  margin: auto 0 11px;
  font-size: 37px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.csr-app .package-card p {
  margin: 0 0 22px;
  color: rgba(8, 44, 57, 0.76);
  font-size: 14px;
}

.csr-app .package-card strong {
  padding-top: 16px;
  border-top: 1px solid rgba(8, 44, 57, 0.17);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.csr-app .locations-section {
  padding: 115px 0;
  background: var(--ink);
  color: var(--white);
}

.csr-app .locations-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 46px;
}

.csr-app .locations-intro > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.csr-app .location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.csr-app .location-card {
  display: flex;
  flex-direction: column;
  min-height: 272px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.csr-app .location-card.bookable {
  border-color: rgba(216, 255, 79, 0.44);
  background: linear-gradient(145deg, rgba(216, 255, 79, 0.11), rgba(255, 255, 255, 0.03));
}

.csr-app .location-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.csr-app .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #89a0a4;
}

.csr-app .bookable .status-dot {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(216, 255, 79, 0.1);
}

.csr-app .location-alias {
  margin-top: 35px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.csr-app .location-card h3 {
  margin: 3px 0 8px;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.csr-app .location-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.csr-app .location-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.csr-app .guide-label {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.csr-app .process-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.csr-app .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.csr-app .process-grid li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 29px 30px 34px 0;
}

.csr-app .process-grid li + li {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.csr-app .process-grid li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.csr-app .process-grid h3 {
  margin: 4px 0 8px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.csr-app .process-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.csr-app .partner-explainer {
  display: grid;
  grid-template-columns: 72px 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  margin-top: 25px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ice);
}

.csr-app .explainer-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 25px;
}

.csr-app .partner-explainer span {
  color: #4f676d;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.csr-app .partner-explainer h3 {
  margin: 4px 0 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.csr-app .partner-explainer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.csr-app .guide-section {
  background: #dcebe8;
}

.csr-app .guide-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 75px;
  align-items: center;
}

.csr-app .guide-panel {
  max-width: 740px;
}

.csr-app .guide-chip {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(8, 44, 57, 0.2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.csr-app .guide-panel h2 {
  margin-top: 22px;
}

.csr-app .guide-panel > p {
  max-width: 650px;
  margin: 25px 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.csr-app .guide-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.csr-app .guide-panel li span {
  margin-right: 6px;
  color: #397455;
}

.csr-app .fact-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(8, 44, 57, 0.1);
}

.csr-app .fact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.csr-app .fact-row strong {
  flex-shrink: 0;
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.csr-app .fact-row span {
  max-width: 150px;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: right;
}

.csr-app .fact-source {
  margin: 15px 0 0;
  color: #566d72;
  font-size: 10px;
}

.csr-app .fact-source a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.csr-app .faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 90px;
}

.csr-app .faq-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.csr-app .faq-intro > p:not(.section-kicker) {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.csr-app .faq-list {
  border-top: 1px solid #bfcfcd;
}

.csr-app .faq-list details {
  border-bottom: 1px solid #bfcfcd;
}

.csr-app .faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.csr-app .faq-list summary::-webkit-details-marker {
  display: none;
}

.csr-app .faq-plus {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.csr-app .faq-list details[open] .faq-plus {
  transform: rotate(45deg);
  background: var(--lime);
}

.csr-app .faq-list details p {
  max-width: 700px;
  margin: -7px 55px 25px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.csr-app .disclosure-section {
  padding-top: 20px;
}

.csr-app .disclosure-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.csr-app .disclosure-card h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.csr-app .disclosure-card > div:last-child {
  color: var(--ink-soft);
  font-size: 14px;
}

.csr-app .disclosure-card > div:last-child p:first-child {
  margin-top: 4px;
}

.csr-app .final-cta {
  padding: 92px 0;
  background: var(--ink);
  color: var(--white);
}

.csr-app .final-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 55px;
}

.csr-app .final-cta h2 {
  max-width: 840px;
}

.csr-app .final-cta a {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.csr-app .site-footer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 55px 0 25px;
  background: #031a22;
  color: var(--white);
}

.csr-app .footer-top {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.2fr;
  gap: 45px;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.csr-app .footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.csr-app .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 25px;
  font-size: 11px;
  font-weight: 700;
}

.csr-app .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 25px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
}

.csr-app .mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .csr-app .desktop-nav {
    gap: 20px;
    margin-right: 20px;
  }

  .csr-app .hero-content {
    grid-template-columns: 1fr 270px;
    gap: 40px;
  }

  .csr-app .search-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .csr-app .equipment-field,
.csr-app .search-button {
    margin-top: 6px;
  }

  .csr-app .equipment-field {
    grid-column: span 2;
  }

  .csr-app .result-grid,
.csr-app .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .csr-app .result-card,
.csr-app .package-card {
    min-height: 330px;
  }

  .csr-app .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .csr-app .section-shell,
.csr-app .nav-shell,
.csr-app .hero-content,
.csr-app .search-wrap {
    width: min(calc(100% - 30px), var(--max));
  }

  .csr-app .site-header {
    height: 72px;
  }

  .csr-app .desktop-nav {
    display: none;
  }

  .csr-app .hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .csr-app .hero-media img {
    object-position: 59% 50%;
  }

  .csr-app .hero-wash {
    background:
      linear-gradient(90deg, rgba(3, 24, 33, 0.9), rgba(3, 24, 33, 0.38)),
      linear-gradient(0deg, rgba(3, 24, 33, 0.78), transparent 55%);
  }

  .csr-app .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 150px;
    padding-bottom: 110px;
  }

  .csr-app .hero h1 {
    max-width: 680px;
    font-size: clamp(48px, 9.6vw, 72px);
  }

  .csr-app .coverage-note {
    max-width: 440px;
  }

  .csr-app .search-wrap {
    margin-top: -80px;
  }

  .csr-app .answer-grid,
.csr-app .locations-intro,
.csr-app .guide-grid,
.csr-app .faq-grid,
.csr-app .disclosure-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .csr-app .faq-intro {
    position: static;
  }

  .csr-app .section-heading-row,
.csr-app .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .csr-app .section-heading-row > p {
    max-width: 600px;
  }

  .csr-app .process-grid {
    grid-template-columns: 1fr;
  }

  .csr-app .process-grid li {
    padding: 24px 0;
  }

  .csr-app .process-grid li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .csr-app .partner-explainer {
    grid-template-columns: 62px 1fr;
  }

  .csr-app .partner-explainer > p {
    grid-column: 2;
  }

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

  .csr-app .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .csr-app .trust-strip { --deferred-block-size: 440px; }
  .csr-app .answer-section { --deferred-block-size: 720px; }
  .csr-app .packages-section { --deferred-block-size: 1750px; }
  .csr-app .locations-section { --deferred-block-size: 1900px; }
  .csr-app .process-section { --deferred-block-size: 1020px; }
  .csr-app .guide-section { --deferred-block-size: 980px; }
  .csr-app .faq-section { --deferred-block-size: 950px; }
  .csr-app .disclosure-section { --deferred-block-size: 720px; }
  .csr-app .final-cta { --deferred-block-size: 430px; }
  .csr-app .site-footer { --deferred-block-size: 470px; }

  .csr-app {
    padding-bottom: 66px;
  }

  .csr-app .nav-cta {
    display: none;
  }

  .csr-app .brand-mark {
    width: 37px;
    height: 32px;
  }

  .csr-app .brand-copy strong {
    font-size: 16px;
  }

  .csr-app .hero {
    min-height: 720px;
  }

  .csr-app .hero-content {
    padding-top: 126px;
    padding-bottom: 125px;
  }

  .csr-app .hero h1 {
    font-size: clamp(46px, 13.7vw, 66px);
    line-height: 0.97;
  }

  .csr-app .hero-intro {
    margin-top: 22px;
    font-size: 16px;
  }

  .csr-app .hero-proof {
    gap: 7px 15px;
    margin-top: 20px;
    font-size: 11px;
  }

  .csr-app .coverage-note {
    display: none;
  }

  .csr-app .search-wrap {
    margin-top: -95px;
  }

  .csr-app .search-card {
    padding: 22px 18px 16px;
  }

  .csr-app .search-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .csr-app .search-heading > p {
    display: none;
  }

  .csr-app .search-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .csr-app .field-location,
.csr-app .equipment-field,
.csr-app .search-button {
    grid-column: 1 / -1;
  }

  .csr-app .equipment-field {
    margin-top: 0;
  }

  .csr-app .search-button {
    margin-top: 2px;
  }

  .csr-app .field-control,
.csr-app .segment-control,
.csr-app .search-button {
    height: 53px;
    min-height: 53px;
  }

  .csr-app .field-icon {
    flex-basis: 31px;
    font-size: 15px;
  }

  .csr-app .field select,
.csr-app .field input {
    width: calc(100% - 31px);
    font-size: 11px;
  }

  .csr-app .field > span:first-child,
.csr-app .field legend {
    font-size: 9px;
  }

  .csr-app .search-foot {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .csr-app .results-section,
.csr-app .answer-section,
.csr-app .packages-section,
.csr-app .process-section,
.csr-app .guide-section,
.csr-app .faq-section,
.csr-app .disclosure-section {
    padding: 78px 0;
  }

  .csr-app .results-head {
    align-items: start;
    flex-direction: column;
  }

  .csr-app .result-grid,
.csr-app .package-grid,
.csr-app .location-grid,
.csr-app .trust-grid {
    grid-template-columns: 1fr;
  }

  .csr-app .result-card,
.csr-app .package-card {
    min-height: 320px;
  }

  .csr-app .all-options-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .csr-app .booking-modal-backdrop {
    align-items: end;
    padding: 10px;
  }

  .csr-app .booking-modal {
    max-height: calc(100vh - 20px);
    padding: 27px 17px 20px;
    border-radius: 20px;
  }

  .csr-app .booking-modal-close {
    top: 12px;
    right: 12px;
  }

  .csr-app .booking-modal-head {
    padding-right: 42px;
  }

  .csr-app .booking-modal-head h2 {
    font-size: 31px;
  }

  .csr-app .participant-card {
    grid-template-columns: 1fr 0.58fr;
  }

  .csr-app .participant-name {
    grid-column: 1 / -1;
  }

  .csr-app .participant-card label:last-child {
    grid-column: 1 / -1;
  }

  .csr-app .booking-modal-actions {
    flex-direction: column-reverse;
  }

  .csr-app .modal-secondary-button,
.csr-app .modal-primary-button {
    width: 100%;
  }

  .csr-app .modal-primary-button {
    justify-content: space-between;
  }

  .csr-app .partner-handoff-note {
    text-align: left;
  }

  .csr-app .trust-grid > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    padding: 20px 0;
  }

  .csr-app .trust-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .csr-app .trust-number {
    grid-row: span 2;
    margin: 2px 0 0;
  }

  .csr-app .trust-grid p {
    margin-top: 2px;
  }

  .csr-app .answer-grid,
.csr-app .locations-intro,
.csr-app .guide-grid,
.csr-app .faq-grid,
.csr-app .disclosure-card {
    gap: 30px;
  }

  .csr-app .answer-copy {
    padding-top: 0;
  }

  .csr-app .answer-copy .lead-answer {
    font-size: 20px;
  }

  .csr-app .answer-grid h2,
.csr-app .section-heading-row h2,
.csr-app .locations-intro h2,
.csr-app .process-heading h2,
.csr-app .guide-panel h2,
.csr-app .faq-intro h2,
.csr-app .final-cta h2 {
    font-size: clamp(37px, 11.5vw, 52px);
  }

  .csr-app .locations-section {
    padding: 82px 0;
  }

  .csr-app .location-card {
    min-height: 245px;
  }

  .csr-app .partner-explainer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 23px;
  }

  .csr-app .partner-explainer > p {
    grid-column: auto;
  }

  .csr-app .guide-panel ul {
    grid-template-columns: 1fr;
  }

  .csr-app .fact-panel {
    padding: 24px;
  }

  .csr-app .faq-list summary {
    font-size: 16px;
  }

  .csr-app .disclosure-card {
    padding: 25px;
  }

  .csr-app .disclosure-card h2 {
    font-size: 35px;
  }

  .csr-app .final-cta {
    padding: 70px 0;
  }

  .csr-app .final-cta a {
    width: 100%;
  }

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

  .csr-app .footer-links {
    grid-column: auto;
  }

  .csr-app .footer-bottom {
    flex-direction: column;
  }

  .csr-app .mobile-sticky-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 12px 34px rgba(3, 25, 34, 0.3);
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(80px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .csr-app .mobile-sticky-cta.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .csr-app {
    scroll-behavior: auto;
  }

  .csr-app *,
.csr-app *::before,
.csr-app *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Expanded 1.1 rental funnel: age filters, full compositions and pickup shops. */
.csr-app .search-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.csr-app .field-location { grid-column: span 2; }
.csr-app .equipment-field { grid-column: span 2; }
.csr-app .age-field { grid-column: span 3; }
.csr-app .search-button { grid-column: span 3; }

.csr-app .result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.csr-app .result-card-expanded {
  min-height: 520px;
}

.csr-app .result-card-expanded .result-card-top {
  min-height: 34px;
  flex-direction: row;
  justify-content: space-between;
}

.csr-app .variant-prompt {
  margin: 8px 0 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.csr-app .variant-list {
  display: grid;
  gap: 7px;
  margin: 8px 0 13px;
}

.csr-app .variant-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 55px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f8fbfa;
  cursor: pointer;
}

.csr-app .variant-option:has(input:checked) {
  border-color: #759096;
  background: #ecf5f2;
  box-shadow: inset 0 0 0 1px #759096;
}

.csr-app .variant-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--ink);
}

.csr-app .variant-copy {
  display: grid;
  gap: 1px;
}

.csr-app .variant-copy strong {
  font-size: 12px;
  line-height: 1.25;
}

.csr-app .variant-copy small {
  color: #557078;
  font-size: 10px;
}

.csr-app .result-cta-link {
  margin-top: auto;
  text-decoration: none;
}

.csr-app .shops-section {
  padding: 70px 0 92px;
  background: #e7f1ee;
}

.csr-app .shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.csr-app .shop-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid #c5d7d2;
  border-radius: var(--radius);
  background: var(--white);
}

.csr-app .shop-supplier {
  color: #5b747a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.csr-app .shop-card h3 {
  margin: 12px 0 9px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.csr-app .shop-address {
  min-height: 63px;
  color: var(--ink-soft);
  font-size: 12px;
}

.csr-app .shop-hours {
  display: grid;
  gap: 3px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.csr-app .shop-hours strong {
  font-size: 11px;
}

.csr-app .shop-hours span {
  color: #587178;
  font-size: 10px;
}

.csr-app .final-cta .final-transfer-link {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 1100px) {
  .csr-app .search-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .csr-app .field-location { grid-column: span 3; }
  .csr-app .equipment-field,
  .csr-app .age-field { grid-column: span 3; }
  .csr-app .search-button { grid-column: span 3; }
  .csr-app .result-grid,
  .csr-app .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .csr-app .search-grid { grid-template-columns: 1fr 1fr; }
  .csr-app .field-location,
  .csr-app .equipment-field,
  .csr-app .age-field,
  .csr-app .search-button { grid-column: 1 / -1; }
  .csr-app .result-grid,
  .csr-app .shop-grid { grid-template-columns: 1fr; }
  .csr-app .result-card-expanded { min-height: 0; }
  .csr-app .shops-section { padding: 65px 0; }
  .csr-app .shop-card { min-height: 0; }
}

/* 1.2 aggregator search: product-first comparison inspired by familiar travel search patterns. */
.csr-app {
  --search-navy: #052440;
  --search-blue: #0875e1;
  --search-blue-dark: #005ec4;
}

.csr-app .site-header {
  background: rgba(5, 36, 64, .94);
  backdrop-filter: blur(12px);
}

.csr-app .hero {
  align-items: flex-start;
  min-height: 700px;
  background: var(--search-navy);
}

.csr-app .hero-media {
  right: 0;
  left: 45%;
  opacity: .43;
}

.csr-app .hero-media img { object-position: 55% 42%; }

.csr-app .hero-wash {
  background: linear-gradient(90deg, #052440 0%, #052440 38%, rgba(5, 36, 64, .9) 60%, rgba(5, 36, 64, .48) 100%);
}

.csr-app .hero-content {
  grid-template-columns: minmax(0, 850px);
  align-content: start;
  gap: 28px;
  padding-top: 122px;
}

.csr-app .product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.csr-app .product-tabs > * {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 5px 18px 5px 7px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.csr-app .product-tab-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.csr-app .product-tab-icon-shell {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 11px;
  background: rgba(255,255,255,.08);
  color: currentColor;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.csr-app .product-tabs a:hover { background: rgba(255,255,255,.1); }
.csr-app .product-tabs .active { border-color: var(--search-blue); background: var(--search-blue); }
.csr-app .product-tabs .active .product-tab-icon-shell {
  border-color: rgba(255,255,255,.92);
  background: #fff;
  color: var(--search-blue);
  box-shadow: 0 5px 14px rgba(0,36,74,.2);
}
.csr-app .product-tabs > span { color: rgba(255,255,255,.58); cursor: default; }
.csr-app .product-tabs small {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.csr-app .hero-copy h1 {
  max-width: 820px;
  margin-top: 10px;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: .98;
}

.csr-app .hero-intro,
.csr-app .hero-proof { display: none; }
.csr-app .coverage-note { display: none; }

.csr-app .search-wrap {
  z-index: 15;
  margin-top: -225px;
  margin-bottom: 38px;
}

.csr-app .search-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.csr-app .search-heading { margin-bottom: 18px; color: #fff; }
.csr-app .search-heading h2 { color: #fff; font-size: clamp(28px, 3vw, 40px); }
.csr-app .search-heading .step-label { color: #9fc8ee; }
.csr-app .search-heading > p { color: rgba(255,255,255,.76); }

.csr-app .search-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1.35fr 132px;
  gap: 5px;
  align-items: stretch;
}

.csr-app .search-grid > .field,
.csr-app .gear-picker,
.csr-app .partner-step-note {
  grid-column: auto;
  min-width: 0;
}

.csr-app .search-grid > .field {
  display: grid;
  align-content: center;
  min-height: 90px;
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  background: #fff;
}

.csr-app .search-grid > .field > span:first-child {
  color: #566676;
  font-size: 11px;
}

.csr-app .search-grid > .field .field-control {
  min-height: 34px;
  height: 34px;
  border: 0;
  background: transparent;
}

.csr-app .search-grid > .field .field-icon { display: none; }
.csr-app .search-grid > .field select,
.csr-app .search-grid > .field input {
  width: 100%;
  padding: 0;
  color: #071d33;
  font-size: 15px;
  font-weight: 700;
}

.csr-app .gear-picker { position: relative; }

.csr-app .partner-step-note {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 90px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  color: #071d33;
}

.csr-app .partner-step-note small { color: #566676; font-size: 11px; }
.csr-app .partner-step-note strong { font-size: 15px; line-height: 1.25; }

.csr-app .gear-picker-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 90px;
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #071d33;
  text-align: left;
}

.csr-app .gear-picker-button > span:first-child { display: grid; gap: 6px; min-width: 0; }
.csr-app .gear-picker-button small { color: #566676; font-size: 11px; }
.csr-app .gear-picker-button strong { overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.csr-app .gear-picker.is-open .gear-picker-button { box-shadow: inset 0 0 0 3px var(--search-blue); }

.csr-app .gear-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: min(460px, calc(100vw - 40px));
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 17, 34, .3);
  color: var(--ink);
}

.csr-app .gear-popover .equipment-field {
  display: block;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.csr-app .gear-popover legend { margin-bottom: 9px; color: #071d33; font-size: 14px; font-weight: 800; }
.csr-app .gear-popover .segment-control { height: 50px; border-color: #bdcbd4; }
.csr-app .gear-inclusions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 3px 0 20px;
  padding-top: 17px;
  border-top: 1px solid #dce4e8;
}
.csr-app .gear-inclusions strong { grid-column: 1 / -1; margin-bottom: 3px; font-size: 12px; }
.csr-app .gear-inclusions span { color: #51646e; font-size: 11px; }
.csr-app .gear-apply {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 9px;
  background: var(--search-blue);
  color: #fff;
  font-weight: 800;
}

.csr-app .search-button {
  grid-column: auto;
  min-height: 90px;
  margin: 0;
  padding: 0 19px;
  border-radius: 10px;
  background: var(--search-blue);
  color: #fff;
}
.csr-app .search-button:hover { background: var(--search-blue-dark); }
.csr-app .search-foot { margin-top: 13px; color: rgba(255,255,255,.78); }
.csr-app .form-message,
.csr-app .secure-note { color: inherit; }
.csr-app .trust-strip { border-top: 0; }

@media (max-width: 980px) {
  .csr-app .desktop-nav { display: none; }
  .csr-app .hero { min-height: 720px; }
  .csr-app .hero-content { padding-top: 112px; }
  .csr-app .search-wrap { margin-top: -300px; }
  .csr-app .search-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .csr-app .gear-picker,
  .csr-app .partner-step-note { grid-column: span 2; }
  .csr-app .search-button { grid-column: span 1; }
}

@media (max-width: 620px) {
  .csr-app .site-header { height: 72px; }
  .csr-app .hero { min-height: 720px; }
  .csr-app .hero-media { left: 0; opacity: .32; }
  .csr-app .hero-wash { background: linear-gradient(180deg, rgba(5,36,64,.83), #052440 82%); }
  .csr-app .hero-content { grid-template-columns: minmax(0, 1fr); width: calc(100% - 30px); padding-top: 102px; }
  .csr-app .product-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -15px;
    padding-right: 15px;
    scrollbar-width: none;
  }
  .csr-app .product-tabs::-webkit-scrollbar { display: none; }
  .csr-app .product-tabs > * { flex: 0 0 auto; min-height: 46px; padding: 4px 14px 4px 6px; font-size: 12px; }
  .csr-app .product-tab-icon-shell { width: 32px; height: 32px; flex-basis: 32px; border-radius: 10px; }
  .csr-app .product-tab-icon { width: 16px; height: 16px; flex-basis: 16px; }
  .csr-app .hero-copy h1 { font-size: clamp(46px, 14vw, 59px); }
  .csr-app .hero-intro,
  .csr-app .hero-proof { display: none; }
  .csr-app .hero-proof { gap: 12px; }
  .csr-app .hero-proof span { font-size: 10px; }
  .csr-app .search-wrap { width: calc(100% - 30px); margin-top: -240px; margin-bottom: 32px; }
  .csr-app .search-heading { margin-bottom: 13px; }
  .csr-app .search-heading h2 { font-size: 26px; line-height: 1.05; }
  .csr-app .search-heading > div { min-width: 0; }
  .csr-app .search-heading h2 { overflow-wrap: anywhere; }
  .csr-app .search-heading > p { display: none; }
  .csr-app .search-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .csr-app .search-grid > .field { min-height: 74px; padding: 9px 12px; }
  .csr-app .field-location { grid-column: 1 / -1 !important; }
  .csr-app .gear-picker,
  .csr-app .partner-step-note { grid-column: 1 / -1; }
  .csr-app .gear-picker-button { min-height: 74px; padding: 9px 12px; }
  .csr-app .partner-step-note { min-height: 74px; padding: 9px 12px; }
  .csr-app .search-button { grid-column: 1 / -1; min-height: 58px; }
  .csr-app .gear-popover { position: fixed; top: auto; right: 10px; bottom: 10px; left: 10px; width: auto; max-height: calc(100vh - 20px); overflow-y: auto; border-radius: 18px; }
  .csr-app .search-foot { display: none; }
}

/* 1.4: restore the production-style white search card while retaining the expanded site. */
.csr-app .search-wrap { margin-top: -225px; margin-bottom: 0; }
.csr-app .search-card {
  padding: 27px 30px 20px;
  border: 1px solid rgba(214, 227, 224, .8);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
}
.csr-app .search-heading { align-items: end; margin-bottom: 20px; color: var(--ink); }
.csr-app .search-heading h2 { color: var(--ink); font-size: 24px; }
.csr-app .search-heading .step-label { color: #587177; }
.csr-app .search-heading > p { display: block; color: var(--ink-soft); }
.csr-app .search-grid { grid-template-columns: 1.22fr 1fr 1fr 1.08fr 1.05fr; gap: 10px; align-items: end; }
.csr-app .search-grid > .field {
  display: grid;
  align-content: initial;
  grid-column: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.csr-app .search-grid > .field > span:first-child { color: #48636a; font-size: 11px; }
.csr-app .search-grid > .field .field-control {
  height: 56px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfdfc;
}
.csr-app .search-grid > .field .field-icon { display: grid; }
.csr-app .search-grid > .field select,
.csr-app .search-grid > .field input {
  width: calc(100% - 38px);
  padding: 0 10px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.csr-app .search-grid .equipment-field { grid-column: auto; margin: 0; }
.csr-app .search-grid .equipment-field .segment-control { height: 56px; min-height: 56px; }
.csr-app .search-button {
  grid-column: auto;
  min-height: 56px;
  height: 56px;
  margin: 0;
  padding: 0 18px;
  border-radius: 11px;
  background: var(--lime);
  color: var(--ink);
}
.csr-app .search-button:hover { background: var(--lime-dark); }
.csr-app .search-foot { margin-top: 14px; color: var(--ink-soft); }
.csr-app .form-message,
.csr-app .secure-note { color: inherit; }

@media (max-width: 1100px) {
  .csr-app .search-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .csr-app .search-grid .equipment-field { grid-column: span 2; }
  .csr-app .search-button { grid-column: auto; }
}

@media (max-width: 620px) {
  .csr-app .search-wrap { margin-top: -95px; margin-bottom: 0; }
  .csr-app .search-card { padding: 22px 18px 16px; }
  .csr-app .search-heading { align-items: start; }
  .csr-app .search-heading > p { display: none; }
  .csr-app .search-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .csr-app .search-grid .field-location,
  .csr-app .search-grid .equipment-field,
  .csr-app .search-button { grid-column: 1 / -1; }
  .csr-app .search-foot { display: flex; }
}

/* Global ski-rental.net marketplace overrides. */
.csr-app.csr-global .hero-copy { max-width: 820px; }
.csr-app.csr-global .hero-copy h1 { max-width: 760px; }
.csr-app.csr-global .global-search-grid { grid-template-columns: minmax(280px,1.55fr) repeat(2,minmax(165px,.8fr)) minmax(190px,.85fr); }
.csr-app.csr-global .destination-field { position: relative; z-index: 8; }
.csr-app.csr-global .destination-field input[type="search"] { width: calc(100% - 38px); }
.csr-app.csr-global .destination-list {
  position: absolute; z-index: 50; top: calc(100% + 8px); left: 0; right: 0;
  max-height: 340px; overflow-y: auto; padding: 7px; border: 1px solid #d5e2e4;
  border-radius: 13px; background: #fff; box-shadow: 0 20px 45px rgba(3,27,45,.2);
}
.csr-app.csr-global .destination-list[hidden] { display: none; }
.csr-app.csr-global .destination-option {
  display: flex; width: 100%; justify-content: space-between; gap: 18px; padding: 12px 13px;
  border: 0; border-radius: 9px; background: transparent; color: var(--ink); text-align: left; cursor: pointer;
}
.csr-app.csr-global .destination-option:hover,.csr-app.csr-global .destination-option.is-active { background: #edf5f4; }
.csr-app.csr-global .destination-option strong { font-size: 13px; }
.csr-app.csr-global .destination-option span { color: var(--ink-soft); font-size: 11px; }
.csr-app.csr-global .popular-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.csr-app.csr-global .country-link-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.csr-app.csr-global .country-link-grid a { display: grid; gap: 6px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.csr-app.csr-global .country-link-grid a:hover { border-color: #84a9ad; transform: translateY(-2px); }
.csr-app.csr-global .country-link-grid strong { font-size: 23px; }
.csr-app.csr-global .country-link-grid span { color: var(--ink-soft); font-size: 12px; }
.csr-app.csr-global .package-card .text-link { align-self: end; margin-top: 20px; font-size: 12px; }
@media (max-width:1100px) {
  .csr-app.csr-global .global-search-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .csr-app.csr-global .global-search-grid .search-button { grid-column: 1/-1; }
  .csr-app.csr-global .popular-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width:620px) {
  .csr-app.csr-global .global-search-grid { grid-template-columns: 1fr 1fr; }
  .csr-app.csr-global .global-search-grid .destination-field,.csr-app.csr-global .global-search-grid .search-button { grid-column: 1/-1; }
  .csr-app.csr-global .popular-grid,.csr-app.csr-global .country-link-grid { grid-template-columns: 1fr; }
  .csr-app.csr-global .product-tabs { overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .csr-app.csr-global .product-tabs > * { flex: 0 0 auto; }
}
