/* ===========================================================
   Korizm Global Education — styles
   Brand: South Korea flag colors — blue #0047A0 + red #CD2E3A on white
   =========================================================== */

:root {
  /* South Korea flag palette: blue #0047A0, red #CD2E3A, white + black accents */
  --navy-900: #002a63;
  --navy-800: #003c8a;
  --navy-700: #0047a0;
  --navy-600: #1f63bf;
  --crimson: #cd2e3a;
  --crimson-600: #e23b48;
  --crimson-700: #a81f2b;
  --ink: #14233d;
  --muted: #5b6478;
  --line: #e3e9f3;
  --bg: #ffffff;
  --bg-soft: #f3f6fc;
  --gold: #e6b65c;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(15, 26, 48, .06);
  --shadow: 0 18px 40px rgba(15, 26, 48, .12);
  --container: 1180px;

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--navy-800); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

.icon { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 12px 24px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--crimson); color: #fff; }
.btn--primary:hover { background: var(--crimson-700); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(205, 46, 58, .32); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #cdd5e4; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topbar__contacts { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #cdd5e4; transition: color .2s; }
.topbar__item:hover { color: #fff; }
.topbar__item .icon { width: 15px; height: 15px; color: var(--crimson-600); }
.topbar__social { display: flex; gap: 10px; }
.topbar__social a { color: #aab4c8; transition: color .2s, transform .2s; }
.topbar__social a:hover { color: #fff; transform: translateY(-2px); }
.topbar__social .icon { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line); transition: box-shadow .3s, padding .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 18px; }
.brand__logo { height: 56px; width: auto; object-fit: contain; transition: height .3s; }
.header.scrolled .brand__logo { height: 48px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--navy-800);
  position: relative; padding: 6px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--crimson); transition: width .25s ease;
}
.nav__link:hover, .nav__link.active { color: var(--crimson); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__close { display: none; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--navy-800); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(125deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg::before, .hero__bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(10px);
}
.hero__bg::before {
  width: 520px; height: 520px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(205, 46, 58, .38), transparent 65%);
}
.hero__bg::after {
  width: 460px; height: 460px; bottom: -180px; left: -120px;
  background: radial-gradient(circle, rgba(31, 99, 191, .5), transparent 65%);
}
.hero__plane {
  position: absolute; top: 18%; right: 8%; font-size: 4rem; color: rgba(255, 255, 255, .14);
  transform: rotate(-25deg); animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-25deg); } 50% { transform: translateY(-18px) rotate(-25deg); } }

