:root {
  --navy: #082c4c;
  --navy-2: #0c416d;
  --blue: #176ca4;
  --sky: #dff3f7;
  --aqua: #73c9d4;
  --coral: #ef6c5b;
  --coral-dark: #d95343;
  --cream: #f8f6f0;
  --white: #ffffff;
  --ink: #142536;
  --muted: #637282;
  --line: #dce4e7;
  --green: #1fa463;
  --shadow: 0 24px 70px rgba(8, 44, 76, 0.12);
  --shadow-soft: 0 14px 40px rgba(8, 44, 76, 0.08);
  --radius: 28px;
  --container: 1180px;
  --font: "Avenir Next", Avenir, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.top-strip {
  position: relative;
  z-index: 101;
  color: #d9e9f4;
  background: var(--navy);
  font-size: 12px;
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip p,
.top-strip__inner > div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.top-strip p i {
  width: 22px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.35);
}

.top-strip a {
  transition: color 0.2s ease;
}

.top-strip a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 9px 30px rgba(8, 44, 76, 0.07);
}

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

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

.brand-logo {
  width: 54px;
  height: 54px;
  position: relative;
  overflow: hidden;
  flex: 0 0 54px;
  background: var(--white);
  border: 1px solid #e8eff2;
  border-radius: 15px;
}

.brand-logo img {
  width: 74px;
  height: 74px;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--coral);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.site-nav > a {
  position: relative;
  color: #34495b;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -9px;
  left: 0;
  background: var(--coral);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 12px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 99px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.site-nav .nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.site-nav .lang-link {
  color: var(--coral);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--navy);
  border-radius: 99px;
  transition: 0.25s ease;
}

