:root {
  --white: #fff8ed;
  --muted: rgba(255, 248, 237, 0.76);
  --dark: #071612;
  --deep-green: #10231f;
  --deep-green-soft: #183a32;
  --ink: #151515;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--dark);
  font-family: "Inter", sans-serif;
}

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

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

.page {
  min-height: 100svh;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(88px, 10vw, 124px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 72px);
}

.hero-carousel,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: -2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.72) contrast(1.06) saturate(0.92);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1400ms ease, transform 7600ms ease;
}

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

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 22, 18, 0.64) 0%, rgba(7, 22, 18, 0.15) 30%, rgba(7, 22, 18, 0.2) 68%, rgba(7, 22, 18, 0.5) 100%),
    radial-gradient(circle at 50% 52%, rgba(7, 22, 18, 0.04), rgba(7, 22, 18, 0.42) 72%);
}

.hero-content {
  width: min(1080px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  text-align: center;
}

.hero-content > h1 {
  color: #d6ad68;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(36px, 4.8vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
  text-wrap: nowrap;
}

h1 span {
  display: inline;
  white-space: nowrap;
}

h1 span + span {
  margin-left: 0.16em;
}

main h1,
main h2 {
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  text-wrap: nowrap;
}

.fit-title {
  width: 100%;
  display: block;
  line-height: 1.12 !important;
  white-space: nowrap !important;
  text-wrap: nowrap !important;
}

.subtitle {
  max-width: min(820px, 92vw);
  margin: clamp(24px, 2.2vw, 32px) auto 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-discover {
  position: absolute;
  left: 50%;
  bottom: clamp(36px, 5vh, 56px);
  width: 48px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  transform: translateX(-50%);
  transition: opacity 180ms ease;
  touch-action: manipulation;
}

.hero-discover span {
  position: relative;
  width: 2px;
  height: 74px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(228, 196, 127, 0.34), rgba(214, 173, 104, 0.1));
  box-shadow: 0 0 12px rgba(214, 173, 104, 0.16);
}

.hero-discover span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 34px;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 0%, #e4c47f 42%, #f3d99c 58%, transparent 100%);
  box-shadow: 0 0 10px rgba(228, 196, 127, 0.62);
  transform: translateY(-38px);
  animation: hero-line-run 1.75s linear infinite;
}

@keyframes hero-line-run {
  0% {
    transform: translateY(-38px);
  }

  100% {
    transform: translateY(82px);
  }
}

.services-section {
  scroll-margin-top: 118px;
  padding: clamp(64px, 5vw, 82px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(197, 151, 70, 0.14), transparent 34%),
    radial-gradient(circle at 88% 24%, rgba(28, 24, 18, 0.1), transparent 32%),
    linear-gradient(180deg, #fbf8f1 0%, #eee8dc 100%);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto clamp(42px, 5vw, 72px);
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(18px, 4.1vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.section-heading p {
  margin: 20px auto 0;
  color: rgba(21, 21, 21, 0.42);
  font-size: clamp(7px, 2.05vw, 18px);
  font-weight: 560;
  line-height: 1.4;
  white-space: nowrap;
}

.service-cards {
  width: min(860px, 92%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4.4vw, 54px);
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 342px;
  padding: clamp(24px, 2.5vw, 31px);
  overflow: hidden;
  border: 1px solid rgba(201, 154, 74, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 251, 232, 0.86), transparent 42%),
    linear-gradient(145deg, rgba(246, 225, 177, 0.74), rgba(181, 132, 53, 0.28)),
    rgba(255, 246, 222, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(127, 89, 27, 0.1),
    0 18px 42px rgba(104, 75, 27, 0.11),
    0 40px 88px rgba(104, 75, 27, 0.13);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

.service-card-featured {
  color: #fff8ea;
  border-color: rgba(218, 177, 101, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(218, 177, 101, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(24, 58, 50, 0.96), rgba(7, 22, 18, 0.94)),
    rgba(7, 22, 18, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.18),
    inset 0 -1px 0 rgba(218, 177, 101, 0.12),
    0 20px 46px rgba(7, 22, 18, 0.22),
    0 46px 96px rgba(7, 22, 18, 0.28);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 246, 216, 0.12) 34%, transparent 58%);
  opacity: 0.78;
}

.service-card-featured::before {
  background:
    linear-gradient(128deg, rgba(255, 248, 234, 0.16) 0%, rgba(218, 177, 101, 0.08) 34%, transparent 58%);
  opacity: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 23px;
  box-shadow: inset 0 0 0 1px rgba(255, 251, 232, 0.2);
}

.service-card-featured::after {
  box-shadow: inset 0 0 0 1px rgba(218, 177, 101, 0.14);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(14px, 1.8vw, 22px);
}

.service-type {
  margin: 0;
  color: rgba(84, 57, 16, 0.62);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card-featured .service-type {
  color: rgba(218, 177, 101, 0.78);
}

.service-index {
  color: rgba(114, 78, 20, 0.2);
  font-family: "Cinzel", "Noto Serif SC", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 0.8;
}

.service-card-featured .service-index {
  color: rgba(218, 177, 101, 0.26);
}

.service-card h3 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-wrap: nowrap;
}

.service-card-featured h3 {
  color: #fff8ea;
}

.service-summary {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(55, 39, 16, 0.66);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 620;
  line-height: 1.5;
}

.service-card-featured .service-summary {
  color: rgba(255, 248, 234, 0.68);
}

.service-meta {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: clamp(22px, 2.4vw, 30px);
}

.service-meta div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.service-meta span {
  color: rgba(84, 57, 16, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-meta p {
  margin: 0;
  color: rgba(45, 33, 16, 0.76);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 620;
  line-height: 1.45;
}

.service-card-featured .service-meta span {
  color: rgba(218, 177, 101, 0.72);
}

.service-card-featured .service-meta p {
  color: rgba(255, 248, 234, 0.78);
}

.service-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 23px;
  padding: 0 24px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 248, 232, 0.74);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(35, 31, 24, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  touch-action: manipulation;
}

.service-button-primary {
  color: #151515;
  border-color: rgba(255, 248, 234, 0.68);
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.98) 0%, rgba(221, 190, 117, 0.96) 100%);
}

.service-button:active {
  transform: scale(0.985);
  box-shadow: 0 8px 22px rgba(35, 31, 24, 0.08);
}

.service-button:focus-visible {
  outline: 3px solid rgba(196, 150, 72, 0.34);
  outline-offset: 4px;
}

.service-helper {
  width: min(680px, 100%);
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: clamp(54px, 6vw, 78px) auto 0;
  padding: 0 18px;
  text-align: center;
}

.service-helper p {
  margin: 0;
  color: rgba(21, 21, 21, 0.46);
  font-size: 16px;
  font-weight: 650;
}

.service-helper a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--deep-green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(21, 21, 21, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  touch-action: manipulation;
}

.service-helper a:active {
  transform: scale(0.985);
  background: var(--deep-green-soft);
  box-shadow: 0 8px 22px rgba(21, 21, 21, 0.18);
}

.service-helper a:focus-visible {
  outline: 3px solid rgba(196, 150, 72, 0.34);
  outline-offset: 4px;
}

.destinations-section {
  padding: clamp(88px, 8vw, 120px) clamp(18px, 5vw, 72px) clamp(82px, 7.5vw, 114px);
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(31, 25, 18, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f2e9 0%, #fbf8f1 100%);
}

.destinations-heading {
  width: min(1120px, 100%);
  margin: 0 auto clamp(54px, 6vw, 82px);
  text-align: center;
}

.destinations-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(20px, 4.15vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.destinations-heading p {
  margin: 18px auto 0;
  color: rgba(21, 21, 21, 0.46);
  font-size: clamp(9px, 1.65vw, 19px);
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.destination-scroll {
  position: relative;
  width: min(1220px, 94%);
  margin: 0 auto;
}

.destination-scroll::before,
.destination-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 18px;
  z-index: 3;
  width: 34px;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.destination-scroll::before {
  left: 0;
  background: linear-gradient(90deg, #f7f2e9 0%, rgba(247, 242, 233, 0) 100%);
}

.destination-scroll::after {
  right: 0;
  background: linear-gradient(270deg, #f7f2e9 0%, rgba(247, 242, 233, 0) 100%);
}

.destination-scroll.is-at-start::before,
.destination-scroll.is-at-end::after {
  opacity: 0;
}

.destination-grid {
  display: flex;
  gap: clamp(20px, 2.4vw, 28px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 4px 18px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(118, 82, 28, 0.55) rgba(21, 21, 21, 0.08);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.destination-grid::-webkit-scrollbar {
  height: 9px;
}

.destination-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.08);
}

.destination-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(151, 106, 36, 0.78), rgba(214, 176, 96, 0.86));
}

.destination-card {
  position: relative;
  flex: 0 0 clamp(290px, 27vw, 350px);
  min-height: clamp(330px, 29vw, 390px);
  display: block;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--deep-green);
  box-shadow: 0 20px 54px rgba(16, 35, 31, 0.14);
  touch-action: manipulation;
  scroll-snap-align: center;
}

.destination-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 234, 0.72);
  border-radius: 50%;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.96) 0%, rgba(217, 179, 99, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 34px rgba(20, 15, 8, 0.22);
  cursor: pointer;
  font-size: 0;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.destination-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--deep-green);
  border-right: 2px solid var(--deep-green);
}

.destination-arrow-left {
  left: 14px;
}

.destination-arrow-left::before {
  transform: rotate(-135deg);
}

.destination-arrow-right {
  right: 14px;
}

.destination-arrow-right::before {
  transform: rotate(45deg);
}

.destination-scroll.is-at-start .destination-arrow-left,
.destination-scroll.is-at-end .destination-arrow-right {
  opacity: 0;
  pointer-events: none;
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.01);
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 22, 18, 0.06) 0%, rgba(7, 22, 18, 0.04) 48%, rgba(7, 22, 18, 0.38) 100%),
    radial-gradient(circle at 50% 48%, rgba(7, 22, 18, 0.02), rgba(7, 22, 18, 0.24));
  transition: background 300ms ease;
}

