/* ==========================================================================
   WESSAM Travel Agency — Design System
   Typography : Baloo 2 (headings, semibold) · Poppins (body)
   Palette    : Smalt #003399 · Azure #364acc · Azure #3ba9ea · #f5f5f5 · #000
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

/* ---------------------------------------------------------------- tokens */
:root {
  /* brand */
  --smalt: #003399;
  --smalt-deep: #002878;
  --azure: #364acc;
  --sky: #3ba9ea;
  --sky-deep: #2b93d1;

  /* neutrals */
  --ink: #0b0d12;
  --ink-soft: #3d4451;
  --ink-mute: #6b7280;
  --line: #e3e6ec;
  --line-soft: #eef0f4;
  --surface: #ffffff;
  --surface-alt: #f5f5f5;
  --surface-cool: #f2f6fa;

  /* type */
  --font-head: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* metrics */
  --container: 1320px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(11, 13, 18, .06);
  --shadow-md: 0 14px 38px rgba(11, 13, 18, .10);
  --shadow-lg: 0 30px 70px rgba(11, 13, 18, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 92px;
}

/* ------------------------------------------------------------------ base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .2px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .3px;
  line-height: 1.14;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.35rem);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.95rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

::selection {
  background: var(--smalt);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .7rem 1.2rem;
  background: var(--smalt);
  color: #fff;
  border-radius: var(--r-pill);
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------- layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.section--tight {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.section--alt {
  background: var(--surface-cool);
}

.stack>*+* {
  margin-top: var(--gap, 1.25rem);
}

/* section heading row: eyebrow + title on the left, action on the right */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.sec-head__text {
  flex: 1 1 26rem;
  min-width: 0;
  max-width: 42rem;
}

.sec-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sec-head--center .sec-head__text {
  max-width: 62ch;
}

.lede {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.0625rem;
  margin-top: 1rem;
}

/* --------------------------------------------------------------- eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: .875rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .2px;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: currentColor;
  flex: none;
}

.eyebrow--plain {
  padding-inline: 1.4rem;
}

.eyebrow--plain::before {
  display: none;
}

.eyebrow--onDark {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* --------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--smalt);
  --btn-fg: #fff;
  --dot-bg: #fff;
  --dot-fg: var(--smalt);
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .5rem .5rem .5rem 1.6rem;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
    background-color .3s var(--ease), color .3s var(--ease),
    border-color .3s var(--ease);
}

.btn__dot {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--dot-bg);
  color: var(--dot-fg);
  transition: transform .45s var(--ease), background-color .3s var(--ease),
    color .3s var(--ease);
}

.btn__dot svg {
  width: 17px;
  height: 17px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:hover .btn__dot {
  transform: rotate(45deg);
}

.btn:active {
  transform: translateY(-1px);
}

/* variants */
.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  --dot-bg: var(--smalt);
  --dot-fg: #fff;
}

.btn--navy {
  --btn-bg: var(--smalt);
  --btn-fg: #fff;
  --dot-bg: #fff;
  --dot-fg: var(--smalt);
}

.btn--outline {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  --dot-bg: var(--sky);
  --dot-fg: #fff;
  border-color: var(--line);
}

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, .10);
  --btn-fg: #fff;
  --dot-bg: #fff;
  --dot-fg: var(--smalt);
  border-color: rgba(255, 255, 255, .5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn--sky {
  --btn-bg: var(--sky);
  --btn-fg: #fff;
}

.btn--block {
  width: 100%;
  justify-content: center;
  padding: .95rem 1.5rem;
  min-height: 54px;
}

.btn--block:hover {
  background: var(--sky-deep);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  color: var(--smalt);
}

.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform .35s var(--ease);
}

.link-arrow:hover svg {
  transform: translate(3px, -3px);
}