.hero {
  min-height: 730px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 84px 0 100px;
  background:
    linear-gradient(120deg, rgba(223, 243, 247, 0.95), rgba(248, 246, 240, 0.56) 58%, #fff 58%),
    var(--white);
}

.hero::before {
  content: "";
  width: 530px;
  height: 530px;
  position: absolute;
  top: 48%;
  right: max(-270px, calc((100vw - var(--container)) / 2 - 270px));
  border: 1px solid rgba(23, 108, 164, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb--one {
  width: 220px;
  height: 220px;
  top: -120px;
  left: 44%;
  background: rgba(115, 201, 212, 0.18);
}

.hero-orb--two {
  width: 28px;
  height: 28px;
  bottom: 76px;
  left: 8%;
  background: var(--coral);
  opacity: 0.28;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--coral);
  border-radius: 99px;
}

.hero h1 {
  margin: 24px 0 24px;
  color: var(--navy);
  font-size: clamp(46px, 5.3vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.056em;
}

.hero h1 em {
  position: relative;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 em::after {
  content: "";
  width: 76%;
  height: 8px;
  position: absolute;
  right: 0;
  bottom: -8px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='12' viewBox='0 0 200 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9c44-8 114-9 196-5' fill='none' stroke='%23ef6c5b' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  opacity: 0.7;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: #536779;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 99px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button--primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(239, 108, 91, 0.25);
}

.button--primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 34px rgba(239, 108, 91, 0.31);
}

.button--ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(8, 44, 76, 0.14);
}

.button--ghost:hover {
  background: var(--white);
}

.button--ghost svg {
  width: 21px;
  height: 21px;
}

.button--light {
  color: var(--navy);
  background: var(--white);
}

.button--block {
  width: 100%;
  border: 0;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  background: var(--white);
  border: 3px solid var(--sky);
  border-radius: 50%;
  font-size: 15px;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.hero-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-trust p strong {
  color: var(--ink);
}

.trust-stars {
  margin-left: 6px;
  color: #f3aa2d;
  font-size: 12px;
  letter-spacing: 2px;
}

.hero-visual {
  min-height: 530px;
  position: relative;
}

.hero-photo {
  width: min(100%, 442px);
  height: 525px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  overflow: hidden;
  background: #c5dce5;
  border-radius: 220px 220px 34px 34px;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 44, 76, 0.35), transparent 48%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.route-card,
.review-bubble {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.route-card {
  min-width: 265px;
  left: -42px;
  bottom: 58px;
  gap: 13px;
  padding: 14px 17px;
  border-radius: 18px;
}

.route-card__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 14px;
  transform: rotate(-18deg);
}

.route-card div {
  display: grid;
  gap: 3px;
}

.route-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
}

.route-card strong i {
  width: 27px;
  height: 1px;
  position: relative;
  background: var(--aqua);
}

.route-card strong i::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: -2px;
  right: 0;
  border-top: 1px solid var(--aqua);
  border-right: 1px solid var(--aqua);
  transform: rotate(45deg);
}

.review-bubble {
  top: 73px;
  right: -27px;
  gap: 9px;
  padding: 13px 15px;
  border: 1px solid rgba(8, 44, 76, 0.08);
  border-radius: 16px;
}

.review-bubble strong {
  color: var(--coral);
  font-size: 22px;
}

.review-bubble span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.route-line {
  width: 210px;
  position: absolute;
  z-index: 1;
  bottom: -38px;
  left: 30px;
  overflow: visible;
  fill: var(--coral);
}

.route-line path {
  fill: none;
  stroke: rgba(23, 108, 164, 0.3);
  stroke-width: 2;
  stroke-dasharray: 7 8;
}

.proof-bar {
  color: var(--white);
  background: var(--navy);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong {
  color: var(--aqua);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.proof-grid span {
  max-width: 105px;
  color: #c8dbe7;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.section-heading--center {
  display: block;
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.review-intro h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 13px 0 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.046em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.kicker {
  color: var(--coral);
}

.kicker--light {
  color: var(--aqua);
}

.services {
  background: var(--cream);
}

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

.service-card {
  min-height: 330px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 44, 76, 0.08);
  border-radius: 23px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.service-card:hover {
  border-color: rgba(23, 108, 164, 0.18);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.service-card--feature {
  background: var(--sky);
}

.service-card--dark {
  justify-content: flex-end;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(115, 201, 212, 0.23), transparent 28%),
    linear-gradient(140deg, var(--navy), #0d4e7c);
}

.service-card--dark::after {
  content: "✈";
  position: absolute;
  top: 15px;
  right: 28px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 96px;
  transform: rotate(-18deg);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: var(--white);
  background: var(--navy);
  border-radius: 17px;
  font-size: 22px;
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #9dabb5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.service-card--dark h3 {
  max-width: 300px;
  margin: 14px 0 25px;
  color: var(--white);
  font-size: 25px;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.service-card > a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-card > a:not(.button) span {
  transition: transform 0.2s ease;
}

.service-card > a:not(.button):hover span {
  transform: translateX(4px);
}

.about {
  overflow: hidden;
}

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

.about-visual {
  min-height: 620px;
  position: relative;
}

.about-visual::before {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  top: 64px;
  left: -76px;
  background: var(--sky);
  border-radius: 50%;
}

.about-image {
  width: min(100%, 420px);
  height: 555px;
  position: absolute;
  z-index: 1;
  right: 0;
  overflow: hidden;
  border-radius: 34px 170px 34px 34px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-note {
  width: 220px;
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  color: var(--white);
  background: var(--coral);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(239, 108, 91, 0.25);
}

.about-note strong {
  font-size: 14px;
}

.about-note span {
  color: #ffe7e2;
  font-size: 11px;
  line-height: 1.45;
}

.stamp {
  width: 104px;
  height: 104px;
  position: absolute;
  z-index: 3;
  top: 40px;
  right: -25px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  border: 1px dashed var(--blue);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transform: rotate(9deg);
}

.stamp::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(23, 108, 164, 0.18);
  border-radius: 50%;
}

.stamp span {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 800;
}

.stamp small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.about-copy .lead {
  margin: 24px 0 13px;
  color: #40566a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.about-copy > p:not(.lead) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #40566a;
  font-size: 13px;
  font-weight: 700;
}

.check-list span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 50%;
  font-size: 11px;
}

.registration-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.registration-line > div {
  display: grid;
  gap: 3px;
  padding: 15px 17px;
  background: var(--white);
}

.registration-line small {
  color: var(--coral);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.registration-line strong {
  color: var(--navy);
  font-size: 12px;
}

.registration-line span {
  color: var(--muted);
  font-size: 10px;
}

.process {
  background: linear-gradient(180deg, #f3fbfc, var(--white));
  border-top: 1px solid #e1eff1;
}

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

.step {
  min-height: 255px;
  position: relative;
  padding: 27px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dcebee;
  border-radius: 22px;
}

.step > span {
  position: absolute;
  top: 23px;
  right: 24px;
  color: #a2b1ba;
  font-size: 10px;
  font-weight: 900;
}

.step-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--coral);
  background: #fff0ed;
  border-radius: 15px;
  font-size: 19px;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.journeys {
  background: var(--white);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 16px;
}

.journey-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 21px;
}

.journey-photo--tall {
  grid-row: span 2;
}

.journey-photo--wide {
  grid-column: span 2;
}

.journey-photo::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(4, 27, 49, 0.82));
  pointer-events: none;
}

.journey-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.journey-photo--wide img {
  object-position: center;
}

.journey-photo:hover img {
  transform: scale(1.045);
}

.journey-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  color: var(--white);
}

.journey-photo figcaption span {
  font-weight: 900;
}

.journey-photo figcaption small {
  color: #d9e8ef;
  font-size: 10px;
  text-transform: uppercase;
}

.social-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.social-gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #dbe8ed;
  border-radius: 20px;
}

.social-gallery-grid figure:nth-child(1),
.social-gallery-grid figure:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.social-gallery-grid figure:nth-child(5) {
  grid-column: span 2;
}

.social-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.social-gallery-grid figure:hover img {
  transform: scale(1.035);
}

.social-gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 17px 15px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(4, 27, 49, 0.78));
  font-size: 11px;
  font-weight: 800;
}