.destination-card-body {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding: 22px;
}

.destination-card h3 {
  position: absolute;
  top: 50%;
  right: 22px;
  left: 22px;
  margin: 0;
  color: #fff8ea;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(24px, 2.35vw, 36px);
  font-weight: 900;
  line-height: 0.98;
  text-align: center;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  transform: translateY(-50%);
  transition: transform 300ms ease;
}

.destination-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 7px;
  padding: 62px 21px 21px;
  background:
    linear-gradient(180deg, rgba(7, 22, 18, 0) 0%, rgba(16, 35, 31, 0.76) 48%, rgba(7, 22, 18, 0.98) 100%);
  opacity: 0;
  transform: translateY(48%);
  transition:
    opacity 280ms ease,
    transform 320ms ease;
}

.destination-info p {
  margin: 0;
  color: rgba(255, 248, 234, 0.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

.destination-info span,
.destination-info em {
  color: rgba(255, 248, 234, 0.68);
  font-size: 14.5px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.destination-card:active {
  transform: scale(0.99);
}

.experiences-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 9vw, 148px) clamp(18px, 5vw, 72px);
  color: #f8efdf;
  background:
    radial-gradient(circle at 14% 0%, rgba(185, 139, 66, 0.18), transparent 30%),
    radial-gradient(circle at 92% 42%, rgba(71, 119, 104, 0.2), transparent 34%),
    linear-gradient(145deg, #183a32 0%, #071612 54%, #10231f 100%);
}

.experiences-section::before {
  content: "";
  position: absolute;
  inset: -24% -12%;
  z-index: -1;
  opacity: 0.55;
  background:
    linear-gradient(112deg, transparent 22%, rgba(218, 177, 101, 0.07) 48%, transparent 70%),
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.42) 74%);
  filter: blur(28px);
  pointer-events: none;
}

.experiences-heading {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 20px 48px;
  margin: 0 auto clamp(46px, 5vw, 72px);
  text-align: left;
}

.experiences-heading p {
  grid-column: 1 / -1;
  margin: 0;
  color: #d6ad68;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.experiences-heading h2 {
  min-width: 0;
  margin: 0;
  color: #fff7e9;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(27px, 2.55vw, 39px);
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.experiences-heading span {
  max-width: 390px;
  margin: 0 0 2px;
  color: rgba(255, 247, 233, 0.58);
  font-size: clamp(13px, 1.18vw, 16px);
  font-weight: 560;
  line-height: 1.65;
}

.experience-filters {
  display: none;
}

.experience-bento {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(250px, 23vw, 330px);
  grid-auto-flow: dense;
  gap: clamp(14px, 1.7vw, 24px);
  margin: 0 auto;
}

.experience-bento.is-collapsed .experience-card:nth-child(n + 5) {
  display: none;
}

.experience-card {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  display: block;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(218, 177, 101, 0.2);
  border-radius: 12px;
  color: #fff7e9;
  background: var(--deep-green);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  text-decoration: none;
}

.experience-card-large {
  grid-column: span 2;
}

.experience-card-tall {
  grid-column: span 1;
}

.experience-card-wide {
  grid-column: span 2;
}

.experience-card.is-hidden {
  display: none;
}

.experiences-toggle {
  min-height: 48px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 0;
  padding: 0 24px;
  border: 1px solid rgba(218, 177, 101, 0.58);
  border-radius: 999px;
  color: #f4d58d;
  background: rgba(255, 247, 233, 0.045);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.experiences-toggle[hidden] {
  display: none;
}

.experiences-toggle:hover,
.experiences-toggle:focus-visible {
  color: #17110a;
  background: #d6ad68;
}

.experiences-toggle:active {
  transform: translateY(1px);
}

.experiences-toggle-icon {
  width: 8px;
  height: 8px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform 180ms ease;
}

.experiences-toggle[aria-expanded="true"] .experiences-toggle-icon {
  transform: translateY(2px) rotate(225deg);
}

.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.84);
  transform: scale(1.01);
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 22, 18, 0.04) 0%, rgba(7, 22, 18, 0.06) 46%, rgba(7, 22, 18, 0.9) 100%),
    linear-gradient(90deg, rgba(7, 22, 18, 0.18), transparent 48%);
  transition: background 280ms ease;
  pointer-events: none;
}

.experience-copy {
  position: absolute;
  right: clamp(20px, 2vw, 30px);
  bottom: clamp(20px, 2vw, 28px);
  left: clamp(20px, 2vw, 30px);
  z-index: 2;
  max-width: calc(100% - 40px);
  padding-top: 18px;
  border-top: 1px solid rgba(218, 177, 101, 0.56);
  text-align: left;
  transition:
    border-color 260ms ease,
    transform 260ms ease;
}

.experience-copy h3 {
  margin: 0;
  color: #fff7e9;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.experience-copy p {
  display: none;
}

.experience-details {
  display: none;
}

.experiences-cta {
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: clamp(40px, 5vw, 68px) auto 0;
  text-align: center;
}

.experiences-cta p {
  margin: 0;
  color: rgba(255, 247, 233, 0.56);
  font-size: 18px;
  font-weight: 560;
}

.experiences-cta a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 1px solid rgba(218, 177, 101, 0.74);
  border-radius: 999px;
  color: #17110a;
  background: linear-gradient(180deg, #e4c47f 0%, #bd9148 100%);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.city-page {
  color: var(--ink);
  background: #f8f3ea;
}

.city-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(108px, 12vw, 148px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 96px);
}

.city-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.04) saturate(0.94);
}

.city-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 22, 18, 0.58) 0%, rgba(7, 22, 18, 0.1) 35%, rgba(7, 22, 18, 0.68) 100%),
    radial-gradient(circle at 50% 62%, rgba(7, 22, 18, 0.02), rgba(7, 22, 18, 0.44) 74%);
}

.city-hero-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.city-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: clamp(28px, 4vw, 48px);
  padding: 0 18px;
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 999px;
  background: rgba(7, 22, 18, 0.24);
  color: rgba(255, 248, 237, 0.84);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.city-hero h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(46px, 6.5vw, 106px);
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
}

.city-hero p {
  width: min(860px, 100%);
  margin: clamp(24px, 3vw, 40px) auto 0;
  color: rgba(255, 248, 237, 0.82);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 620;
  line-height: 1.36;
}

.city-content {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 0%, rgba(193, 149, 74, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf8f1 0%, #f0eadf 100%);
}

.city-layout {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 4vw, 56px);
  margin: 0 auto;
}

.city-summary-card,
.city-section,
.city-help {
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 72px rgba(35, 31, 24, 0.08);
}

.city-summary-card {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: clamp(26px, 3vw, 38px);
}

.city-summary-card h2,
.city-section h2,
.city-help h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(23px, 2.5vw, 35px);
  font-weight: 900;
  line-height: 1.12;
}

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

.best-for-list li {
  padding: 14px 16px;
  border-radius: 18px;
  color: rgba(21, 21, 21, 0.76);
  background: rgba(255, 248, 232, 0.68);
  font-weight: 800;
}

.city-main {
  display: grid;
  gap: 24px;
}

.city-section,
.city-help {
  padding: clamp(26px, 3vw, 38px);
}

.time-lede {
  margin: 24px 0 18px;
  color: rgba(119, 82, 24, 0.82);
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.city-section p {
  margin: 0;
  color: rgba(21, 21, 21, 0.62);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.62;
}

.city-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  color: rgba(21, 21, 21, 0.68);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.city-list strong {
  color: var(--ink);
}

.help-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.help-option {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 248, 232, 0.66);
}

