:root {
  --navy: #001d3d;
  --navy-2: #032b57;
  --blue: #0b3f72;
  --gold: #f2bd19;
  --gold-deep: #d6a30b;
  --cream: #f7f3e9;
  --paper: #fffefb;
  --ink: #0b1f33;
  --muted: #697584;
  --line: #dce1e5;
  --background: var(--paper);
  --foreground: var(--ink);
  --card: #ffffff;
  --card-foreground: var(--ink);
  --popover: #ffffff;
  --popover-foreground: var(--ink);
  --primary: var(--navy);
  --primary-foreground: #ffffff;
  --secondary: var(--cream);
  --secondary-foreground: var(--navy);
  --muted-foreground: var(--muted);
  --accent: var(--gold);
  --accent-foreground: var(--navy);
  --destructive: #b91c1c;
  --border: var(--line);
  --input: var(--line);
  --ring: var(--gold-deep);
  --radius: 1rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  min-height: 82px;
  padding: 0 4.5vw;
  border-bottom: 1px solid rgba(0, 29, 61, 0.1);
  background: rgba(255, 254, 251, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled { box-shadow: 0 12px 32px rgba(0, 29, 61, 0.09); }

.brand-link { width: 170px; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 2.3rem);
  font-size: 0.92rem;
  color: #31465b;
}

.desktop-nav a,
.footer-links a { transition: color 180ms ease; }
.desktop-nav a:hover,
.footer-links a:hover { color: var(--gold-deep); }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover { transform: translateY(-2px); background: var(--blue); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 3px;
  border: 1px solid rgba(0, 29, 61, 0.16);
  border-radius: 999px;
  background: var(--cream);
}

.language-switch button {
  min-width: 36px;
  min-height: 34px;
  padding: 0.35rem 0.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #536476;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.language-switch button.active {
  background: white;
  color: var(--navy);
  box-shadow: 0 3px 10px rgba(0, 29, 61, 0.1);
}

.menu-toggle,
.mobile-menu { display: none; }

.service-glyph {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242, 189, 25, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 760px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 48% 0 0;
  background-image: radial-gradient(circle at 20% 35%, rgba(242, 189, 25, 0.12) 0 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.7;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 8.5rem) 6vw clamp(4.5rem, 7vw, 7rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span { width: 32px; height: 2px; background: var(--gold); }
.eyebrow.light { color: rgba(255, 255, 255, 0.68); }

.hero h1,
.section h2,
.why-content h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(3.3rem, 5.5vw, 6.35rem);
}

.hero h1 em {
  display: block;
  margin-top: 0.12em;
  color: var(--gold);
  font-weight: 400;
}

.hero-intro {
  max-width: 620px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(242, 189, 25, 0.16);
}

.button-gold:hover { box-shadow: 0 18px 38px rgba(242, 189, 25, 0.28); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.hero-note svg { color: var(--gold); }

.hero-visual {
  position: relative;
  min-height: 760px;
  padding: 3.8rem 3.8rem 3.8rem 1rem;
}

.hero-image-wrap {
  position: absolute;
  inset: 3.8rem 3.8rem 3.8rem 1rem;
  overflow: hidden;
  border-radius: 28px 0 28px 28px;
  background: var(--blue);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 29, 61, 0.06), rgba(0, 29, 61, 0.24));
}

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

.journey-stamp {
  position: absolute;
  top: 1.9rem;
  right: 2rem;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;

  width: 138px;
  height: 138px;
  padding: 1rem;

  border: 1px solid rgba(0, 29, 61, 0.2);
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  text-align: center;

  transform: none;

  box-shadow:
    inset 0 0 0 2px rgba(0, 29, 61, 0.1),
    0 18px 45px rgba(0, 0, 0, 0.2);
}

.journey-stamp svg {
  flex-shrink: 0;
  margin: 0;
}

.journey-stamp span {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-stamp strong {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.route-card {
  position: absolute;
  right: 5.8rem;
  bottom: 6.1rem;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-width: min(430px, 70%);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-line {
  position: relative;
  height: 1px;
  border-top: 1px dashed rgba(0, 29, 61, 0.55);
}

.route-line svg,
.route-line i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--gold-deep);
  transform: translate(-50%, -50%) rotate(8deg);
  background: rgba(255, 255, 255, 0.9);
  font-style: normal;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(170px, 0.5fr) 1.5fr;
  align-items: center;
  gap: 2rem;
  min-height: 92px;
  padding: 1.2rem 6vw;
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.trust-strip span {
  padding: 0.1rem 1.4rem;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  text-align: center;
}

.section { padding: clamp(5.5rem, 9vw, 9rem) 6vw; }

.section-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.section-kicker .eyebrow { margin: 0; }

.section-index {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.about h2,
.section-heading h2 { font-size: clamp(2.8rem, 4.5vw, 5rem); }

.about-copy { padding-top: 0.45rem; color: #526171; }

.about-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.26rem;
  line-height: 1.7;
}

.about-copy > p:not(.lead) { max-width: 650px; font-size: 1.04rem; }

.about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
}

.about-signature img { width: 58px; height: 58px; object-fit: contain; }

.services,
.leadership { background: var(--navy); color: white; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-heading .eyebrow { margin-bottom: 1.1rem; }
.section-heading > p { margin: 0 0 0.4rem; color: var(--muted); font-size: 1rem; }
.section-heading.inverse > p { color: rgba(255, 255, 255, 0.6); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(242, 189, 25, 0.65); }

.service-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--blue);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 29, 61, 0.42));
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

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

.service-number {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
}

.service-body { padding: 1.7rem; }
.service-body > svg { color: var(--gold); }

.service-body h3 {
  margin: 1.15rem 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.service-body p {
  min-height: 108px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-body small {
  display: block;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  line-height: 1.7;
}

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

.destination-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-2);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 18, 39, 0.82));
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-card:hover img { transform: scale(1.05); }
.destination-1 { grid-column: span 5; grid-row: span 2; }
.destination-2 { grid-column: span 4; }
.destination-3 { grid-column: span 3; }
.destination-4 { grid-column: span 3; }
.destination-5 { grid-column: span 4; }
.destination-6 { grid-column: span 3; }
.destination-7 { grid-column: span 4; }

