@font-face {
  font-family: Cereal;
  src: url("/assets/fonts/cereal/Cereal-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cereal;
  src: url("/assets/fonts/cereal/Cereal-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cereal;
  src: url("/assets/fonts/cereal/Cereal-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --coachie-page-bg: #ffffff;
  --coachie-text: #222222;
  --coachie-muted: #6a6a6a;
  --coachie-border: #dddddd;
  --coachie-soft: #f7f3ee;
  --coachie-band-bg: #f7f7f7;
  --coachie-accent: #1fc7c7;
  --coachie-accent-dark: #0f8b8b;
  --coachie-cta: #2ac8c8;
  --coachie-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  --coachie-radius-xl: 24px;
  --coachie-radius-lg: 18px;
  --coachie-radius-pill: 999px;
  --coachie-font: Cereal, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background: var(--coachie-page-bg);
}

.coachie-host-page {
  color: var(--coachie-text);
  font-family: var(--coachie-font);
  background: #fff;
  padding-bottom: 0;
}

.coachie-host-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.coachie-host-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease;
}

.coachie-host-nav.is-scrolled {
  border-bottom-color: #ebebeb;
}

.coachie-host-nav__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.coachie-host-nav .coachie-host-shell {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 0 40px;
}

@media (min-width: 1128px) {
  .coachie-host-nav .coachie-host-shell {
    padding: 0 80px;
  }
}

.coachie-host-brand,
.coachie-host-brand:hover {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.coachie-host-brand img {
  display: block;
  width: 30px;
  height: auto;
  margin-left: 0;
}

.coachie-host-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 0;
}

.coachie-host-link,
.coachie-host-link:hover {
  color: var(--coachie-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.coachie-host-button {
  border: 0;
  border-radius: var(--coachie-radius-pill);
  min-height: 48px;
  min-width: 144px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.coachie-host-button:hover {
  transform: translateY(-1px);
}

.coachie-host-button--accent {
  background: var(--coachie-cta);
  color: #fff;
  font-weight: 400;
}

.coachie-host-button--dark {
  background: #222;
  color: #fff;
}

.coachie-host-button--outline {
  background: #fff;
  color: var(--coachie-text);
  border: 1px solid rgba(34, 34, 34, 0.14);
}

.coachie-host-button--block {
  width: 100%;
}

.coachie-estimator {
  padding: 144px 0 0;
}

.coachie-estimator .coachie-host-shell {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 454px);
  align-items: start;
  justify-content: start;
  gap: 48px;
}

.coachie-estimator__copy {
  box-sizing: border-box;
  width: min(100%, 418px);
  min-height: 534px;
  margin-left: 0;
  padding: 44px 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1128px) {
  .coachie-estimator .coachie-host-shell {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 0 80px;
    grid-template-columns: 560px minmax(0, 1fr);
    gap: 0;
    justify-content: start;
  }

  .coachie-estimator__copy {
    width: 100%;
    padding: 44px 0;
    align-items: center;
    text-align: center;
  }

  .coachie-estimator__summary {
    justify-content: center;
  }

  .coachie-estimator__range {
    margin-left: 0;
  }

  .coachie-estimator__visual {
    width: 100%;
    max-width: 454px;
    margin-left: auto;
  }

  .coachie-estimator__map,
  .coachie-estimator__map img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

@media (min-width: 1280px) {
  .coachie-estimator__visual {
    max-width: 551px;
  }
}

@media (min-width: 1440px) {
  .coachie-estimator__visual {
    max-width: 631px;
  }
}

.coachie-estimator__copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
}

@media (min-width: 1024px) and (max-width: 1127px) {
  .coachie-estimator__copy h1 {
    font-size: 2.75rem;
  }
}

.coachie-estimator__line {
  display: block;
  white-space: nowrap;
}

.coachie-estimator__hours {
  white-space: nowrap;
}

.coachie-estimator__summary {
  margin: 22px 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.coachie-estimator__chip {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: var(--coachie-text);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.coachie-estimator__rate {
  color: var(--coachie-text);
  font-weight: 500;
}

.coachie-estimator__learn {
  border: 0;
  background: none;
  padding: 0;
  color: var(--coachie-muted);
  font: inherit;
  cursor: pointer;
  font-size: 0.95rem;
}

.coachie-estimator__learnAccent {
  text-decoration: underline;
}

.coachie-estimator__rangeLabel {
  display: block;
  margin-top: 44px;
}

.coachie-estimator__range {
  width: 305px;
  margin-top: 6px;
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coachie-cta) 0%, var(--coachie-cta) 100%);
  outline: none;
}

.coachie-estimator__range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: transparent;
  transition: height 120ms ease;
}

.coachie-estimator__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  margin-top: -18px;
  border-radius: 50%;
  border: 1px solid rgba(34, 34, 34, 0.1);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  cursor: grab;
}

.coachie-estimator__range:active::-webkit-slider-thumb,
.coachie-estimator__rangeWrap.is-dragging .coachie-estimator__range::-webkit-slider-thumb {
  cursor: grabbing;
}

.coachie-estimator__rangeWrap.is-dragging .coachie-estimator__range,
.coachie-estimator__range:active {
  height: 8px;
}

.coachie-estimator__rangeWrap.is-dragging .coachie-estimator__range::-webkit-slider-runnable-track,
.coachie-estimator__range:active::-webkit-slider-runnable-track {
  height: 8px;
}

.coachie-estimator__range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: #e3e3e3;
  transition: height 120ms ease;
}

.coachie-estimator__range::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--coachie-cta);
  transition: height 120ms ease;
}