/* ---------------------------------------------------------------- header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 90;
  padding-block: 1.9rem;
  transition: background-color .4s var(--ease), padding .4s var(--ease),
    box-shadow .4s var(--ease);
}

.site-header--solid {
  position: relative;
  background: linear-gradient(120deg, var(--smalt-deep), var(--azure));
}

.site-header.is-stuck {
  position: fixed;
  padding-block: .85rem;
  background: rgba(0, 26, 77, .88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 20, 60, .28);
  animation: dropIn .45s var(--ease) both;
}

@keyframes dropIn {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  flex: none;
  display: block;
}

.brand img {
  width: clamp(138px, 12.5vw, 172px);
}

.brand__tag {
  display: block;
  margin-top: 5px;
  padding-left: 3px;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0;
  padding: .4rem;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .07);
}

.nav-list>li {
  position: relative;
}

.nav-list a,
.drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .72rem 1.5rem;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  color: rgba(255, 255, 255, .92);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

.nav-list a:hover,
.drop-toggle:hover {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.nav-list a.is-active,
.drop-toggle.is-active {
  background: #fff;
  color: var(--ink);
  font-weight: 500;
}

.drop-toggle svg {
  width: 11px;
  height: 11px;
  transition: transform .3s var(--ease);
}

.has-drop.is-open .drop-toggle svg {
  transform: rotate(180deg);
}

.drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  min-width: 216px;
  margin: 0;
  padding: .5rem;
  list-style: none;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}

.has-drop.is-open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-menu a {
  display: block;
  width: 100%;
  padding: .68rem 1rem;
  border-radius: var(--r-sm);
  color: var(--ink-soft);
  font-size: .92rem;
}

.drop-menu a:hover {
  background: var(--surface-cool);
  color: var(--smalt);
}

.header-cta {
  flex: none;
}

.header-cta .btn {
  min-height: 52px;
  padding-left: 1.4rem;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle .ic-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-close {
  display: block;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(4, 10, 30, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}

.nav-scrim.is-shown {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(94vh, 900px);
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  background: #06122e url('../img/hero-bg.jpg') center 32% / cover no-repeat;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 16, 52, .55) 0%, rgba(4, 16, 52, 0) 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .55) 100%);
}

.hero .container {
  width: 100%;
}

.hero-grid {
  display: grid;
  /* explicit tracks: an `auto` track would be sized from the thumbnail's
     intrinsic width, which collapses the copy column */
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  align-items: end;
  gap: 2.5rem 3rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 3.9vw, 3.4rem);
  max-width: 24ch;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .35);
  margin-bottom: 2.25rem;
}

.hero .eyebrow {
  margin-bottom: 1.5rem;
}

.hero__lead {
  max-width: 52ch;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 300;
  font-size: 1.0625rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* headline figures lifted from the brief: 9 / 2 / infinity */
.hero-stats {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: 360px;
  margin: 0 0 0 auto;
  padding: 1.75rem;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .10);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.hero-stats li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.hero-stats li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-stats__num {
  min-width: 2ch;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}

.hero-stats__label {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .84);
}

/* ------------------------------------------------------------ about/who */
.who-statement {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.1vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: .3px;
  text-align: center;
  max-width: 24ch;
  margin-inline: auto;
}

.who-statement em {
  font-style: normal;
  color: var(--smalt);
}

.who-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.85rem;
  background: var(--surface-alt);
  border-radius: var(--r-lg);
  min-height: 420px;
}

.stat-card--flip {
  flex-direction: column-reverse;
}

.stat-card__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1;
  letter-spacing: .3px;
}

.stat-card__num span {
  color: var(--smalt);
}

.stat-card__label {
  color: var(--ink-soft);
  margin-top: .35rem;
}

.stat-card__media {
  flex: 1;
  min-height: 190px;
  border-radius: var(--r-md);
  overflow: hidden;
}

.stat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-feature {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 420px;
}

.stat-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.stat-feature:hover img {
  transform: scale(1.05);
}

/* -------------------------------------------------------------- services */
.service-grid {
  display: grid;
  /* 320px min settles at three columns on desktop, which suits the 9- and
     8-item sets without leaving a single orphan on the last row */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: 2rem 1.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
    border-color .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--surface-cool);
  color: var(--smalt);
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--smalt);
  color: #fff;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: .3px;
}

.service-card p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: .96rem;
}

/* wide variant used on the services page */
.service-card--wide {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
}

.service-card--wide .service-card__icon {
  flex: none;
}

.service-card--wide>div {
  display: grid;
  gap: .55rem;
}