.destination-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.4rem;
  color: white;
}

.destination-overlay span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-overlay h3 {
  margin: 0.2rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
}

.destination-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 29, 61, 0.16);
}

.destination-footer p { margin: 0; color: var(--muted); }

.destination-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 800;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(0, 1.15fr);
  min-height: 700px;
  background: var(--blue);
  color: white;
}

.why-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--gold);
  color: var(--navy);
}

.big-mark {
  position: relative;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14rem, 25vw, 27rem);
  font-weight: 700;
  line-height: 0.85;
}

.why-visual p {
  position: absolute;
  z-index: 3;
  right: 2.5rem;
  bottom: 2.5rem;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.35;
  text-align: right;
}

.orbit { position: absolute; border: 1px dashed rgba(0, 29, 61, 0.36); border-radius: 50%; }
.orbit-one { width: 75%; aspect-ratio: 1; transform: rotate(18deg) scaleY(0.42); }
.orbit-two { width: 110%; aspect-ratio: 1; transform: rotate(-12deg) scaleY(0.3); }

.orbit-plane {
  position: absolute;
  z-index: 3;
  top: 26%;
  right: 14%;
  transform: rotate(32deg);
}

.why-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 9rem);
}

.why-content h2 { max-width: 680px; font-size: clamp(3rem, 5vw, 5.3rem); }

.why-content ul {
  display: grid;
  gap: 1.3rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.why-content li {
  display: flex;
  gap: 0.9rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
}

.why-content li svg,
.why-content li > b { flex: 0 0 auto; margin-top: 0.2rem; color: var(--gold); }
.why-content strong { color: white; }
.values { background: var(--paper); }

.cordania-word {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin: 0 0 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cordania-word span {
  padding: 1rem 0;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.2vw, 6rem);
  line-height: 1;
  text-align: center;
}

.cordania-word span:nth-child(2n) { color: var(--gold-deep); }
.cordania-word span:last-child { border-right: 0; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  min-height: 175px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card > span {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.value-card h3 { margin: 0 0 0.55rem; color: var(--navy); font-size: 1rem; }
.value-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.leader-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.leader-photo { aspect-ratio: 0.78; overflow: hidden; background: #d9cbb0; }

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
  transition: transform 400ms ease;
}

.leader-card:hover .leader-photo img { transform: scale(1.025); }

.leader-info { position: relative; padding: 1.4rem 1.35rem 1.6rem; }

.leader-info > span {
  position: absolute;
  top: -1.1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
}

.leader-info h3 {
  margin: 0.2rem 0 0.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.leader-info p { margin: 0; color: rgba(255, 255, 255, 0.55); font-size: 0.82rem; }
.contact { background: var(--cream); }

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem);
  border-radius: 30px;
  background: var(--navy);
  color: white;
}

.contact-card::after {
  content: "C";
  position: absolute;
  right: -2rem;
  bottom: -8rem;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28rem;
  font-weight: 700;
  line-height: 1;
}

.contact-copy,
.contact-details { position: relative; z-index: 2; }
.contact-card h2 { max-width: 750px; font-size: clamp(3rem, 5.2vw, 5.8rem); }

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.05rem;
}

.contact-details {
  align-self: end;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details a,
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.75);
}

