:root {
  --navy: #102a43;
  --navy-dark: #081f33;
  --navy-soft: #183f5f;
  --gold: #d9a441;
  --gold-light: #f4d899;
  --red: #f11f2d;
  --cream: #f7f4ed;
  --white: #ffffff;
  --ink: #142b3d;
  --muted: #607383;
  --line: #dce3e7;
  --green: #1fa855;
  --shadow: 0 22px 60px rgba(16, 42, 67, 0.13);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shell: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; }
svg { display: block; }
.shell { width: var(--shell); max-width: 100%; margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px;
  background: var(--navy); color: white; transform: translateY(-150%); border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(16,42,67,.08); backdrop-filter: blur(14px);
}
.nav { min-width: 0; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); text-decoration: none; }
.brand-logo { width: auto; max-width: 180px; height: 48px; object-fit: contain; }
.brand.has-logo .brand-mark, .brand.has-logo .brand-copy { display: none; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; color: var(--gold);
  background: var(--navy); border-radius: 12px;
}
.brand-mark svg { width: 29px; height: 29px; }
.brand strong { display: block; font-family: "Manrope", sans-serif; font-size: 17px; line-height: 1.05; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.button) { color: var(--ink); font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-links > a:not(.button):hover { color: var(--gold); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--navy); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px;
  padding: 0 22px; border: 0; border-radius: 12px; background: var(--navy); color: white;
  font-weight: 700; text-decoration: none; cursor: pointer; box-shadow: 0 10px 25px rgba(16,42,67,.18);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); background: var(--navy-soft); box-shadow: 0 14px 30px rgba(16,42,67,.24); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(217,164,65,.5); outline-offset: 3px;
}
.button svg { width: 19px; fill: currentColor; }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; }