.coachie-estimator__range::-moz-range-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(34, 34, 34, 0.1);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  cursor: grab;
}

.coachie-estimator__range:active::-moz-range-track,
.coachie-estimator__range:active::-moz-range-progress,
.coachie-estimator__rangeWrap.is-dragging .coachie-estimator__range::-moz-range-track,
.coachie-estimator__rangeWrap.is-dragging .coachie-estimator__range::-moz-range-progress {
  height: 8px;
}

.coachie-estimator__rangeWrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 305px;
  margin-top: 6px;
}

.coachie-estimator__rangeBubble {
  position: absolute;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  padding: 6px 12px;
  background: #111;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
  z-index: 2;
}

.coachie-estimator__rangeWrap.is-dragging .coachie-estimator__rangeBubble {
  opacity: 1;
}

.coachie-estimator__rangeBubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111;
}

.coachie-estimator__place {
  margin-top: 44px;
  width: 418px;
  border: 1px solid var(--coachie-border);
  border-radius: var(--coachie-radius-pill);
  min-height: 64px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.coachie-estimator__placeIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--coachie-cta);
  flex: 0 0 20px;
}

.coachie-estimator__placeIcon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.coachie-estimator__placeText {
  display: inline;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--coachie-text);
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.coachie-estimator__place strong {
  font-weight: 600;
  font-size: inherit;
}

.coachie-estimator__placeSep {
  color: var(--coachie-muted);
  margin: 0 2px;
}

.coachie-estimator__place [data-config-summary-label] {
  color: var(--coachie-muted);
  font-weight: 400;
}

.coachie-estimator__visual {
  align-self: start;
  margin-left: 0;
  margin-right: 0;
  margin-top: 28px;
  justify-self: end;
  width: 100%;
}

.coachie-estimator__map {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #edf4f7 0%, #e7f2f2 100%);
  height: 480px;
  width: 100%;
  max-width: 631px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.coachie-estimator__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(0.96) brightness(1.01);
}

.coachie-estimator__routePreview,
.coachie-estimator__expand {
  position: absolute;
  box-shadow: var(--coachie-shadow);
}

