:root {
  --navy: #062f43;
  --navy-2: #003e54;
  --deep: #002f43;
  --green: #22c767;
  --ink: #082c3f;
  --muted: #536979;
  --line: #dce6ec;
  --soft: #f5f9fb;
  --white: #fff;
  --shadow: 0 10px 28px rgba(10, 42, 59, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 rgba(6,47,67,.08);
}

.header-inner {
  height: 70px;
  display: grid;
  grid-template-columns: 250px 1fr 210px;
  align-items: center;
  gap: 24px;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand strong, .footer-brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  color: var(--navy);
}
.brand em, .footer-brand em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.brand small { display: block; margin-top: 4px; font-size: 8px; font-weight: 800; }

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 42px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav a { font-size: 12px; font-weight: 800; }
.header-contact {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 9px;
  justify-self: end;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
}
.header-contact .icon {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 20px;
}
.header-contact small { color: #4d5f6b; font-size: 10px; font-weight: 600; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 508px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 45%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.06) 77%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 54px;
  color: #fff;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
}
.hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 4.7vw, 58px);
  line-height: .98;
  letter-spacing: 0;
}
.hero-content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 26px;
  margin-top: 30px;
}
.action-card {
  min-width: 250px;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.action-card .icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 22px;
}
.action-card strong { display: block; font-size: 14px; font-weight: 900; }
.action-card small { display: block; margin-top: 2px; font-size: 11px; font-weight: 600; opacity: .9; }
.action-card-primary { background: #014d6b; color: #fff; }
.action-card-light { background: #fff; color: var(--ink); }
.whatsapp-card { background: var(--green); color: #fff; }

.trust-panel {
  position: relative;
  z-index: 2;
  margin-top: -68px;
  padding: 30px 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.trust-panel article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
}
.line-icon {
  font-size: 50px;
  line-height: 1;
  color: var(--navy);
}
h2, h3, p { margin-top: 0; }
.trust-panel h3,
.place-card h3,
.tour-card h3,
.guide-card h3,
.founder-values h3 {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}
.trust-panel p,
.founder-values p,
.place-card p,
.guide-card p,
.stats-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.founder-card {
  margin-top: 22px;
  min-height: 250px;
  padding: 16px;
  display: grid;
  grid-template-columns: 210px 1fr 480px;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(10,42,59,.07);
}
.founder-card > img {
  width: 198px;
  height: 206px;
  border-radius: 8px;
}
.founder-copy h2 {
  margin: 0 0 14px;
  font-family: Caveat, cursive;
  font-size: 32px;
  color: var(--navy);
}
.founder-copy p {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
}
.signature {
  margin: 4px 0 0 !important;
  font-family: Caveat, cursive;
  font-size: 28px !important;
  color: var(--navy);
}
.founder-copy strong { font-size: 11px; }
.founder-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.founder-values article {
  min-height: 160px;
  padding: 12px 18px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.founder-values span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 35px;
}

.overlap-button { margin-top: -14px; }
.direct-message {
  min-width: 210px;
  display: inline-grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  color: #fff;
  background: var(--navy);
  border-radius: 7px;
  box-shadow: var(--shadow);
  text-align: left;
}
.direct-message span { grid-row: span 2; font-size: 25px; }
.direct-message strong { font-size: 13px; }
.direct-message small { font-size: 10px; }

.section-block { padding-top: 20px; }
.section-title {
  margin-bottom: 22px;
  text-align: center;
}
.section-title h2,
.why-copy h2,
.stats-copy h2,
.bottom-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}
.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.destination-grid,
.itinerary-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.place-card,
.tour-card,
.guide-card {
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(10,42,59,.07);
}
.place-card img { width: 100%; height: 135px; }
.place-card h3,
.place-card p,
.place-card a { margin-left: 14px; margin-right: 14px; }
.place-card h3 { margin-top: 16px; }
.place-card p { min-height: 58px; }
.place-card a {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 190px;
  height: 34px;
  margin-top: 22px;
  padding: 0 20px;
  border: 1px solid #9db4c0;
  border-radius: 4px;
  color: var(--navy);
  background: #fff;
  font-size: 11px;
  font-weight: 900;
}

.why-section {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 36px;
  align-items: center;
  padding-top: 38px;
}
.why-copy h2 { font-size: 34px; }
.why-copy p {
  max-width: 230px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.comparison-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 11px;
}
.comparison th,
.comparison td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  vertical-align: middle;
}
.comparison th:first-child,
.comparison td:first-child { border-left: 0; }
.comparison th {
  text-align: center;
  font-weight: 900;
}
.comparison th:nth-child(2) {
  color: #fff;
  background: var(--navy);
  border-radius: 7px 7px 0 0;
}
.comparison td { color: #253f4f; font-weight: 600; }
.comparison td:first-child {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  color: var(--ink);
}
.comparison td span { color: var(--navy); font-size: 20px; }
.comparison tr:last-child td { border-bottom: 0; }

.tighter { padding-top: 12px; }
.itinerary-grid { gap: 20px; }
.tour-card img { width: 100%; height: 92px; }
.tour-card { padding-bottom: 14px; }
.tour-card p,
.tour-card h3,
.tour-card span,
.tour-card strong {
  display: block;
  margin-left: 12px;
  margin-right: 12px;
}
.tour-card p {
  margin-top: 12px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.tour-card h3 { margin-bottom: 4px; }
.tour-card span {
  min-height: 34px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.tour-card strong {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 900;
}
.tour-card small { font-size: 10px; font-weight: 700; }

.stats-card {
  margin-top: 30px;
  padding: 13px;
  display: grid;
  grid-template-columns: 310px 1fr repeat(4, 112px);
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(10,42,59,.08);
}
.stats-card > img {
  width: 300px;
  height: 132px;
  border-radius: 7px;
}
.stats-copy { padding-left: 14px; }
.stats-copy h2 { font-size: 24px; }
.stats-copy p { margin-top: 12px; font-size: 11px; }
.stat {
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat span { font-size: 32px; color: var(--navy); line-height: 1; }
.stat strong { font-size: 25px; font-weight: 900; line-height: 1; }
.stat small { color: var(--muted); font-size: 10px; font-weight: 700; line-height: 1.3; }

.guides-block { padding-top: 20px; padding-bottom: 34px; }
.guide-grid { gap: 20px; }
.guide-card img { width: 100%; height: 88px; }
.guide-card { padding-bottom: 16px; }
.guide-card h3,
.guide-card p { margin-left: 12px; margin-right: 12px; }
.guide-card h3 { min-height: 36px; margin-top: 12px; margin-bottom: 7px; }

.bottom-cta {
  padding: 24px 0;
  color: #fff;
  background: linear-gradient(90deg, #033449, #00485f);
}
.bottom-cta-inner {
  display: grid;
  grid-template-columns: 1fr 270px 260px;
  gap: 24px;
  align-items: center;
}
.cta-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cta-brand img { width: 58px; height: 58px; object-fit: contain; filter: brightness(0) invert(1); }
.bottom-cta h2 { color: #fff; font-size: 25px; }
.bottom-cta p { margin: 6px 0 0; font-size: 12px; font-weight: 700; }
.bottom-cta .action-card { min-height: 62px; min-width: 0; box-shadow: none; }

.site-footer {
  padding: 16px 0 10px;
  background: #f7fafb;
}
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1.3fr;
  gap: 66px;
}
.footer-brand img { width: 46px; height: 46px; object-fit: contain; }
.footer-brand strong { font-size: 24px; }
.footer-brand em { font-size: 8px; }
.site-footer p {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.site-footer h3 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
}
.site-footer a,
.site-footer address span {
  display: block;
  margin-bottom: 5px;
  color: #385466;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}
.socials { display: flex; gap: 24px; }
.socials a { margin: 0; color: var(--navy); font-weight: 900; }
.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 220px;
  padding-top: 7px;
  color: #4d6370;
  font-size: 10px;
}

.float-action {
  position: fixed;
  right: 34px;
  z-index: 60;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
  font-size: 28px;
  font-weight: 900;
}
.float-whatsapp { bottom: 82px; background: var(--green); }
.float-call { bottom: 22px; background: var(--navy); }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 220px 1fr 190px; gap: 12px; }
  .main-nav ul { gap: 22px; }
  .trust-panel { grid-template-columns: repeat(2, 1fr); margin-top: -38px; }
  .founder-card { grid-template-columns: 190px 1fr; }
  .founder-values { grid-column: 1 / -1; }
  .destination-grid, .itinerary-grid, .guide-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-card { grid-template-columns: 260px 1fr repeat(2, 110px); }
  .stats-card > img { width: 250px; }
  .bottom-cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .header-inner { height: auto; min-height: 68px; grid-template-columns: 1fr auto; }
  .brand strong { font-size: 24px; }
  .brand img { width: 48px; height: 48px; }
  .main-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 12px 0 18px;
  }
  body.mobile-nav-open .main-nav { display: block; }
  .main-nav ul { display: grid; gap: 12px; justify-content: start; }
  .header-contact { display: none; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--navy);
    font-size: 22px;
  }
  .hero { min-height: 560px; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.35)); }
  .hero h1 { font-size: 39px; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .action-card { width: 100%; min-width: 0; }
  .trust-panel, .founder-card, .why-section, .stats-card, .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-panel { padding: 22px; }
  .founder-card > img { width: 100%; height: 280px; object-fit: contain; }
  .founder-values { grid-template-columns: repeat(2, 1fr); }
  .destination-grid, .itinerary-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .why-copy p { max-width: none; }
  .comparison-wrap { overflow-x: auto; }
  .comparison { min-width: 680px; }
  .stats-card > img { width: 100%; height: 180px; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .footer-grid { gap: 20px; }
  .footer-bottom { gap: 20px; justify-content: space-between; }
}

@media (max-width: 520px) {
  body { font-size: 12px; }
  .hero { min-height: 610px; }
  .hero-content { padding-top: 36px; }
  .hero h1 { font-size: 34px; }
  .hero-content > p:not(.eyebrow) { max-width: 330px; font-size: 12px; overflow-wrap: anywhere; }
  .hero-actions { width: 100%; }
  .action-card { padding-left: 18px; padding-right: 18px; }
  .trust-panel { margin-top: -30px; grid-template-columns: 1fr; }
  .founder-values, .destination-grid, .itinerary-grid, .guide-grid { grid-template-columns: 1fr; }
  .why-copy h2 { font-size: 30px; }
  .section-title h2 { font-size: 25px; }
  .bottom-cta .action-card { width: 100%; }
  .float-action { right: 16px; }
}