.hero__inner {
  position: relative; z-index: 2; padding: 88px 22px 132px;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  align-items: center; gap: 52px;
}
.hero__content { max-width: 700px; min-width: 0; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: #ffd0db;
  background: rgba(205, 46, 58, .22); border: 1px solid rgba(255, 255, 255, .14);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; color: #fff; margin-bottom: 20px;
  overflow-wrap: anywhere;
}
.hero__title span { color: var(--crimson-600); position: relative; }
.hero__text { width: 100%; font-size: 1.1rem; color: #c7d0e2; max-width: 620px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__trust { display: flex; align-items: center; gap: 14px; min-width: 0; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem; color: #fff;
  background: var(--navy-600); border: 2px solid var(--navy-800); margin-left: -10px;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__trust p { min-width: 0; font-size: .92rem; color: #c7d0e2; }
.hero__trust strong { color: #fff; }
.hero__carousel { position: relative; width: 100%; max-width: 440px; min-width: 0; justify-self: end; isolation: isolate; }
.hero__slides {
  position: relative; width: 100%; min-height: 470px; aspect-ratio: 4 / 5;
  border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0, 12, 34, .34);
}
.hero__slide-preview {
  position: absolute; inset: 18px -18px -18px 18px; z-index: 0; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 71, 160, .5), rgba(205, 46, 58, .3));
  box-shadow: 0 18px 45px rgba(0, 12, 34, .2);
}
.hero__slide-preview::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 44, .2), rgba(0, 20, 44, .55));
}
.hero__slide-preview img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: .78; filter: saturate(.9);
}
.hero__slide {
  position: absolute; inset: 0; display: flex; align-items: flex-end; overflow: hidden;
  padding: 24px; border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--radius);
  z-index: 1;
  opacity: 0; transform: translateX(18px) scale(.98); pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
  background: linear-gradient(135deg, var(--navy-700), var(--slide-accent));
}
.hero__slide.active { opacity: 1; transform: none; pointer-events: auto; }
.hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 42, 99, .04) 0%, rgba(0, 20, 44, .84) 100%);
}
.hero__slide-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center; z-index: 0;
}
.hero__slide-caption {
  position: relative; z-index: 1; width: 100%; padding: 18px 20px;
  border-radius: var(--radius-sm); background: rgba(0, 27, 66, .72);
  border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(10px);
}
.hero__slide-caption span {
  display: block; margin-bottom: 5px; font-family: var(--font-head); font-weight: 700;
  font-size: .72rem; letter-spacing: 1.6px; text-transform: uppercase; color: #ffd0db;
}
.hero__slide-caption strong {
  display: block; color: #fff; font-family: var(--font-head); font-size: 1.05rem;
  line-height: 1.35;
}
.hero__carousel-btn {
  position: absolute; top: 50%; z-index: 3; width: 44px; height: 44px; border: 0;
  border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm);
  transform: translateY(-50%); transition: transform .2s ease, background .2s ease, color .2s ease;
}
.hero__carousel-btn:hover { background: var(--crimson); color: #fff; transform: translateY(-50%) scale(1.05); }
.hero__carousel-btn svg { width: 22px; height: 22px; fill: currentColor; }
.hero__carousel-btn--prev { left: -22px; }
.hero__carousel-btn--next { right: -22px; }
.hero__carousel-dots {
  position: absolute; left: 50%; bottom: -34px; z-index: 3; display: flex; gap: 9px;
  transform: translateX(-50%);
}
.hero__carousel-dots button {
  width: 10px; height: 10px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .42); transition: background .2s ease, transform .2s ease;
}
.hero__carousel-dots button:hover, .hero__carousel-dots button.active {
  background: #fff; transform: scale(1.16);
}
.hero__wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; z-index: 1;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 35%, 0 75%);
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: 1.8px; text-transform: uppercase; color: var(--crimson); margin-bottom: 12px;
}
.section__title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 14px; }
.section__sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Stats ---------- */
.stats { background: #fff; margin-top: -40px; position: relative; z-index: 3; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 34px 20px;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 15%; height: 70%; width: 1px; background: var(--line);
}
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy-800); }
.stat__label { color: var(--muted); font-size: .92rem; font-weight: 500; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about__card {
  position: relative; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  padding: 40px; box-shadow: var(--shadow);
}
.about__logo-wrap { background: #fff; border-radius: var(--radius-sm); padding: 18px; }
.about__logo-wrap img { border-radius: 8px; }
.about__badge {
  position: absolute; bottom: -22px; right: -16px; background: var(--crimson); color: #fff;
  border-radius: var(--radius-sm); padding: 14px 20px; text-align: center; box-shadow: var(--shadow);
}
.about__badge strong { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; line-height: 1; color: #fff; }
.about__badge span { font-size: .78rem; opacity: .9; }
.about__content p { color: var(--muted); margin-bottom: 16px; }
.about__points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 22px 0 28px; }
.about__points li { display: flex; align-items: center; gap: 9px; font-weight: 500; font-size: .95rem; color: var(--ink); }
.tick { width: 20px; height: 20px; fill: var(--crimson); flex-shrink: 0; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service__icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
}
.service__icon svg { width: 28px; height: 28px; fill: #fff; }
.service:hover .service__icon { background: linear-gradient(135deg, var(--crimson), var(--crimson-700)); }
.service h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: .95rem; }

/* ---------- Why choose us ---------- */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px 28px; overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.pillar::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0;
  background: var(--crimson); transition: width .3s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar:hover::before { width: 100%; }
.pillar__no { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--line); margin-bottom: 6px; }
.pillar:hover .pillar__no { color: var(--crimson); }
.pillar h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: .93rem; }