.coachie-estimator__routePreview {
  left: 24px;
  right: 24px;
  bottom: 16px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.coachie-estimator__routeHeader strong,
.coachie-estimator__routeStop strong {
  display: block;
  color: var(--coachie-text);
}

.coachie-estimator__routeEyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coachie-accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coachie-estimator__routeHeader strong {
  font-size: 1.22rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.coachie-estimator__routeHeader span:last-child {
  display: block;
  margin-top: 6px;
  color: var(--coachie-muted);
  font-size: 0.87rem;
  line-height: 1.35;
}

.coachie-estimator__routeStops {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  gap: 12px;
  align-items: center;
}

.coachie-estimator__routeStop {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.coachie-estimator__routeDot {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coachie-accent);
}

.coachie-estimator__routeDot--school {
  background: #111;
}

.coachie-estimator__routeStop span:last-child {
  display: block;
  margin-top: 3px;
  color: var(--coachie-muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.coachie-estimator__routeLine {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coachie-accent) 0%, #111 100%);
}

.coachie-estimator__routeMeta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.coachie-estimator__routeMeta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.08);
  color: var(--coachie-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.coachie-estimator__expand {
  right: 14px;
  top: 14px;
  border: 0;
  padding: 9px 15px;
  font-size: 0.82rem;
  font-weight: 700;
}

.coachie-host-supportstrip {
  padding: 142px 0 0;
}

.coachie-host-supportstrip .coachie-host-shell {
  width: min(100%, 760px);
}

.coachie-host-supportstrip__inner {
  background: var(--coachie-soft);
  border-radius: 24px;
  padding: 14px 20px 14px 14px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 148px;
}

.coachie-host-supportstrip__media {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  overflow: hidden;
  align-self: center;
}

.coachie-host-supportstrip__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
}

.coachie-host-supportstrip__inner h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.42rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.coachie-host-section h2,
.coachie-host-askBlock h3 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.coachie-host-supportstrip__inner p,
.coachie-host-section__lead,
.coachie-host-stat p,
.coachie-host-profile span,
.coachie-host-protection__lead p,
.coachie-host-protection__smallprint,
.coachie-host-safeguard p,
.coachie-host-showcaseCard p,
.coachie-host-apartmentCard p,
.coachie-host-faqContent p,
.coachie-host-askBlock p,
.coachie-host-footnote p {
  margin: 10px 0 0;
  color: var(--coachie-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.coachie-host-faqContent p {
  margin-top: 0;
  line-height: 1.5;
}

.coachie-host-supportstrip__inner p {
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.4;
}

.coachie-host-supportstrip__inner .coachie-host-button {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.coachie-host-section {
  padding: 72px 0 0;
}

.coachie-host-section--stats {
  padding-top: 110px;
}

.coachie-host-section--cocoachie {
  padding-top: 110px;
}

.coachie-host-section--protection {
  padding-top: 0;
}

.coachie-host-section--stats .coachie-host-shell,
.coachie-host-section--cocoachie .coachie-host-shell,
.coachie-host-section--showcase .coachie-host-shell,
.coachie-host-section--faq .coachie-host-shell,
.coachie-host-footnote .coachie-host-shell {
  width: min(100%, 1008px);
}

.coachie-host-section--protection > .coachie-host-shell {
  width: min(100%, 1008px);
}

.coachie-host-section--protection > .coachie-host-shell.coachie-host-safeguards {
  width: min(100%, 928px);
}

.coachie-host-section--faq {
  background: var(--coachie-band-bg);
  padding: 120px 0 0;
  margin-top: 0;
}

.coachie-host-section--faq h2 {
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.067;
  letter-spacing: -0.03em;
  padding-bottom: 56px;
}

.coachie-host-section--faq .coachie-host-askBlock h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.coachie-host-section--faq .coachie-host-askBlock .coachie-host-button {
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
  min-width: 254px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 9999px;
}

.coachie-host-askBlock__legal strong {
  font-weight: 700;
}

.coachie-host-section--faq .coachie-host-askBlock__legal {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--coachie-text);
  margin: 24px 0 0;
  padding: 0 24px 44px;
}

.coachie-host-faq {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.coachie-host-section--showcase h2 {
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 56px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
}

.coachie-host-section--showcase .coachie-host-showcase {
  margin-top: 0;
}

.coachie-host-section--showcase .coachie-host-shell {
  text-align: center;
}

.coachie-host-section--stats h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.coachie-host-section--cocoachie h2 {
  max-width: none;
  text-align: center;
}

.coachie-host-section--cocoachie .coachie-host-section__lead {
  margin: 24px auto 96px;
  text-align: center;
  font-size: 1.35rem;
  line-height: 1.5;
}

.coachie-host-section--cocoachie .coachie-host-profileRow {
  margin-top: 0;
}

.coachie-host-statgrid {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.coachie-host-stat {
  text-align: center;
}

.coachie-host-stat__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #f5f5f5;
  font-size: 2.8rem;
}

.coachie-host-stat__iconImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0);
}

.coachie-host-stat strong,
.coachie-host-profile strong,
.coachie-host-safeguard strong,
.coachie-host-showcaseCard strong,
.coachie-host-faqContent strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.coachie-host-stat strong {
  font-size: 1.7rem;
}

.coachie-host-stat p {
  font-size: 1.1rem;
  line-height: 1.55;
}

.coachie-host-section__lead {
  max-width: 44rem;
}

.coachie-host-profileRow {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.coachie-host-profile {
  text-align: center;
}

.coachie-host-profile__avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
}

.coachie-host-profile__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.coachie-host-section__ctaRow {
  margin-top: 28px;
  margin-bottom: 110px;
  text-align: center;
}

.coachie-host-protection {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.coachie-host-protection h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0;
  padding-bottom: 24px;
  max-width: 18ch;
  text-align: center;
}

.coachie-host-protection__mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 22px;
  color: var(--coachie-cta);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.coachie-host-protection__mark small {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coachie-muted);
  font-weight: 500;
}

.coachie-host-protection__lede {
  margin: 0;
  padding-bottom: 56px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--coachie-muted);
  max-width: 24ch;
  text-align: center;
}

.coachie-host-protection__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coachie-host-protection__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 4px;
  border-bottom: 1px solid var(--coachie-border);
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--coachie-text);
  text-align: left;
}

.coachie-host-protection__list li:last-child {
  border-bottom: 0;
}

.coachie-host-protection__check {
  color: #008a05;
  flex: 0 0 18px;
}