/* ---------------------------------------------------------- core values */
.value-grid {
  display: grid;
  /* five values settle 3 + 2, as laid out in the brief */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.value-card {
  position: relative;
  padding: 2rem 1.75rem 1.85rem;
  border-radius: var(--r-lg);
  background: var(--surface-alt);
  overflow: hidden;
}

.value-card__num {
  display: block;
  margin-bottom: .5rem;
  color: var(--smalt);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
}

.value-card h3 {
  margin-bottom: .6rem;
  font-family: var(--font-head);
  font-size: 1.3rem;
}

.value-card p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: .96rem;
}

/* -------------------------------------------------------- branch cards */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.branch-card {
  padding: 1.85rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.branch-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.branch-card h3 {
  padding-bottom: 1rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-head);
  font-size: 1.35rem;
}

.branch-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}

.branch-card li {
  display: flex;
  gap: .8rem;
  font-size: .94rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.55;
}

.branch-card svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 4px;
  color: var(--smalt);
}

.branch-card a:hover {
  color: var(--smalt);
  text-decoration: underline;
}

/* quick-contact strip */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.contact-strip>div {
  padding: 1.6rem 1.75rem;
  background: var(--smalt-deep);
  color: #fff;
}

.contact-strip dt {
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

.contact-strip dd {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .3px;
}

.contact-strip dd a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------- destinations */
/* ----------------------------------------------------------- why choose */
.why-panel {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1fr);
  background: var(--surface-alt);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.why-media {
  position: relative;
  min-height: 480px;
}

.why-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(28, 26, 24, .42);
  border: 1px solid rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
}

.quote-card__stars {
  display: flex;
  gap: .3rem;
  color: #f5a623;
  margin-bottom: .8rem;
}

.quote-card__stars svg {
  width: 18px;
  height: 18px;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.55;
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  font-size: .88rem;
  font-style: normal;
  color: rgba(255, 255, 255, .82);
}

.quote-card cite span {
  color: rgba(255, 255, 255, .6);
}

.why-body {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.why-body h2 {
  max-width: 16ch;
  margin-bottom: 2.25rem;
}

.feature-list {
  display: grid;
  gap: .5rem;
}

.feature {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.feature:first-child {
  border-top: 0;
  padding-top: 0;
}

.feature__head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  padding: 0 0 .35rem;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: none;
  border-radius: 50%;
  background: var(--smalt);
  color: #fff;
  transition: background-color .35s var(--ease), transform .35s var(--ease);
}

.feature__icon svg {
  width: 26px;
  height: 26px;
}

.feature__head:hover .feature__icon {
  transform: scale(1.06);
}

.feature[aria-expanded="true"] .feature__icon,
.feature__head[aria-expanded="true"] .feature__icon {
  background: var(--smalt);
}

.feature__head:not([aria-expanded="true"]) .feature__icon {
  background: var(--azure);
  opacity: .55;
}

.feature__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  letter-spacing: .3px;
}

.feature__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}

.feature__head[aria-expanded="true"]+.feature__panel {
  grid-template-rows: 1fr;
}

.feature__panel>div {
  overflow: hidden;
}

.feature__panel p {
  padding: .6rem 0 1.25rem;
  color: var(--ink-soft);
  font-weight: 300;
  text-align: justify;
}

/* ------------------------------------------------------------- packages */
.pkg-grid {
  display: grid;
  /* four Southeast Asia packages sit in a single row on desktop */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.6rem;
}

.pkg-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--sky);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(59, 169, 234, .22);
}

.pkg-card__head {
  position: relative;
  padding: 1.6rem 1.6rem 1.5rem;
  background: linear-gradient(125deg, var(--smalt-deep), var(--azure) 78%, var(--sky) 160%);
  color: #fff;
  overflow: hidden;
}

.pkg-card__head::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
}

.pkg-card__region {
  position: relative;
  display: inline-block;
  margin-bottom: .7rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.pkg-card__head h3 {
  position: relative;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.pkg-card__tagline {
  position: relative;
  margin-top: .55rem;
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .86);
}

.pkg-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.25rem;
  padding: 1.6rem;
}

