:root {
  color-scheme: light;
  --ink: #16202a;
  --muted: #5c6873;
  --line: #d9e0e5;
  --paper: #ffffff;
  --mist: #f4f7f8;
  --sea: #0d4f63;
  --sea-2: #0f6b7d;
  --gold: #d6a644;
  --gold-2: #f1cf73;
  --shadow: 0 18px 48px rgba(20, 34, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 224, 229, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sea);
  font-size: 14px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #33424f;
  font-size: 15px;
  white-space: nowrap;
}

.nav a {
  padding: 8px 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  align-items: end;
  overflow: hidden;
  background: #10242c;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 31, 0.82) 0%, rgba(10, 24, 31, 0.56) 42%, rgba(10, 24, 31, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 24, 31, 0.64), transparent 54%);
}

.hero-content {
  position: relative;
  width: min(760px, 88vw);
  padding: 0 0 12vh 6vw;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.button.submit {
  color: #15202a;
  background: var(--gold-2);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 86px 6vw;
}

.section-heading {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
}

.feature-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
}

.feature-card {
  min-height: 250px;
}

.card-kicker,
.price-badge {
  margin: 0;
  color: var(--sea-2) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card.service-highlight {
  color: #fff;
  background: var(--sea);
  border-color: var(--sea);
  box-shadow: var(--shadow);
}

.feature-card.service-highlight p {
  color: rgba(255, 255, 255, 0.84);
}

.feature-card.service-highlight .card-kicker,
.feature-card.service-highlight .text-link {
  color: var(--gold-2) !important;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--sea-2);
  font-weight: 900;
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sea);
  font-weight: 900;
}

.feature-card h3,
.price-card h3,
.steps h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.feature-card p,
.price-card p,
.steps p,
.booking-copy p,
.about-copy p,
.experience-feature p,
.note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.experiences-band {
  background: #fff;
}

.experience-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--mist);
}

.experience-feature img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.experience-feature div {
  padding: 34px 34px 34px 6px;
}

.experience-feature h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.photo-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #10242c;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.04);
}

.photo-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 16px 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(0deg, rgba(6, 16, 22, 0.78), rgba(6, 16, 22, 0));
}

.disney-band {
  color: #fff;
  background: #10242c;
}

.disney-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 34px;
  align-items: start;
}

.disney-copy {
  max-width: 640px;
}

.disney-copy h2 {
  margin-bottom: 18px;
}

.package-price {
  margin: 0;
  color: var(--gold-2);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
}

.package-price span,
.price span {
  font-size: 0.42em;
  font-weight: 800;
}

.package-intro {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.package-inclusions {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.package-inclusions li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
}

.package-inclusions li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold-2);
  content: "";
}

.attraction-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
}

.attraction-panel h3 {
  margin: 0 0 20px;
  color: var(--gold-2);
  font-size: 24px;
}

.attraction-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: attractions;
}

.attraction-list li {
  position: relative;
  min-height: 76px;
  padding: 16px 16px 16px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  counter-increment: attractions;
}

.attraction-list li::before {
  position: absolute;
  top: 16px;
  left: 14px;
  color: var(--gold-2);
  font-weight: 900;
  content: counter(attractions, decimal-leading-zero);
}

.vip-poster {
  display: block;
  width: 100%;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: start;
  background: #fff;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.about-copy h2 {
  margin-bottom: 4px;
}

.about-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--mist);
}

.about-panel h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.advantage-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advantage-list li {
  position: relative;
  padding-left: 22px;
  color: #384855;
  line-height: 1.6;
}

.advantage-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.testimonials-band {
  background: var(--mist);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 34, 45, 0.08);
}

.testimonial-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
}

.testimonial-copy {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.testimonial-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-copy .quote {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.price-band {
  background: var(--mist);
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  min-height: 234px;
}

.price-card.featured {
  color: #fff;
  background: var(--sea);
  border-color: var(--sea);
  box-shadow: var(--shadow);
}

.price-card.medical-card {
  border-color: rgba(15, 107, 125, 0.38);
  background: #eef8f9;
}

.featured .price-badge {
  color: var(--gold-2) !important;
}

.price-small {
  font-size: 30px;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.price {
  margin: 10px 0 16px !important;
  color: var(--ink) !important;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
}

.featured .price {
  color: var(--gold-2) !important;
}

.note {
  margin-top: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps li {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 42px;
  color: #fff;
  background: #10242c;
}

.booking-copy {
  max-width: 560px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #30414e;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd8df;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sea);
  font-weight: 800;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px 6vw;
  color: #5b6974;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer p {
  margin: 0;
}

.wechat-dialog {
  width: min(420px, 92vw);
  border: 0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.wechat-dialog::backdrop {
  background: rgba(8, 20, 28, 0.58);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid,
  .disney-layout,
  .about-band,
  .testimonial-grid,
  .experience-feature,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-feature div {
    padding: 0 28px 30px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .disney-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: 100%;
    padding: 0 6vw 58px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .feature-grid,
  .price-grid,
  .photo-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .attraction-list {
    grid-template-columns: 1fr;
  }

  .experience-feature img {
    height: 300px;
  }

  .section {
    padding: 62px 6vw;
  }

  .contact-band {
    gap: 28px;
  }

  .booking-form {
    padding: 22px;
  }
}
