﻿:root {
  --bg-silk: #f6f5f0;
  --deep-forest: #0d2c1d;
  --emerald-glow: #1b4332;
  --champagne-gold: #c5a880;
  --soft-ash: #e2e8f0;
  --muted-ink: #59665f;
  --glass-white: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.55);
  --shadow-soft: 0 30px 60px rgba(13, 44, 29, 0.06);
  --shadow-hover: 0 34px 70px rgba(13, 44, 29, 0.12);
  --transition-fluid: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--deep-forest);
  background: var(--bg-silk);
  font-family: "PingFang SC", "Noto Serif CJK SC", "Microsoft YaHei", serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.test-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 18px 0;
  overflow: visible;
  background: rgba(246, 245, 240, 0.94);
  border-bottom: 1px solid rgba(13, 44, 29, 0.08);
  box-shadow: 0 14px 36px rgba(13, 44, 29, 0.05);
  backdrop-filter: blur(16px);
}

.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(13, 44, 29, 0.08);
}

.brand-badge img {
  width: 118%;
  height: 118%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--deep-forest);
  font-size: 19px;
  font-weight: 800;
}

.brand-copy small {
  color: rgba(13, 44, 29, 0.62);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--deep-forest);
  opacity: 0.82;
  line-height: 1.08;
  text-align: center;
  transition: var(--transition-fluid);
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--champagne-gold);
  opacity: 0;
  transform: scaleX(0.45);
  content: "";
  transition: var(--transition-fluid);
}

.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cn {
  font-size: 16px;
  font-weight: 700;
}

.nav-en {
  color: rgba(13, 44, 29, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.btn-header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-forest);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition-fluid);
}

.btn-header-action:hover {
  background: var(--emerald-glow);
  transform: translateY(-2px);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 32px;
  height: 4px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--deep-forest);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 120;
  display: grid;
  min-width: 230px;
  overflow: hidden;
  border: 1px solid rgba(13, 44, 29, 0.08);
  border-radius: 18px;
  background: rgba(246, 245, 240, 0.98);
  box-shadow: 0 22px 50px rgba(13, 44, 29, 0.14);
  backdrop-filter: blur(18px);
}

.mobile-menu-panel a {
  padding: 15px 18px;
  color: var(--deep-forest);
  font-size: 15px;
  font-weight: 750;
  border-bottom: 1px solid rgba(13, 44, 29, 0.06);
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
}

.hero-fullscreen {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1300px;
  width: calc(100% - 80px);
  min-height: 780px;
  margin: 0 auto;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  background: var(--bg-silk);
}

.hero-bg,
.hero-overlay {
  position: absolute;
}

.hero-bg {
  inset: 0 0 0 38%;
  z-index: -2;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-bg-image.is-first {
  opacity: 1;
}

.hero-bg-image.is-second {
  animation-delay: -5s;
}

.hero-bg-image.is-poster {
  object-fit: contain;
  object-position: right center;
}

@keyframes heroImageFade {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image {
    animation: none;
    opacity: 1;
  }

  .hero-bg-image.is-first {
    opacity: 1;
  }
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    var(--bg-silk) 0%,
    rgba(246, 245, 240, 0.96) 8%,
    rgba(246, 245, 240, 0.72) 20%,
    rgba(246, 245, 240, 0.28) 34%,
    rgba(246, 245, 240, 0) 52%
  );
  content: "";
  pointer-events: none;
}

.hero-overlay {
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(246, 245, 240, 0) 0%,
    rgba(246, 245, 240, 0) 70%,
    rgba(246, 245, 240, 0.62) 92%,
    rgba(246, 245, 240, 0.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 70px;
}

.hero-content::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: min(48%, 610px);
  background: linear-gradient(
    90deg,
    rgba(246, 245, 240, 0.98) 0%,
    rgba(246, 245, 240, 0.96) 72%,
    rgba(246, 245, 240, 0) 100%
  );
  content: "";
}

