:root {
  --navy: #141b3a;
  --navy-deep: #070b1d;
  --navy-soft: #273052;
  --ink: #211b1a;
  --muted: #766c68;
  --gold: #b8892e;
  --gold-bright: #f6d889;
  --orange: #a56f25;
  --red: #7b1e31;
  --red-deep: #541324;
  --paper: #fcf8ef;
  --line: rgba(120, 84, 27, 0.18);
  --shell: 1200px;
  --shadow: 0 22px 60px rgba(17, 14, 22, 0.17);
  --display: "Cormorant Garamond", "Noto Serif", Georgia, "Times New Roman", serif;
  --body: "Be Vietnam Pro", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 137, 46, 0.08), transparent 27%),
    linear-gradient(135deg, #fffdf8 0%, var(--paper) 52%, #f3eadb 100%);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--red));
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  background: rgba(7, 11, 29, 0.95);
  border-bottom: 1px solid rgba(246, 216, 137, 0.28);
  box-shadow: 0 8px 28px rgba(7, 11, 29, 0.2);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 11, 29, 0.99);
  border-bottom-color: rgba(246, 216, 137, 0.46);
  box-shadow: 0 12px 36px rgba(7, 11, 29, 0.32);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-seal {
  position: relative;
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3a426a, var(--navy-deep) 70%);
  box-shadow: inset 0 0 0 4px rgba(246, 216, 137, 0.1), 0 0 20px rgba(184, 137, 46, 0.15);
}

.brand-letter {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1;
}

.brand-crown {
  position: absolute;
  top: -15px;
  left: 50%;
  color: var(--gold);
  font-size: 20px;
  transform: translateX(-50%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: #fff9eb;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.07em;
}

.brand-copy em {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: rgba(255, 249, 235, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-bright);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  color: #fff;
  border: 1px solid rgba(246, 216, 137, 0.62);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 22px rgba(84, 19, 36, 0.32);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-call:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}

.nav-call b {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.nav-call b + b {
  margin-top: 1px;
}

.nav-call__dot {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 8px;
  color: var(--gold-bright);
  border: 1px solid rgba(246, 216, 137, 0.35);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(500px, 51vw, 660px);
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.hero::before {
  position: absolute;
  z-index: 5;
  inset: 16px;
  border: 1px solid rgba(246, 216, 137, 0.52);
  box-shadow: inset 0 0 0 5px rgba(7, 11, 29, 0.12), 0 0 0 1px rgba(7, 11, 29, 0.28);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(7, 11, 29, 0.44) 100%);
  content: "";
  pointer-events: none;
}

.hero--image-first .hero-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.98);
}

.hero--image-first .hero-shade {
  background: linear-gradient(90deg, rgba(7, 11, 29, 0.23), rgba(7, 11, 29, 0.01) 44%, rgba(7, 11, 29, 0.23));
}

.hero--image-first .hero-slide.is-active {
  background-color: var(--navy-deep);
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 700ms ease, transform 1100ms ease;
}

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