.contact-details svg,
.contact-details b { flex: 0 0 auto; color: var(--gold); }

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 4rem 6vw 2rem;
  background: white;
}

.footer-brand img { width: 190px; }

.footer-brand p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  color: #46596d;
  font-size: 0.9rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-company a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 185px 1fr 265px; padding-inline: 3vw; }
  .brand-link { width: 150px; }
  .desktop-nav { gap: 1.1rem; font-size: 0.84rem; }
  .hero { grid-template-columns: 1fr 0.9fr; }
  .hero-copy { padding-inline: 5vw; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-body p { min-height: auto; }
  .leader-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-photo { aspect-ratio: 0.92; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; gap: 0.55rem; min-height: 72px; padding-inline: 5vw; }
  .desktop-nav { display: none; }
  .header-cta { min-height: 40px; padding: 0.55rem 0.9rem; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 29, 61, 0.16);
    border-radius: 50%;
    background: white;
    color: var(--navy);
    font: inherit;
    font-size: 1.25rem;
    cursor: pointer;
  }
  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 1rem 5vw 1.5rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 254, 251, 0.98);
    box-shadow: 0 20px 40px rgba(0, 29, 61, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-weight: 700;
  }
  body.menu-open { overflow: hidden; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { inset: 0; }
  .hero-copy { padding: 5.5rem 6vw 4.5rem; }
  .hero-visual { min-height: 500px; padding: 0 6vw 4rem; }
  .hero-image-wrap { inset: 0 6vw 4rem; border-radius: 24px; }
  .journey-stamp { top: -2.2rem; right: 4vw; width: 120px; height: 120px; }
  .route-card { right: 10vw; bottom: 6rem; min-width: 55%; }
  .trust-strip { grid-template-columns: 1fr; gap: 0.8rem; padding-block: 1.4rem; }
  .trust-strip div { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .trust-strip span { border-left: 0; padding: 0.4rem; background: var(--cream); }
  .about-grid,
  .section-heading,
  .why-section,
  .contact-card { grid-template-columns: 1fr; }
  .section-heading { align-items: start; }
  .why-section { min-height: 0; }
  .why-visual { min-height: 500px; }
  .why-content { padding: 5rem 6vw; }
  .contact-card { gap: 3rem; }
  .destination-grid { grid-auto-rows: 210px; }
  .destination-1 { grid-column: span 7; }
  .destination-2 { grid-column: span 5; }
  .destination-3,
  .destination-4,
  .destination-5,
  .destination-6,
  .destination-7 { grid-column: span 6; }
}

@media (max-width: 640px) {
  .brand-link { width: 136px; }
  .header-cta { font-size: 0; gap: 0; width: 42px; padding: 0; }
  .header-cta .icon { font-size: 1.1rem; }
  .header-actions { gap: 0.35rem; }
  .language-switch button { min-width: 32px; min-height: 32px; padding: 0.25rem 0.35rem; }
  .hero-copy { padding-top: 4.5rem; }
  .hero h1 { font-size: clamp(2.9rem, 13vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-note { align-items: flex-start; }
  .hero-visual { min-height: 390px; }
  .journey-stamp { width: 104px; height: 104px; }
  .journey-stamp strong { font-size: 1.25rem; }
  .journey-stamp span { font-size: 0.56rem; }
  .route-card { right: 9vw; bottom: 5.4rem; left: 9vw; min-width: 0; font-size: 0.66rem; }
  .section { padding: 5rem 5vw; }
  .section-kicker { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .about-grid { gap: 2.2rem; }
  .about-copy .lead { font-size: 1.12rem; }
  .service-grid,
  .leader-grid,
  .value-grid { grid-template-columns: 1fr; }
  .service-image { height: 210px; }
  .destination-grid { display: flex; overflow-x: auto; padding-bottom: 0.7rem; scroll-snap-type: x mandatory; }
  .destination-card { flex: 0 0 78vw; height: 390px; scroll-snap-align: start; }
  .destination-footer { align-items: flex-start; flex-direction: column; }
  .why-visual { min-height: 400px; }
  .why-content { padding: 5rem 5vw; }
  .why-content h2 { font-size: 3rem; }
  .cordania-word span { font-size: 2rem; }
  .value-card { min-height: 0; }
  .leader-photo { aspect-ratio: 0.86; }
  .contact-card { padding: 3rem 1.5rem; border-radius: 22px; }
  .contact-card h2 { font-size: 3rem; }
  .contact-details a,
  .contact-details > div { font-size: 0.9rem; overflow-wrap: anywhere; }
  footer { grid-template-columns: 1fr; padding-inline: 5vw; }
  .footer-links { flex-wrap: wrap; gap: 1rem 1.5rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