.coachie-host-protection__smallprint {
  margin: 69px 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--coachie-muted);
  max-width: 580px;
  text-align: center;
}

.coachie-host-protection__smallprint a {
  color: var(--coachie-muted);
  font-weight: 500;
  text-decoration: underline;
}

.coachie-host-protection__cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.coachie-host-protection__cta .coachie-host-button {
  font-weight: 500;
  font-size: 1rem;
  min-width: 300px;
}

.coachie-host-safeguards {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coachie-host-safeguards__eyebrow {
  margin: 0 0 48px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--coachie-muted);
  text-align: center;
}

.coachie-host-safeguards__grid {
  width: 100%;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  column-gap: 72px;
  position: relative;
}

.coachie-host-safeguards__grid > .coachie-host-safeguard + .coachie-host-safeguard {
  border-left: 1px solid var(--coachie-border);
  padding-left: 72px;
  margin-left: -36px;
}

.coachie-host-safeguard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.coachie-host-safeguard__icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  line-height: 1;
}

.coachie-host-safeguard strong {
  display: block;
  font-size: 1.375rem;
  line-height: 1.18;
  font-weight: 600;
  padding-bottom: 8px;
}

.coachie-host-safeguard p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--coachie-muted);
}

.coachie-host-showcase {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
}

.coachie-host-showcaseCard {
  text-align: center;
}

.coachie-host-showcaseCard__phone {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: var(--coachie-band-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coachie-host-showcaseCard__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.coachie-host-showcaseCard strong {
  display: block;
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0;
}

.coachie-host-showcaseCard p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--coachie-muted);
}

.coachie-host-apartmentCard {
  margin-top: 110px;
  margin-bottom: 110px;
  padding-top: 110px;
  border-top: 1px solid var(--coachie-border);
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.coachie-host-apartmentCard img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.coachie-host-apartmentCard h3 {
  margin: 0;
  padding: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--coachie-text);
}

.coachie-host-apartmentCard p {
  margin: 0;
  padding: 0 0 4px;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--coachie-muted);
}

.coachie-host-inlineLink,
.coachie-host-inlineLink:hover {
  display: inline-block;
  color: var(--coachie-text);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  text-decoration: underline;
  padding: 10px 0;
}

.coachie-host-faq {
  margin-top: 24px;
}

.coachie-host-faqGroup {
  border-bottom: 1px solid var(--coachie-border);
}

.coachie-host-faqToggle {
  width: 100%;
  border: 0;
  background: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 32px;
  color: var(--coachie-text);
  text-align: left;
  cursor: pointer;
}

.coachie-host-faqToggle [data-faq-icon] {
  flex: 0 0 auto;
  margin-left: 16px;
}

.coachie-host-faqContent {
  padding: 0 0 26px;
}

.coachie-host-faqContent strong {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 24px;
  color: var(--coachie-text);
}

.coachie-host-faqContent strong:first-child {
  margin-top: 0;
}

.coachie-host-faqContent a {
  color: var(--coachie-muted);
  text-decoration: underline;
  font-weight: 400;
}

.coachie-host-askBlock {
  margin-top: 54px;
  text-align: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.coachie-host-askBlock .coachie-host-button {
  margin-top: 18px;
  min-width: 172px;
}

.coachie-host-askBlock__legal {
  max-width: none;
  width: 100%;
  margin: 24px 0 0;
  padding: 0 24px 44px;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid var(--coachie-border);
}

.coachie-host-askBlock__legal a {
  color: var(--coachie-text);
  font-weight: 700;
}

.coachie-host-footnote {
  padding: 24px 0 56px;
  background: var(--coachie-band-bg);
}

.coachie-host-footnote p {
  font-size: 0.85rem;
}

.coachie-host-footnote a {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
}

.coachie-host-mobilebar {
  display: none;
  padding: 18px 24px 0;
}

.coachie-estimate-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.coachie-estimate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.38);
}