.social-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px auto 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.travel-video-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 38px;
  margin-bottom: 36px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(115, 201, 212, 0.3), transparent 32%),
    var(--navy);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.travel-video-card h3 {
  margin: 10px 0;
  color: var(--white);
  font-size: clamp(27px, 3vw, 40px);
}

.travel-video-card p {
  margin: 0;
  color: #d9e8ef;
}

.travel-video-card video {
  width: 100%;
  max-height: 520px;
  display: block;
  background: #031726;
  border-radius: 18px;
}

.travel-gallery-grid,
.archive-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.travel-gallery-grid figure,
.archive-gallery-grid figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0;
  background: #dbe8ed;
  border-radius: 18px;
}

.travel-gallery-grid figure:nth-child(8n + 1),
.travel-gallery-grid figure:nth-child(8n + 6) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.travel-gallery-grid a,
.archive-gallery-grid a {
  width: 100%;
  height: 100%;
  display: block;
}

.travel-gallery-grid img,
.archive-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.travel-gallery-grid figure:hover img,
.archive-gallery-grid figure:hover img {
  transform: scale(1.035);
}

.travel-gallery-grid figcaption,
.archive-gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 14px 13px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(4, 27, 49, 0.82));
  font-size: 10px;
  font-weight: 800;
}

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

.archive-gallery-grid figure {
  aspect-ratio: 1 / 1;
}

.archive-gallery-grid--light figure {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-link--light {
  color: var(--white);
}

.archive-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px 18px;
  color: #684c06;
  background: #fff6d8;
  border: 1px solid #efd47a;
  border-radius: 14px;
  font-size: 12px;
}

.archive-note strong {
  flex: 0 0 auto;
  color: #513b05;
}

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

.bilingual-service-grid .info-card {
  height: 100%;
}

.bilingual-service-grid h3 {
  margin: 10px 0 12px;
  font-size: clamp(23px, 3vw, 34px);
}

