:root {
  --bg: #071624;
  --bg-deep: #03101d;
  --bg-soft: #0d2237;
  --panel: rgba(12, 30, 49, 0.72);
  --panel-strong: rgba(7, 22, 36, 0.9);
  --panel-solid: #0f2338;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(213, 183, 126, 0.44);
  --text: #f8fbff;
  --muted: #b7c7d9;
  --muted-strong: #dce8f6;
  --accent: #d5b77e;
  --accent-soft: rgba(213, 183, 126, 0.16);
  --surface: #f7fbff;
  --surface-text: #0c2234;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --header-height: 90px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #061321 0%, #08192a 32%, #0a1d31 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.site-bg-home {
  background:
    radial-gradient(circle at 20% 15%, rgba(58, 121, 202, 0.25), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(19, 84, 145, 0.38), transparent 24%),
    radial-gradient(circle at 76% 78%, rgba(121, 163, 211, 0.12), transparent 22%),
    linear-gradient(180deg, #071624 0%, #091a2b 38%, #06111d 100%);
}

.site-bg-home::before {
  top: 14%;
  left: -14%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(213, 183, 126, 0.12), transparent 70%);
}

.site-bg-home::after {
  right: -10%;
  bottom: 6%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(87, 145, 230, 0.16), transparent 68%);
}

.site-bg-detail {
  background:
    radial-gradient(circle at 72% 18%, rgba(70, 116, 186, 0.28), transparent 24%),
    radial-gradient(circle at 18% 38%, rgba(213, 183, 126, 0.08), transparent 20%),
    linear-gradient(180deg, #06111d 0%, #0a1f33 42%, #081624 100%);
}

.site-bg-detail::before {
  top: 4rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(213, 183, 126, 0.13), transparent 70%);
}

