:root {
  --blue: #0b4b87;
  --blue-deep: #083c6d;
  --gold: #c7a24a;
  --gold-soft: #e8d39a;
  --ink: #12304a;
  --paper: #fbfaf7;
  --line: rgba(11, 75, 135, 0.14);
  --shadow: 0 18px 50px rgba(11, 75, 135, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199, 162, 74, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(11, 75, 135, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #faf7ef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(11, 75, 135, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 75, 135, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 58%, transparent 92%);
  opacity: 0.45;
}

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

button,
a {
  font: inherit;
}

.page-shell {
  position: relative;
  width: min(80vw, 1280px);
  margin: 0 auto;
  padding: 24px 0 16px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(11, 75, 135, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.header-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 75, 135, 0.05);
  border: 1px solid rgba(11, 75, 135, 0.08);
  color: rgba(18, 48, 74, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-meta span {
  white-space: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(11, 75, 135, 0.1);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.brand-tag {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 75, 135, 0.12);
  border-radius: 14px;
  background: white;
  color: var(--blue);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 12px 24px rgba(11, 75, 135, 0.16);
  transform: translateY(-1px);
}

.site-nav a.active {
  border-color: rgba(231, 211, 154, 0.95);
  box-shadow: 0 14px 30px rgba(11, 75, 135, 0.26);
  outline: 2px solid rgba(199, 162, 74, 0.18);
  outline-offset: 1px;
}

.app {
  padding: 28px 0 12px;
}

.route {
  display: grid;
  gap: 24px;
  animation: fadeIn 360ms ease-out;
}

section#home {
  min-height: 80svh;
  align-content: center;
}

section[data-section] {
  scroll-margin-top: 132px;
}

.route + .route {
  margin-top: 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  min-height: 58svh;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(24px, 4vw, 34px);
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(199, 162, 74, 0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-title {
  margin: 0;
  color: var(--blue-deep);
  line-height: 0.98;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  letter-spacing: -0.05em;
}

.hero p {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: clamp(0.95rem, 1vw, 1.02rem);
  line-height: 1.7;
  color: rgba(18, 48, 74, 0.84);
}

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

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(18, 48, 74, 0.82);
  line-height: 1.6;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  box-shadow: 0 0 0 4px rgba(199, 162, 74, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 14px 30px rgba(11, 75, 135, 0.22);
}

.button.secondary {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(11, 75, 135, 0.12);
}

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

.hero-metrics {
  display: grid;
  gap: 14px;
  padding: 18px 36px 28px;
}

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

.metric {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 75, 135, 0.05), rgba(199, 162, 74, 0.04));
  border: 1px solid rgba(11, 75, 135, 0.08);
}

.metric strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.45rem;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(18, 48, 74, 0.75);
  font-size: 0.9rem;
  line-height: 1.45;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.trust-band span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 75, 135, 0.06);
  border: 1px solid rgba(11, 75, 135, 0.08);
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.logo-stage {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 50% 18%, rgba(199, 162, 74, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(11, 75, 135, 0.06), rgba(255, 255, 255, 0));
}

.gallery-frame {
  width: min(100%, 480px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.gallery-viewport {
  position: relative;
  min-height: 420px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 12px;
  align-content: center;
  opacity: 0;
  transform: scale(0.98) translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.gallery-slide img,
.gallery-card {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(11, 75, 135, 0.1);
  box-shadow: 0 22px 42px rgba(11, 75, 135, 0.1);
  background: white;
}

.gallery-slide figcaption {
  text-align: center;
  color: rgba(18, 48, 74, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-card {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
}

.gallery-card strong {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.gallery-card span {
  font-size: 1rem;
  font-weight: 700;
}

.gallery-card p {
  margin: 0;
  line-height: 1.7;
}

.blue-card {
  color: white;
  background: linear-gradient(135deg, var(--blue), #0f5ca2);
}

.gold-card {
  color: var(--blue-deep);
  background: linear-gradient(135deg, #f4e4b7, #fffaf0);
}

.gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 75, 135, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-deep);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(11, 75, 135, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.gallery-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(11, 75, 135, 0.16);
  background: white;
}

.gallery-button span {
  font-size: 1.8rem;
  line-height: 1;
  margin-top: -3px;
}

.gallery-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 2px;
}

.gallery-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 75, 135, 0.22);
  cursor: pointer;
  padding: 0;
}

.gallery-dot.is-active {
  width: 28px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

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

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

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

.destinations-layout,
.process-layout {
  display: grid;
  gap: 18px;
}

.process-grid .step {
  min-height: 190px;
}

.card p + p {
  margin-top: 12px;
}

.card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(11, 75, 135, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(11, 75, 135, 0.08);
}

.card h3,
.card h2 {
  margin: 0;
  color: var(--blue-deep);
}

.page-heading {
  margin-top: 16px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.card p,
.card li {
  color: rgba(18, 48, 74, 0.8);
  line-height: 1.75;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.about-list,
.location-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li,
.location-list li,
.contact-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 75, 135, 0.08);
}

.about-list li:last-child,
.location-list li:last-child,
.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(199, 162, 74, 0.16);
  color: var(--gold);
  font-weight: 800;
}

.navigator {
  display: grid;
  gap: 18px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 75, 135, 0.06), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(11, 75, 135, 0.08);
}

.step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.step h3 {
  margin: 0 0 10px;
}

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

.map-box {
  min-height: 220px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(11, 75, 135, 0.9), rgba(11, 75, 135, 0.72)),
    radial-gradient(circle at 30% 20%, rgba(199, 162, 74, 0.7), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.15), transparent 22%);
  color: white;
  padding: 22px;
  display: grid;
  align-content: end;
  gap: 10px;
  overflow: hidden;
}

.map-card {
  min-height: 320px;
  padding: 0;
  gap: 0;
  align-content: stretch;
}

.map-frame {
  width: 100%;
  min-height: 250px;
  border: 0;
  display: block;
}

.map-caption {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
  background: white;
  color: var(--ink);
}

.map-caption strong {
  color: var(--blue-deep);
  font-size: 1rem;
}

.map-caption p {
  margin: 0;
  color: rgba(18, 48, 74, 0.8);
}

.map-card .map-caption {
  border-top: 1px solid rgba(11, 75, 135, 0.08);
}

.map-box::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 20px solid rgba(255, 255, 255, 0.1);
}

.map-box h3,
.map-box p {
  margin: 0;
  position: relative;
  z-index: 1;
}

.contact-points {
  display: grid;
  gap: 14px;
}

.contact-point {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 75, 135, 0.08);
}

.contact-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-point span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-point a,
.contact-point p {
  margin: 0;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.7;
}

.footer {
  padding: 12px 6px 18px;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: rgba(18, 48, 74, 0.7);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--blue-deep);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 75, 135, 0.12);
  background: rgba(255, 255, 255, 0.85);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(11, 75, 135, 0.12);
  background: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .page-shell {
    width: min(92vw, 1280px);
  }

  .hero,
  .about-layout,
  .locations-grid,
  .contact-grid,
  .step-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  section#home {
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .gallery-frame {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .gallery-button {
    justify-self: center;
  }

  .gallery-viewport {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-inline: 14px;
  }

  .topbar {
    padding: 14px;
    border-radius: 22px;
    flex-wrap: wrap;
  }

  .header-meta {
    width: 100%;
    justify-content: flex-start;
    border-radius: 18px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-copy,
  .hero-metrics,
  .logo-stage {
    padding-inline: 20px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.55rem);
    letter-spacing: -0.045em;
  }

  .page-heading {
    font-size: clamp(1.55rem, 6.5vw, 2.05rem);
  }

  .hero p,
  .card p,
  .card li {
    font-size: 0.98rem;
    line-height: 1.7;
  }

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

  .trust-band {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .gallery-viewport {
    min-height: 320px;
  }

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

  .map-card {
    min-height: 280px;
  }

  .map-frame {
    min-height: 220px;
  }

  .process-grid .step {
    min-height: auto;
  }

  .footer-links {
    gap: 10px;
  }

  section[data-section] {
    scroll-margin-top: 118px;
  }
}