.coachie-estimate-modal__dialog {
  position: relative;
  width: min(100% - 32px, 560px);
  max-height: calc(100vh - 64px);
  margin: 64px auto 0;
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  padding: 28px 28px 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.coachie-estimate-modal__dialog h2 {
  margin: 0 0 14px;
  font-size: 2.05rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.coachie-estimate-modal__dialog p {
  margin: 0 0 16px;
  color: var(--coachie-muted);
  line-height: 1.6;
}

.coachie-estimate-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: none;
  color: var(--coachie-muted);
  font-size: 1.8rem;
  line-height: 1;
}

.coachie-config-modal__dialog {
  width: min(100% - 32px, 520px);
  padding: 0;
}

.coachie-config-modal__dialog > .coachie-host-button {
  margin: 20px 24px 24px;
  width: calc(100% - 48px);
}

.coachie-config-modal__dialog .coachie-config-modal__cohort {
  margin: 20px 24px 0;
}

.coachie-config-modal__header {
  position: relative;
  padding: 18px 24px;
  border-bottom: 1px solid #ebebeb;
}

.coachie-config-modal__header h2,
.coachie-address-modal__header h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.coachie-config-modal__dialog .coachie-estimate-modal__close {
  top: 50%;
  left: 16px;
  right: auto;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
}

.coachie-config-modal__dialog .coachie-estimate-modal__close:hover,
.coachie-config-modal__dialog .coachie-estimate-modal__close:focus {
  background: #f4f4f4;
  outline: none;
}

.coachie-config-modal__section {
  padding: 20px 24px;
  border-bottom: 1px solid #ebebeb;
}

.coachie-config-modal__section + .coachie-config-modal__section {
  margin-top: 0;
}

.coachie-config-modal__section--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.coachie-config-modal__section--inline .coachie-config-modal__label {
  margin-bottom: 0;
}

.coachie-config-modal__label {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--coachie-text);
}

.coachie-config-modal__inputWrap {
  position: relative;
}

.coachie-config-modal__suggestions {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 280px;
  overflow-y: auto;
}

.coachie-config-modal__suggestion {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  color: var(--coachie-text);
  border-bottom: 1px solid #f4f4f4;
}

.coachie-config-modal__suggestion:last-child {
  border-bottom: 0;
}

.coachie-config-modal__suggestion:hover,
.coachie-config-modal__suggestion:focus {
  background: #f7f7f7;
  outline: none;
}

.coachie-config-modal__suggestionIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f4f4f4;
  color: var(--coachie-text);
}

.coachie-config-modal__suggestionText {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coachie-config-modal__inputIcon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  color: var(--coachie-text);
  pointer-events: none;
}

.coachie-config-modal__inputIcon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.coachie-config-modal__inputTrigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.coachie-config-modal__inputTrigger .coachie-config-modal__inputIcon {
  position: static;
  transform: none;
  margin-right: 12px;
  flex: 0 0 18px;
}

.coachie-config-modal__input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #dddddd;
  background: #ffffff;
  border-radius: 999px;
  padding: 0 20px 0 46px;
  font: inherit;
  color: var(--coachie-text);
}

.coachie-config-modal__segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: #ebebeb;
}

.coachie-config-modal__segment {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--coachie-text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
}