.site-bg-detail::after {
  left: -8rem;
  bottom: 10%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(90, 153, 232, 0.12), transparent 70%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(4, 14, 24, 0.88), rgba(4, 14, 24, 0.68));
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg);
  background:
    linear-gradient(135deg, rgba(255, 241, 207, 0.95), rgba(213, 183, 126, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 24px rgba(0, 0, 0, 0.16);
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ghost-link {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

body .site-nav a.is-active {
  color: var(--bg);
  border-color: rgba(245, 221, 176, 0.8);
  background: linear-gradient(135deg, #f5ddb0, #d5b77e);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.site-nav a:hover,
.ghost-link:hover,
.text-link:hover {
  color: #fff;
}

.site-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(213, 183, 126, 0.42);
  background: rgba(213, 183, 126, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-actions-compact {
  gap: 0.45rem;
}

.lang-switch {
  display: inline-flex;
  padding: 0.28rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.lang-switch-compact {
  padding: 0.18rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.lang-btn {
  border: 0;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  color: var(--muted-strong);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-switch-compact .lang-btn {
  min-width: 44px;
  padding: 0.36rem 0.6rem;
  font-size: 0.78rem;
  line-height: 1;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.lang-btn.is-active {
  background: linear-gradient(135deg, rgba(213, 183, 126, 0.18), rgba(255, 255, 255, 0.12));
  color: #fff;
}

.section {
  padding: 4.5rem 0;
}

.hero-section,
.detail-hero {
  padding: 3.8rem 0 2.4rem;
}

.hero-layout,
.detail-hero-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.hero-layout {
  align-items: stretch;
}

.detail-hero-card {
  align-items: center;
}

.glass-panel,
.panel-soft,
.panel-solid {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.glass-panel {
  padding: 2.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.hero-copy,
.detail-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-soft {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 29, 47, 0.72);
}

.panel-solid {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(213, 183, 126, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(17, 37, 60, 0.98), rgba(11, 29, 46, 0.98));
}

.hero-kicker,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Serif SC", Georgia, serif;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

h3 {
  font-size: 1.08rem;
}

.hero-description,
.section-intro,
.booking-copy,
.detail-intro,
.footer-brand p {
  color: var(--muted);
}

.hero-description {
  font-size: 1.05rem;
  margin: 1.1rem 0 0;
  max-width: 56ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-btn {
  color: var(--bg);
  background: linear-gradient(135deg, #f5ddb0, #d5b77e);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.secondary-btn {
  color: #fff;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.primary-btn:hover,
.secondary-btn:hover,
.featured-card:hover,
.collection-card:hover,
.promise-card:hover,
.pricing-option:hover,
.mini-card:hover,
.moment-card:hover {
  transform: translateY(-3px);
}

.full-width {
  width: 100%;
}

.hero-pills,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.55rem;
}

.hero-pill,
.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.92rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual,
.detail-hero-media {
  position: relative;
  min-height: 570px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-copy {
  min-height: 570px;
  height: 100%;
}

.hero-slider,
.detail-hero-media {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 700ms ease, transform 700ms ease;
  transform: scale(1.04);
}

.hero-slide::after,
.detail-hero-media::after,
.editorial-photo::after,
.card-image::after,
.showcase-image::after,
.moment-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 18, 0.06), rgba(3, 12, 22, 0.48));
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-caption {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.hero-slide-meta {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-indicators {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: inline-flex;
  gap: 0.45rem;
}

.hero-indicators button {
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.36);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-indicators button.is-active {
  transform: scale(1.25);
  background: var(--accent);
}

.surface-strip {
  padding-top: 1rem;
}

.stats-grid,
.promise-grid,
.featured-grid,
.collection-grid,
.pricing-card-grid,
.moments-grid {
  display: grid;
  gap: 1.25rem;
}

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

.stat-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
}

.stat-caption {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.section-head.compact {
  margin-bottom: 1.4rem;
}

.section-intro {
  max-width: 36rem;
}

.card-grid {
  display: grid;
}

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

.featured-card,
.collection-card,
.promise-card,
.pricing-option,
.mini-card,
.moment-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(12, 30, 49, 0.84);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.featured-card:hover,
.collection-card:hover,
.promise-card:hover,
.pricing-option:hover,
.mini-card:hover,
.moment-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.24);
}

.card-image,
.showcase-image,
.moment-image,
.editorial-photo,
.detail-hero-media {
  position: relative;
  background-position: center;
  background-size: cover;
}

.card-image {
  min-height: 260px;
}

.card-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--bg);
  background: linear-gradient(135deg, #f6e2b5, #d5b77e);
}

.card-body {
  padding: 1.2rem 1.2rem 1.3rem;
}

.card-topline,
.card-meta,
.price-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

.card-topline {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-body h3 {
  font-size: 1.32rem;
}

.card-body p,
.collection-card p,
.promise-card p,
.pricing-option p,
.mini-card p,
.moment-card p {
  color: var(--muted);
}

.card-meta {
  align-items: center;
  margin-top: 1rem;
}

.price-text,
.detail-subhead {
  color: var(--muted-strong);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 700;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 1.4rem;
  align-items: stretch;
}

.editorial-photo {
  min-height: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background-image:
    linear-gradient(180deg, rgba(5, 18, 31, 0.12), rgba(5, 18, 31, 0.56)),
    url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1200&q=80");
}

.editorial-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.editorial-point {
  display: flex;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.editorial-point strong {
  font-size: 0.95rem;
}

.editorial-point span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  font-weight: 800;
}

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

.collection-card {
  padding: 1.25rem;
}

.collection-card .collection-image {
  min-height: 220px;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background-position: center;
  background-size: cover;
}

.collection-card h3 {
  margin-bottom: 0.6rem;
}

.collection-card .tag-row {
  margin-top: 1rem;
}

.promise-section {
  padding-top: 2.5rem;
}

.promise-shell {
  padding: 2.2rem;
}

.promise-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.promise-card {
  padding: 1.4rem;
}

.promise-index {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at left top, rgba(213, 183, 126, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(9, 28, 45, 0.96), rgba(14, 35, 54, 0.86));
  box-shadow: var(--shadow);
}

.cta-card .cta-actions {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  min-width: 248px;
}

.cta-card .primary-btn,
.cta-card .secondary-btn {
  width: 100%;
  min-height: 58px;
  padding: 0.95rem 1.2rem;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  justify-content: center;
}

.cta-card .secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(213, 183, 126, 0.3);
}

.site-footer {
  position: relative;
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(4, 13, 24, 0), rgba(4, 13, 24, 0.82)),
    radial-gradient(circle at top left, rgba(213, 183, 126, 0.08), transparent 24%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  text-align: center;
  justify-items: center;
}

.footer-brand-link {
  margin-bottom: 1rem;
  justify-content: center;
}

.footer-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
  justify-items: center;
}

.footer-list a {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

.detail-hero-media {
  min-height: 620px;
}

.detail-hero-copy {
  max-width: none;
  min-height: 620px;
  justify-self: stretch;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--bg);
  font-weight: 800;
  background: linear-gradient(135deg, #f5ddb0, #d5b77e);
}

.detail-layout-section {
  padding-top: 2rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
  gap: 1.5rem;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 1.5rem;
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  z-index: 10;
  scrollbar-width: none;
  background:
    linear-gradient(180deg, rgba(18, 42, 66, 0.98), rgba(12, 31, 49, 0.98));
  border-color: rgba(213, 183, 126, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
}

.detail-tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--muted-strong);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.detail-tabs a:hover {
  transform: translateY(-1px);
  border-color: rgba(213, 183, 126, 0.42);
  background: rgba(213, 183, 126, 0.12);
}

.detail-tabs a.is-active {
  color: var(--bg);
  border-color: rgba(245, 221, 176, 0.8);
  background: linear-gradient(135deg, #f5ddb0, #d5b77e);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.detail-section {
  display: grid;
  gap: 1.35rem;
  scroll-margin-top: calc(var(--header-height) + 120px);
}

#featured,
#collections,
#footer,
#home {
  scroll-margin-top: calc(var(--header-height) + 36px);
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.fact-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.fact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 0.45rem;
}

.fact-card strong {
  font-size: 1rem;
  color: #fff;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.highlight-item,
.bullet-item {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.highlight-item::before,
.bullet-item::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(213, 183, 126, 0.12);
}

.timeline-grid {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(213, 183, 126, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.03);
}

.timeline-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.timeline-day {
  color: var(--accent);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.timeline-title {
  margin-top: 0.3rem;
  font-size: 1.36rem;
}

.timeline-note {
  max-width: 18rem;
  color: var(--muted);
}

.timeline-items {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-time {
  font-weight: 800;
  color: var(--muted-strong);
}

.timeline-body strong {
  display: block;
  margin-bottom: 0.2rem;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
}

.dual-showcase {
  display: grid;
  gap: 1.4rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.mini-card {
  padding: 0.85rem;
}

.mini-card.no-image {
  padding: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(213, 183, 126, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(16, 37, 58, 0.96), rgba(11, 28, 44, 0.96));
}

.showcase-image {
  min-height: 200px;
  border-radius: var(--radius-md);
}

.showcase-copy {
  padding: 0.95rem 0.25rem 0.15rem;
}

.mini-card.no-image .showcase-copy {
  padding: 0;
}

.showcase-copy h4 {
  margin: 0 0 0.35rem;
  font-size: 1.06rem;
}

.showcase-copy p {
  margin: 0;
}

.detail-subhead {
  font-size: 1.18rem;
}

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

.subpanel {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.bullet-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.pricing-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.5rem;
}

.pricing-option {
  padding: 1.35rem;
}

.price-label {
  align-items: center;
  margin-bottom: 1rem;
}

.pricing-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.pricing-option ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
}

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

.moment-card {
  padding: 0.8rem;
}

.moment-image {
  min-height: 210px;
  border-radius: var(--radius-md);
}

.moment-copy {
  padding: 0.95rem 0.2rem 0.1rem;
}

.moment-copy h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.moment-copy p {
  margin: 0;
}

.detail-aside {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.booking-card {
  display: grid;
  gap: 1.2rem;
}

.booking-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.booking-meta > div,
.transport-card,
.consultant-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.meta-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.transport-card h3 {
  margin-bottom: 0.85rem;
}

.transport-list {
  display: grid;
  gap: 0.85rem;
}

.transport-item {
  display: grid;
  gap: 0.2rem;
}

.transport-item strong {
  font-size: 0.98rem;
}

.transport-item span,
.consultant-card p {
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-layout,
  .detail-hero-card,
  .detail-layout,
  .editorial-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .detail-hero-copy {
    justify-self: stretch;
  }

  .featured-grid,
  .collection-grid,
  .promise-grid,
  .moments-grid,
  .footer-grid,
  .stats-grid,
  .detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-aside {
    position: static;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    min-height: 78px;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.7rem 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 0.95rem;
    padding: 0.55rem;
    padding-bottom: 0.55rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar,
  .detail-tabs::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  body[data-page="detail"] .site-nav a[href="index.html"] {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-section,
  .detail-hero {
    padding-top: 2rem;
  }

  .hero-layout,
  .detail-hero-card {
    gap: 1rem;
  }

  .detail-hero-copy {
    order: 1;
    min-height: auto;
  }

  .detail-hero-media {
    order: 2;
  }

  .hero-copy,
  .hero-visual,
  .detail-hero-media {
    min-height: 430px;
  }

  .featured-grid,
  .collection-grid,
  .promise-grid,
  .pricing-card-grid,
  .moments-grid,
  .mini-grid,
  .inclusions-grid,
  .highlight-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-facts,
  .stats-grid,
  .booking-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.55;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 3.4rem 0;
  }

  .site-footer {
    margin-top: 2.4rem;
    padding: 2.2rem 0 1.1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.9rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    display: none;
  }

  .footer-grid h3 {
    font-size: 0.88rem;
  }

  .footer-list {
    margin-top: 0.55rem;
    gap: 0.4rem;
    font-size: 0.8rem;
  }

  .header-inner {
    gap: 0.7rem;
  }

  .brand-copy em {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .glass-panel,
  .panel-soft,
  .panel-solid,
  .promise-shell,
  .cta-card {
    padding: 1.4rem;
  }

  .hero-copy h1,
  .detail-hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-visual,
  .detail-hero-media {
    min-height: 360px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-slide-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
    align-items: start;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .stats-grid,
  .detail-facts,
  .booking-meta {
    grid-template-columns: 1fr;
  }

  .section-head,
  .section-head.compact,
  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }

  .footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    gap: 0.35rem;
    font-size: 0.76rem;
    justify-content: center;
    text-align: center;
  }

  .timeline-card-head {
    flex-direction: column;
  }

}