.hero-content > * {
  max-width: 560px;
}

.subtitle {
  margin-bottom: 30px;
  color: var(--emerald-glow);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 26px;
  color: var(--deep-forest);
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-content h1 span {
  display: block;
  color: var(--emerald-glow);
  font-family: "Noto Serif CJK SC", "Songti SC", serif;
  font-style: italic;
}

.hero-description {
  margin: 0 0 30px;
  max-width: 500px;
  color: rgba(13, 44, 29, 0.78);
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 12px;
  padding: 0 30px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-forest);
  box-shadow: 0 10px 30px rgba(13, 44, 29, 0.16);
  font-size: 15px;
  font-weight: 800;
  transition: var(--transition-fluid);
}

.hero-pill-btn span {
  font-size: 20px;
  line-height: 1;
  transition: var(--transition-fluid);
}

.hero-pill-btn:hover {
  background: var(--emerald-glow);
  transform: translateY(-2px);
}

.hero-pill-btn:hover span {
  transform: translateX(4px);
}

.giveaway-home-banner {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: -44px;
  margin-bottom: 34px;
  padding-top: 0;
}

.giveaway-home-banner::before {
  content: "";
  position: absolute;
  inset: 0 40px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(197, 168, 128, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 236, 0.92));
  border: 1px solid rgba(13, 44, 29, 0.08);
  box-shadow: 0 24px 60px rgba(13, 44, 29, 0.08);
}

.giveaway-home-copy {
  padding: clamp(30px, 5vw, 46px) 0 clamp(30px, 5vw, 46px) clamp(30px, 6vw, 72px);
}

.giveaway-home-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--champagne-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.giveaway-home-copy h2 {
  margin: 0;
  color: var(--deep-forest);
  font-family: "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.22;
}

.giveaway-home-copy p {
  max-width: 620px;
  margin: 14px 0 22px;
  color: rgba(13, 44, 29, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.giveaway-home-copy a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--deep-forest);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  transition: var(--transition-fluid);
}

.giveaway-home-copy a:hover {
  transform: translateY(-2px);
  background: var(--emerald-glow);
}

.giveaway-home-image {
  padding: 22px clamp(30px, 5vw, 54px) 22px 0;
}

.giveaway-home-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(13, 44, 29, 0.12);
}

.usps-bridge-container {
  position: relative;
  z-index: 10;
  margin-top: 0;
  margin-bottom: 80px;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 30px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  background: var(--glass-white);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.usp-card {
  min-width: 0;
  padding: 10px 30px;
  border-right: 1px solid rgba(13, 44, 29, 0.08);
}

.usp-card:last-child {
  border-right: 0;
}

.usp-card h3 {
  margin: 0 0 6px;
  color: var(--deep-forest);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.25;
}

.usp-card p {
  margin: 0;
  color: rgba(13, 44, 29, 0.6);
  font-size: 13px;
  line-height: 1.45;
}

.manifesto-section {
  margin-bottom: 70px;
}

.manifesto-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border-radius: 40px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.placeholder-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(13, 44, 29, 0.32);
  background:
    linear-gradient(135deg, rgba(226, 232, 240, 0.78), rgba(203, 213, 225, 0.68)),
    radial-gradient(circle at 74% 24%, rgba(197, 168, 128, 0.2), transparent 42%);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-panel::after {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.34) 50%, transparent 70%);
  content: "";
  animation: shine-glow 6s infinite linear;
}

@keyframes shine-glow {
  0% {
    transform: translate(-30%, -30%) rotate(45deg);
  }
  100% {
    transform: translate(30%, 30%) rotate(45deg);
  }
}

.manifesto-img {
  width: 100%;
  height: 520px;
}

.manifesto-text {
  position: relative;
  padding: 62px 80px 62px 60px;
}