.coachie-config-modal__segment.is-active {
  background: #fff;
  color: var(--coachie-text);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.coachie-config-modal__stepper {
  display: inline-grid;
  grid-template-columns: 40px minmax(44px, auto) 40px;
  align-items: center;
  gap: 10px;
}

.coachie-config-modal__step {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f4f4f4;
  color: var(--coachie-text);
  font-size: 1.45rem;
  line-height: 1;
}

.coachie-config-modal__stepper strong {
  text-align: center;
  font-size: 1.08rem;
}

.coachie-config-modal__cohort {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7f7f7;
}

.coachie-config-modal__cohortLabel {
  display: block;
  margin-bottom: 6px;
  color: var(--coachie-muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.coachie-config-modal__cohort strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.25;
}

.coachie-config-modal__cohort p {
  margin: 8px 0 0;
  color: var(--coachie-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.coachie-config-modal__submit {
  width: 100%;
  margin-top: 22px;
}

.coachie-address-modal {
  z-index: 70;
}

.coachie-address-modal__dialog {
  position: relative;
  width: min(100% - 32px, 520px);
  margin: 64px auto 0;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.coachie-address-modal__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.coachie-address-modal__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-bottom: 1px solid #ebebeb;
}


.coachie-address-modal__back {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--coachie-text);
  cursor: pointer;
}

.coachie-address-modal__back:hover,
.coachie-address-modal__back:focus {
  background: #f4f4f4;
  outline: none;
}

.coachie-address-modal__body {
  padding: 20px 24px 24px;
  overflow-y: auto;
  flex: 1 1 auto;
}

.coachie-address-modal__searchWrap {
  position: relative;
  display: flex;
  align-items: center;
}

.coachie-address-modal__searchIcon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  color: var(--coachie-text);
  pointer-events: none;
}

.coachie-address-modal__searchInput {
  width: 100%;
  min-height: 54px;
  border: 1px solid #222;
  border-radius: 999px;
  padding: 0 48px 0 48px;
  font: inherit;
  font-size: 1rem;
  color: var(--coachie-text);
  background: #fff;
  outline: none;
}

.coachie-address-modal__searchInput:focus {
  border-color: #111;
  box-shadow: 0 0 0 1px #111 inset;
}

.coachie-address-modal__clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #ebebeb;
  color: var(--coachie-text);
  cursor: pointer;
}

.coachie-address-modal__clear:hover,
.coachie-address-modal__clear:focus {
  background: #d9d9d9;
  outline: none;
}

.coachie-address-modal__results {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.coachie-address-modal__status {
  margin: 0;
  padding: 14px 4px;
  color: var(--coachie-muted);
  font-size: 0.95rem;
}

.coachie-address-modal__result {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 1rem;
  color: var(--coachie-text);
  border-bottom: 1px solid #ebebeb;
}

.coachie-address-modal__result:last-child {
  border-bottom: 0;
}

.coachie-address-modal__result:hover,
.coachie-address-modal__result:focus {
  background: #f7f7f7;
  outline: none;
}

.coachie-address-modal__resultIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f4f4f4;
  color: var(--coachie-text);
}

.coachie-address-modal__resultText {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coachie-address-modal__fallback {
  margin: 24px 4px 0;
  border: 0;
  background: none;
  padding: 0;
  color: var(--coachie-text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 1127px) {
  .coachie-estimator .coachie-host-shell,
  .coachie-host-statgrid,
  .coachie-host-profileRow,
  .coachie-host-protection,
  .coachie-host-safeguards,
  .coachie-host-showcase,
  .coachie-host-apartmentCard {
    grid-template-columns: 1fr;
  }

  .coachie-estimator .coachie-host-shell {
    gap: 8px;
    padding: 0 24px;
    justify-items: center;
  }

  .coachie-estimator__copy {
    order: 1;
    width: 100%;
    max-width: 560px;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
    padding: 24px 0 8px;
  }

  .coachie-estimator__summary {
    justify-content: center;
  }

  .coachie-estimator__visual {
    order: 2;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    margin-bottom: 34px;
  }

  .coachie-estimator__map {
    height: 400px;
    max-width: 560px;
    border-radius: 20px;
  }

  .coachie-estimator {
    padding-top: 24px;
  }

  .coachie-estimator__range {
    margin-left: auto;
    margin-right: auto;
  }

  .coachie-host-supportstrip__inner {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
  }

  .coachie-host-supportstrip__media img {
    max-height: 58px;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .coachie-host-page {
    padding-bottom: 120px;
  }

  .coachie-estimator__copy {
    padding-top: 4px;
  }

  .coachie-host-shell {
    padding: 0 24px;
  }

  .coachie-host-nav .coachie-host-shell {
    width: min(100%, 1120px);
    padding: 24px 24px 8px;
  }

  .coachie-host-nav__inner {
    min-height: auto;
    align-items: flex-start;
  }

  .coachie-host-nav__actions .coachie-host-link {
    display: none;
  }

  .coachie-host-button {
    min-height: 48px;
    min-width: 0;
    padding: 0 22px;
    font-size: 1rem;
  }

  .coachie-host-nav__actions {
    margin-right: 0;
  }

  .coachie-estimator {
    padding-top: 65px;
  }

  .coachie-estimator__copy h1 {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.04em;
  }

  .coachie-estimator__summary {
    margin: 18px 0 0;
    font-size: 1rem;
    line-height: 18px;
  }

  .coachie-estimator__chip,
  .coachie-estimator__rate {
    line-height: 18px;
  }

  .coachie-estimator__chip {
    min-height: 34px;
    height: 34px;
  }

  .coachie-estimator__learn {
    margin-top: 0;
    font-size: 14px;
    line-height: 18px;
  }

  .coachie-estimator__microcopy {
    font-size: 0.72rem;
  }

  .coachie-estimator__rangeLabel {
    margin-top: 0;
  }

  .coachie-estimator__rangeWrap {
    margin-top: 69px;
    margin-bottom: 69px;
  }

  .coachie-estimator__range {
    margin-top: 0;
    margin-left: 0;
  }

  .coachie-estimator__place {
    margin-top: 0;
    min-height: 56px;
    padding: 10px 18px;
    width: 100%;
    max-width: 100%;
  }

  .coachie-estimator__placeText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    line-height: 1.25;
    gap: 2px;
  }

  .coachie-estimator__placeText strong {
    font-size: 0.95rem;
    font-weight: 600;
  }

  .coachie-estimator__placeText [data-config-summary-label] {
    font-size: 0.88rem;
    color: var(--coachie-muted);
  }

  .coachie-estimator__placeSep {
    display: none;
  }

  .coachie-estimator__copy {
    padding-bottom: 22px;
    width: 100%;
    max-width: 100%;
  }

  .coachie-estimator__visual,
  .coachie-estimator__map,
  .coachie-estimator__map img {
    width: 100%;
    max-width: 100%;
  }

  .coachie-estimator__map {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .coachie-estimator .coachie-host-shell {
    gap: 0;
    box-sizing: border-box;
  }

  .coachie-host-mobilebar .coachie-host-button {
    min-height: 48px;
    font-size: 1rem;
    font-weight: 400;
    padding: 0 24px;
  }

  .coachie-estimator__place strong {
    font-size: 0.93rem;
  }

  .coachie-estimator__place span span,
  .coachie-estimator__place > span:last-child > span {
    font-size: 0.84rem;
  }

  .coachie-estimator__map {
    height: 240px;
    border-radius: 20px;
  }

  .coachie-estimator__routePreview {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 12px 11px;
    border-radius: 18px;
  }

  .coachie-estimator__routeEyebrow {
    margin-bottom: 6px;
    font-size: 0.64rem;
  }

  .coachie-estimator__routeHeader strong {
    font-size: 1rem;
  }

  .coachie-estimator__routeHeader span:last-child {
    font-size: 0.72rem;
  }

  .coachie-estimator__routeStops {
    margin-top: 10px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .coachie-estimator__routeLine {
    width: 2px;
    height: 16px;
    margin-left: 5px;
    background: linear-gradient(180deg, var(--coachie-accent) 0%, #111 100%);
  }

  .coachie-estimator__routeStop span:last-child {
    font-size: 0.68rem;
  }

  .coachie-estimator__routeMeta {
    margin-top: 10px;
    gap: 8px;
  }

  .coachie-estimator__routeMeta span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .coachie-estimator__expand {
    font-size: 0.68rem;
    padding: 7px 10px;
  }

  .coachie-host-supportstrip {
    padding-top: 44px;
  }

  .coachie-host-supportstrip .coachie-host-supportstrip__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 32px 0 0;
    border-radius: 24px;
    gap: 0;
    min-height: 0;
    text-align: center;
    overflow: hidden;
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    box-sizing: border-box;
  }

  .coachie-host-supportstrip__inner > div:not(.coachie-host-supportstrip__media) {
    grid-row: 1;
    padding: 0 24px;
  }

  .coachie-host-supportstrip__inner .coachie-host-button {
    grid-row: 2;
    justify-self: center;
    margin: 12px 0 16px;
    min-height: 40px;
    height: 40px;
    min-width: 0;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    border-radius: 999px;
  }

  .coachie-host-supportstrip__media {
    grid-row: 3;
    width: 100%;
    height: 166px;
    border-radius: 0;
    align-self: stretch;
  }

  .coachie-host-supportstrip__media img {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .coachie-host-supportstrip__inner h2 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    margin: 0;
  }

  .coachie-host-supportstrip__inner p {
    font-size: 13px;
    line-height: 18px;
    margin: 12px 0 0;
  }

  .coachie-host-section h2,
  .coachie-host-askBlock h3 {
    font-size: 1.75rem;
  }

  .coachie-host-section {
    padding-top: 46px;
  }

  .coachie-host-statgrid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 48px;
  }

  .coachie-host-stat + .coachie-host-stat {
    border-top: 1px solid var(--coachie-border);
    padding-top: 24px;
    margin-top: 24px;
  }

  .coachie-host-profileRow {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 24px;
    margin: 28px -24px 0;
    box-sizing: border-box;
  }

  .coachie-host-profileRow::-webkit-scrollbar {
    display: none;
  }

  .coachie-host-profileRow .coachie-host-profile {
    flex: 0 0 calc(100vw - 80px);
    scroll-snap-align: start;
    min-width: 0;
  }

  .coachie-host-showcase {
    gap: 20px;
  }

  .coachie-host-showcase {
    display: flex;
    grid-template-columns: none;
    max-width: none;
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 24px;
    margin: 24px -24px 0;
    gap: 16px;
    box-sizing: border-box;
  }

  .coachie-host-showcase::-webkit-scrollbar {
    display: none;
  }

  .coachie-host-showcase .coachie-host-showcaseCard {
    flex: 0 0 calc(100vw - 80px);
    scroll-snap-align: start;
    min-width: 0;
  }

  .coachie-host-showcase .coachie-host-showcaseCard p {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .coachie-host-showcase .coachie-host-showcaseCard strong {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .coachie-host-stat {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
    text-align: left;
  }

  .coachie-host-stat__icon {
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 18px;
    font-size: 2.2rem;
    align-self: center;
    grid-row: 1 / span 2;
    grid-column: 1;
  }

  .coachie-host-stat strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.125rem;
    line-height: 1.3;
    margin: 0;
    align-self: end;
  }

  .coachie-host-stat p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
    align-self: start;
  }

  .coachie-host-profile {
    text-align: left;
  }

  .coachie-host-profile__avatar {
    margin-left: 0;
    width: 128px;
    height: 128px;
  }

  .coachie-host-protection__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .coachie-host-faqToggle {
    font-size: 1.125rem;
    line-height: 24px;
  }

  .coachie-host-section--faq .coachie-host-faqContent strong {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .coachie-host-section--faq .coachie-host-faqContent p {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .coachie-host-section--faq .coachie-host-askBlock .coachie-host-button {
    width: 100%;
    min-width: 0;
  }

  .coachie-host-section--faq .coachie-host-askBlock h3 {
    font-size: 1.125rem;
    line-height: 1.25;
  }

  .coachie-host-section--faq .coachie-host-askBlock p {
    font-size: 0.875rem;
  }

  .coachie-host-section--faq {
    padding-top: 56px;
  }

  .coachie-host-section--faq h2 {
    font-size: 28px;
    line-height: 32px;
    padding-bottom: 22px;
  }

  .coachie-host-section--faq .coachie-host-askBlock__legal {
    font-size: 0.6875rem;
    line-height: 1.45;
  }

  .coachie-host-protection h2 {
    font-size: 28px;
    line-height: 32px;
    padding-bottom: 8px;
  }

  .coachie-host-protection__lede {
    font-size: 1.05rem;
    line-height: 1.45;
    padding-bottom: 44px;
  }

  .coachie-host-protection__list li {
    font-size: 1rem;
    padding: 24px 4px;
  }

  .coachie-host-protection__smallprint {
    margin-top: 44px;
    font-size: 0.75rem;
  }

  .coachie-host-safeguard strong {
    font-size: 1.125rem;
  }

  .coachie-host-safeguard p {
    font-size: 0.875rem;
  }

  .coachie-host-section--cocoachie .coachie-host-section__lead {
    font-size: 1.125rem;
    line-height: 1.45;
  }

  .coachie-host-showcaseCard strong {
    font-size: 1rem;
  }

  .coachie-host-showcaseCard p {
    font-size: 0.875rem;
  }

  .coachie-host-apartmentCard h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 12px;
  }

  .coachie-host-apartmentCard p {
    font-size: 0.875rem;
    line-height: 1.45;
    padding-bottom: 24px;
  }

  .coachie-host-inlineLink {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0;
  }

  .coachie-host-footnote p {
    font-size: 0.75rem;
  }

  .coachie-host-apartmentCard {
    grid-template-columns: 1fr;
    margin-top: 72px;
    margin-bottom: 72px;
    padding-top: 72px;
    gap: 24px;
    text-align: center;
    justify-items: center;
  }

  .coachie-host-apartmentCard img {
    width: 240px;
    height: 168px;
    border-radius: 16px;
  }

  .coachie-host-apartmentCard > div {
    max-width: 280px;
  }

  .coachie-host-safeguards {
    margin-top: 44px;
  }

  .coachie-host-safeguards__eyebrow {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  .coachie-host-safeguards__grid {
    display: flex;
    grid-template-columns: none;
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 24px;
    margin: 0 -24px;
    gap: 16px;
    box-sizing: border-box;
  }

  .coachie-host-safeguards__grid::-webkit-scrollbar {
    display: none;
  }

  .coachie-host-safeguards__grid > .coachie-host-safeguard {
    flex: 0 0 calc(100vw - 80px);
    scroll-snap-align: start;
    background: var(--coachie-band-bg);
    border-radius: 20px;
    padding: 28px 20px;
    margin: 0;
    gap: 12px;
  }

  .coachie-host-safeguards__grid .coachie-host-safeguard strong {
    padding-bottom: 0;
    margin-bottom: 8px;
  }

  .coachie-host-safeguards__grid .coachie-host-safeguard__icon {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }

  .coachie-host-safeguards__grid > .coachie-host-safeguard + .coachie-host-safeguard {
    border-left: 0;
    padding-left: 24px;
    margin-left: 0;
  }

  .coachie-host-mobilebar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 24px calc(16px + env(safe-area-inset-bottom, 0px));
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    z-index: 40;
  }

  .coachie-host-nav__actions .coachie-host-button--accent {
    display: none;
  }

  .coachie-host-page {
    padding-bottom: 0;
  }

  .coachie-estimate-modal__dialog,
  .coachie-config-modal__dialog,
  .coachie-address-modal__dialog {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 90vh;
    margin: 0;
    border-radius: 20px 20px 0 0;
    animation: coachie-sheet-in 220ms ease-out;
  }

  .coachie-estimate-modal__dialog {
    padding: 24px 22px calc(22px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
  }

  .coachie-config-modal__dialog {
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    overflow-y: auto;
  }

  .coachie-address-modal__dialog {
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .coachie-config-modal__segmented {
    grid-template-columns: 1fr;
  }

  @keyframes coachie-sheet-in {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
}