.help-option-dark {
  color: #fff8ea;
  background: linear-gradient(145deg, #183a32 0%, #071612 100%);
}

.help-option h3 {
  margin: 0 0 12px;
  color: inherit;
  font-size: 18px;
  line-height: 1.15;
}

.help-option p {
  margin: 0;
  color: rgba(21, 21, 21, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.help-option-dark p {
  color: rgba(255, 248, 234, 0.72);
}

.city-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 32px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-green);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(21, 21, 21, 0.16);
}

.about-section {
  padding: clamp(88px, 9vw, 138px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 8%, rgba(196, 150, 72, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf8f1 0%, #f4efe6 100%);
}

.about-layout {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(54px, 6vw, 88px);
  margin: 0 auto;
}

.about-copy {
  padding-top: clamp(18px, 2.8vw, 42px);
}

.about-kicker {
  margin: 0 0 18px;
  color: rgba(121, 84, 26, 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy h2,
.plan-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(29px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.12;
}

.about-copy > p:not(.about-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(21, 21, 21, 0.6);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 620;
  line-height: 1.72;
}

.about-copy > .about-lead {
  margin-top: clamp(26px, 3vw, 38px);
  color: rgba(21, 21, 21, 0.82);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 760;
  line-height: 1.58;
}

.founder-profile {
  max-width: 430px;
  margin: clamp(34px, 4vw, 52px) 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(121, 84, 26, 0.2);
}

.founder-profile > p {
  margin: 0 0 18px;
  color: rgba(121, 84, 26, 0.72);
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-profile-body {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 6px;
  background: #10231f;
  box-shadow: 0 28px 64px rgba(35, 31, 24, 0.18);
}

.founder-profile-body::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(224, 190, 121, 0.42);
  pointer-events: none;
}

.founder-portrait {
  position: relative;
  z-index: 0;
  margin: 0;
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 22, 18, 0.02) 34%, rgba(7, 22, 18, 0.26) 62%, rgba(7, 22, 18, 0.92) 100%);
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.78) contrast(1.04) brightness(0.92);
}

.founder-profile figcaption {
  position: absolute;
  right: clamp(26px, 4vw, 38px);
  bottom: clamp(28px, 4vw, 40px);
  left: clamp(26px, 4vw, 38px);
  z-index: 3;
  min-width: 0;
  padding: 0;
}

.founder-profile figcaption::before {
  content: "";
  width: 44px;
  height: 1px;
  display: block;
  margin-bottom: 16px;
  background: rgba(224, 190, 121, 0.82);
}

.founder-profile strong,
.founder-profile span,
.founder-profile small {
  display: block;
}

.founder-profile strong {
  color: #fff8ed;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(24px, 2.25vw, 31px);
  font-weight: 900;
  line-height: 1.16;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.founder-profile span {
  margin-top: 8px;
  color: rgba(255, 248, 237, 0.78);
  font-size: 15px;
  font-weight: 740;
  line-height: 1.4;
}

.founder-profile small {
  position: relative;
  margin-top: 13px;
  padding-left: 14px;
  color: rgba(224, 190, 121, 0.9);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.founder-profile small::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dfbd77;
}

.about-social {
  max-width: 430px;
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: 24px;
  border-top: 1px solid rgba(121, 84, 26, 0.2);
}

.about-social > p {
  margin: 0 0 18px;
  color: rgba(121, 84, 26, 0.72);
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.about-social-links a {
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 10px 6px 8px;
  border: 1px solid rgba(121, 84, 26, 0.16);
  border-radius: 999px;
  color: rgba(21, 21, 21, 0.74);
  background: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.about-social-links svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 50%;
  color: #f1d08a;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  background: var(--deep-green-soft);
  box-shadow: inset 0 0 0 1px rgba(214, 173, 104, 0.16);
  filter: drop-shadow(0 0 5px rgba(241, 208, 138, 0.2));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.about-social-links svg path {
  stroke: none;
}

.about-social-links svg rect,
.about-social-links svg circle:not(.social-dot) {
  fill: none;
}

.about-social-links .social-dot {
  fill: currentColor;
  stroke: none;
}

@media (hover: hover) and (pointer: fine) {
  .about-social-links a:hover,
  .about-social-links a:focus-visible {
    color: #10231f;
    border-color: rgba(121, 84, 26, 0.42);
    background: rgba(255, 255, 255, 0.82);
    transform: translateY(-2px);
  }

  .about-social-links a:hover svg,
  .about-social-links a:focus-visible svg {
    background: #215247;
    box-shadow: inset 0 0 0 1px rgba(214, 173, 104, 0.3);
  }
}

@media (min-width: 981px) {
  .about-layout {
    align-items: stretch;
  }

  .about-copy {
    display: flex;
    flex-direction: column;
  }

  .about-profile-grid {
    display: block;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(121, 84, 26, 0.2);
  }

  .founder-profile {
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border-top: 0;
  }

  .about-social {
    max-width: none;
    margin: 0;
    padding: 0;
    border-top: 0;
  }

  .founder-profile > p {
    margin-bottom: 14px;
    text-align: center;
  }

  .founder-profile-body {
    aspect-ratio: 4 / 5;
  }

  .founder-portrait {
    position: relative;
    inset: auto;
  }

  .founder-portrait img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-position: center 56%;
  }

  .founder-profile figcaption {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .founder-profile strong {
    font-size: 22px;
  }

  .founder-profile span {
    margin-top: 6px;
    font-size: 13.5px;
  }

  .founder-profile small {
    margin-top: 10px;
    font-size: 11.5px;
  }

  .about-social {
    margin-top: 24px;
  }

  .about-social > p {
    margin-bottom: 12px;
    text-align: center;
  }

  .about-social-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .about-social-links a {
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 5px 2px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-size: 13.5px;
  }

  .about-social-links svg {
    width: 46px;
    height: 46px;
    padding: 11px;
  }
}

@media (max-width: 980px) {
  .about-layout {
    width: min(720px, 100%);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-copy {
    padding-top: 0;
  }
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 4vw, 54px);
}

.trust-points div {
  min-height: 148px;
  padding: 22px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 42px rgba(35, 31, 24, 0.06);
}

.trust-points span {
  display: block;
  margin-bottom: 22px;
  color: rgba(151, 106, 36, 0.72);
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 800;
}

.trust-points p {
  margin: 0;
  color: rgba(21, 21, 21, 0.62);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.plan-panel {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 84px rgba(35, 31, 24, 0.1);
  overflow: hidden;
}

.plan-panel h2 {
  font-size: clamp(24px, 2.8vw, 38px);
}

.form-intro {
  margin: 16px 0 0;
  color: rgba(21, 21, 21, 0.52);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.trip-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.form-guard {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.trip-form label {
  display: grid;
  gap: 8px;
}

.trip-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.whatsapp-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.whatsapp-field legend {
  margin-bottom: 8px;
  padding: 0;
  color: rgba(21, 21, 21, 0.74);
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-field legend small {
  margin-left: 5px;
  color: rgba(21, 21, 21, 0.36);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.whatsapp-field legend b {
  color: #9f352b;
  font-weight: 900;
}

.whatsapp-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.95fr) minmax(0, 1.05fr);
  gap: 12px;
}

.trip-form span {
  color: rgba(21, 21, 21, 0.74);
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trip-form span b {
  color: #9f352b;
  font-weight: 900;
}

.trip-form span small {
  margin-left: 5px;
  color: rgba(21, 21, 21, 0.36);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.trip-form input,
.trip-form select,
.trip-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(250, 247, 240, 0.86);
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  outline: 0;
}

.trip-form input::placeholder,
.trip-form textarea::placeholder {
  color: rgba(21, 21, 21, 0.32);
}

.trip-form input,
.trip-form select {
  min-height: 48px;
  padding: 0 15px;
}

.form-date-control {
  position: relative;
  min-height: 48px;
}

.form-date-control.is-open {
  z-index: 30;
}

.form-date-trigger {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 15px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(250, 247, 240, 0.86);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-date-trigger:hover,
.form-date-trigger:focus-visible,
.form-date-control.is-open .form-date-trigger {
  border-color: rgba(151, 106, 36, 0.45);
  box-shadow: 0 0 0 4px rgba(196, 150, 72, 0.12);
  outline: 0;
}

.form-date-control.is-invalid .form-date-trigger {
  border-color: rgba(159, 53, 43, 0.62);
  box-shadow: 0 0 0 4px rgba(159, 53, 43, 0.1);
}

.trip-form .form-date-value {
  min-width: 0;
  overflow: hidden;
  color: rgba(21, 21, 21, 0.32);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.4;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.form-date-control.has-value .form-date-value {
  color: var(--ink);
}

.form-date-trigger > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(21, 21, 21, 0.7);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trip-form .form-date-native {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.form-calendar {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  width: min(310px, calc(100vw - 44px));
  padding: 14px;
  border: 1px solid rgba(151, 106, 36, 0.28);
  border-radius: 16px;
  color: #1b2823;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 22px 58px rgba(20, 27, 24, 0.2);
  backdrop-filter: blur(18px);
}

.form-calendar[hidden] {
  display: none;
}

.form-calendar-header {
  min-height: 38px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.form-calendar-header strong {
  overflow: hidden;
  color: #10231f;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-calendar-header button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(16, 35, 31, 0.12);
  border-radius: 50%;
  color: #183a32;
  background: rgba(239, 231, 218, 0.62);
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.form-calendar-header button span {
  color: inherit;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.form-calendar-header button:hover,
.form-calendar-header button:focus-visible {
  color: #fff8ed;
  background: #183a32;
  outline: 0;
  transform: translateY(-1px);
}

.form-calendar-header button:disabled {
  cursor: default;
  opacity: 0.28;
  transform: none;
}

.form-calendar-weekdays,
.form-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.form-calendar-weekdays {
  margin-bottom: 5px;
}

.trip-form .form-calendar-weekdays span {
  min-width: 0;
  padding: 5px 0;
  color: rgba(28, 40, 35, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: none;
}

.form-calendar-grid button,
.form-calendar-empty {
  aspect-ratio: 1;
}

.form-calendar-grid button {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(28, 40, 35, 0.82);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.form-calendar-grid button:hover,
.form-calendar-grid button:focus-visible {
  color: #10231f;
  background: rgba(185, 139, 66, 0.18);
  outline: 0;
  transform: scale(1.05);
}

.form-calendar-grid button.is-today {
  box-shadow: inset 0 0 0 1px rgba(185, 139, 66, 0.56);
}

.form-calendar-grid button.is-selected {
  color: #fff8ed;
  background: #183a32;
  box-shadow: none;
}

.form-calendar-grid button:disabled {
  color: rgba(28, 40, 35, 0.2);
  background: transparent;
  cursor: not-allowed;
  transform: none;
}

.trip-form textarea {
  min-height: 116px;
  padding: 14px 15px;
  resize: vertical;
}

.trip-form input:focus,
.trip-form select:focus,
.trip-form textarea:focus {
  border-color: rgba(151, 106, 36, 0.45);
  box-shadow: 0 0 0 4px rgba(196, 150, 72, 0.12);
}

.trip-form > button[type="submit"] {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(21, 21, 21, 0.16);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  touch-action: manipulation;
}

.trip-form > button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-contact-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -1px 0 -5px;
}

.form-contact-divider::before,
.form-contact-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(21, 21, 21, 0.12);
}

.trip-form .form-contact-divider span {
  color: rgba(21, 21, 21, 0.48);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.form-whatsapp-cta {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(16, 35, 31, 0.5);
  border-radius: 999px;
  color: var(--deep-green);
  background: rgba(255, 253, 248, 0.34);
  font-size: 15.5px;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  touch-action: manipulation;
}

.form-whatsapp-cta svg,
.form-feedback-whatsapp svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.trip-form .form-whatsapp-cta span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.form-feedback-whatsapp {
  width: min(320px, 100%);
  min-height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  border: 1px solid #e7c672;
  border-radius: 999px;
  color: #10231f;
  background: #e7c672;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, background 180ms ease;
  touch-action: manipulation;
}

.form-feedback.is-success .form-feedback-whatsapp {
  display: flex;
}

@media (hover: hover) and (pointer: fine) {
  .trip-form > button[type="submit"]:not(:disabled):hover {
    color: #10231f;
    background: linear-gradient(180deg, #f1da99 0%, #d6ad68 100%);
    box-shadow:
      inset 0 0 0 1px rgba(255, 248, 237, 0.56),
      0 18px 38px rgba(143, 101, 35, 0.26);
    transform: translateY(-3px);
  }

  .form-whatsapp-cta:hover {
    color: #10231f;
    border-color: #d6ad68;
    background: #e7c672;
    box-shadow: 0 13px 28px rgba(184, 138, 68, 0.18);
    transform: translateY(-2px);
  }

  .form-feedback-whatsapp:hover {
    background: #efd18b;
    transform: translateY(-2px);
  }
}

.trip-form > button[type="submit"]:not(:disabled):active,
.form-whatsapp-cta:active {
  transform: translateY(0) scale(0.985);
}

.form-feedback {
  position: absolute;
  inset: 0;
  z-index: 5;
  box-sizing: border-box;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: clamp(34px, 4vw, 52px);
  color: #fff8ea;
  background:
    radial-gradient(circle at 50% 100%, rgba(208, 166, 86, 0.28), transparent 46%),
    linear-gradient(180deg, rgba(24, 58, 50, 0.82) 0%, rgba(16, 35, 31, 0.96) 48%, rgba(7, 22, 18, 0.99) 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition:
    opacity 260ms ease,
    transform 360ms ease;
  overflow: hidden;
}

.form-feedback > p,
.form-feedback > h3,
.form-feedback > span,
.form-feedback > strong {
  width: min(520px, 100%);
  min-width: 0;
  box-sizing: border-box;
}

.form-feedback > p:empty,
.form-feedback > span:empty,
.form-feedback > strong:empty {
  display: none;
}

.form-feedback.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.form-feedback.is-success {
  background:
    radial-gradient(circle at 50% 100%, rgba(213, 181, 104, 0.24), transparent 46%),
    linear-gradient(180deg, rgba(38, 48, 34, 0.78) 0%, rgba(24, 35, 24, 0.94) 48%, rgba(8, 15, 9, 0.98) 100%);
}

.form-feedback.is-error {
  background:
    radial-gradient(circle at 50% 100%, rgba(220, 139, 94, 0.22), transparent 46%),
    linear-gradient(180deg, rgba(55, 34, 26, 0.8) 0%, rgba(49, 23, 18, 0.94) 48%, rgba(19, 8, 6, 0.98) 100%);
}

.form-feedback-close {
  --feedback-ring: 0deg;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 2px solid transparent;
  border-radius: 50%;
  color: transparent;
  background:
    linear-gradient(rgba(255, 248, 234, 0.08), rgba(255, 248, 234, 0.08)) padding-box,
    conic-gradient(#d54436 var(--feedback-ring), rgba(255, 248, 234, 0.24) 0deg) border-box;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-feedback-close.is-counting {
  animation: feedback-countdown 20s linear forwards;
}

.form-feedback-close::before,
.form-feedback-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff8ea;
  transform-origin: center;
}

.form-feedback-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-feedback-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@property --feedback-ring {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes feedback-countdown {
  from {
    --feedback-ring: 0deg;
  }

  to {
    --feedback-ring: 360deg;
  }
}

.form-feedback p {
  margin: 0;
  color: rgba(255, 248, 234, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-feedback h3 {
  margin: 0;
  color: #fff8ea;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(24px, 2.45vw, 36px);
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: normal;
}

.form-feedback span {
  display: block;
  color: rgba(255, 248, 234, 0.82);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 650;
  line-height: 1.56;
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.form-feedback strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 234, 0.94);
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.destinations-cta {
  width: min(720px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: clamp(40px, 5vw, 68px) auto 0;
  text-align: center;
}

.destinations-cta p {
  margin: 0;
  color: rgba(21, 21, 21, 0.52);
  font-size: 18px;
  font-weight: 680;
}

.destinations-cta a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-green);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(21, 21, 21, 0.16);
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.destinations-cta a:active {
  transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
  .hero-discover:hover {
    opacity: 0.78;
  }

  .service-button:hover {
    transform: translateY(-3px) scale(1.015);
    border-color: rgba(129, 89, 26, 0.24);
    background: rgba(255, 253, 244, 0.92);
    box-shadow:
      0 16px 34px rgba(104, 75, 27, 0.14),
      0 34px 70px rgba(104, 75, 27, 0.14);
  }

  .service-button-primary:hover {
    border-color: rgba(255, 248, 234, 0.9);
    background: linear-gradient(180deg, #fffaf0 0%, #f1d38b 100%);
    box-shadow:
      0 18px 38px rgba(15, 12, 9, 0.26),
      0 38px 78px rgba(15, 12, 9, 0.24);
  }

  .service-helper a:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--deep-green-soft);
    box-shadow:
      0 18px 38px rgba(21, 21, 21, 0.2),
      0 34px 72px rgba(21, 21, 21, 0.16);
  }

  .destination-card {
    transition:
      transform 240ms ease,
      box-shadow 240ms ease;
  }

  .destination-card:hover,
  .destination-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 34px 88px rgba(35, 31, 24, 0.18);
  }

  .destination-card:hover img,
  .destination-card:focus-visible img {
    filter: saturate(0.9) contrast(1.04) brightness(0.72);
    transform: scale(1.055);
  }

  .destination-card:hover::before,
  .destination-card:focus-visible::before {
    background:
      linear-gradient(180deg, rgba(7, 22, 18, 0.2) 0%, rgba(7, 22, 18, 0.14) 42%, rgba(7, 22, 18, 0.6) 100%),
      radial-gradient(circle at 50% 48%, rgba(7, 22, 18, 0.12), rgba(7, 22, 18, 0.36));
  }

  .destination-card:hover h3,
  .destination-card:focus-visible h3 {
    transform: translateY(calc(-50% - 18px));
  }

  .destination-card:hover .destination-info,
  .destination-card:focus-visible .destination-info {
    opacity: 1;
    transform: translateY(0);
  }

  .experience-card {
    transition:
      transform 240ms ease,
      box-shadow 240ms ease,
      border-color 240ms ease;
  }

  .experience-card:hover,
  .experience-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(218, 177, 101, 0.62);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 32px 76px rgba(0, 0, 0, 0.42);
  }

  .experience-card:hover img,
  .experience-card:focus-within img {
    filter: saturate(0.92) contrast(1.06) brightness(0.92);
    transform: scale(1.04);
  }

  .experience-card:hover::before,
  .experience-card:focus-within::before {
    background:
      linear-gradient(180deg, rgba(7, 22, 18, 0.02) 0%, rgba(7, 22, 18, 0.08) 42%, rgba(7, 22, 18, 0.84) 100%),
      linear-gradient(90deg, rgba(7, 22, 18, 0.12), transparent 48%);
  }

  .experience-card:hover .experience-copy,
  .experience-card:focus-within .experience-copy {
    transform: translateY(-3px);
    border-color: #d6ad68;
  }

  .experience-card:hover .experience-details,
  .experience-card:focus-within .experience-details {
    display: none;
  }

  .destination-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    background: linear-gradient(180deg, #fffaf0 0%, #efcf82 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 18px 42px rgba(20, 15, 8, 0.28);
  }

  .destinations-cta a:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--deep-green-soft);
    box-shadow: 0 16px 34px rgba(21, 21, 21, 0.18);
  }

  .experiences-cta a:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #efd28f 0%, #c79b50 100%);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
  }
}

@media (hover: none) {

  .hero-discover:active {
    opacity: 0.68;
  }
}

@media (max-width: 1100px) and (min-width: 761px) {
  .experiences-heading {
    grid-template-columns: 1fr;
  }

  .experiences-heading h2 {
    max-width: none;
    font-size: clamp(31px, 4.7vw, 49px);
    white-space: nowrap;
  }

  .experiences-heading span {
    max-width: 700px;
  }

  .experience-bento {
    width: min(920px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(230px, 32vw, 300px);
  }

  .experience-card,
  .experience-card-large,
  .experience-card-tall,
  .experience-card-wide,
  .experience-card-small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .experience-card-large,
  .experience-card-wide {
    grid-column: span 2;
  }
}

@media (hover: none), (pointer: coarse) {
  .experience-card:hover,
  .experience-card:focus-within {
    transform: none;
    border-color: rgba(218, 177, 101, 0.2);
  }

  .experience-card:hover .experience-copy,
  .experience-card:focus-within .experience-copy {
    transform: none;
  }

  .experience-card:hover .experience-details,
  .experience-card:focus-within .experience-details {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 128px 22px 46px;
  }

  .hero-bg {
    object-position: center center;
    filter: brightness(0.68) contrast(1.05) saturate(0.92);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 22, 18, 0.66) 0%, rgba(7, 22, 18, 0.14) 27%, rgba(7, 22, 18, 0.22) 58%, rgba(7, 22, 18, 0.7) 100%),
      radial-gradient(circle at 50% 50%, rgba(7, 22, 18, 0), rgba(7, 22, 18, 0.38) 74%);
  }

  .hero-content {
    margin: 0;
  }

  h1 {
    font-size: clamp(35px, 10.5vw, 44px);
    line-height: 1.02;
  }

  h1 span {
    display: block;
  }

  h1 span + span {
    margin-top: 8px;
    margin-left: 0;
  }

  .subtitle {
    max-width: none;
    font-size: clamp(13px, 3.5vw, 18px);
    margin-top: 32px;
  }

  .hero-discover {
    bottom: 24px;
    width: 44px;
    height: 72px;
  }

  .hero-discover span {
    height: 64px;
  }

  .services-section {
    padding: 48px 22px 64px;
  }

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

  .section-heading h2 {
    font-size: clamp(16px, 4.7vw, 26px);
  }

  .section-heading p {
    margin-top: 12px;
    font-size: clamp(7px, 2.05vw, 12px);
  }

  .service-cards {
    width: min(370px, 86%);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .service-card::after {
    border-radius: 19px;
  }

  .service-card-head {
    margin-bottom: 12px;
  }

  .service-index {
    font-size: 34px;
  }

  .service-card h3 {
    font-size: clamp(17px, 4.8vw, 21px);
  }

  .service-summary {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.48;
  }

  .service-meta {
    gap: 14px;
    padding-top: 28px;
  }

  .service-meta div {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }

  .service-meta span {
    font-size: 10px;
  }

  .service-meta p {
    font-size: 14px;
  }

  .service-button {
    min-height: 48px;
    margin-top: 24px;
  }

  .service-helper a {
    min-height: 52px;
    padding: 0 30px;
  }

  .destinations-section {
    padding: 64px 0 82px;
    overflow: hidden;
  }

  .destinations-heading {
    width: auto;
    margin: 0 24px 42px;
  }

  .destinations-heading h2 {
    font-size: clamp(17px, 4.5vw, 25px);
  }

  .destinations-heading p {
    margin-top: 12px;
    font-size: clamp(7px, 2vw, 12px);
  }

  .destination-scroll {
    width: 100%;
  }

  .destination-scroll::before,
  .destination-scroll::after {
    bottom: 18px;
    width: 22px;
  }

  .destination-grid {
    width: 100%;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0 42px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 42px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .destination-grid::-webkit-scrollbar {
    height: 8px;
  }

  .destination-card {
    flex: 0 0 min(75vw, 300px);
    min-height: 372px;
    scroll-snap-align: center;
    border-radius: 8px;
  }

  .destination-arrow {
    width: 40px;
    height: 40px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.68),
      0 10px 26px rgba(20, 15, 8, 0.22);
  }

  .destination-arrow::before {
    width: 9px;
    height: 9px;
  }

  .destination-arrow-left {
    left: 12px;
  }

  .destination-arrow-right {
    right: 12px;
  }

  .destination-card-body {
    padding: 22px;
  }

  .destination-card h3 {
    top: 50%;
    right: 22px;
    left: 22px;
    font-size: 30px;
    white-space: normal;
    transform: translateY(-50%);
  }

  .destination-info {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 6px;
    padding: 88px 20px 20px;
    background:
      linear-gradient(180deg, rgba(7, 22, 18, 0) 0%, rgba(16, 35, 31, 0.76) 44%, rgba(7, 22, 18, 0.98) 100%);
    opacity: 1;
    transform: translateY(0);
  }

  .destination-info p {
    font-size: 14px;
  }

  .destination-info span,
  .destination-info em {
    font-size: 13.5px;
  }

  .destinations-cta {
    margin-top: 28px;
    padding: 0 22px;
  }

  .destinations-cta p {
    font-size: 15px;
  }

  .destinations-cta a {
    width: min(310px, 100%);
    min-height: 52px;
  }

  .experiences-section {
    padding: 76px 18px 84px;
    background:
      radial-gradient(circle at 8% 0%, rgba(185, 139, 66, 0.17), transparent 28%),
      radial-gradient(circle at 96% 46%, rgba(71, 119, 104, 0.18), transparent 34%),
      linear-gradient(155deg, #183a32 0%, #071612 58%, #10231f 100%);
  }

  .experiences-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
  }

  .experiences-heading p {
    grid-column: auto;
    font-size: 11.5px;
  }

  .experiences-heading h2 {
    font-size: clamp(17px, 4.82vw, 24px);
    line-height: 1;
    white-space: nowrap;
  }

  .experiences-heading span {
    max-width: 94%;
    margin: 0;
    color: rgba(255, 247, 233, 0.56);
    font-size: 13px;
    line-height: 1.6;
  }

  .experience-filters {
    display: flex;
    gap: 10px;
    margin: 0 -18px 22px;
    padding: 0 18px 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .experience-filters::-webkit-scrollbar {
    display: none;
  }

  .experience-filters button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(218, 177, 101, 0.22);
    border-radius: 999px;
    color: rgba(255, 247, 233, 0.62);
    background: rgba(255, 247, 233, 0.05);
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
    touch-action: manipulation;
  }

  .experience-filters button.is-active {
    color: #17110a;
    border-color: #d6ad68;
    background: #d6ad68;
  }

  .experience-bento {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .experience-card,
  .experience-card-large,
  .experience-card-tall,
  .experience-card-wide,
  .experience-card-small {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .experience-card.is-hidden {
    display: none;
  }

  .experience-card img {
    filter: saturate(0.84) contrast(1.04) brightness(0.88);
    transform: scale(1.01);
  }

  .experience-card::before {
    background:
      linear-gradient(180deg, rgba(7, 22, 18, 0.02) 0%, rgba(7, 22, 18, 0.06) 44%, rgba(7, 22, 18, 0.9) 100%);
  }

  .experience-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding-top: 13px;
    transform: none;
  }

  .experience-copy h3,
  .experience-card-small .experience-copy h3 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .experience-copy p {
    font-size: 14.5px;
  }

  .experience-details {
    display: none;
  }

  .experience-details p {
    font-size: 15.5px;
  }

  .experience-details span,
  .experience-details em {
    font-size: 13.5px;
  }

  .experience-card:hover,
  .experience-card:focus-within {
    transform: none;
    border-color: rgba(218, 177, 101, 0.2);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 24px 64px rgba(0, 0, 0, 0.26);
  }

  .experience-card:hover img,
  .experience-card:focus-within img {
    filter: saturate(0.84) contrast(1.04) brightness(0.88);
    transform: scale(1.01);
  }

  .experience-card:hover::before,
  .experience-card:focus-within::before {
    background:
      linear-gradient(180deg, rgba(7, 22, 18, 0.02) 0%, rgba(7, 22, 18, 0.06) 44%, rgba(7, 22, 18, 0.9) 100%);
  }

  .experience-card:hover .experience-details,
  .experience-card:focus-within .experience-details {
    display: none;
  }

  .experience-card:hover .experience-copy,
  .experience-card:focus-within .experience-copy {
    transform: none;
  }

  .experiences-cta {
    margin-top: 30px;
  }

  .experiences-toggle {
    width: min(310px, 100%);
    margin-top: 24px;
  }

  .experiences-cta p {
    color: rgba(255, 247, 233, 0.56);
    font-size: 15px;
  }

  .experiences-cta a {
    width: min(330px, 100%);
    min-height: 52px;
    padding: 0 24px;
    text-align: center;
  }

  .city-hero {
    min-height: 72svh;
    padding: 118px 22px 54px;
  }

  .city-back {
    margin-bottom: 34px;
  }

  .city-hero h1 {
    font-size: clamp(36px, 9.5vw, 54px);
    white-space: nowrap;
  }

  .city-hero p {
    font-size: 17px;
  }

  .city-content {
    padding: 58px 18px 78px;
  }

  .city-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .city-summary-card {
    position: static;
    padding: 26px 22px;
  }

  .best-for-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .best-for-list li {
    padding: 13px;
    font-size: 14px;
  }

  .city-section,
  .city-help {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .city-section h2,
  .city-help h2,
  .city-summary-card h2 {
    font-size: 24px;
  }

  .time-lede {
    margin-top: 22px;
    font-size: 42px;
  }

  .city-section p,
  .city-list li {
    font-size: 15px;
  }

  .help-options {
    grid-template-columns: 1fr;
  }

  .city-cta {
    width: 100%;
    min-height: 54px;
  }

  .about-section {
    padding: 68px 18px 82px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy h2 {
    font-size: clamp(24px, 7vw, 38px);
  }

  .about-copy > p:not(.about-kicker) {
    font-size: 15px;
    line-height: 1.65;
  }

  .trust-points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .trust-points div {
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
  }

  .trust-points span {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .plan-panel {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .plan-panel h2 {
    font-size: 25px;
  }

  .trip-form input,
  .trip-form select {
    min-height: 52px;
  }

  .trip-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .whatsapp-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trip-form > button[type="submit"] {
    min-height: 54px;
  }

  .form-feedback {
    padding: 62px 22px 32px;
  }

  .form-feedback h3 {
    font-size: 28px;
  }
}

/* Generated source photos run brighter than the legacy experience set. */
.experience-card[data-experience-tone="muted"] img {
  filter: saturate(0.76) contrast(1.06) brightness(0.72);
}

@media (hover: hover) and (pointer: fine) {
  .experience-card[data-experience-tone="muted"]:hover img,
  .experience-card[data-experience-tone="muted"]:focus-visible img {
    filter: saturate(0.84) contrast(1.06) brightness(0.8);
  }
}

@media (max-width: 760px) {
  .experience-card[data-experience-tone="muted"] img,
  .experience-card[data-experience-tone="muted"]:hover img,
  .experience-card[data-experience-tone="muted"]:focus-visible img {
    filter: saturate(0.78) contrast(1.06) brightness(0.76);
  }
}

@media (max-width: 390px) {
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: clamp(34px, 10.4vw, 41px);
  }

  .services-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-heading h2 {
    font-size: clamp(15px, 4.75vw, 18px);
  }

  .section-heading p {
    font-size: clamp(6px, 1.95vw, 8px);
  }

  .service-card {
    padding: 22px 18px;
  }

  .service-card-head {
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: clamp(15px, 5vw, 19px);
  }

  .service-meta div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .destination-card {
    flex-basis: 75vw;
  }
}

/* Motion system: scroll reveal and restrained hero depth. */
.services-section {
  padding: clamp(72px, 6vw, 104px) clamp(18px, 4vw, 64px) clamp(78px, 6.5vw, 112px);
  background:
    linear-gradient(rgba(184, 138, 68, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 138, 68, 0.032) 1px, transparent 1px),
    #f7f3ea;
  background-size: 72px 72px;
}

.services-section .section-heading {
  width: min(1180px, 100%);
  margin-bottom: clamp(38px, 4vw, 58px);
}

.services-section .section-heading h2 {
  font-size: clamp(30px, 3.7vw, 54px);
}

.services-section .section-heading p {
  margin-top: 16px;
  color: rgba(21, 21, 21, 0.58);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 500;
}

.service-choices {
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

.service-choice {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 150px auto 82px auto;
  padding: 0 clamp(28px, 4vw, 56px);
}

.service-choice + .service-choice::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 138, 68, 0.72) 10%, rgba(184, 138, 68, 0.72) 90%, transparent);
}

.service-choice-header {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.service-choice-index {
  width: 154px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 0;
  color: #a86f1d;
  font-family: "Cinzel", "Noto Serif SC", serif;
  font-size: 24px;
  line-height: 1;
}

.service-choice-index::before,
.service-choice-index::after {
  content: "";
  height: 1px;
  background: #c28c3b;
}

.service-choice h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  white-space: nowrap;
}

.service-choice-header > p:last-child {
  margin: 14px 0 0;
  color: rgba(21, 21, 21, 0.64);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.45;
}

.service-choice-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(48, 38, 24, 0.1);
}

.service-choice-meta {
  min-height: 82px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 8px 15px;
  padding: 13px 4px 10px;
  border-top: 1px solid rgba(184, 138, 68, 0.74);
  color: #2f2c27;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: clamp(13px, 1.05vw, 16px);
}

.service-choice-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b88a44;
}

.service-choice-meta strong {
  flex: 0 0 100%;
  color: #a56d1c;
  font-weight: 500;
  text-align: center;
}

.service-choice-button {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 650;
  touch-action: manipulation;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-choice-button-classic {
  color: #fff8ed;
  background: #173b35;
  box-shadow: 0 12px 26px rgba(23, 59, 53, 0.16);
}

.service-choice-button-tailored {
  color: #17211d;
  background: #b88a44;
  box-shadow: 0 12px 26px rgba(184, 138, 68, 0.18);
}

.service-choice-arrow {
  position: absolute;
  right: 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 220ms ease;
}

.service-choice-button:active {
  transform: scale(0.985);
}

.service-choice-button:focus-visible {
  outline: 3px solid rgba(184, 138, 68, 0.35);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .service-choice-button:hover {
    transform: translateY(-2px);
  }

  .service-choice-button:hover .service-choice-arrow {
    transform: translateX(7px);
  }

  .service-choice-button-classic:hover {
    border-color: #c59a52;
    background: #0b2925;
    box-shadow: inset 0 0 0 2px rgba(197, 154, 82, 0.38), 0 16px 30px rgba(23, 59, 53, 0.24);
  }

  .service-choice-button-tailored:hover {
    border-color: #173b35;
    background: #d4aa5f;
    box-shadow: 0 16px 30px rgba(184, 138, 68, 0.28);
  }

  .service-choice-button-tailored:hover .service-choice-arrow {
    transform: translateX(7px) rotate(-35deg);
  }
}

@media (max-width: 760px) {
  .services-section {
    padding: 56px 20px 68px;
    background-size: 54px 54px;
  }

  .services-section .section-heading {
    margin-bottom: 38px;
  }

  .services-section .section-heading h2 {
    font-size: clamp(24px, 7.4vw, 34px);
    white-space: normal;
  }

  .services-section .section-heading p {
    max-width: 330px;
    font-size: 13px;
    white-space: normal;
  }

  .service-choices {
    width: min(480px, 100%);
    grid-template-columns: 1fr;
  }

  .service-choice {
    grid-template-rows: auto auto 76px auto;
    padding: 0;
  }

  .service-choice + .service-choice {
    margin-top: 52px;
    padding-top: 52px;
  }

  .service-choice + .service-choice::before {
    inset: 0 0 auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 138, 68, 0.72) 14%, rgba(184, 138, 68, 0.72) 86%, transparent);
  }

  .service-choice-header {
    min-height: 132px;
    padding-inline: 24px;
  }

  .service-choice h3 {
    font-size: clamp(20px, 5.5vw, 24px);
  }

  .service-choice-header > p:last-child {
    max-width: 350px;
    font-size: 13px;
  }

  .service-choice-meta {
    font-size: clamp(12px, 3.5vw, 15px);
  }

  .service-choice-button {
    min-height: 52px;
    padding-inline: 48px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .services-section {
    padding-inline: 16px;
  }

  .service-choice h3 {
    font-size: clamp(19px, 5.35vw, 21px);
  }

  .service-choice-header > p:last-child {
    font-size: 12px;
  }

  .service-choice-meta {
    gap: 7px 10px;
    font-size: 12px;
  }
}

.reveal-item {
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    translate 800ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.reveal-item.is-revealed {
  opacity: 1;
  translate: 0 0;
}

.hero-carousel {
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.045);
  transform-origin: center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-revealed {
    opacity: 1;
    translate: none;
    transition: none;
  }

  .hero-carousel {
    transform: none;
    transition: none;
  }

  .hero-discover span::after {
    animation: none;
    opacity: 1;
    transform: translateY(18px);
  }
}

/* Chengdu conversion page. Scoped so the other destination pages stay unchanged. */
.city-page--conversion {
  color: #211c16;
  background: #f4eee3;
}

.city-page--conversion main {
  overflow: hidden;
}

.chengdu-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 64px 76px;
}

.chengdu-hero-image,
.chengdu-hero-overlay {
  position: absolute;
  inset: 0;
}

.chengdu-hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04) brightness(0.74);
  transform: scale(1.015);
}

.chengdu-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.64) 0%, rgba(7, 7, 6, 0.14) 30%, rgba(7, 7, 6, 0.24) 64%, rgba(7, 7, 6, 0.68) 100%),
    radial-gradient(circle at 50% 50%, rgba(7, 7, 6, 0.04), rgba(7, 7, 6, 0.38) 76%);
}

.city-topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 5vw;
  border-bottom: 1px solid rgba(255, 248, 237, 0.1);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.08));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.city-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.city-brand img:first-child {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.city-brand img:last-child {
  width: 168px;
}

.city-topbar nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.city-all-destinations {
  color: rgba(255, 248, 237, 0.74);
  font-size: 14px;
  font-weight: 650;
}

.city-topbar-cta,
.chengdu-button,
.chengdu-preview-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.city-topbar-cta {
  min-height: 44px;
  padding: 0 21px;
  border: 1px solid rgba(220, 182, 107, 0.66);
  color: #1b150d;
  background: linear-gradient(180deg, #e4c47f, #bd9148);
  font-size: 13px;
  font-weight: 750;
}

.chengdu-hero-content {
  width: min(1040px, 100%);
  margin-top: 42px;
  color: #fff8ed;
  text-align: center;
}

.chengdu-kicker,
.chengdu-section-heading > p,
.chengdu-preview-heading > p,
.chengdu-contact-copy > p,
.chengdu-snapshot-heading > p {
  margin: 0;
  color: #d7ad65;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chengdu-hero h1 {
  margin: 24px 0 0;
  color: #fff8ed;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: 88px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.chengdu-hero-copy {
  width: min(760px, 100%);
  margin: 34px auto 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 21px;
  font-weight: 560;
  line-height: 1.48;
}

.chengdu-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.chengdu-button {
  min-height: 52px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 750;
}

.chengdu-button-primary {
  border: 1px solid #f5ead6;
  color: #1b1712;
  background: linear-gradient(180deg, #fff9ed, #e7d8bc);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.chengdu-button-secondary {
  border: 1px solid rgba(255, 248, 237, 0.46);
  color: #fff8ed;
  background: rgba(10, 9, 8, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chengdu-snapshot {
  padding: 54px 5vw;
  border-bottom: 1px solid rgba(121, 84, 26, 0.14);
  background:
    radial-gradient(circle at 5% 0%, rgba(187, 142, 69, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, #f4eee3 100%);
}

.chengdu-snapshot-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.3fr);
  align-items: center;
  gap: 54px;
  margin: 0 auto;
}

.chengdu-snapshot-heading h2 {
  margin: 10px 0 0;
  color: #211c16;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: 31px;
  line-height: 1;
}

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

.chengdu-facts div {
  min-width: 0;
  padding: 5px 24px;
  border-left: 1px solid rgba(121, 84, 26, 0.18);
}

.chengdu-facts dt {
  color: rgba(33, 28, 22, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chengdu-facts dd {
  margin: 11px 0 0;
  color: #211c16;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.chengdu-moments {
  padding: 108px 5vw 118px;
  background:
    radial-gradient(circle at 88% 12%, rgba(63, 92, 75, 0.11), transparent 32%),
    linear-gradient(180deg, #f4eee3 0%, #fbf8f1 100%);
}

.chengdu-section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 46px;
}

.chengdu-section-heading h2,
.chengdu-preview-heading h2,
.chengdu-contact-copy h2 {
  margin: 14px 0 0;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.chengdu-section-heading h2 {
  color: #211c16;
}

.chengdu-moments-track {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

.chengdu-moment {
  overflow: hidden;
  border: 1px solid rgba(121, 84, 26, 0.14);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 22px 58px rgba(42, 33, 21, 0.09);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.chengdu-moment > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 420ms ease, filter 420ms ease;
}

.chengdu-moment:first-child > img {
  object-position: 28% center;
}

.chengdu-moment > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  padding: 24px 22px 27px;
}

.chengdu-moment span {
  color: #b48740;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 800;
}

.chengdu-moment h3 {
  margin: 0;
  color: #211c16;
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: 23px;
  line-height: 1.08;
}

.chengdu-preview {
  position: relative;
  isolation: isolate;
  padding: 112px 5vw;
  color: #fff8ed;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.96) 0%, rgba(8, 7, 6, 0.88) 52%, rgba(8, 7, 6, 0.76) 100%),
    url("assets/experiences/tea-culture/hero.webp") center / cover no-repeat;
}

.chengdu-preview-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  margin: 0 auto;
}

.chengdu-preview-heading h2 {
  color: #fff8ed;
}

.chengdu-preview-heading > span {
  display: block;
  max-width: 460px;
  margin-top: 24px;
  color: rgba(255, 248, 237, 0.56);
  font-size: 15px;
  line-height: 1.65;
}

.chengdu-days {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chengdu-days li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  padding: 27px 0;
  border-top: 1px solid rgba(215, 173, 101, 0.28);
}

.chengdu-days li:last-child {
  border-bottom: 1px solid rgba(215, 173, 101, 0.28);
}

.chengdu-days > li > span {
  color: #d7ad65;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.chengdu-days h3 {
  margin: 0;
  color: #fff8ed;
  font-size: 20px;
  line-height: 1.2;
}

.chengdu-days p {
  margin: 9px 0 0;
  color: rgba(255, 248, 237, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.chengdu-preview-cta {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: -18px;
  padding-top: 26px;
}

.chengdu-preview-cta p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 248, 237, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.chengdu-preview-cta a {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(215, 173, 101, 0.72);
  color: #1c160e;
  background: linear-gradient(180deg, #e5c782, #bc9048);
  font-size: 13px;
  font-weight: 800;
}

.chengdu-contact {
  padding: 112px 5vw 126px;
  background:
    radial-gradient(circle at 12% 10%, rgba(193, 149, 74, 0.16), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(61, 91, 72, 0.1), transparent 32%),
    linear-gradient(180deg, #f7f1e7 0%, #eee6da 100%);
}

.chengdu-contact-layout {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: start;
  gap: 78px;
  margin: 0 auto;
}

.chengdu-contact-layout > *,
.chengdu-lead-panel,
.chengdu-lead-panel .trip-form,
.chengdu-lead-panel .whatsapp-row > * {
  min-width: 0;
}

.chengdu-lead-panel .whatsapp-row select,
.chengdu-lead-panel .whatsapp-row input {
  min-width: 0;
}

.chengdu-contact-copy {
  padding-top: 40px;
}

.chengdu-contact-copy h2 {
  max-width: 650px;
  color: #211c16;
}

.chengdu-contact-copy > span {
  display: block;
  max-width: 600px;
  margin-top: 28px;
  color: rgba(33, 28, 22, 0.58);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.chengdu-contact-copy ul {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.chengdu-contact-copy li {
  position: relative;
  padding-left: 24px;
  color: rgba(33, 28, 22, 0.7);
  font-size: 15px;
  font-weight: 650;
}

.chengdu-contact-copy li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b48740;
  box-shadow: 0 0 0 5px rgba(180, 135, 64, 0.12);
}

.chengdu-lead-panel {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.chengdu-lead-panel h2 {
  font-size: 31px;
}

.chengdu-lead-panel .trip-form {
  margin-top: 24px;
}

.chengdu-lead-panel .trip-form input,
.chengdu-lead-panel .trip-form select {
  min-height: 46px;
}

.chengdu-mobile-cta {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .city-all-destinations:hover {
    color: #fff8ed;
  }

  .city-topbar-cta:hover,
  .chengdu-preview-cta a:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #efd392, #c69a50);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  }

  .chengdu-button:hover {
    transform: translateY(-2px);
  }

  .chengdu-button-primary:hover {
    background: #fffaf1;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
  }

  .chengdu-button-secondary:hover {
    border-color: rgba(255, 248, 237, 0.78);
    background: rgba(10, 9, 8, 0.4);
  }

  .chengdu-moment:hover {
    transform: translateY(-6px);
    border-color: rgba(180, 135, 64, 0.45);
    box-shadow: 0 30px 72px rgba(42, 33, 21, 0.15);
  }

  .chengdu-moment:hover > img {
    filter: saturate(0.96) contrast(1.04);
    transform: scale(1.035);
  }
}

@media (max-width: 1100px) {
  .chengdu-hero h1 {
    font-size: 72px;
  }

  .chengdu-snapshot-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .chengdu-facts div:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .chengdu-section-heading h2,
  .chengdu-preview-heading h2,
  .chengdu-contact-copy h2 {
    font-size: 38px;
  }

  .chengdu-preview-inner {
    gap: 46px;
  }

  .chengdu-preview-cta {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .chengdu-contact-layout {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .city-page--conversion {
    padding-bottom: 72px;
  }

  .chengdu-hero {
    min-height: 78svh;
    padding: 112px 20px 54px;
  }

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

  .city-topbar {
    min-height: 76px;
    padding: 14px 18px;
  }

  .city-brand {
    gap: 8px;
  }

  .city-brand img:first-child {
    width: 38px;
    height: 38px;
  }

  .city-brand img:last-child {
    width: 118px;
  }

  .city-topbar nav {
    gap: 0;
  }

  .city-all-destinations {
    display: none;
  }

  .city-topbar-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .chengdu-hero-content {
    margin-top: 34px;
  }

  .chengdu-hero h1 {
    margin-top: 18px;
    font-size: 48px;
  }

  .chengdu-hero-copy {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }

  .chengdu-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
  }

  .chengdu-button {
    width: min(290px, 100%);
    min-height: 48px;
  }

  .chengdu-snapshot {
    padding: 46px 18px 50px;
  }

  .chengdu-snapshot-heading h2 {
    font-size: 28px;
  }

  .chengdu-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .chengdu-facts div,
  .chengdu-facts div:first-child {
    padding: 0 14px;
    border-left: 1px solid rgba(121, 84, 26, 0.18);
  }

  .chengdu-facts div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .chengdu-facts dd {
    font-size: 14px;
  }

  .chengdu-moments {
    padding: 74px 0 82px;
  }

  .chengdu-section-heading {
    margin: 0 18px 30px;
  }

  .chengdu-section-heading h2,
  .chengdu-preview-heading h2,
  .chengdu-contact-copy h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .chengdu-moments-track {
    display: flex;
    gap: 14px;
    width: auto;
    margin: 0;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .chengdu-moments-track::-webkit-scrollbar {
    display: none;
  }

  .chengdu-moment {
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }

  .chengdu-moment > div {
    padding: 20px 18px 22px;
  }

  .chengdu-moment h3 {
    font-size: 21px;
  }

  .chengdu-preview {
    padding: 76px 18px 82px;
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.96)),
      url("assets/experiences/tea-culture/hero.webp") center / cover no-repeat;
  }

  .chengdu-preview-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .chengdu-preview-heading > span {
    margin-top: 18px;
    font-size: 14px;
  }

  .chengdu-days li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 23px 0;
  }

  .chengdu-days h3 {
    font-size: 18px;
  }

  .chengdu-preview-cta {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
    margin-top: 0;
  }

  .chengdu-preview-cta a {
    width: 100%;
  }

  .chengdu-contact {
    padding: 76px 18px 88px;
  }

  .chengdu-contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .chengdu-contact-copy {
    padding-top: 0;
  }

  .chengdu-contact-copy > span {
    margin-top: 20px;
    font-size: 15px;
  }

  .chengdu-contact-copy ul {
    margin-top: 28px;
  }

  .chengdu-lead-panel {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .chengdu-lead-panel h2 {
    font-size: 25px;
  }

  .chengdu-lead-panel .whatsapp-row {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .chengdu-mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 20;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(231, 206, 151, 0.82);
    border-radius: 999px;
    color: #1a140c;
    background: linear-gradient(180deg, #ead090, #bd9148);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition:
      opacity 200ms ease,
      transform 220ms ease;
    touch-action: manipulation;
  }

  .chengdu-mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 390px) {
  .city-brand img:last-child {
    width: 104px;
  }

  .city-topbar-cta {
    padding: 0 11px;
    font-size: 10px;
  }

  .chengdu-hero h1 {
    font-size: 43px;
  }

  .chengdu-section-heading h2,
  .chengdu-preview-heading h2,
  .chengdu-contact-copy h2 {
    font-size: 25px;
  }
}

@media (max-width: 360px) {
  .chengdu-lead-panel .whatsapp-row {
    grid-template-columns: 1fr;
  }
}

/* ============ FAQ 区（首页） ============ */

.faq-section {
  padding: clamp(88px, 9vw, 138px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(185, 139, 66, 0.1), transparent 30%),
    linear-gradient(180deg, #fbf8f1 0%, #f4efe6 100%);
}

.faq-inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: clamp(36px, 4vw, 56px);
}

.faq-item {
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 10px 30px rgba(35, 31, 24, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(185, 139, 66, 0.38);
  box-shadow: 0 14px 38px rgba(35, 31, 24, 0.09);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  color: #10231f;
  font-size: clamp(16.5px, 1.9vw, 19px);
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #d6ad68;
  border: 1px solid rgba(185, 139, 66, 0.35);
  background: rgba(255, 253, 248, 0.9);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transition: transform 200ms ease, color 180ms ease, background 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #fff8ed;
  background: #183a32;
}

.faq-item summary:hover {
  color: #8c652c;
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(185, 139, 66, 0.55);
  outline-offset: -2px;
  border-radius: 18px;
}

.faq-answer {
  padding: 0 26px 24px;
  color: rgba(28, 40, 35, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 10px;
}

@media (max-width: 560px) {
  .faq-item summary {
    padding: 18px 18px;
    font-size: 16.5px;
  }

  .faq-answer {
    padding: 0 18px 20px;
    font-size: 15.5px;
  }

  .faq-item summary::after {
    width: 28px;
    height: 28px;
  }
}

.faq-heading h2,
.faq-heading p {
  white-space: normal;
}

/* FAQ 支付教程跳转链接（YouTube Shorts） */
.faq-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2.5vw, 18px);
  margin-top: 18px;
}

.faq-tutorial {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 20px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 8px 22px rgba(35, 31, 24, 0.07);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.faq-tutorial:hover {
  border-color: rgba(185, 139, 66, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(35, 31, 24, 0.1);
}

.faq-tutorial:focus-visible {
  outline: 2px solid rgba(185, 139, 66, 0.55);
  outline-offset: 2px;
}

.faq-tutorial-badge {
  align-self: flex-start;
  padding: 4px 11px;
  border-radius: 999px;
  color: #fff8ed;
  background: #183a32;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.faq-tutorial-label {
  color: rgba(28, 40, 35, 0.78);
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .faq-links {
    grid-template-columns: 1fr;
  }
}

/* ============ Services 双产品卡（Preview 01 模板） ============ */

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(7, 22, 18, 0.16);
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.product-head {
  position: relative;
  isolation: isolate;
  min-height: 200px;
  padding: 26px 28px 22px;
  color: #fff;
  overflow: hidden;
}

.product-custom {
  --custom-cinnabar: #572723;
  --custom-cinnabar-deep: #421b18;
}

.product-standard .product-head {
  background: #12382e;
}

.product-custom .product-head {
  background: var(--custom-cinnabar);
}

.product-head-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.product-custom .product-head-image {
  object-position: 58% center;
}

.product-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.product-standard .product-head::before {
  background: linear-gradient(
    90deg,
    rgba(14, 59, 46, 0.99) 0%,
    rgba(14, 59, 46, 0.95) 34%,
    rgba(14, 59, 46, 0.62) 58%,
    rgba(14, 59, 46, 0.08) 100%
  );
}

.product-custom .product-head::before {
  background: linear-gradient(
    90deg,
    rgba(75, 30, 26, 0.99) 0%,
    rgba(75, 30, 26, 0.95) 34%,
    rgba(75, 30, 26, 0.62) 58%,
    rgba(75, 30, 26, 0.08) 100%
  );
}

.product-head-copy {
  position: relative;
  z-index: 2;
  width: min(68%, 355px);
}

.product-kicker {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 700;
}

.product-head h3 {
  font-family: "Noto Serif SC", "Cinzel", serif;
  font-size: 26px;
  margin-top: 8px;
  font-weight: 700;
}

.product-sub {
  font-size: 15px;
  opacity: 0.85;
  margin-top: 8px;
  line-height: 1.5;
}

.product-custom .product-sub {
  color: #f0e3c4;
}

.product-body {
  padding: 22px 28px 28px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.route {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(16, 35, 31, 0.14);
  text-decoration: none;
}

.route-coming-soon {
  cursor: default;
}

.route:last-of-type {
  border-bottom: none;
}

.route-pin {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--deep-green);
  color: #e7c672;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  flex: none;
}

.product-custom .route-pin {
  background: var(--custom-cinnabar-deep);
  color: #e7c672;
}

.route-info {
  flex: 1;
  min-width: 0;
}

.route-info b {
  display: block;
  font-size: 16px;
  color: var(--ink);
}

.route-info > span {
  font-size: 14.5px;
  color: #6b6355;
}

.route-price {
  text-align: right;
  flex: none;
}

.route-price b {
  font-size: 17px;
  color: var(--ink);
}

.route-price small {
  display: block;
  font-size: 12.5px;
  color: #8a8172;
  letter-spacing: 0.04em;
}

.route-price-coming-soon b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  color: #8b6522;
  border: 1px solid rgba(139, 101, 34, 0.3);
  border-radius: 999px;
  background: rgba(184, 145, 75, 0.08);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.route-price-coming-soon small {
  margin-top: 4px;
  font-size: 10.5px;
  text-transform: uppercase;
}

.route-tag {
  display: inline-block;
  background: #e7c672;
  color: #10231f;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  padding: 3px 9px;
  border-radius: 99px;
  margin-left: 6px;
}

.product-standard .route-tag {
  margin-left: 0;
}

.cta-info {
  font-size: 14px;
  font-weight: 700;
  color: #6b6355;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  flex-wrap: wrap;
}

.cta-row .btn {
  flex: none;
  text-align: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
}

.product-card .btn-solid {
  background: var(--deep-green);
  color: var(--white);
}

.product-card .btn-ghost {
  border: 1.5px solid rgba(16, 35, 31, 0.14);
  color: var(--ink);
  background: transparent;
}

.product-custom .btn-solid {
  background: var(--custom-cinnabar-deep);
  color: #f2e6cd;
}

.product-custom .btn-ghost {
  border-color: rgba(66, 27, 24, 0.3);
  color: var(--custom-cinnabar-deep);
}

@media (max-width: 900px) {
  .product-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-head {
    min-height: 218px;
    padding: 24px 22px 20px;
  }

  .product-head-copy {
    width: min(78%, 355px);
  }

  .product-standard .product-head::before {
    background: linear-gradient(
      90deg,
      rgba(14, 59, 46, 0.99) 0%,
      rgba(14, 59, 46, 0.94) 50%,
      rgba(14, 59, 46, 0.28) 100%
    );
  }

  .product-custom .product-head::before {
    background: linear-gradient(
      90deg,
      rgba(75, 30, 26, 0.99) 0%,
      rgba(75, 30, 26, 0.94) 50%,
      rgba(75, 30, 26, 0.28) 100%
    );
  }
}

/* ============ Homepage body type scale ============ */

.home-page .subtitle {
  font-size: 21px;
  line-height: 1.5;
}

.home-page .section-heading p,
.home-page .destinations-heading p,
.home-page .experiences-heading span {
  font-size: 18.5px;
  line-height: 1.58;
  white-space: normal;
}

.home-page .product-sub {
  font-size: 17px;
  line-height: 1.52;
}

.home-page .destination-info p,
.home-page .destinations-cta p,
.home-page .experiences-cta p,
.home-page .faq-answer,
.home-page .about-copy > p:not(.about-kicker),
.home-page .trust-points p,
.home-page .form-intro {
  font-size: 17.5px;
  line-height: 1.6;
}

.home-page .about-copy > p.about-lead {
  font-size: 20.5px;
  line-height: 1.58;
}

@media (max-width: 760px) {
  .home-page .subtitle {
    max-width: min(330px, 100%);
    font-size: 19px;
    line-height: 1.5;
    white-space: normal;
  }

  .home-page .section-heading p,
  .home-page .destinations-heading p,
  .home-page .experiences-heading span,
  .home-page .destination-info p,
  .home-page .destinations-cta p,
  .home-page .experiences-cta p,
  .home-page .faq-answer,
  .home-page .about-copy > p:not(.about-kicker),
  .home-page .trust-points p,
  .home-page .form-intro {
    font-size: 16.5px;
    line-height: 1.6;
  }

  .home-page .product-sub {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .home-page .about-copy > p.about-lead {
    font-size: 18.5px;
    line-height: 1.6;
  }
}