.bilingual-service-grid p {
  margin: 0;
  line-height: 1.85;
}

.facebook-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1877f2;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.reviews {
  color: var(--white);
  background:
    radial-gradient(circle at 0 0, rgba(115, 201, 212, 0.14), transparent 30%),
    var(--navy);
}

.review-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.review-intro h2 {
  margin-top: 16px;
  color: var(--white);
}

.review-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.review-score > strong {
  color: var(--aqua);
  font-size: 38px;
  letter-spacing: -0.05em;
}

.review-score > div {
  display: grid;
  gap: 4px;
}

.review-score span {
  color: #ffc45a;
  font-size: 13px;
  letter-spacing: 2px;
}

.review-score small {
  color: #c4d7e3;
  font-size: 10px;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.testimonial {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: 23px;
}

.quote-mark {
  height: 45px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.testimonial > p {
  margin: 19px 0 28px;
  color: #42586b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
}

.testimonial footer > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  color: var(--navy);
  background: var(--sky);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.testimonial footer div {
  display: grid;
  gap: 2px;
}

.testimonial footer strong {
  color: var(--navy);
  font-size: 12px;
}

.testimonial footer small {
  color: var(--muted);
  font-size: 10px;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro p {
  margin: 20px 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.faq-item {
  border-bottom: 1px solid #ced9dc;
}

.faq-item:first-child {
  border-top: 1px solid #ced9dc;
}

.faq-item button {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: var(--navy);
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 17px;
  font-weight: 900;
}

.faq-item button > span {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 28px;
  border: 1px solid #adbec5;
  border-radius: 50%;
}

.faq-item button > span::before,
.faq-item button > span::after {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 8px;
  background: var(--navy);
  transition: transform 0.25s ease;
}

.faq-item button > span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button > span::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 27px;
}

.contact {
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 3% 90%, rgba(115, 201, 212, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, #0a3b65 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(55px, 8vw, 100px);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  max-width: 490px;
  margin: 20px 0 30px;
  color: #c6d8e3;
  font-size: 16px;
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 11px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-list a > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--aqua);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  font-size: 10px;
  font-weight: 900;
}

.contact-list a > div {
  display: grid;
  gap: 2px;
}

.contact-list small {
  color: #93afc1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 13px;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 14, 28, 0.23);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.form-heading span {
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.form-heading small {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.contact-form label > span {
  color: #4c6172;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid #d5dfe3;
  border-radius: 11px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 108, 164, 0.11);
}

.form-note {
  margin: 13px 0 0;
  color: #84929c;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 74px 0 26px;
  color: #aec2d0;
  background: #051e34;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.85fr 1fr;
  gap: 50px;
}

.brand--footer .brand-copy strong {
  color: var(--white);
}

.footer-brand > p,
.footer-grid > div > p {
  margin: 18px 0 0;
  color: #8fa9b9;
  font-size: 12px;
  line-height: 1.7;
}

.footer-brand > p {
  max-width: 300px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a {
  width: fit-content;
  display: block;
  margin: 0 0 10px;
  color: #a8bdca;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-grid > div:not(.footer-brand) > a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #7895a7;
  font-size: 9px;
  line-height: 1.5;
}

.footer-bottom p:last-child {
  max-width: 500px;
  text-align: right;
}

.floating-whatsapp {
  width: 56px;
  height: 56px;
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(0, 55, 28, 0.28);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Interior pages */
.page-main {
  min-height: 60vh;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 84px;
  background:
    radial-gradient(circle at 86% 12%, rgba(115, 201, 212, 0.22), transparent 28%),
    linear-gradient(135deg, #eaf8fa, #f8f6f0 72%);
}

.inner-hero::after {
  content: "";
  width: 350px;
  height: 350px;
  position: absolute;
  right: -140px;
  bottom: -230px;
  border: 1px solid rgba(23, 108, 164, 0.18);
  border-radius: 50%;
}

.inner-hero--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(115, 201, 212, 0.19), transparent 26%),
    linear-gradient(135deg, var(--navy), #0d4d7c);
}

.inner-hero--image {
  min-height: 580px;
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
}

.inner-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 28, 51, 0.92), rgba(4, 28, 51, 0.4) 65%, rgba(4, 28, 51, 0.18));
}

.inner-hero__content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inner-hero--dark .breadcrumbs,
.inner-hero--image .breadcrumbs {
  color: var(--aqua);
}

.breadcrumbs i {
  color: #8aa0ae;
  font-style: normal;
}

.inner-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.inner-hero--dark h1,
.inner-hero--image h1 {
  color: var(--white);
}

.inner-hero__content > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #526a7c;
  font-size: 18px;
  line-height: 1.7;
}

.inner-hero--dark .inner-hero__content > p,
.inner-hero--image .inner-hero__content > p {
  color: #d1e0e9;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.hero-pills span {
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(8, 44, 76, 0.08);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-section {
  padding: 94px 0;
}

.page-section--soft {
  background: var(--cream);
}

.page-section--blue {
  background: #f0fafb;
}

.page-section--compact {
  padding: 70px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(45px, 8vw, 110px);
}

.intro-grid--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.intro-copy h2,
.page-heading h2,
.tour-detail h2,
.article-body h2 {
  margin: 12px 0 20px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.intro-copy h3,
.article-body h3 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: 23px;
  letter-spacing: -0.025em;
}

.intro-copy p,
.page-heading p,
.tour-detail p,
.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.intro-copy .lead,
.article-body .lead {
  color: #3c556a;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.65;
}

.page-visual {
  position: relative;
}

.page-visual img {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.page-visual__badge {
  max-width: 220px;
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 18px 21px;
  color: var(--white);
  background: var(--coral);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(239, 108, 91, 0.24);
}

.page-visual__badge strong {
  font-size: 14px;
}

.page-visual__badge small {
  color: #ffe4df;
  line-height: 1.4;
}

.feature-list,
.included-list,
.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #40566a;
  font-size: 14px;
  line-height: 1.55;
}

.feature-list li::before,
.included-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.page-heading {
  max-width: 740px;
  margin-bottom: 46px;
}

.page-heading--center {
  margin-inline: auto;
  text-align: center;
}

.page-heading p {
  max-width: 650px;
  margin: 0;
}

.page-heading--center p {
  margin-inline: auto;
}

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

.overview-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

.overview-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 15px;
  font-size: 20px;
}

.overview-card h2,
.overview-card h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.overview-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.overview-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-card {
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.note-box {
  margin: 28px 0;
  padding: 22px 24px;
  background: #edf8fa;
  border-left: 4px solid var(--aqua);
  border-radius: 0 16px 16px 0;
}

.note-box--warning {
  background: #fff4ed;
  border-color: var(--coral);
}

.note-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 13px;
}

.note-box p {
  margin: 0;
  font-size: 13px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 25px;
  background: #b9d4da;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 0 0 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item > span {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 6px solid var(--cream);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.timeline-item h3 {
  margin: 4px 0 7px;
  color: var(--navy);
  font-size: 17px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(115, 201, 212, 0.16), transparent 28%),
    var(--navy);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.cta-band p {
  max-width: 620px;
  margin: 14px 0 0;
  color: #bed2df;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.tour-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.tour-filter button {
  padding: 9px 14px;
  color: #4c6172;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 900;
}

.tour-filter button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

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

.tour-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 23px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.tour-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

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

.tour-card__image {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.04);
}

.tour-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.tour-card__body {
  padding: 23px;
}

.tour-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-card h2,
.tour-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.026em;
}