.hero {
  min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center;
  gap: 68px; padding-block: 78px 92px; overflow: hidden;
}
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 28px; height: 2px; flex: 0 0 auto; background: currentColor; }
h1, h2, h3 { font-family: "Manrope", system-ui, sans-serif; color: var(--navy); letter-spacing: -.035em; }
h1 { max-width: 650px; margin: 0; font-size: clamp(42px, 5.3vw, 68px); line-height: 1.05; }
.hero-text { max-width: 610px; margin: 25px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.text-link { color: var(--navy); font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--gold); transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px 24px; margin: 38px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: 13px; }
.trust-list span { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 5px; border-radius: 50%; background: #e5f6eb; color: var(--green); font-size: 11px; font-weight: 800; }

.hero-visual {
  position: relative; min-height: 500px; border-radius: 34px; overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow);
}
.hero-visual > img { width: 100%; height: 100%; min-height: 500px; position: absolute; inset: 0; object-fit: cover; object-position: 60% center; }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,31,51,.68) 100%); }
.location-pill {
  position: absolute; z-index: 2; top: 25px; left: 25px; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid rgba(255,255,255,.4); border-radius: 99px;
  background: rgba(8,31,51,.58); color: white; font-size: 12px; font-weight: 700; backdrop-filter: blur(9px);
}
.location-pill span { color: var(--gold-light); }
.travel-card { position: absolute; background: rgba(255,255,255,.95); border: 1px solid rgba(16,42,67,.08); box-shadow: var(--shadow); }
.main-card { inset: 92px 60px 88px 55px; display: flex; flex-direction: column; justify-content: center; padding: 42px; border-radius: 26px; transform: rotate(-1.8deg); }
.card-label { margin: 0 0 16px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.main-card h2 { margin: 0; font-size: clamp(28px, 3vw, 39px); line-height: 1.18; }
.mini-route { display: flex; align-items: center; margin-top: 52px; }
.route-point { width: 13px; height: 13px; border: 3px solid var(--navy); border-radius: 50%; background: white; }
.route-point.active { border-color: var(--gold); box-shadow: 0 0 0 5px rgba(217,164,65,.16); }
.route-track { flex: 1; height: 2px; margin-inline: 6px; background: repeating-linear-gradient(to right, var(--line) 0 7px, transparent 7px 12px); }
.route-cities { display: flex; justify-content: space-between; margin-top: 12px; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.floating-card { z-index: 2; display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 15px; }
.top-card { top: 35px; right: 22px; }
.bottom-card { bottom: 35px; left: 20px; }
.icon-box { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 11px; background: #eaf0f4; color: var(--navy); font-size: 18px; }
.document-icon { background: #fbf1db; color: #a77416; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { margin-top: 2px; color: var(--navy); font-size: 13px; }

.services-section { padding-block: 100px; background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 50px; }
.section-heading h2 { max-width: 700px; margin: 0; font-size: clamp(33px, 4vw, 48px); line-height: 1.15; }
.section-heading > p { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 285px; padding: 30px; overflow: hidden; border: 1px solid rgba(16,42,67,.08); border-radius: var(--radius-md); background: white; transition: transform .25s, box-shadow .25s, border .25s; }
.service-group-card { min-height: 450px; padding-bottom: 70px; }
.service-group-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--red); opacity: .88; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(217,164,65,.45); box-shadow: 0 16px 38px rgba(16,42,67,.08); }
.service-card:first-child { background: var(--navy); border-color: var(--navy); }
.service-card:first-child h3 { color: white; }
.service-card:first-child p { color: #bed0dc; }
.service-card:first-child .service-number { color: rgba(255,255,255,.4); }
.service-card:first-child .service-icon { background: rgba(255,255,255,.1); color: var(--gold-light); }
.service-card:first-child .service-link { color: white; }
.service-number { position: absolute; top: 26px; right: 26px; color: #b1bec6; font-family: "Manrope"; font-size: 12px; font-weight: 800; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 13px; background: #edf2f5; color: var(--navy); font-size: 20px; }
.service-card:nth-child(even) .service-icon { background: #fbf1db; color: #a77416; }
.service-card h3 { margin: 0 0 10px; font-size: 20px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-intro { min-height: 65px; }
.service-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-list li { position: relative; padding-left: 18px; color: var(--ink); font-size: 13px; line-height: 1.35; }
.service-list li::before { content: ""; position: absolute; top: .52em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.service-card:first-child .service-list { border-top-color: rgba(255,255,255,.14); }
.service-card:first-child .service-list li { color: #d8e3ea; }
.service-link { position: absolute; left: 30px; bottom: 27px; padding: 0; border: 0; background: none; color: var(--navy); font-size: 13px; font-weight: 800; cursor: pointer; }
.service-link span { margin-left: 5px; color: var(--gold); }
.service-link:hover { color: var(--red); }
.service-card:first-child .service-link:hover { color: var(--gold-light); }

.instagram-section { margin-top: 96px; scroll-margin-top: 96px; }
.instagram-heading { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 30px; }
.instagram-heading .eyebrow { margin-bottom: 10px; }
.instagram-heading h2 { margin: 0; font-size: clamp(30px, 3.5vw, 43px); }
.instagram-follow { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: 13px; font-weight: 800; text-decoration: none; }
.instagram-follow > span:first-child { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--red); color: white; font-size: 18px; }
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.instagram-card { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 18px; background: #dfe7ea; text-decoration: none; box-shadow: 0 12px 30px rgba(16,42,67,.09); }
.instagram-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.instagram-card:nth-child(3) img { object-position: 66% center; }
.instagram-card:hover img { transform: scale(1.045); }
.instagram-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 24px; background: linear-gradient(180deg, transparent 38%, rgba(8,31,51,.9)); color: white; }
.instagram-icon { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.92); color: var(--navy); font-size: 19px; }
.instagram-caption { max-width: 290px; font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 700; line-height: 1.45; }
.instagram-empty { grid-column: 1 / -1; padding: 35px; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); text-align: center; }

.contact-section { background: var(--navy); color: white; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 80px; align-items: center; padding-block: 100px; }
.contact-layout > *, .about-panel, .enquiry-card { min-width: 0; }
.eyebrow.light { color: var(--gold-light); }
.about-panel h2 { max-width: 500px; margin: 0 0 22px; color: white; font-size: clamp(34px, 4vw, 48px); line-height: 1.14; overflow-wrap: anywhere; }
.about-panel > p { max-width: 540px; color: #bed0dc; font-size: 16px; }
.contact-details { display: grid; gap: 15px; margin-top: 34px; }
.contact-item { display: flex; min-width: 0; align-items: center; gap: 14px; color: white; text-decoration: none; }
.contact-item > span:first-child { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; color: var(--gold-light); }
.contact-item > span:last-child { min-width: 0; }
.contact-item small, .contact-item strong { display: block; }
.contact-item small { color: #8fa8b9; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.contact-item strong { margin-top: 2px; font-size: 14px; overflow-wrap: anywhere; }
.instagram-link { display: inline-flex; max-width: 100%; align-items: center; gap: 10px; margin-top: 32px; color: var(--gold-light); font-weight: 700; line-height: 1.35; text-decoration: none; overflow-wrap: anywhere; }
.instagram-link span { font-size: 21px; }

.enquiry-card { position: relative; width: 100%; padding: 42px; overflow: hidden; border-radius: var(--radius-lg); background: white; color: var(--ink); box-shadow: 0 25px 60px rgba(0,0,0,.2); }
.enquiry-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--red); }
.form-kicker { margin: 0 0 8px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.enquiry-card h2 { margin: 0 0 8px; font-size: 32px; }
.enquiry-card > p:not(.form-kicker) { margin: 0 0 28px; color: var(--muted); }
#enquiry-form { display: grid; min-width: 0; gap: 17px; }
.field-row { display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
label { display: grid; min-width: 0; gap: 7px; color: var(--navy); font-size: 12px; font-weight: 700; }
label > span { color: #bc3838; }
input, select, textarea { width: 100%; min-width: 0; max-width: 100%; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfc; color: var(--ink); font-size: 14px; font-weight: 400; outline: 0; transition: border .2s, box-shadow .2s; }
input, select { height: 48px; padding-inline: 14px; }
textarea { resize: vertical; padding: 13px 14px; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,164,65,.12); }
.has-error input, .has-error select, .has-error textarea { border-color: #c84747; }
.error-message { display: none; color: #b63131; font-weight: 500; }
.has-error .error-message { display: block; }
.form-submit { width: 100%; margin-top: 3px; }
.privacy-note { margin: -3px 0 0; color: #81909a; font-size: 10px; text-align: center; }
.form-status { display: none; padding: 12px 14px; border-radius: 10px; font-size: 12px; }
.form-status.visible { display: block; }
.form-status.info { background: #eef5f8; color: var(--navy); }
.form-status.success { background: #e7f6ec; color: #176837; }

.site-footer { background: var(--navy-dark); color: #91aabb; }
.footer-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { color: white; }
.footer-brand .brand-mark { background: rgba(255,255,255,.08); }
.footer-brand small { color: #91aabb; }
.footer-inner p { font-size: 12px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #bbccd6; font-size: 12px; text-decoration: none; }
.floating-whatsapp { position: fixed; z-index: 40; right: 22px; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #20b65a; color: white; box-shadow: 0 10px 30px rgba(12,95,47,.35); transition: transform .2s; }
.floating-whatsapp:hover { transform: scale(1.06); }
.floating-whatsapp svg { width: 28px; fill: currentColor; }

@media (max-width: 900px) {
  :root { --shell: min(calc(100% - 32px), 700px); }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column;
    gap: 0; padding: 12px 20px 22px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(16,42,67,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.button) { padding: 13px 4px; }
  .nav-links .button { margin-top: 8px; }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-block: 60px 70px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-list { justify-content: center; }
  .hero-text { margin-inline: auto; }
  .hero-visual { width: min(100%, 590px); margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-heading { align-items: flex-start; flex-direction: column; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 58px; }
  .about-panel { text-align: center; }
  .about-panel .eyebrow { justify-content: center; }
  .about-panel > p, .about-panel h2 { margin-inline: auto; }
  .contact-details { width: 100%; max-width: 540px; margin-inline: auto; text-align: left; }
  .footer-inner { flex-wrap: wrap; padding-block: 28px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .nav { gap: 12px; }
  .brand-logo { max-width: min(168px, calc(100vw - 92px)); height: 44px; }
  .brand strong { font-size: 15px; }
  .hero { padding-top: 48px; }
  h1 { font-size: 42px; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; text-align: left; width: max-content; max-width: 100%; margin-inline: auto; }
  .hero-visual { min-height: 390px; }
  .main-card { inset: 72px 24px 72px; padding: 27px; }
  .main-card h2 { font-size: 27px; }
  .top-card { top: 21px; right: 9px; }
  .bottom-card { bottom: 19px; left: 9px; }
  .floating-card { padding: 12px; }
  .services-section { padding-block: 76px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .service-group-card { min-height: auto; padding-bottom: 74px; }
  .instagram-section { margin-top: 72px; }
  .instagram-grid { grid-template-columns: 1fr; }
  .instagram-card { aspect-ratio: 4 / 3; }
  .contact-layout { gap: 44px; padding-block: 68px; }
  .about-panel h2 { font-size: clamp(30px, 9vw, 38px); }
  .about-panel > p { font-size: 16px; overflow-wrap: anywhere; }
  .contact-item { align-items: flex-start; }
  .contact-item strong { font-size: 13px; line-height: 1.45; }
  .instagram-link { align-items: flex-start; font-size: 16px; }
  .enquiry-card { padding: 28px 20px; border-radius: 20px; }
  .enquiry-card h2 { font-size: clamp(28px, 8vw, 32px); line-height: 1.15; overflow-wrap: anywhere; }
  .enquiry-card > p:not(.form-kicker) { font-size: 16px; line-height: 1.55; }
  .field-row { grid-template-columns: 1fr; }
  select { text-overflow: ellipsis; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; }
  .footer-inner p { margin: 0; }
}

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