.manifesto-text::before {
  position: absolute;
  top: -84px;
  left: 20px;
  color: var(--champagne-gold);
  content: "鈥?;
  font-family: Georgia, serif;
  font-size: 190px;
  line-height: 1;
  opacity: 0.15;
}

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

.manifesto-text h2 {
  position: relative;
  margin: 0 0 25px;
  color: var(--deep-forest);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.38;
}

.manifesto-text p:not(.section-kicker) {
  position: relative;
  margin: 0 0 18px;
  max-width: 560px;
  color: rgba(13, 44, 29, 0.82);
  font-size: 16px;
  line-height: 1.85;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header span {
  color: var(--champagne-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 10px 0 0;
  color: var(--deep-forest);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.25;
}

.section-header p {
  max-width: 660px;
  margin: 14px auto 0;
  color: var(--muted-ink);
  font-size: 15px;
  line-height: 1.7;
}

.destinations-section {
  margin-bottom: 122px;
}

.destinations-section[hidden] {
  display: none;
}

.available-services-section {
  margin-top: -60px;
}

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

.destination-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fluid);
}

.destination-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.destination-image {
  height: 250px;
  overflow: hidden;
  background: var(--soft-ash);
}

.destination-image img {
  transition: var(--transition-fluid);
}

.destination-card:hover .destination-image img {
  transform: scale(1.035);
}

.destination-copy {
  padding: 24px 26px 28px;
}

.destination-copy h3 {
  margin: 0 0 8px;
  color: var(--deep-forest);
  font-size: 22px;
  font-weight: 550;
  line-height: 1.25;
}

.destination-copy p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-forest);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-fluid);
}

.service-card-link:hover {
  background: var(--emerald-glow);
  transform: translateY(-2px);
}

.airport-transfer-section {
  margin-bottom: 122px;
}

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

.transfer-node {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fluid);
}

.transfer-node:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.transfer-img {
  display: block;
  height: 310px;
  overflow: hidden;
  background: var(--soft-ash);
}

.transfer-img img {
  transition: var(--transition-fluid);
}

.transfer-node:hover .transfer-img img {
  transform: scale(1.035);
}

.transfer-copy {
  padding: 30px;
}

.transfer-copy p {
  margin: 0 0 8px;
  color: var(--champagne-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.transfer-copy h3 {
  margin: 0 0 10px;
  color: var(--deep-forest);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.24;
}

.transfer-copy span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted-ink);
  font-size: 15px;
}

.transfer-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep-forest);
  font-size: 14px;
  font-weight: 800;
  transition: var(--transition-fluid);
}

.transfer-copy a:hover {
  background: var(--emerald-glow);
  transform: translateY(-2px);
}

.trust-section {
  margin-bottom: 120px;
}

.theatre-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 40px;
  color: #fff;
  background: radial-gradient(circle at top left, var(--emerald-glow), var(--deep-forest));
}

.theatre-banner::after {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--champagne-gold);
  opacity: 0.1;
  filter: blur(120px);
  content: "";
}