.tour-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.tour-card__footer strong {
  color: var(--navy);
  font-size: 12px;
}

.tour-card__footer a {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: 55px;
}

.tour-detail > h2:first-child {
  margin-top: 0;
}

.tour-sidebar {
  position: sticky;
  top: 120px;
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 23px;
  box-shadow: var(--shadow-soft);
}

.tour-sidebar > small {
  color: var(--coral);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-sidebar h3 {
  margin: 8px 0 18px;
  color: var(--navy);
  font-size: 24px;
}

.tour-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.tour-facts div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px;
  background: var(--white);
  font-size: 11px;
}

.tour-facts span {
  color: var(--muted);
}

.tour-facts strong {
  color: var(--navy);
}

.itinerary {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.itinerary-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 15px;
  padding: 19px;
  background: var(--cream);
  border-radius: 16px;
}

.itinerary-item > span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.itinerary-item h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 16px;
}

.itinerary-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

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

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

.blog-card__image {
  height: 230px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--coral);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.026em;
}

.blog-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.blog-card a {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 70px;
}

.article-body {
  max-width: 760px;
}

.article-body > img {
  width: 100%;
  max-height: 470px;
  margin: 10px 0 34px;
  object-fit: cover;
  border-radius: 24px;
}

.article-body ul,
.article-body ol {
  padding-left: 0;
  counter-reset: article-list;
}

