:root {
  --bg: #f8f1e8;
  --surface: #fff9f2;
  --surface-soft: rgba(255, 249, 242, 0.74);
  --text: #2d2119;
  --muted: #6b5c53;
  --line: rgba(92, 67, 49, 0.14);
  --brand: #ff1200;
  --brand-deep: #cb190f;
  --gold: #c79b63;
  --shadow: 0 26px 70px rgba(76, 50, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at left top, rgba(255, 18, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #fcf6ee 0%, #f3e5d5 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

p {
  margin: 0;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: rgba(87, 58, 36, 0.2);
  backdrop-filter: blur(16px);
  color: #fff8f1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-wording {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-logo {
  width: min(188px, 19vw);
  min-width: 120px;
  height: auto;
  object-fit: contain;
}

.brand-sub {
  color: rgba(255, 248, 241, 0.78);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

.site-nav a {
  color: rgba(255, 248, 241, 0.86);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 248, 241, 0.14);
  color: #fff8f1;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.language-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.14);
}

.lang-btn {
  border: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 248, 241, 0.84);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.is-active {
  background: #fff7ef;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 82svh;
  padding: 92px 0 44px;
  color: #fff8f2;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 25, 15, 0.38), rgba(42, 25, 15, 0.6)),
    linear-gradient(90deg, rgba(53, 31, 18, 0.56), rgba(53, 31, 18, 0.18)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.hero-copy {
  max-width: 700px;
  padding: 42px 0 12px;
}

.eyebrow,
.section-tag,
.floating-label,
.step-no {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow {
  margin-bottom: 18px;
  color: #ffd9c6;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.95rem);
  line-height: 0.9;
  max-width: 11ch;
  white-space: pre-line;
}

html[lang="zh-Hans"] .hero h1,
html[lang="zh-Hant"] .hero h1 {
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  line-height: 1.06;
  max-width: none;
  width: 14ch;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-text {
  max-width: 48ch;
  margin-top: 16px;
  color: rgba(255, 248, 242, 0.84);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  color: #fff9f2;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.button-secondary {
  color: #fff8f2;
  border: 1px solid rgba(255, 248, 242, 0.32);
  background: rgba(255, 248, 242, 0.08);
}

.hero-aside {
  display: flex;
  justify-content: flex-end;
}

.floating-card {
  width: min(360px, 100%);
  padding: 20px 22px;
  border: 1px solid rgba(255, 248, 242, 0.2);
  border-radius: 30px;
  background: rgba(255, 248, 242, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-label {
  color: #ffd8c3;
}

.floating-card h2 {
  margin-top: 12px;
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  line-height: 1;
}

.intro,
.lifestyle,
.benefits,
.journey,
.contact {
  padding: 80px 0;
}

.intro-grid,
.journey-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.section-tag {
  color: var(--brand);
  margin-bottom: 14px;
}

.intro h2,
.section-heading h2,
.journey h2,
.contact h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
}

.intro-copy,
.journey-copy p,
.contact-copy p,
.benefit-card p,
.step p,
.photo-copy p,
.programme-card p,
.flow-card p,
.section-intro,
.package-text,
.package-list {
  color: var(--muted);
  line-height: 1.9;
}

.intro-copy-secondary {
  margin-top: 18px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}

.photo-card,
.benefit-card,
.contact-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.photo {
  min-height: 340px;
  background-position: center;
  background-size: cover;
}

.photo-one {
  background-image:
    linear-gradient(180deg, rgba(58, 35, 20, 0.06), rgba(58, 35, 20, 0.22)),
    url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1400&q=80");
}

.photo-two {
  background-image:
    linear-gradient(180deg, rgba(58, 35, 20, 0.06), rgba(58, 35, 20, 0.22)),
    url("https://images.unsplash.com/photo-1496417263034-38ec4f0b665a?auto=format&fit=crop&w=1100&q=80");
}

.photo-three {
  background-image:
    linear-gradient(180deg, rgba(58, 35, 20, 0.06), rgba(58, 35, 20, 0.22)),
    url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1100&q=80");
}

.photo-copy {
  padding: 24px;
}

.photo-copy h3 {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.section-heading {
  margin-bottom: 28px;
}

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

.benefit-card {
  padding: 26px;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 18, 0, 0.08);
  color: var(--brand);
}

.benefit-card h3 {
  margin: 18px 0 10px;
  font-size: 1.85rem;
}

.programme,
.packages,
.flow-notes {
  padding: 80px 0;
}

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

.programme-card,
.flow-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 242, 0.82);
  box-shadow: var(--shadow);
}

.programme-card,
.flow-card {
  padding: 26px;
}

.programme-card h3,
.flow-card h3,
.package-card h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.section-intro {
  max-width: 70ch;
  margin-top: 14px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-top: 4px solid transparent;
  height: 100%;
}

.package-card-featured {
  background: linear-gradient(180deg, rgba(255, 247, 240, 0.95), rgba(245, 225, 206, 0.92));
}

.package-card-silver {
  border-top-color: #a8a1a1;
}

.package-card-gold {
  border-top-color: #c79b63;
}

.package-card-platinum {
  border-top-color: #7d8da1;
}

.package-card-special {
  border-top-color: #b66a4d;
}

.package-kicker {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.package-card-silver .package-kicker {
  color: #7f7777;
}

.package-card-gold .package-kicker {
  color: #b88447;
}

.package-card-platinum .package-kicker {
  color: #627488;
}

.package-card-special .package-kicker {
  color: #a2553d;
}

.package-text {
  margin-top: 12px;
}

.package-list {
  margin: 18px 0 0;
  padding-left: 20px;
  flex: 1;
}

.package-list li + li {
  margin-top: 10px;
}

.journey {
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.4), rgba(255, 249, 242, 0.7));
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.45);
}

.step:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.step:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.step-no {
  color: var(--brand);
}

.step h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.contact-panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(241, 225, 206, 0.9));
}

.contact-details {
  align-self: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.84);
}

.contact-details p + p {
  margin-top: 12px;
}

.contact-details a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 18, 0, 0.35);
  text-underline-offset: 3px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(87, 58, 36, 0.82);
  color: #fff8f1;
  box-shadow: 0 12px 24px rgba(45, 33, 25, 0.18);
  backdrop-filter: blur(10px);
}

@media (max-width: 1100px) {
  .site-header,
  .hero-layout,
  .intro-grid,
  .lifestyle-grid,
  .benefit-grid,
  .programme-grid,
  .package-grid,
  .journey-grid,
  .flow-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-copy {
    padding-top: 108px;
  }

  .hero-aside {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    width: min(100% - 20px, 1240px);
    padding: 12px 14px;
  }

  .brand {
    flex-wrap: wrap;
  }

  .brand-logo {
    width: min(180px, 52vw);
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
    padding: 10px 8px 2px;
    border-top: 1px solid rgba(255, 248, 241, 0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .language-switcher {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  html[lang="zh-Hans"] .hero h1,
  html[lang="zh-Hant"] .hero h1 {
    font-size: clamp(1.55rem, 8.2vw, 2.25rem);
    line-height: 1.08;
    max-width: none;
    width: 100%;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .button {
    width: 100%;
  }

  .intro,
  .lifestyle,
  .benefits,
  .programme,
  .packages,
  .journey,
  .flow-notes,
  .contact {
    padding: 54px 0;
  }

  .photo {
    min-height: 240px;
  }

  .photo-copy,
  .benefit-card,
  .contact-panel {
    padding: 20px;
  }
}