.hero-shade {
  background: linear-gradient(90deg, rgba(4, 8, 36, 0.2), rgba(4, 8, 36, 0.02) 34%, rgba(4, 8, 36, 0.08) 70%, rgba(4, 8, 36, 0.4));
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(47vw, 620px);
  background: linear-gradient(150deg, #f8da8d, #a97826 50%, #e4b95b);
  clip-path: polygon(14% 0, 86% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
  transition: opacity 260ms ease, transform 500ms ease;
}

.hero-panel__inner {
  position: absolute;
  inset: 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(150deg, #222b51, #080b1d 64%, #151b37);
  clip-path: polygon(14% 0, 86% 0, 100% 100%, 0 100%);
}

.hero-panel__inner::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(246, 216, 137, 0.28) 0.8px, transparent 0.8px), linear-gradient(155deg, transparent 50%, rgba(246, 216, 137, 0.12) 50.1%, transparent 50.8%);
  background-position: 0 0, 0 0;
  background-size: 10px 10px, 100% 100%;
  content: "";
}

.hero-panel__content {
  position: relative;
  display: flex;
  width: 78%;
  min-height: 88%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 46px 18px 34px;
  text-align: center;
}

.hero-kicker {
  color: var(--gold-bright);
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-seal {
  position: relative;
  display: grid;
  width: clamp(74px, 8vw, 105px);
  height: clamp(74px, 8vw, 105px);
  margin: 16px 0 10px;
  place-items: center;
  color: var(--gold-bright);
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  background: rgba(5, 10, 57, 0.32);
  box-shadow: inset 0 0 0 8px rgba(246, 216, 137, 0.08), 0 0 26px rgba(184, 137, 46, 0.18);
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1;
}

.hero-crown {
  position: absolute;
  top: -21px;
  left: 50%;
  color: var(--gold-bright);
  font-family: var(--body);
  font-size: clamp(25px, 3vw, 38px);
  transform: translateX(-50%);
}

.hero-brand {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.hero-brand strong {
  display: block;
}

.hero-subtitle,
.hero-note {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(10px, 1.1vw, 14px);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 24px 10px 15px;
  color: var(--red-deep);
  border: 1px solid rgba(246, 216, 137, 0.82);
  border-radius: 3px;
  background: #fff9eb;
  font-family: var(--display);
  font-size: clamp(16px, 1.9vw, 27px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease;
}

.hero-phone:hover {
  transform: translateY(-3px);
}

.hero-phone__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 2px;
  background: var(--red);
  font-family: var(--body);
  font-size: 17px;
}

.hero-phone__numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.04;
  white-space: nowrap;
}

.hero-phone__numbers span + span {
  margin-top: 4px;
  color: #b91d2e;
  font-family: var(--body);
  font-size: 0.62em;
  font-weight: 700;
}

.route-chip {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 15px);
  margin-top: 19px;
  padding: 8px 16px;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(7, 11, 29, 0.18);
  font-size: clamp(11px, 1.2vw, 16px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.route-chip b {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.hero-note {
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.hero-side-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-side-note i {
  display: block;
  width: 1px;
  height: 54px;
  background: var(--gold);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.hero-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  opacity: 0.8;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.hero-dot:hover,
.hero-dot.is-active {
  background: var(--gold-bright);
  opacity: 1;
  transform: scale(1.22);
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 23px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.hero-scroll span {
  display: inline-block;
  width: 18px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.hero-scroll span::after {
  display: block;
  width: 3px;
  height: 6px;
  margin: 6px auto 0;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(7px); opacity: 1; }
}

.section-pad {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.intro-copy h1 {
  margin: 0;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(26px, 3.1vw, 43px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.section-heading p:last-child {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
}

.section-eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.23em;
}

.heading-glyph {
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.68em;
  vertical-align: 0.12em;
}

.heading-glyph--orange {
  color: var(--orange);
}

.gold-rule {
  position: relative;
  width: 112px;
  height: 2px;
  margin: 22px 0 24px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-rule::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  background: var(--paper);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(184, 137, 46, 0.13), transparent 24%),
    linear-gradient(135deg, #fffdf8, #f4ead9);
}

.intro-section::before,
.why-section::before,
.gallery-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: repeating-linear-gradient(135deg, transparent 0 26px, rgba(184, 137, 46, 0.045) 27px, transparent 28px 54px);
  content: "";
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.intro-copy h1 {
  color: var(--orange);
  font-size: clamp(30px, 4vw, 52px);
}

.intro-copy h1 span {
  display: block;
  color: var(--navy);
}

.lead {
  margin: 0 0 19px;
  color: #4c5362;
}

.lead strong {
  color: var(--ink);
  font-size: 17px;
}

.check-list,
.service-card ul,
.benefit-list {
  padding: 0;
  list-style: none;
}

.check-list {
  margin: 0 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #4c5362;
}

.check-list li + li {
  margin-top: 9px;
}

.check-list li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--gold);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 21px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--red {
  color: #fff;
  border: 1px solid rgba(246, 216, 137, 0.58);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 12px 22px rgba(84, 19, 36, 0.24);
}

.button--red:hover {
  background: var(--red-deep);
  box-shadow: 0 16px 28px rgba(84, 19, 36, 0.34);
}

.button--outline {
  color: var(--gold-bright);
  border: 1px solid rgba(246, 216, 137, 0.7);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.button--outline:hover {
  background: rgba(246, 216, 137, 0.12);
  box-shadow: 0 12px 24px rgba(7, 11, 29, 0.24);
}

.trust-strip {
  display: flex;
  gap: 25px;
  margin-top: 38px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.trust-strip div {
  display: flex;
  flex-direction: column;
}

.trust-strip strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.intro-media {
  position: relative;
}

.media-frame {
  position: relative;
  padding: 13px 13px 0 0;
}

.media-frame::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 83%;
  height: 90%;
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 5px rgba(184, 137, 46, 0.06);
  content: "";
}

.media-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border: 4px solid #fff9eb;
  outline: 1px solid rgba(184, 137, 46, 0.7);
  box-shadow: var(--shadow);
}

.media-stamp {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 21px;
  padding: 13px 18px;
  color: #fff9eb;
  border: 1px solid var(--gold-bright);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-family: var(--display);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  box-shadow: 8px 9px 0 var(--gold);
}

.media-stamp b {
  font-size: 10px;
}

.media-caption {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding-left: 6px;
}

.media-caption span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 22px;
}

.media-caption p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.route-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(184, 137, 46, 0.13), transparent 24%),
    linear-gradient(145deg, #f7eddd 0%, #fffdf8 52%, #efe0c8 100%);
}

.route-section::before,
.route-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.route-section::before {
  top: -100px;
  right: -80px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(184, 137, 46, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 35px rgba(184, 137, 46, 0.035);
}

.route-section::after {
  bottom: 0;
  left: 0;
  width: 42%;
  height: 50%;
  background: repeating-linear-gradient(135deg, transparent 0 28px, rgba(184, 137, 46, 0.05) 29px, transparent 30px 58px);
}

.route-section .shell {
  position: relative;
  z-index: 1;
}

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

.route-card {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 4vw, 43px);
  overflow: hidden;
  border: 1px solid rgba(184, 137, 46, 0.35);
  border-top: 3px solid var(--gold);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 20px 44px rgba(49, 38, 27, 0.11);
}

.route-card--airport {
  color: #fff;
  border-color: rgba(246, 216, 137, 0.35);
  background:
    radial-gradient(circle at 92% 8%, rgba(246, 216, 137, 0.16), transparent 26%),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
}

.route-card__number {
  position: absolute;
  top: 13px;
  right: 22px;
  color: rgba(184, 137, 46, 0.16);
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
}

.route-card--airport .route-card__number {
  color: rgba(246, 216, 137, 0.12);
}

.route-card__label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.route-card--airport .route-card__label {
  color: var(--gold-bright);
}

.route-card h3 {
  position: relative;
  max-width: 430px;
  margin: 0 0 17px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.route-card--airport h3 {
  color: #fff9eb;
}

.route-card > p:not(.route-card__label) {
  position: relative;
  max-width: 560px;
  margin: 0;
  color: #59606b;
}

.route-card--airport > p:not(.route-card__label) {
  color: rgba(255, 255, 255, 0.72);
}

.route-points {
  position: relative;
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.route-card--airport .route-points {
  border-top-color: rgba(246, 216, 137, 0.22);
}

.route-points li {
  position: relative;
  padding-left: 22px;
  color: #454d5a;
  font-size: 13px;
}

.route-card--airport .route-points li {
  color: rgba(255, 255, 255, 0.76);
}

.route-points li::before {
  position: absolute;
  top: 0.52em;
  left: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.price-board {
  position: relative;
  grid-column: 1 / -1;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(184, 137, 46, 0.42);
  background:
    linear-gradient(90deg, rgba(184, 137, 46, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(184, 137, 46, 0.045) 1px, transparent 1px),
    rgba(255, 253, 248, 0.94);
  background-size: 31px 31px, 31px 31px, auto;
  box-shadow: 0 22px 52px rgba(49, 38, 27, 0.12);
}

.price-board::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--navy));
  content: "";
}

.price-board__heading {
  max-width: 720px;
  margin: 0 auto 31px;
  text-align: center;
}

.price-board__heading .section-eyebrow {
  margin-bottom: 9px;
}

.price-board__heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.15;
}

.price-board__heading > p:last-child {
  margin: 12px auto 0;
  color: var(--muted);
}

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

.price-card {
  position: relative;
  padding: 24px 22px 20px;
  border: 1px solid rgba(184, 137, 46, 0.3);
  border-top: 2px solid var(--gold);
  background: #fffdf8;
  box-shadow: 0 12px 26px rgba(38, 29, 23, 0.08);
}

.price-card--airport {
  color: #fff;
  border-color: rgba(246, 216, 137, 0.46);
  background:
    radial-gradient(circle at 92% 5%, rgba(246, 216, 137, 0.15), transparent 30%),
    linear-gradient(145deg, var(--red-deep), var(--navy-deep));
}

.price-card__top {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-card--airport .price-card__top {
  border-bottom-color: rgba(246, 216, 137, 0.23);
}

.price-card__icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  box-shadow: inset 0 0 0 4px rgba(246, 216, 137, 0.08);
}

.price-card--airport .price-card__icon {
  color: var(--navy-deep);
  background: var(--gold-bright);
}

.price-card__top small {
  display: block;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.price-card--airport .price-card__top small {
  color: var(--gold-bright);
}

.price-card h4 {
  margin: 2px 0 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.price-card--airport h4 {
  color: #fff9eb;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
}

.price-list > div {
  display: grid;
  grid-template-columns: minmax(70px, 0.7fr) minmax(0, 1.3fr);
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(184, 137, 46, 0.14);
}

.price-list > div:last-child {
  border-bottom: 0;
}

.price-card--airport .price-list > div {
  border-bottom-color: rgba(246, 216, 137, 0.14);
}

.price-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card--airport .price-list dt {
  color: rgba(255, 255, 255, 0.58);
}

.price-list dd {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  margin: 0;
  color: var(--red);
  text-align: right;
}

.price-card--airport .price-list dd {
  color: var(--gold-bright);
}

.price-list strong {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
}

.price-list dd span {
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.price-board__note {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.price-board__note span {
  color: var(--red);
}

.price-board__note a {
  color: var(--red);
  font-weight: 800;
}

.route-booking {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 27px 31px;
  color: #fff;
  border: 1px solid rgba(246, 216, 137, 0.55);
  background: linear-gradient(105deg, var(--red-deep), var(--navy-deep) 67%, var(--navy));
  box-shadow: 10px 10px 0 rgba(184, 137, 46, 0.52);
}

.route-booking span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.route-booking strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(19px, 2.4vw, 27px);
}

.route-booking p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.route-booking__actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-top: 1px solid rgba(246, 216, 137, 0.26);
  border-bottom: 1px solid rgba(246, 216, 137, 0.26);
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 137, 46, 0.2), transparent 24%),
    linear-gradient(135deg, #1b2346, var(--navy-deep) 62%, #11162d);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 44px, rgba(246, 216, 137, 0.035) 45px, transparent 46px 92px);
  content: "";
  pointer-events: none;
}

.section-dark::after {
  position: absolute;
  right: calc(50% - 30px);
  bottom: -29px;
  width: 0;
  height: 0;
  border-top: 30px solid var(--navy);
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  content: "";
}

.section-heading--light h2 {
  color: var(--gold-bright);
}

.section-heading--light p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.service-feature {
  position: relative;
  width: min(100%, 790px);
  margin: 0 auto 63px;
  overflow: hidden;
  border: 1px solid rgba(246, 216, 137, 0.72);
  box-shadow: 0 0 0 6px rgba(184, 137, 46, 0.08), 0 18px 50px rgba(0, 0, 0, 0.3);
}

.service-feature img {
  width: 100%;
  aspect-ratio: 2.2;
  object-fit: cover;
}

.service-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 9, 54, 0.08), transparent 55%, rgba(5, 9, 54, 0.42));
  content: "";
}

.service-feature__label {
  position: absolute;
  z-index: 1;
  right: 23px;
  bottom: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
  text-align: right;
}

.service-feature__label span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-feature__label strong {
  font-family: var(--display);
  font-size: 19px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
}

.service-card {
  position: relative;
  padding: 24px 18px 17px;
  border: 1px solid rgba(246, 216, 137, 0.24);
  border-top: 2px solid rgba(246, 216, 137, 0.76);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
}

.service-card::before {
  position: absolute;
  top: -2px;
  left: 18px;
  width: 52px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.service-card__number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 216, 106, 0.5);
  font-family: var(--display);
  font-size: 14px;
}

.service-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 23px);
}

.service-card ul {
  margin: 0;
}

.service-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.service-card li + li {
  margin-top: 10px;
}

.service-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.why-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffdf8 0%, #f7eddd 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(35px, 8vw, 108px);
  max-width: 1060px;
  margin: 0 auto;
}