.article-body li {
  position: relative;
  padding-left: 32px;
}

.article-body ul li::before {
  content: "✓";
  width: 21px;
  height: 21px;
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--sky);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.article-body ol li {
  counter-increment: article-list;
}

.article-body ol li::before {
  content: counter(article-list);
  width: 22px;
  height: 22px;
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.official-source {
  margin: 34px 0;
  padding: 22px 24px;
  background: #f0fafb;
  border: 1px solid #d8ecef;
  border-radius: 17px;
}

.official-source strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
}

.official-source p {
  margin: 0 0 12px;
  font-size: 12px;
}

.article-sidebar {
  position: sticky;
  top: 120px;
}

.article-sidebar__box {
  margin-bottom: 16px;
  padding: 23px;
  background: var(--cream);
  border-radius: 18px;
}

.article-sidebar__box h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 16px;
}

.article-sidebar__box a {
  display: block;
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 36px 0 12px;
  color: var(--navy);
  font-size: 25px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-content li {
  margin-bottom: 8px;
}

.si,
[lang="si"] {
  font-family: "Noto Sans Sinhala", "Sinhala Sangam MN", "Iskoola Pota", var(--font);
}

.bilingual-note {
  margin: 24px 0;
  padding: 20px 22px;
  color: #304e63;
  background: var(--sky);
  border-radius: 17px;
  font-size: 14px;
  line-height: 1.8;
}

.bilingual-note strong {
  color: var(--navy);
}

.visa-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.visa-route {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.visa-route__flag {
  font-size: 38px;
}

.visa-route h2,
.visa-route h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 23px;
}

.visa-route p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.visa-route .si {
  color: #405d70;
}

.visa-route a {
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.68s ease,
    transform 0.68s ease;
}

.reveal--delay {
  transition-delay: 0.12s;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    gap: 35px;
  }

  .hero-photo {
    width: 390px;
  }

  .review-bubble {
    right: -5px;
  }

  .route-card {
    left: -15px;
  }

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

  .review-shell {
    grid-template-columns: 0.68fr 1.32fr;
    gap: 40px;
  }

  .testimonial {
    padding: 26px;
  }
}