/* ---------- Destinations ---------- */
.destinations__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; transition: transform .25s, box-shadow .25s;
}
.dest:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dest__flag { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.dest h3 { font-size: 1.1rem; margin-bottom: 4px; }
.dest p { color: var(--muted); font-size: .85rem; }

/* ---------- Testimonials ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative;
}
.quote__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.quote blockquote { color: var(--ink); font-size: .98rem; font-style: italic; margin-bottom: 22px; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); color: #fff;
  font-family: var(--font-head); font-weight: 600;
}
.quote figcaption strong { display: block; color: var(--navy-800); font-family: var(--font-head); }
.quote figcaption small { color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--crimson-700), var(--crimson)); color: #fff; }
.cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 26px;
  padding: 54px 22px; flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
.cta-banner p { opacity: .92; }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact__info p { color: var(--muted); margin-bottom: 28px; }
.contact__list { display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__ic {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--crimson);
}
.contact__ic svg { width: 22px; height: 22px; fill: currentColor; }
.contact__list strong { display: block; font-family: var(--font-head); color: var(--navy-800); font-size: .95rem; }
.contact__list a, .contact__list span { color: var(--muted); }
.contact__list a:hover { color: var(--crimson); }

.contact__form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow);
}
.contact__form h3 { font-size: 1.3rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--crimson); background: #fff;
}
.field textarea { resize: vertical; }
.form__note {
  margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm);
  background: #e9f7ef; color: #1d7a45; font-size: .9rem; font-weight: 500; text-align: center;
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #aeb8cc; padding-top: 64px; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 34px; padding-bottom: 48px; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: #aeb8cc; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__brand p { margin: 16px 0 18px; max-width: 320px; }
.footer__logo { display: flex; align-items: center; gap: 12px; }
.footer__k {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-700));
}
.footer__logo strong { display: block; font-family: var(--font-head); color: #fff; font-size: 1.2rem; letter-spacing: 2px; }
.footer__logo small { color: var(--crimson-600); font-size: .68rem; letter-spacing: 3px; font-weight: 600; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); color: #cdd5e4; transition: background .2s, transform .2s;
}
.footer__social a:hover { background: var(--crimson); color: #fff; transform: translateY(-3px); }
.newsletter { display: flex; background: rgba(255, 255, 255, .07); border-radius: 999px; padding: 5px; margin-top: 14px; }
.newsletter input { flex: 1; background: none; border: 0; color: #fff; padding: 8px 16px; font-family: var(--font-body); }
.newsletter input::placeholder { color: #8a95ad; }
.newsletter input:focus { outline: none; }
.newsletter button {
  width: 42px; height: 42px; border: 0; border-radius: 50%; cursor: pointer; flex-shrink: 0;
  background: var(--crimson); color: #fff; display: grid; place-items: center; transition: background .2s;
}
.newsletter button:hover { background: var(--crimson-700); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--crimson); color: #fff; display: grid; place-items: center; z-index: 90;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
}
.to-top svg { width: 22px; height: 22px; fill: #fff; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--crimson-700); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 72px; gap: 44px; }
  .hero__content { max-width: 760px; }
  .hero__carousel { justify-self: start; max-width: min(100%, 520px); margin-bottom: 30px; }
  .hero__slides { min-height: 390px; aspect-ratio: 16 / 11; }
  .about__inner, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .services__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .destinations__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 10px; }
  .stat:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar__hours { display: none; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 330px); background: #fff;
    flex-direction: column; align-items: flex-start; gap: 0; padding: 80px 28px 28px;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,.15);
    z-index: 200;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .nav__list li { width: 100%; }
  .nav__link { display: block; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 22px; width: 100%; }
  .nav__close {
    display: block; position: absolute; top: 18px; right: 22px; font-size: 2rem; line-height: 1;
    background: none; border: 0; color: var(--navy-800); cursor: pointer;
  }
  .nav__toggle { display: flex; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(10, 16, 30, .5); z-index: 150;
    opacity: 0; visibility: hidden; transition: opacity .3s;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .topbar__inner { justify-content: center; }
  .topbar__social { display: none; }
  .services__grid, .testimonials__grid, .why__grid, .destinations__grid { grid-template-columns: 1fr; }
  .about__points { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__inner { padding: 48px 18px 96px; gap: 36px; }
  .hero__content { width: 100%; }
  .hero__eyebrow {
    max-width: 100%; font-size: .68rem; line-height: 1.35; letter-spacing: 1px;
    white-space: normal;
  }
  .hero__title { font-size: clamp(2rem, 9vw, 2.65rem); }
  .hero__text { max-width: 100%; font-size: 1rem; line-height: 1.62; }
  .hero__actions { gap: 12px; margin-bottom: 32px; }
  .hero__actions .btn { width: min(100%, 270px); white-space: normal; text-align: center; }
  .hero__trust { align-items: flex-start; flex-wrap: wrap; gap: 12px; }
  .hero__avatars { flex-shrink: 0; }
  .hero__avatars span { width: 34px; height: 34px; font-size: .72rem; margin-left: -8px; }
  .hero__trust p { flex: 1 1 170px; line-height: 1.55; }
  .hero__carousel { width: calc(100% - 12px); max-width: none; justify-self: start; margin-bottom: 34px; }
  .hero__slides { min-height: 0; aspect-ratio: 3 / 4; }
  .hero__slide-preview { inset: 10px -10px -10px 10px; }
  .hero__slide { padding: 16px; }
  .hero__slide-caption { padding: 14px 15px; }
  .hero__slide-caption strong { font-size: .96rem; }
  .hero__carousel-btn { width: 40px; height: 40px; }
  .hero__carousel-btn--prev { left: 8px; }
  .hero__carousel-btn--next { right: 8px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 390px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .hero__inner { padding-left: 18px; padding-right: 18px; }
  .hero__text { font-size: .96rem; }
  .hero__carousel { width: calc(100% - 8px); }
  .hero__slide-preview { inset: 8px -8px -8px 8px; }
  .hero__slide { padding: 12px; }
  .hero__slide-caption strong { font-size: .9rem; }
}