.benefit-list {
  margin: 0;
}

.benefit-list li {
  position: relative;
  padding: 12px 0 12px 25px;
  color: #3e4655;
  border-bottom: 1px solid rgba(13, 20, 83, 0.08);
}

.benefit-list li::before {
  position: absolute;
  top: 20px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 182, 63, 0.15);
  content: "";
}

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

.why-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 19px;
  margin: 65px auto 0;
  padding: 18px 23px;
  color: #fff;
  border: 1px solid rgba(246, 216, 137, 0.6);
  background: linear-gradient(105deg, var(--red-deep), var(--navy-deep) 62%, var(--navy));
  box-shadow: 10px 10px 0 rgba(184, 137, 46, 0.62);
}

.why-banner span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.why-banner strong {
  font-family: var(--display);
  font-size: 16px;
}

.why-banner a {
  padding: 7px 0 7px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gold-bright);
  font-family: var(--display);
  white-space: nowrap;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7eddd, #fffdf8 58%, #f1e4cf);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-card {
  position: relative;
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 137, 46, 0.54);
  background: #ddd;
  box-shadow: 0 12px 28px rgba(31, 24, 23, 0.12);
  cursor: pointer;
}

.gallery-card::before {
  position: absolute;
  z-index: 1;
  inset: 10px;
  border: 1px solid rgba(246, 216, 137, 0.72);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.gallery-card:nth-child(4) {
  grid-column: 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.08);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 13, 66, 0.65));
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-card__overlay {
  position: absolute;
  z-index: 1;
  right: 17px;
  bottom: 16px;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-card__overlay span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 15px;
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after,
.gallery-card:hover::before,
.gallery-card:focus-visible::before,
.gallery-card:hover .gallery-card__overlay,
.gallery-card:focus-visible .gallery-card__overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-card__overlay,
.gallery-card:focus-visible .gallery-card__overlay {
  transform: translateY(0);
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(184, 137, 46, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(184, 137, 46, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #fffdf8, #f3e8d6);
  background-size: 34px 34px, 34px 34px, auto;
}

.faq-section::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 55px solid rgba(184, 137, 46, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(42px, 8vw, 105px);
}

.faq-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(29px, 3.7vw, 47px);
  line-height: 1.12;
}

.faq-intro > p:not(.section-eyebrow) {
  margin: 20px 0 27px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  border: 1px solid rgba(184, 137, 46, 0.28);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 30px rgba(45, 34, 24, 0.08);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 18px 58px 18px 22px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--gold-bright);
  border-radius: 50%;
  background: var(--navy);
  content: "+";
  font-family: var(--body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  color: var(--red);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 21px;
  color: #535b68;
}

.faq-item p a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  color: #fff;
  border-top: 1px solid rgba(246, 216, 137, 0.34);
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 137, 46, 0.16), transparent 25%),
    linear-gradient(135deg, #151d3d, var(--navy-deep) 62%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: clamp(34px, 6vw, 90px);
  padding-top: 73px;
  padding-bottom: 72px;
}