@media (max-width: 900px) {
  .top-strip__inner > div a:last-child {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .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);
  }

  .site-nav {
    position: fixed;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px 30px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

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

  .site-nav > a {
    padding: 17px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 20px;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 92px;
    background: linear-gradient(140deg, var(--sky), var(--cream) 70%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 570px;
    margin-inline: auto;
  }

  .hero-photo {
    width: 440px;
  }

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

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .about-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .review-shell {
    grid-template-columns: 1fr;
  }

  .review-intro {
    max-width: 600px;
  }

  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .contact-copy {
    max-width: 650px;
  }

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

  .footer-brand {
    grid-column: span 3;
  }

  .intro-grid,
  .intro-grid--reverse,
  .tour-layout,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .tour-grid,
  .blog-grid,
  .visa-route-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tour-sidebar,
  .article-sidebar {
    position: static;
  }

  .cta-band__inner {
    display: grid;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .cta-actions .button {
    width: 100%;
  }

  .social-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .travel-video-card {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .top-strip__inner {
    min-height: 32px;
  }

  .top-strip p {
    gap: 8px;
  }

  .top-strip p i {
    width: 12px;
  }

  .top-strip__inner > div {
    gap: 8px;
  }

  .top-strip__inner > div a {
    font-size: 10px;
  }

  .nav-shell {
    height: 74px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 13px;
  }

  .brand-logo img {
    width: 65px;
    height: 65px;
  }

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

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

  .site-nav {
    top: 106px;
  }

  .hero {
    padding: 58px 0 76px;
  }

  .hero h1 {
    margin: 20px 0;
    font-size: clamp(41px, 13.5vw, 58px);
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    flex-wrap: wrap;
  }

  .trust-stars {
    width: 100%;
    margin: 0 0 0 2px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-photo {
    width: calc(100% - 18px);
    height: 450px;
    border-radius: 180px 180px 28px 28px;
  }

  .review-bubble {
    top: 55px;
    right: -2px;
    padding: 10px 12px;
  }

  .review-bubble strong {
    font-size: 18px;
  }

  .route-card {
    min-width: 245px;
    bottom: 28px;
    left: -3px;
  }

  .proof-grid > div {
    min-height: 98px;
    display: grid;
    gap: 4px;
    padding: 17px 15px;
    text-align: center;
  }

  .proof-grid strong {
    font-size: 25px;
  }

  .proof-grid span {
    max-width: none;
    font-size: 9px;
  }

  .section,
  .contact {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .about-copy h2,
  .review-intro h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 37px;
  }

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

  .service-card {
    min-height: 310px;
  }

  .about-visual {
    min-height: 520px;
  }

  .about-image {
    width: calc(100% - 18px);
    height: 470px;
    border-radius: 28px 145px 28px 28px;
  }

  .about-note {
    bottom: 2px;
  }

  .stamp {
    right: -4px;
  }

  .check-list,
  .registration-line {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 370px 210px 210px;
  }

  .journey-photo--tall {
    grid-column: span 2;
    grid-row: auto;
  }

  .journey-photo--wide {
    grid-column: span 2;
  }

  .journey-photo figcaption {
    right: 13px;
    bottom: 13px;
    left: 13px;
    display: grid;
  }

  .social-link {
    font-size: 11px;
  }

  .testimonial {
    min-height: 315px;
  }

  .faq-item button {
    min-height: 76px;
    font-size: 15px;
  }

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

  .contact-form {
    padding: 24px 19px;
    border-radius: 22px;
  }

  .form-heading {
    display: grid;
    gap: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-grid > div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }

  .social-gallery-grid {
    grid-auto-rows: 205px;
  }

  .social-gallery-grid figure:nth-child(1),
  .social-gallery-grid figure:nth-child(5),
  .social-gallery-grid figure:nth-child(6) {
    grid-column: span 2;
    grid-row: auto;
  }

  .travel-video-card {
    gap: 20px;
    padding: 20px;
  }

  .travel-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .travel-gallery-grid figure:nth-child(8n + 1),
  .travel-gallery-grid figure:nth-child(8n + 6) {
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .archive-gallery-grid {
    gap: 9px;
  }

  .travel-gallery-grid figure,
  .archive-gallery-grid figure {
    border-radius: 13px;
  }

  .archive-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-hero {
    padding: 70px 0 66px;
  }

  .inner-hero--image {
    min-height: 530px;
  }

  .inner-hero h1 {
    font-size: 45px;
  }

  .page-section {
    padding: 76px 0;
  }

  .overview-grid,
  .tour-grid,
  .blog-grid,
  .visa-route-grid,
  .split-cards {
    grid-template-columns: 1fr;
  }

  .page-visual__badge {
    right: 10px;
    bottom: 12px;
  }

  .tour-card__image,
  .blog-card__image {
    height: 250px;
  }

  .itinerary-item {
    grid-template-columns: 1fr;
  }
}