.pkg-spec dt {
  margin-bottom: .3rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.pkg-spec dd {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.6;
}

.pkg-card__best {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self: flex-start;
  margin-top: auto;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  background: var(--surface-cool);
  color: var(--smalt);
  font-size: .86rem;
  font-weight: 500;
}

.pkg-card__best svg {
  width: 15px;
  height: 15px;
}

.pkg-card .btn--block {
  margin-top: auto;
  border-radius: 0;
}

/* generic meta row (package types, service pages) */
.pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
}

.pkg-meta li {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pkg-meta svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--ink);
}

ul.pkg-meta {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 300;
}

.note-band {
  margin-top: 2rem;
  padding: 1.15rem 1.5rem;
  border-left: 3px solid var(--sky);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--surface-cool);
  color: var(--ink-soft);
  font-weight: 300;
  font-size: .96rem;
}

/* -------------------------------------------------------- page (inner) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background: linear-gradient(120deg, var(--smalt-deep) 0%, var(--azure) 58%, var(--sky) 130%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto;
  height: 140%;
  background: radial-gradient(50% 50% at 20% 30%, rgba(255, 255, 255, .16), transparent 60%),
    radial-gradient(45% 45% at 82% 60%, rgba(59, 169, 234, .35), transparent 65%);
  pointer-events: none;
}

.page-hero h1 {
  color: #fff;
  position: relative;
}

.page-hero .eyebrow {
  position: relative;
}

.crumbs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .93rem;
  color: rgba(255, 255, 255, .78);
}

.crumbs li+li::before {
  content: '/';
  margin-right: .6rem;
  opacity: .6;
}

.crumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------------------------------------------------------------- cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.info-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.info-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: var(--surface-cool);
  color: var(--smalt);
}

.info-card__icon svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: .55rem;
}

.info-card p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: .96rem;
}

/* split content block (about page) */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split--rev .split__media {
  order: 2;
}

.tick-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .85rem;
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.tick-list svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--smalt);
  margin-top: 2px;
}

/* counters strip */
.counter-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--smalt-deep), var(--azure));
  color: #fff;
  text-align: center;
}

.counter__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
}

.counter__label {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .82);
}

/* gallery */
/* accordion */
.accordion {
  display: grid;
  gap: 1rem;
}

.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.acc-item:has([aria-expanded="true"]) {
  border-color: var(--sky);
  box-shadow: var(--shadow-sm);
}

.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: .3px;
  cursor: pointer;
}

.acc-head svg {
  width: 14px;
  height: 14px;
  flex: none;
  transition: transform .35s var(--ease);
}

.acc-head[aria-expanded="true"] {
  color: var(--smalt);
}

.acc-head[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}

.acc-head[aria-expanded="true"]+.acc-panel {
  grid-template-rows: 1fr;
}

.acc-panel>div {
  overflow: hidden;
}

.acc-panel p {
  padding: 0 1.5rem 1.35rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* forms */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: .5rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: .9rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .95rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  font: inherit;
  font-weight: 300;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(59, 169, 234, .16);
}

.field .err {
  font-size: .82rem;
  color: #c8322b;
  min-height: 1.1em;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #c8322b;
}

.form-note {
  margin-top: 1.25rem;
  padding: .95rem 1.25rem;
  border-radius: var(--r-md);
  background: #e8f6ec;
  color: #1c6b33;
  font-size: .95rem;
}

.form-note[hidden] {
  display: none;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.map-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--surface-cool);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

/* CTA banner */
.cta-band {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--smalt-deep), var(--azure) 70%, var(--sky) 140%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
  max-width: 56ch;
  margin: 1rem auto 2rem;
  font-weight: 300;
}

/* ---------------------------------------------------------------- footer */
.site-footer {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  background: #04143c;
  color: rgba(255, 255, 255, .74);
  font-weight: 300;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 1fr) 1.5fr;
  gap: 2.5rem 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-brand img {
  width: 168px;
}

.footer-brand-assets {
  display: flex;
  align-items: center;
  margin-top: 0rem;
  /* gap: .8rem; */
  /*   margin-bottom: 1.25rem;
 */
}

.footer-brand-assets .brand {
  margin-bottom: 0;
}

.footer-vision-logo {
  width: clamp(54px, 5vw, 80px);
  height: auto;
  object-fit: contain;
  filter: brightness(1.08);
}

.footer-brand p {
  max-width: 34ch;
  font-size: .96rem;
}