.footer-column h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.footer-rule {
  width: 100%;
  height: 1px;
  margin: 14px 0 27px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(246, 216, 137, 0.12));
}

.footer-brand-name {
  margin: 0 0 31px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 20px;
}

.footer-brand-name span {
  display: block;
}

.footer-highlight {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.footer-highlight a,
.footer-column address a {
  color: var(--gold-bright);
}

.footer-muted {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-column address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-style: normal;
}

.footer-column address b {
  color: #fff;
}

.footer-column--seal {
  text-align: center;
}

.footer-column--seal .footer-rule {
  margin-bottom: 20px;
}

.footer-seal {
  position: relative;
  display: grid;
  width: 144px;
  height: 144px;
  margin: 14px auto 19px;
  place-items: center;
  color: var(--gold-bright);
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px rgba(246, 216, 137, 0.08), 0 0 0 7px rgba(184, 137, 46, 0.08);
  font-family: var(--display);
  font-size: 82px;
  line-height: 1;
}

.footer-seal__crown {
  position: absolute;
  top: -34px;
  left: 50%;
  font-family: var(--body);
  font-size: 39px;
  transform: translateX(-50%);
}

.footer-column--seal > p {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 18px;
}

.footer-column--seal > p strong {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom .shell {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.footer-bottom a {
  color: var(--gold-bright);
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  z-index: 45;
  bottom: 20px;
  left: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.floating-zalo {
  display: grid;
  width: 58px;
  height: 58px;
  padding: 6px;
  place-items: center;
  border: 7px solid rgba(246, 216, 137, 0.55);
  border-radius: 50%;
  background: #1da1f2;
  box-shadow: 0 8px 20px rgba(13, 20, 83, 0.2);
  transition: transform 180ms ease;
}

.floating-zalo:hover {
  transform: translateY(-4px) rotate(-5deg);
}

.floating-zalo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 8px 17px 8px 10px;
  color: #fff;
  border: 2px solid rgba(246, 216, 137, 0.7);
  border-radius: 999px;
  background: var(--red);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(84, 19, 36, 0.3);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-phone:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
}

.floating-phone img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 35px 75px;
  background: rgba(7, 11, 29, 0.94);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  max-width: min(1000px, 90vw);
  margin: 0;
  color: #fff;
  text-align: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 15px;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--red);
  transform: scale(1.08);
}

.lightbox-close {
  top: 24px;
  right: 28px;
  width: 42px;
  height: 42px;
  font-size: 29px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 37px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-arrow--prev {
  left: 22px;
}

.lightbox-arrow--next {
  right: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 980px) {
  .nav-wrap {
    gap: 14px;
  }

  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .nav-call {
    padding: 8px 11px;
  }

  .intro-grid {
    gap: 50px;
  }

  .service-grid {
    gap: 24px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 800px) {
  .shell {
    width: min(calc(100% - 34px), var(--shell));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 17px;
    left: 17px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 14px;
    font-size: 11px;
  }

  .main-nav a::after {
    right: auto;
    bottom: 0;
    left: 14px;
    width: 34px;
  }

  .nav-call {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero--image-first .hero-slide.is-active {
    background-size: cover;
  }

  .hero-panel {
    top: 50%;
    bottom: auto;
    width: min(91vw, 560px);
    height: 91%;
    transform: translate(-50%, -50%);
  }

  .hero-panel__content {
    width: 74%;
    padding-top: 35px;
  }

  .hero-side-note {
    right: 8px;
  }

  .hero-dots {
    right: 8px;
  }

  .hero-scroll {
    bottom: 14px;
    left: 16px;
  }

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

  .intro-media {
    max-width: 680px;
    margin: 0 auto;
  }

  .route-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .route-booking {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .route-booking__actions {
    flex-wrap: wrap;
  }

  .faq-intro {
    max-width: 650px;
  }

  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .why-banner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .why-banner a {
    width: fit-content;
    padding: 5px 0 0;
    border: 0;
  }

  .footer-column--seal {
    text-align: left;
  }

  .footer-seal {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand-seal {
    width: 42px;
    height: 42px;
  }

  .brand-letter {
    font-size: 23px;
  }

  .brand-copy {
    font-size: 11px;
  }

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

  .hero {
    min-height: 575px;
  }

  .hero-slide {
    background-position: 51% center;
  }

  .hero-panel {
    width: 100%;
    height: 92%;
  }

  .hero-panel__inner {
    inset: 4px;
  }

  .hero-panel__content {
    width: 73%;
    padding-inline: 7px;
  }

  .hero-kicker {
    font-size: 8px;
  }

  .hero-seal {
    width: 72px;
    height: 72px;
    margin-top: 13px;
    font-size: 35px;
  }

  .hero-brand {
    font-size: 20px;
  }

  .hero-phone {
    gap: 7px;
    padding: 8px 13px 8px 9px;
    font-size: 15px;
  }

  .hero-phone__numbers span + span {
    margin-top: 3px;
  }

  .hero-phone__icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .route-chip {
    gap: 7px;
    margin-top: 14px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .hero-note {
    max-width: 180px;
    margin-top: 14px;
    font-size: 9px;
  }

  .hero-side-note {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .section-pad {
    padding: 67px 0;
  }

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

  .section-heading h2,
  .intro-copy h1 {
    font-size: 27px;
  }

  .intro-copy h1 {
    font-size: 34px;
  }

  .lead strong {
    font-size: 16px;
  }

  .trust-strip {
    gap: 13px;
    justify-content: space-between;
  }

  .trust-strip strong {
    font-size: 17px;
  }

  .trust-strip span {
    font-size: 9px;
  }

  .media-stamp {
    right: 4px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .media-stamp b {
    font-size: 8px;
  }

  .route-card {
    padding: 26px 22px;
  }

  .price-board {
    padding: 30px 17px 24px;
  }

  .price-card {
    padding: 21px 18px 16px;
  }

  .price-list > div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .route-booking {
    padding: 24px 20px;
    box-shadow: 7px 7px 0 rgba(184, 137, 46, 0.5);
  }

  .route-booking__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .route-booking__actions .button {
    justify-content: center;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 16px 52px 16px 17px;
  }

  .faq-item summary::after {
    right: 14px;
  }

  .faq-item p {
    padding: 0 17px 18px;
  }

  .service-feature {
    margin-bottom: 46px;
  }

  .service-feature img {
    aspect-ratio: 1.28;
  }

  .service-feature__label {
    right: 12px;
    bottom: 12px;
  }

  .service-feature__label strong {
    font-size: 15px;
  }

  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 230px;
  }

  .gallery-card:nth-child(4) {
    grid-column: auto;
  }

  .floating-contact {
    bottom: 12px;
    left: 9px;
  }

  .floating-zalo {
    width: 49px;
    height: 49px;
    border-width: 5px;
  }

  .floating-phone {
    min-height: 42px;
    padding-right: 13px;
    font-size: 12px;
  }

  .floating-phone img {
    width: 20px;
    height: 20px;
  }

  .footer-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-bottom .shell {
    min-height: 73px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }

  .lightbox {
    padding: 35px 20px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
  }

  .lightbox-arrow--prev {
    left: 7px;
  }

  .lightbox-arrow--next {
    right: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 800px) {
  .main-nav {
    border-color: rgba(246, 216, 137, 0.34);
    background: rgba(7, 11, 29, 0.98);
    box-shadow: 0 18px 34px rgba(7, 11, 29, 0.3);
  }

  .main-nav a {
    color: rgba(255, 249, 235, 0.84);
  }

  .hero::before {
    inset: 10px;
  }
}