.theatre-img {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.theatre-right {
  position: relative;
  z-index: 1;
  padding: 60px 76px 60px 68px;
}

.theatre-right h2 {
  max-width: 820px;
  margin: 0 0 34px;
  color: #fff;
  font-family: "Noto Serif CJK SC", "Songti SC", "STSong", serif;
  font-size: clamp(30px, 2.45vw, 38px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.shield-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 18px;
  align-items: start;
}

.shield-number {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(197, 168, 128, 0.72);
  border-radius: 50%;
  color: var(--champagne-gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.shield-item h3 {
  margin: 0;
  color: var(--champagne-gold);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.shield-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.test-footer {
  padding: 100px 0 40px;
  border-radius: 40px 40px 0 0;
  color: rgba(255, 255, 255, 0.62);
  background: #091e14;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 76px;
}

.footer-brand h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 2px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: var(--champagne-gold);
  font-size: 16px;
  font-weight: 500;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  transition: var(--transition-fluid);
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-bottom p:last-child {
  color: rgba(197, 168, 128, 0.82);
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 22px;
  }

  .nav-cn {
    font-size: 15px;
  }

  .nav-en {
    font-size: 12px;
  }

  .btn-header-action {
    padding: 0 20px;
  }

  .theatre-banner {
    gap: 0;
    padding: 0;
  }

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

@media (max-width: 968px) {
  .container {
    padding: 0 24px;
  }

  .test-header {
    position: relative;
    z-index: 300;
    padding: 14px 0;
  }

  .nav-container {
    grid-template-columns: minmax(0, auto) auto;
    justify-content: space-between;
    gap: 12px;
    overflow: visible;
  }

  .nav-links {
    display: none;
  }

  .btn-header-action {
    display: none;
  }

  .mobile-menu {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .hero-fullscreen {
    width: 100%;
    min-height: 720px;
    border-radius: 0 0 32px 32px;
  }

  .hero-content {
    padding-top: 56px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .giveaway-home-banner {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .giveaway-home-banner::before {
    inset: 0 24px;
  }

  .giveaway-home-copy {
    padding: 30px 42px 0;
  }

  .giveaway-home-image {
    padding: 0 42px 34px;
  }

  .usps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .usp-card {
    border-right: 0;
    border-bottom: 1px solid rgba(13, 44, 29, 0.08);
    padding: 18px 22px;
  }

  .usp-card:last-child {
    border-bottom: 0;
  }

  .manifesto-card,
  .theatre-banner,
  .transfer-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-img {
    height: 320px;
  }

  .manifesto-text {
    padding: 44px 34px 48px;
  }

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

  .theatre-img {
    height: 310px;
    min-height: 310px;
  }

  .shield-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .brand-mark {
    gap: 10px;
  }

  .brand-badge {
    width: 62px;
    height: 62px;
    padding: 3px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy {
    display: flex;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .hero-fullscreen {
    display: block;
    min-height: auto;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    height: 300px;
  }

  .hero-bg::before,
  .hero-overlay,
  .hero-content::before {
    display: none;
  }

  .hero-content {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 56px;
    background: var(--bg-silk);
  }

  .hero-content > * {
    max-width: none;
  }

  .subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-pill-btn {
    width: 100%;
  }

  .giveaway-home-banner {
    margin-top: 24px;
    margin-bottom: 30px;
  }

  .giveaway-home-banner::before {
    inset: 0;
    border-radius: 28px;
  }

  .giveaway-home-copy {
    padding: 26px 22px 0;
  }

  .giveaway-home-copy h2 {
    font-size: 1.55rem;
  }

  .giveaway-home-copy a {
    width: 100%;
  }

  .giveaway-home-image {
    padding: 0 22px 24px;
  }

  .giveaway-home-image img {
    border-radius: 20px;
  }

  .usps-bridge-container {
    margin-bottom: 58px;
  }

  .manifesto-card,
  .transfer-node,
  .theatre-banner {
    border-radius: 28px;
  }

  .manifesto-img {
    height: 250px;
  }

  .manifesto-text h2,
  .section-header h2,
  .theatre-right h2 {
    font-size: 32px;
    white-space: normal;
  }

  .manifesto-text p:not(.section-kicker) {
    font-size: 15px;
  }

  .destinations-section,
  .airport-transfer-section,
  .trust-section {
    margin-bottom: 82px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header span {
    letter-spacing: 4px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .destination-image {
    height: 220px;
  }

  .transfer-img {
    height: 240px;
  }

  .transfer-copy {
    padding: 24px;
  }

  .transfer-copy h3 {
    font-size: 24px;
  }

  .theatre-banner {
    padding: 0;
  }

  .theatre-img {
    height: 240px;
    min-height: 240px;
  }

  .theatre-right {
    padding: 30px 22px;
  }

  .test-footer {
    padding-top: 64px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 52px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