.footer-col h4 {
  margin-bottom: 1.15rem;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: .3px;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}

.footer-col a {
  font-size: .96rem;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}

.footer-col a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: .75rem;
  font-size: .96rem;
}

.footer-contact svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 4px;
  color: var(--sky);
}

.newsletter {
  position: relative;
  display: block;
  margin-top: 1.25rem;
  max-width: 420px;
}

.newsletter input {
  width: 100%;
  padding: .85rem 4.5rem .85rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  /* Prevent iOS zoom */
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.newsletter input:focus {
  outline: 0;
  border-color: var(--sky);
}

.newsletter button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  cursor: pointer;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}

.newsletter button:hover {
  background: #fff;
  color: var(--smalt);
  transform: translateY(-50%) rotate(45deg);
}

.newsletter button svg {
  width: 18px;
  height: 18px;
}

.socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.5rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transition: all .3s var(--ease);
}

.socials svg {
  width: 17px;
  height: 17px;
}

.socials a:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}

.footer-bottom nav {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a:hover {
  color: #fff;
}

/* back to top */
.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--smalt);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  box-shadow: var(--shadow-md);
  transition: all .35s var(--ease);
}

.to-top.is-shown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--sky);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------------------------------------- reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* -------------------------------------------------------- breakpoints */
@media (max-width: 1180px) {

  .nav-list a,
  .drop-toggle {
    padding-inline: 1.1rem;
    font-size: .9rem;
  }

  .brand img {
    width: 148px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 84px;
  }

  /* sits above the open drawer so the close affordance stays reachable */
  .nav-toggle {
    display: grid;
    position: relative;
    z-index: 96;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto auto;
    height: 100vh;
    height: 100dvh;
    z-index: 95;
    width: min(360px, 86vw);
    padding: 6rem 1.5rem 2rem;
    background: #04143c;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .42s var(--ease);
  }

  .nav.is-open {
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    padding: 0;
    border: 0;
    background: none;
    backdrop-filter: none;
  }

  .nav-list a,
  .drop-toggle {
    justify-content: space-between;
    width: 100%;
    padding: .9rem 1.15rem;
    border-radius: var(--r-md);
    font-size: 1rem;
  }

  .nav-list a.is-active,
  .drop-toggle.is-active {
    background: var(--smalt);
    color: #fff;
  }

  .drop-menu {
    position: static;
    translate: none;
    min-width: 0;
    margin: .25rem 0 .25rem .75rem;
    padding: 0;
    background: none;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-drop.is-open .drop-menu {
    display: block;
  }

  .drop-menu a {
    color: rgba(255, 255, 255, .72);
    padding-block: .6rem;
  }

  .drop-menu a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
  }

  .nav__cta {
    margin-top: 1.5rem;
    display: block;
  }

  .nav__cta .btn {
    width: 100%;
    justify-content: space-between;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-feature {
    grid-column: 1 / -1;
    order: -1;
    min-height: 320px;
  }

  .stat-card {
    min-height: 360px;
  }

  .why-panel {
    grid-template-columns: 1fr;
  }

  .why-media {
    min-height: 460px;
  }
}

@media (min-width: 1025px) {
  .nav__cta {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero {
    align-items: center;
    text-align: left;
    padding-top: calc(var(--header-h) + 3rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stats {
    max-width: 100%;
    margin-left: 0;
  }

  .hero-stats li {
    padding-bottom: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 3.5rem;
  }

  /* narrow viewports crop into the bright water — deepen the scrim so the
     headline and lead keep their contrast */
  .hero::after {
    background: linear-gradient(180deg,
        rgba(4, 16, 52, .62) 0%, rgba(4, 16, 52, .22) 28%, rgba(0, 0, 0, .74) 100%);
  }

  .sec-head {
    align-items: flex-start;
  }

  .sec-head .btn {
    margin-top: .25rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .stat-feature {
    min-height: 300px;
  }

  .who-statement {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .quote-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.1rem;
  }

  .service-card--wide {
    flex-direction: column;
  }

  .contact-strip dd {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------------------- a11y/print */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {

  .site-header,
  .site-footer,
  .to-top,
  .nav-scrim {
    display: none !important;
  }

  .hero {
    min-height: auto;
    color: #000;
    background: none;
  }
}