:root {
  --red: #ad1818;
  --red-dark: #8f1414;
  --ink: #202020;
  --muted: #606060;
  --white: #fff;
  --soft: #f6f6f6;
  --warm: #f8f3ef;
  --line: #d1d1d1;
  --max: 1180px;
  --radius: 5px;
  --shadow: 0 10px 24px rgba(32, 32, 32, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, video { display: block; max-width: 100%; }
p { margin: 0 0 16px; }
h1, h2, h3 {
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
}
h1 { max-width: 860px; font-size: clamp(42px, 6vw, 70px); }
h2 { font-size: clamp(30px, 4vw, 43px); }
h3 { font-size: 20px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip:focus {
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 9px 13px;
  border: 2px solid var(--red);
  color: var(--ink);
  background: var(--white);
}
.notice {
  padding: 8px 20px;
  color: var(--white);
  background: var(--red);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.utility-bar {
  padding: 5px 0;
  border-bottom: 1px solid #e6e6e6;
  color: #606060;
  background: #fafafa;
  font-size: 11px;
  line-height: 1.45;
}
.utility-bar .container { text-align: right; }
.utility-bar a { color: var(--ink); text-decoration: none; }
.utility-bar a:hover, .utility-bar a:focus-visible { color: var(--red); text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  white-space: nowrap;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.035em;
  text-decoration: none;
}
.logo span { color: var(--red); }
.nav-links { display: flex; align-items: center; }
.nav-links a {
  padding: 22px 17px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nav-links .nav-cta {
  margin: 0 12px;
  padding: 10px 19px;
  color: var(--white);
  background: var(--red);
}
.nav-links a:hover,
.nav-links a:focus-visible,
.card-link:hover,
.card-link:focus-visible { color: var(--red-dark); }
.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible { color: var(--white); background: var(--red-dark); }
.menu {
  display: none;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
  font: 700 14px/1.4 Mulish, Arial, sans-serif;
}

.lead { max-width: 700px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.eyebrow, .kicker {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.muted { color: var(--muted); }
.center { text-align: center; }

.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: var(--soft);
}
.hero-media.ph, .hero-media.photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
  border-radius: 0;
  color: #666;
}
.hero-media.photo img { opacity: .38; }
.hero-media.ph::before, .hero-media.photo::before { top: 67%; }
.hero-media.ph::after, .hero-media.photo::after { top: 67%; }
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 74px 110px;
  text-align: center;
}
.hero-content h1 { font-size: clamp(52px, 7vw, 84px); }
.hero-content .lead { max-width: 760px; color: #454545; }
.hero-content .actions { justify-content: center; }
.hero-trust,
.assurance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.hero-trust { justify-content: center; }
.hero-trust li {
  padding: 6px 11px 6px 28px;
  border: 1px solid rgba(32, 32, 32, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}
.hero-trust li::before { left: 10px; }
.hero-trust li,
.assurance-strip li {
  position: relative;
  padding-left: 17px;
  color: #444;
  font-size: 12px;
  font-weight: 800;
}
.hero-trust li::before,
.assurance-strip li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "✓";
}
.page-hero { padding: 60px 0; border-bottom: 1px solid var(--line); background: var(--soft); }
.breadcrumb { border-bottom: 1px solid var(--line); background: var(--white); }
.breadcrumb .container { display: flex; flex-wrap: wrap; padding-block: 9px; color: var(--muted); font-size: 11px; }
.breadcrumb .container > * + * { margin-left: 8px; }
.breadcrumb a { color: #4c4c4c; text-decoration: none; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--red); text-decoration: underline; }
.hero-grid, .split, .review-rail {
  display: flex;
  align-items: center;
  gap: 54px;
}
.hero-grid > *, .split > *, .review-rail > * { width: calc(50% - 27px); }
.page-hero .hero-grid { gap: 58px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 61px); }
.page-hero .ph.tall, .page-hero .photo.tall { min-height: 390px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid var(--red);
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
  font: 800 15px/1.4 Mulish, Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover, .btn:focus-visible {
  border-color: var(--red-dark);
  background: var(--red-dark);
  box-shadow: 0 5px 14px rgba(143, 20, 20, .2);
}
.btn.secondary { color: var(--red); background: var(--white); }
.btn.secondary:hover, .btn.secondary:focus-visible { color: var(--white); background: var(--red-dark); }

.ph {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #626262;
  background: #e9e9e9;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.ph::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 25px;
  border: 2px solid #929292;
  border-radius: 4px;
  transform: translate(-50%, -80%);
}
.ph::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid #929292;
  border-radius: 50%;
  box-shadow: -11px -13px 0 -7px #929292;
  transform: translate(-50%, -94%);
}
.ph.tall { min-height: 460px; }
.ph.small { min-height: 205px; }
.ph.video { min-height: 390px; }
.photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e9e9e9;
}
.photo img { position: absolute; top: 0; left: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo figcaption {
  position: absolute;
  right: 8px;
  bottom: 7px;
  z-index: 3;
  padding: 3px 6px;
  border-radius: 2px;
  color: #666;
  background: rgba(255, 255, 255, .82);
  font-size: 10px;
  line-height: 1.3;
  text-align: right;
}
.photo.tall { min-height: 460px; }
.photo.small { min-height: 205px; }
.photo.video { min-height: 390px; }
.photo.video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #111; }

.section { padding: 70px 0; }
.section.soft { background: var(--soft); }
.section.warm { background: var(--warm); }
.section.blue { color: var(--white); background: #292929; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 33px;
}
.section-head > p { max-width: 530px; color: var(--muted); }
.blue .muted, .blue .section-head > p { color: #dedede; }
.blue .eyebrow, .blue .kicker { color: #f2a9a9; }
.grid-4, .grid-3, .grid-2 { display: flex; }
.grid-4 > * { width: calc(25% - 16.5px); margin-right: 22px; }
.grid-4 > *:last-child { margin-right: 0; }
.grid-3 > * { width: calc(33.333% - 15px); margin-right: 22px; }
.grid-3 > *:last-child { margin-right: 0; }
.grid-2 > * { width: calc(50% - 12px); margin-right: 24px; }
.grid-2 > *:last-child { margin-right: 0; }

.card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card .ph, .card .photo { margin: -22px -22px 20px; border-width: 0 0 1px; border-radius: 4px 4px 0 0; }
.card h3 { min-height: 2.35em; }
.card .price { padding-top: 5px; border-top: 1px solid #e5e5e5; }
.price { color: var(--ink); font-size: 17px; font-weight: 800; }
.card-link { color: var(--red); font-size: 14px; font-weight: 800; text-decoration: none; }
.destination-grid { display: flex; flex-wrap: wrap; }
.destination-card { display: block; width: calc(20% - 14.4px); margin: 0 18px 24px 0; color: inherit; text-decoration: none; }
.destination-card:nth-child(5n) { margin-right: 0; }
.destination-card .photo { min-height: 150px; margin-bottom: 14px; }
.destination-card h3 { margin-bottom: 5px; }
.destination-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.destination-card:hover h3, .destination-card:focus-visible h3 { color: var(--red); }
.number { margin-bottom: 12px; color: var(--red); font-size: 38px; font-weight: 800; line-height: 1; }
.work-steps {
  display: flex;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
  counter-reset: steps;
}
.work-steps li { width: 33.333%; min-height: 178px; padding: 30px; }
.work-steps li + li { border-left: 1px solid var(--line); }
.work-steps .number { display: block; }
.work-steps strong { display: block; max-width: 260px; font-size: 18px; line-height: 1.45; }
.how-it-works { background: var(--white); }

.experience-grid { display: flex; flex-wrap: wrap; gap: 22px; }
.experience-card {
  display: flex;
  width: calc(33.333% - 14.667px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: var(--white);
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.experience-card:nth-child(n + 4) { width: calc(50% - 11px); }
.experience-card:hover, .experience-card:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow); }
.experience-card .photo { min-height: 205px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.experience-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.experience-card h3 { min-height: 0; }
.experience-card p { color: var(--muted); }
.experience-card ul { margin: 0 0 22px; padding-left: 19px; color: #404040; font-size: 14px; }
.experience-card li + li { margin-top: 5px; }
.experience-card .card-link { margin-top: auto; }
.health-card { border-color: #c7b5b5; }
.medical-note { padding: 12px 14px; border-left: 3px solid var(--red); background: var(--warm); font-size: 12px; line-height: 1.55; }

.booking-clarity { border-block: 1px solid var(--line); background: var(--warm); }
.booking-clarity .split { align-items: flex-start; }
.booking-ticks { padding-top: 4px; }
.booking-ticks li { padding-block: 10px; border-bottom: 1px solid rgba(32, 32, 32, .12); }
.planning-section { border-block: 1px solid var(--line); }
.planning-steps {
  display: flex;
  margin: 0 0 22px;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}
.planning-steps li { width: 25%; min-height: 170px; padding: 28px 25px; }
.planning-steps li + li { border-left: 1px solid var(--line); }
.planning-steps .number { display: block; }
.planning-steps strong { display: block; font-size: 16px; line-height: 1.5; }
.why-grid > div { padding-right: 22px; border-right: 1px solid var(--line); }
.why-grid > div:last-child { padding-right: 0; border-right: 0; }

.review-rail > div:first-child { width: calc(55% - 27px); }
.review-rail > div:last-child { width: calc(45% - 27px); }
.review-rail > div:first-child { padding: 18px 0 18px 38px; border-left: 4px solid var(--red); }
.review-rail .ph, .review-rail .photo { min-height: 300px; }
.trust-wall > .eyebrow { margin-bottom: 18px; }
.trust {
  display: flex;
  border-block: 1px solid var(--line);
  background: var(--white);
}
.trust > div { width: 33.333%; min-height: 148px; padding: 33px 30px 27px; text-align: center; }
.trust > div + div { border-left: 1px solid var(--line); }
.trust strong { display: block; margin-bottom: 8px; font-size: 18px; font-weight: 800; }
.trust span { display: block; }

.meta-row { display: flex; flex-wrap: wrap; gap: 0; margin: 23px 0 15px; border-block: 1px solid var(--line); }
.meta-row span { padding: 10px 17px 10px 0; margin-right: 17px; color: #4b4b4b; font-size: 13px; font-weight: 700; }
.meta-row span + span::before { content: ""; display: inline-block; height: 13px; margin-right: 17px; border-left: 1px solid var(--line); vertical-align: -2px; }
.ticks { margin: 0; padding: 0; list-style: none; }
.ticks li { position: relative; padding: 7px 0 7px 27px; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.route { display: flex; gap: 26px; padding: 22px 0; border-top: 1px solid var(--line); }
.route time { width: 150px; flex: 0 0 150px; }
.route > div { flex: 1; }
.route:last-child { border-bottom: 1px solid var(--line); }
.route time { color: var(--red); font-size: 14px; font-weight: 800; }
.route h3 { margin-bottom: 7px; font-size: 19px; }
.route p { margin-bottom: 0; color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--white); }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--white); background: #303030; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 20px 44px 20px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 14px; right: 5px; color: var(--red); font-size: 26px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 880px; padding: 0 35px 18px 0; color: var(--muted); }

.band { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 43px 47px; color: var(--white); background: #282828; }
.band h2 { max-width: 760px; margin: 0; font-size: clamp(28px, 4vw, 40px); }
.band .btn { flex: 0 0 auto; }
.prose { max-width: 850px; }
.prose h2 { margin-top: 40px; font-size: 28px; }
.prose h3 { margin-top: 29px; }
.prose p, .prose li { color: #484848; }
.legal-updated { color: var(--muted); font-size: 14px; }
.note { padding: 17px 20px; border-left: 4px solid var(--red); background: var(--warm); }

.form { display: flex; flex-wrap: wrap; }
.form:hover { transform: none; box-shadow: none; }
.field { display: flex; flex-direction: column; gap: 7px; }
.form .field { width: 50%; padding: 10px; }
.form .field.full { width: 100%; }
label { font-size: 14px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
  font: 400 15px/1.5 Mulish, Arial, sans-serif;
}
textarea { min-height: 125px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--red); outline: 3px solid rgba(173, 24, 24, .14); }
.check { display: flex; flex-direction: row; align-items: flex-start; gap: 10px; }
.check input { width: auto; margin-top: 6px; }
.form-note { margin: 12px 0 0; font-size: 13px; }
.form-layout { align-items: flex-start; }
.form-layout > .form { width: calc(62% - 27px); }
.form-layout > aside { width: calc(38% - 27px); }
.interest-picker { margin: 8px 10px 10px; padding: 0; border: 0; }
.interest-picker legend { margin-bottom: 3px; font-size: 17px; font-weight: 800; }
.interest-picker legend span { color: var(--muted); font-size: 13px; font-weight: 600; }
.interest-help { margin-bottom: 14px; color: var(--muted); font-size: 13px; }
.interest-groups { display: flex; flex-wrap: wrap; gap: 12px; }
.interest-group { width: calc(50% - 6px); padding: 16px; border: 1px solid var(--line); border-radius: 3px; background: var(--soft); }
.interest-group:last-child { width: 100%; }
.interest-group h3 { margin-bottom: 11px; font-size: 16px; }
.interest-group label { display: flex; align-items: flex-start; gap: 9px; margin-top: 9px; font-size: 13px; font-weight: 600; line-height: 1.45; }
.interest-group input { width: auto; flex: 0 0 auto; margin-top: 3px; }
.interest-group .medical-note { margin: 13px 0 0; }
.health-interest { border-color: #c7b5b5; background: var(--warm); }
.next-steps h2 { margin-top: 32px; }

.newsletter-block { padding: 42px 0; color: var(--ink); background: var(--warm); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.newsletter-inner h2 { margin-bottom: 5px; font-size: clamp(25px, 3vw, 34px); }
.newsletter-inner p { margin: 0; color: var(--muted); }
.newsletter-form { display: flex; width: min(100%, 480px); flex: 0 1 480px; }
.newsletter-form input { min-width: 0; border-radius: 3px 0 0 3px; }
.newsletter-form .btn { flex: 0 0 auto; border-radius: 0 3px 3px 0; }

.site-footer { padding: 49px 0 24px; color: #e8e8e8; background: var(--ink); }
.site-footer .logo { color: var(--white); }
.site-footer .muted { color: #b9b9b9; }
.footer-intro { display: flex; align-items: start; justify-content: space-between; gap: 40px; padding-bottom: 28px; border-bottom: 1px solid #4a4a4a; }
.footer-intro p { margin: 5px 0 0; font-size: 14px; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; color: #b9b9b9; font-size: 12px; }
.footer-contact a { color: var(--white); font-size: 14px; text-decoration: none; }
.footer-contact a:hover, .footer-contact a:focus-visible { text-decoration: underline; text-decoration-color: var(--red); }
.footer-grid { display: flex; gap: 38px; padding-top: 34px; }
.footer-grid > div { width: calc(25% - 28.5px); }
.footer-grid h3 { margin-bottom: 18px; color: var(--white); font-size: 16px; }
.footer-grid a { display: block; width: fit-content; margin: 8px 0; color: #d4d4d4; font-size: 14px; text-decoration: none; }
.footer-grid a:hover, .footer-grid a:focus-visible { color: var(--white); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }
.wa-cta[hidden] { display: none; }
.footer-note { display: flex; justify-content: space-between; gap: 30px; margin-top: 38px; padding-top: 20px; border-top: 1px solid #4a4a4a; color: #aaa; font-size: 12px; }
.footer-note span:first-child { color: #c9c9c9; }

/* City-first selection flow */
.city-picker { scroll-margin-top: 82px; }
.city-choice-grid {
  display: flex;
  flex-wrap: wrap;
}
.city-choice-card {
  display: block;
  width: calc(20% - 14.4px);
  margin: 0 18px 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.city-choice-card:nth-child(5n) { margin-right: 0; }
.city-choice-card__media {
  position: relative;
  min-height: 156px;
  margin: 0;
  overflow: hidden;
  background: #e9e9e9;
}
.city-choice-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.city-choice-card > span { display: block; padding: 15px 17px 17px; }
.city-choice-card:hover,
.city-choice-card:focus-visible { border-color: var(--red); outline: 0; box-shadow: var(--shadow); transform: translateY(-2px); }
.city-choice-card.is-current { border: 2px solid var(--red); background: var(--warm); }
.city-choice-card.is-current > span::after { content: "Current city"; display: block; margin-top: 4px; color: var(--red); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }

.experience-menu { scroll-margin-top: 82px; }
.experience-category + .experience-category { margin-top: 46px; }
.experience-category > h3 { margin-bottom: 18px; font-size: 25px; }
.experience-select-grid {
  display: flex;
  flex-wrap: wrap;
}
.experience-select-card {
  position: relative;
  display: flex;
  width: calc(33.333% - 14.667px);
  margin: 0 22px 22px 0;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.experience-select-card:nth-child(3n) { margin-right: 0; }
.experience-select-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.experience-select-card > .photo { min-height: 205px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.experience-select-card__body { display: flex; min-width: 0; flex: 1; flex-direction: column; padding: 22px; }
.experience-select-card__body h4 { margin: 0 0 10px; font-size: 19px; line-height: 1.3; }
.experience-select-card__body > p { color: var(--muted); font-size: 14px; }
.experience-select-card__control {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}
.experience-select-card__control input { width: auto; flex: 0 0 auto; margin-top: 4px; accent-color: var(--red); }
.experience-select-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 2px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.experience-select-card__details {
  align-self: flex-start;
  padding: 7px 0;
  border: 0;
  color: var(--red);
  background: transparent;
  font: 800 14px/1.4 Mulish, Arial, sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.experience-select-card.is-selected { border: 2px solid var(--red); background: var(--warm); }
.experience-select-card.is-selected .experience-select-card__body { padding: 21px; }
.experience-select-card.is-quota-locked { border-color: #aaa; color: #555; background: #f1f1f1; cursor: not-allowed; }
.experience-select-card.is-quota-locked .experience-select-card__control,
.experience-select-card.is-quota-locked input { cursor: not-allowed; }
.quota-message, .selection-toast, .selection-error { margin-top: 16px; padding: 12px 15px; border-left: 4px solid var(--red); background: var(--warm); font-size: 14px; }
.selection-toast { border-color: #555; background: var(--soft); }
.selection-error { color: #761010; }

.package-picker { scroll-margin-top: 82px; }
.package-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.package-card {
  display: flex;
  width: calc(33.333% - 14.667px);
  margin: 0 22px 22px 0;
  min-width: 0;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.package-card:nth-child(3n) { margin-right: 0; }
.package-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.package-card .meta-row { margin-top: 5px; }
.package-card > .fee-disclosure { flex: 1; margin-top: 8px; font-size: 12px; }
.package-card.is-active { border: 2px solid var(--red); background: var(--warm); }
.package-card.is-ineligible { border-color: #aaa; color: #555; background: #f1f1f1; }
.package-select-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid var(--red);
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
  font: 800 14px/1.35 Mulish, Arial, sans-serif;
  cursor: pointer;
}
.package-select-button:disabled,
.package-card.is-ineligible .package-select-button { border-color: #999; color: #444; background: #e5e5e5; cursor: not-allowed; }
.package-grid + .fee-disclosure { margin-top: 28px; }

.experience-dialog { width: min(760px, calc(100% - 40px)); max-height: min(86vh, 820px); padding: 0; overflow: visible; border: 0; border-radius: var(--radius); background: transparent; }
.experience-dialog::backdrop { background: rgba(20, 20, 20, .72); }
.experience-dialog__panel { position: relative; max-height: min(86vh, 820px); padding: 32px; overflow-y: auto; border-radius: var(--radius); background: var(--white); box-shadow: 0 20px 70px rgba(0, 0, 0, .35); }
.experience-dialog__close { position: sticky; top: 0; float: right; min-width: 42px; min-height: 42px; margin: -13px -13px 8px 18px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--white); font-size: 22px; cursor: pointer; }
.experience-dialog__section { clear: both; padding: 19px 0; border-top: 1px solid var(--line); }
.experience-dialog__section h3 { font-size: 18px; }
.experience-dialog__actions { position: sticky; bottom: -32px; display: flex; flex-wrap: wrap; gap: 12px; margin: 0 -32px -32px; padding: 20px 32px 32px; border-top: 1px solid var(--line); background: var(--white); }
.experience-dialog-backdrop { position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; padding: 20px; background: rgba(20, 20, 20, .72); }
body.dialog-open,
body:has(.experience-dialog[open]) { overflow: hidden; }

.selection-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 800;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid #4a4a4a;
  color: var(--white);
  background: #252525;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .16);
}
.selection-bar[hidden] { display: none; }
.selection-bar__inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; width: min(calc(100% - 40px), var(--max)); margin-inline: auto; padding-block: 12px; }
.selection-bar__summary { display: flex; min-width: 0; flex-wrap: wrap; align-items: center; gap: 6px 18px; }
.selection-bar__count { color: #f4c8c8; font-weight: 800; }
.selection-bar__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.selection-bar__actions a, .selection-bar__actions button { min-height: 42px; padding: 9px 15px; border: 1px solid var(--white); border-radius: 3px; color: var(--ink); background: var(--white); font: 800 13px/1.4 Mulish, Arial, sans-serif; text-decoration: none; cursor: pointer; }
.selection-bar__actions :disabled { border-color: #888; color: #ddd; background: #555; cursor: not-allowed; }
.has-selection-bar { padding-bottom: var(--selection-bar-h, 0px); }

.selection-review { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.selection-review__list { margin: 14px 0 0; padding-left: 20px; }
.selection-review__list li + li { margin-top: 7px; }
.selection-recovery { padding: 24px; border: 1px solid var(--line); border-left: 4px solid var(--red); background: var(--warm); }
.question-form { max-width: 620px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.question-form .field { margin-bottom: 14px; }
.question-form textarea { min-height: 86px; }
.question-form .btn { margin-top: 2px; }
.form-disabled-note { margin: 12px 0; padding: 12px 15px; border: 1px solid var(--line); color: #555; background: var(--soft); font-size: 14px; }
.fee-disclosure { padding: 17px 19px; border: 1px solid #ddcfc5; border-left: 4px solid var(--red); background: var(--warm); color: #444; font-size: 13px; line-height: 1.55; }
.fee-disclosure > :last-child { margin-bottom: 0; }

.arrival-feature { color: var(--white); background: #292929; }
.arrival-grid { display: flex; flex-wrap: wrap; align-items: stretch; }
.arrival-feature__copy { width: calc(56% - 29px); margin-right: 58px; }
.arrival-feature__copy .lead { color: #e4e4e4; }
.arrival-feature__copy .ticks { color: #f2f2f2; }
.arrival-feature__copy .ticks li::before { color: #f3adad; }
.arrival-feature .eyebrow { color: #f2a9a9; }
.arrival-feature .btn.secondary { border-color: var(--white); color: var(--white); background: transparent; }
.arrival-feature .btn.secondary:hover,
.arrival-feature .btn.secondary:focus-visible { border-color: var(--white); color: var(--ink); background: var(--white); }
.arrival-card { width: calc(33.333% - 14.667px); min-width: 0; margin: 0 22px 22px 0; border-color: #555; }
.arrival-card:nth-child(3n) { margin-right: 0; }
.arrival-steps { display: flex; flex-wrap: wrap; margin-top: 28px; }
.arrival-steps > * { width: calc(33.333% - 12px); margin-right: 18px; padding: 18px; border-top: 2px solid var(--red); color: var(--ink); background: var(--white); }
.arrival-steps > *:nth-child(3n) { margin-right: 0; }
.arrival-costs { margin: 34px 0 0; padding: 17px 20px; border: 1px solid #5d5d5d; border-left: 4px solid #e6a3a3; color: #f0f0f0; background: #202020; font-size: 14px; }
.arrival-costs .trust { color: var(--ink); }

.btn:focus-visible,
.menu:focus-visible,
.package-select-button:focus-visible,
.experience-select-card__details:focus-visible,
.experience-dialog__close:focus-visible,
.experience-dialog__actions button:focus-visible,
.selection-bar__actions a:focus-visible,
.selection-bar__actions button:focus-visible { outline: 3px solid rgba(173, 24, 24, .3); outline-offset: 3px; }

body[data-flow-page="home"] .work-steps li { width: 25%; }

@media (max-width: 960px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .notice { padding-inline: 14px; font-size: 11px; }
  .nav { min-height: 62px; }
  .menu { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-links .nav-cta { margin: 0; padding: 12px 8px; border-bottom: 1px solid #eee; }
  .nav-links .nav-cta { margin-block: 8px; padding-inline: 14px; text-align: center; }
  .nav-links a::after { display: none !important; }
  .hero, .hero-content, .hero-media.ph, .hero-media.photo { min-height: 520px; }
  .hero-content { padding: 60px 22px 120px; }
  .hero-grid, .split, .review-rail, .grid-4, .grid-3, .grid-2, .trust { flex-direction: column; }
  .hero-grid > *, .split > *, .review-rail > *, .review-rail > div:first-child, .review-rail > div:last-child,
  .grid-4 > *, .grid-3 > *, .grid-2 > *, .trust > div, .footer-grid > div, .footer-grid > div:first-child {
    width: 100%;
    margin-right: 0;
  }
  .grid-4 > *, .grid-3 > * { margin-bottom: 22px; }
  .grid-4 > *:last-child, .grid-3 > *:last-child { margin-bottom: 0; }
  .destination-card, .destination-card:nth-child(5n) { width: calc(50% - 9px); margin-right: 18px; }
  .destination-card:nth-child(2n) { margin-right: 0; }
  .page-hero { padding: 45px 0; }
  .page-hero .hero-grid { gap: 32px; }
  .page-hero .ph.tall, .page-hero .photo.tall { min-height: 300px; }
  .section { padding: 55px 0; }
  .section-head { display: block; margin-bottom: 27px; }
  .section-head > p { margin-top: 8px; }
  .why-grid > div { padding: 0 0 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .why-grid > div:last-child { padding-bottom: 0; border-bottom: 0; }
  .experience-card, .experience-card:nth-child(n + 4) { width: calc(50% - 11px); }
  .review-rail > div:first-child { padding: 4px 0 4px 24px; }
  .trust > div { min-height: 0; padding: 26px 22px; }
  .trust > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .band { display: block; padding: 32px 26px; }
  .band .btn { margin-top: 22px; }
  .form { display: block; margin: 0; }
  .form-layout > .form, .form-layout > aside { width: 100%; }
  .form .field, .form .field.full { width: 100%; padding: 0 0 20px; }
  .interest-picker { margin: 0 0 20px; }
  .route { display: block; }
  .route time { display: block; width: auto; margin-bottom: 4px; }
  .planning-steps { flex-wrap: wrap; }
  .planning-steps li { width: 50%; min-height: 145px; }
  .planning-steps li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .planning-steps li:nth-child(4) { border-top: 1px solid var(--line); }
  .work-steps { flex-wrap: wrap; }
  .work-steps li { width: 33.333%; min-height: 160px; padding: 24px 20px; }
  .newsletter-inner { display: block; }
  .newsletter-form { width: 100%; margin-top: 22px; }
  .footer-grid { flex-wrap: wrap; gap: 32px; }
  .footer-grid > div, .footer-grid > div:first-child { width: calc(50% - 16px); }
  .footer-note { display: block; }
  .footer-note span { display: block; }
  .footer-note span + span { margin-top: 9px; }
}

@media (max-width: 440px) {
  body { font-size: 15px; }
  .logo { font-size: 19px; }
  h1, .hero-content h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .hero-content { padding-top: 48px; }
  .card h3 { min-height: 0; }
  .destination-card, .destination-card:nth-child(2n), .destination-card:nth-child(5n) { width: 100%; margin-right: 0; }
  .experience-card, .experience-card:nth-child(n + 4) { width: 100%; }
  .work-steps { display: block; }
  .work-steps li { width: 100%; min-height: 0; }
  .work-steps li + li { border-top: 1px solid var(--line); border-left: 0; }
  .interest-group, .interest-group:last-child { width: 100%; }
  .actions .btn { width: 100%; }
  .hero-trust, .assurance-strip { display: block; }
  .hero-trust li, .assurance-strip li { margin-top: 7px; }
  .planning-steps { display: block; }
  .planning-steps li { width: 100%; min-height: 0; }
  .planning-steps li + li { border-top: 1px solid var(--line); border-left: 0; }
  .newsletter-form { display: block; }
  .newsletter-form input, .newsletter-form .btn { width: 100%; border-radius: 3px; }
  .newsletter-form .btn { margin-top: 9px; }
  .footer-intro { display: block; }
  .footer-contact { align-items: flex-start; margin-top: 20px; }
  .footer-grid { display: block; }
  .footer-grid > div, .footer-grid > div:first-child { width: 100%; margin-top: 30px; }
  .meta-row span { width: 50%; margin-right: 0; padding-right: 8px; }
  .meta-row span + span::before { display: none; }
}

@media (max-width: 960px) {
  .city-choice-card,
  .experience-select-card,
  .package-card { width: calc(50% - 11px); margin-right: 22px; }
  .city-choice-card:nth-child(2n),
  .experience-select-card:nth-child(2n),
  .package-card:nth-child(2n) { margin-right: 0; }
  .arrival-feature__copy,
  .arrival-card { width: calc(50% - 11px); }
  .arrival-card:nth-child(3n) { margin-right: 22px; }
  .arrival-card:nth-child(2n) { margin-right: 0; }
  .arrival-steps > * { width: calc(50% - 9px); margin-right: 18px; }
  .arrival-steps > *:nth-child(2n) { margin-right: 0; }
  body[data-flow-page="home"] .work-steps { flex-wrap: wrap; }
  body[data-flow-page="home"] .work-steps li { width: 50%; }
  body[data-flow-page="home"] .work-steps li:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  body[data-flow-page="home"] .work-steps li:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .city-choice-card,
  .experience-select-card,
  .package-card { width: 100%; margin-right: 0; }
  .arrival-steps > * { width: 100%; margin: 0 0 18px; }
  .arrival-card,
  .arrival-card:nth-child(3n) { width: 100%; margin-right: 0; }
  .city-choice-card__media { min-height: 190px; }
  .package-card { padding: 21px; }
  .experience-dialog { width: calc(100% - 16px); max-width: none; max-height: calc(100dvh - 16px); margin: 8px; }
  .experience-dialog__panel { max-height: calc(100dvh - 16px); padding: 22px 18px; }
  .experience-dialog__actions { bottom: -22px; margin: 0 -18px -22px; padding: 20px 18px 22px; }
  .experience-dialog-backdrop { padding: 8px; }
  .selection-bar__inner { min-height: 0; flex-direction: column; align-items: stretch; gap: 9px; width: min(calc(100% - 24px), var(--max)); padding-block: 10px; }
  .selection-bar__summary { justify-content: space-between; }
  .selection-bar__actions { justify-content: stretch; }
  .selection-bar__actions > * { flex: 1; text-align: center; }
  body[data-flow-page="home"] .work-steps { display: block; }
  body[data-flow-page="home"] .work-steps li { width: 100%; min-height: 0; }
  body[data-flow-page="home"] .work-steps li + li { border-top: 1px solid var(--line); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .city-choice-card:hover,
  .experience-select-card:hover,
  .package-card:hover { transform: none; }
}

/* 首页 2026-08 定位改造：只作用于首页新增结构 */
.home-support-hero {
  min-height: 900px;
  color: var(--white);
  background: #202020;
}
.home-support-hero__media.photo {
  right: 0;
  left: auto;
  width: 49%;
  min-height: 900px;
  background: #202020;
}
.home-support-hero__media.photo img {
  opacity: 1;
  object-position: 52% center;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 22%);
  mask-image: linear-gradient(to right, transparent 0, #000 22%);
}
.home-support-hero__content {
  min-height: 900px;
  align-items: flex-start;
  padding-block: 72px;
  text-align: left;
}
.home-support-hero__copy { width: 58%; max-width: 720px; }
.home-support-hero__content h1 {
  max-width: 720px;
  font-size: clamp(46px, 4vw, 58px);
}
.home-support-hero__content .lead {
  max-width: 680px;
  color: #e0e0e0;
  font-size: clamp(17px, 1.65vw, 20px);
}
.home-support-hero__content .actions { justify-content: flex-start; margin-top: 20px; }
.home-support-hero__note {
  max-width: 610px;
  margin: 13px 0 0;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 1.5;
}
.home-support-hero__promise {
  max-width: 670px;
  margin-top: 24px;
  padding: 19px 0 0 22px;
  border-top: 1px solid #5b5b5b;
  border-left: 3px solid #e6a3a3;
  color: #e3e3e3;
  font-size: 14px;
  line-height: 1.55;
}
.home-support-hero__promise p { margin-bottom: 9px; }
.home-support-hero__promise p:last-child { margin-bottom: 0; }
.home-support-hero__promise strong { color: var(--white); }
.home-support-hero__promise-title {
  color: #ffb7b7;
  font-size: 16px;
  font-weight: 800;
}

.home-entry { border-bottom: 1px solid var(--line); }
.home-entry__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr);
  align-items: center;
  gap: 70px;
}
.home-entry__inner > div { max-width: 780px; }
.home-entry__inner h2 { font-size: clamp(29px, 3.7vw, 43px); }
.home-entry__inner p { font-size: 17px; }
.home-entry__sample { margin: 0; padding-left: 28px; border-left: 3px solid var(--red); }
.home-entry__sample a {
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  text-underline-offset: 4px;
}

.home-section-intro { max-width: 760px; margin-bottom: 38px; }
.home-companion { border-bottom: 1px solid var(--line); }
.home-companion__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}
.home-companion__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 31px 32px 31px 0;
  border-bottom: 1px solid var(--line);
}
.home-companion__list li:nth-child(odd) { border-right: 1px solid var(--line); }
.home-companion__list li:nth-child(even) { padding-left: 32px; }
.home-companion__list p { margin: 0; font-size: 17px; line-height: 1.6; }
.home-companion__number {
  padding-top: 3px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.home-companion__more { margin: 25px 0 0; font-weight: 800; }
.home-companion__more a { color: var(--red); text-underline-offset: 4px; }

/* 首页极简价格表与信任段 */
.home-prices { border-bottom: 1px solid var(--line); background: var(--soft); }
.home-prices__intro { max-width: 900px; }
.home-prices__intro p { max-width: 860px; font-size: 18px; }
.home-prices__scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}
.home-prices__scroll:focus-visible { outline: 3px solid rgba(173, 24, 24, .35); outline-offset: 3px; }
.home-prices__table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  text-align: left;
}
.home-prices__table th,
.home-prices__table td { padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.home-prices__table thead th {
  color: var(--white);
  background: #292929;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-prices__table tbody th {
  width: 25%;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}
.home-prices__table tbody td:nth-child(2) { width: 20%; white-space: nowrap; }
.home-prices__table tbody td:last-child { width: 55%; color: #414141; }
.home-prices__table tbody tr:last-child > * { border-bottom: 0; }
.home-prices__limits {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-top: 28px;
  border-block: 1px solid var(--ink);
}
.home-prices__limits p { margin: 0; padding: 23px 25px 23px 0; }
.home-prices__limits p + p { padding-left: 25px; border-left: 1px solid var(--line); }
.home-prices__credit { margin: 16px 0 0; color: var(--muted); font-size: 12px; }

.home-trust { color: var(--white); background: #292929; }
.home-trust__inner { display: grid; grid-template-columns: minmax(260px, .7fr) 1.3fr; align-items: start; gap: 70px; }
.home-trust__inner h2 { margin: 0; font-size: clamp(29px, 3.7vw, 43px); }
.home-trust__inner p { margin: 5px 0 0; color: #e5e5e5; font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }

.home-guides { border-bottom: 1px solid var(--line); background: var(--soft); }
.home-guides__inner { display: grid; grid-template-columns: minmax(260px, .8fr) 1.2fr; gap: 70px; }
.home-guides__inner h2 { margin: 0; font-size: clamp(29px, 3.7vw, 43px); }
.home-guides__links { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.home-guides__links li { border-bottom: 1px solid var(--line); }
.home-guides__links a {
  display: block;
  padding: 18px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.home-guides__links a:hover,
.home-guides__links a:focus-visible { color: var(--red-dark); }

.home-footer-entity { margin: 19px 0 0; color: #d4d4d4; font-size: 13px; }

.home-services { border-bottom: 1px solid var(--line); }
.home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}
.home-service {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 34px;
  border-bottom: 1px solid var(--line);
}
.home-service:nth-child(odd) { border-right: 1px solid var(--line); }
.home-service:nth-child(n + 3) { border-bottom: 0; }
.home-service p { max-width: 480px; margin: 24px 0 28px; font-size: 18px; line-height: 1.58; }
.home-service .card-link { margin-top: auto; }
.home-service__number {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.home-service--dark { color: var(--white); background: #292929; }
.home-service--accent { color: var(--white); background: var(--red); }
.home-service--dark .home-service__number,
.home-service--accent .home-service__number { color: #f4b9b9; }
.home-service--dark .card-link,
.home-service--accent .card-link { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.home-services + .section.soft { border-top: 0; background: var(--white); }

.home-final-cta { padding-block: 55px; color: var(--white); background: #292929; }
.home-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}
.home-final-cta__inner > div { max-width: 750px; }
.home-final-cta__inner h2 { font-size: clamp(29px, 3.7vw, 43px); }
.home-final-cta__inner p { margin: 0; color: #dedede; }
.home-final-cta__inner .btn { flex: 0 0 auto; }

@media (max-width: 960px) {
  .hero.home-support-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }
  .home-support-hero__content.hero-content {
    order: 1;
    min-height: 0;
    padding-block: 58px;
  }
  .home-support-hero__copy { width: 100%; max-width: 760px; }
  .home-support-hero__content h1 { font-size: clamp(44px, 7.5vw, 62px); }
  .home-support-hero__media.photo {
    position: relative;
    order: 2;
    width: 100%;
    height: 320px;
    min-height: 320px;
  }
  .home-support-hero__media.photo img {
    object-position: center 55%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .home-entry__inner,
  .home-guides__inner { grid-template-columns: 1fr; gap: 28px; }
  .home-entry__sample { padding: 18px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .home-services .section-head { display: flex; }
  .home-prices__limits { grid-template-columns: 1fr; }
  .home-prices__limits p { padding: 22px 0; }
  .home-prices__limits p + p { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .home-trust__inner { grid-template-columns: 1fr; gap: 22px; }
  .home-final-cta__inner { align-items: flex-start; }
}

@media (max-width: 680px) {
  .home-support-hero__content.hero-content { padding-block: 46px; }
  .home-support-hero__content h1 { font-size: 40px; }
  .home-support-hero__promise { padding-left: 17px; font-size: 13px; }
  .home-support-hero__media.photo { height: 235px; min-height: 235px; }
  .home-entry__inner p,
  .home-guides__links a { font-size: 16px; }
  .home-companion__list { display: block; }
  .home-companion__list li {
    grid-template-columns: 34px 1fr;
    gap: 13px;
    padding: 24px 0;
    border-right: 0;
  }
  .home-companion__list li:nth-child(odd) { border-right: 0; }
  .home-companion__list li:nth-child(even) { padding-left: 0; }
  .home-companion__list p { font-size: 16px; }
  .home-companion__more { margin-top: 20px; }
  .home-prices__intro p { font-size: 16px; }
  .home-prices__scroll { margin-right: -20px; }
  .home-prices__table th,
  .home-prices__table td { padding: 16px; }
  .home-trust__inner p { font-size: 18px; }
  .home-services .section-head { display: block; }
  .home-services__grid { display: block; }
  .home-service {
    min-height: 0;
    padding: 27px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-service:nth-child(odd),
  .home-service:nth-child(n + 3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-service:last-child { border-bottom: 0; }
  .home-service p { margin-block: 18px 24px; font-size: 16px; }
  .home-final-cta__inner { display: block; }
  .home-final-cta__inner .btn { margin-top: 25px; }
}

/* 面包屑 + 更新时间：对标站都有的两样，既给 Google 也给读者 */
.crumbs { margin: 0 0 10px; font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin: 0 6px; }
.updated { margin: 14px 0 0; font-size: 13px; color: var(--muted); }
