:root {
  --sky-700: #1b7fb8;
  --sky-600: #2f9fd8;
  --sky-500: #4fb3e4;
  --sky-200: #bfe2f5;
  --sky-100: #e3f2fb;
  --sky-50: #f2f9fd;
  --orange-700: #d84a1b;
  --orange-600: #f05a28;
  --orange-500: #f4703f;
  --orange-300: #ffb59c;
  --orange-100: #fdece5;
  --deep: #173a5e;
  --deep-900: #102b47;
  --ink: #4c5a68;
  --line: #e2ecf3;
  --white: #ffffff;
  --orange-grad: linear-gradient(100deg, #f98a5e 0%, #f05a28 45%, #d84a1b 100%);
  --sky-grad: linear-gradient(120deg, #1b7fb8 0%, #2f9fd8 60%, #4fb3e4 100%);
  --hairline-sky: repeating-linear-gradient(45deg, rgba(47, 159, 216, 0.06) 0 1px, transparent 1px 12px);
  --hairline-white: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 12px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.script-kicker {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: var(--orange-600);
  line-height: 1.3;
}

.script-kicker.light { color: var(--orange-300); }

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--orange-grad);
}

.topbar {
  background: var(--sky-grad);
  color: #ffffff;
  max-height: 46px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.site-header.scrolled .topbar {
  max-height: 0;
  opacity: 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 40px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.mantra {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.mantra-om {
  color: #ffe1d4;
  font-size: 17px;
  line-height: 1;
}

.mantra-text { color: #ffffff; }

.mantra-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffe1d4;
}

.mantra-tag {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar-link svg {
  width: 13px;
  height: 13px;
  fill: #ffe1d4;
}

.topbar-link:hover { color: #ffe1d4; }

.topbar-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.35);
}

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

.socials a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.socials svg {
  width: 12px;
  height: 12px;
  fill: #ffffff;
  transition: fill 0.2s ease;
}

.socials a:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}

.socials a:hover svg { fill: var(--sky-700); }

/* ---- Main nav ---- */

.mainnav {
  position: relative;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.3s ease;
}

.mainnav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-600) 40%, var(--sky-600) 100%);
}

.site-header.scrolled .mainnav {
  box-shadow: 0 12px 30px rgba(23, 58, 94, 0.14);
}

.nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  max-width: 1400px;
  height: 86px;
  transition: height 0.3s ease;
}

.site-header.scrolled .nav-inner { height: 68px; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-emblem {
  height: 62px;
  width: auto;
  transition: height 0.3s ease;
  filter: drop-shadow(0 6px 14px rgba(23, 58, 94, 0.22));
}

.site-header.scrolled .brand-emblem { height: 50px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.3px;
  color: var(--deep);
  transition: font-size 0.3s ease;
}

.site-header.scrolled .brand-name { font-size: 22px; }

.brand-sub {
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: var(--orange-600);
}

.nav-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
}

.nav-menu > li {
  position: static;
  flex: none;
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 11px 8px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  color: var(--deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-ico {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--orange-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.om-ico {
  font-size: 14px;
  line-height: 1;
  color: var(--orange-600);
}

.caret {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--sky-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-grad);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-link:hover { color: var(--orange-700); }

.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

.nav-link.is-active { color: var(--orange-700); }

.has-sub:hover .caret,
.has-sub:focus-within .caret { transform: rotate(180deg); }

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 252px;
  padding: 10px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--orange-600);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 22px 44px rgba(23, 58, 94, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu a {
  position: relative;
  display: block;
  padding: 9px 14px 9px 26px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.sub-menu a::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--orange-600);
  transform: translateY(-50%) rotate(45deg);
}

.sub-menu a:hover {
  background: var(--sky-50);
  color: var(--orange-700);
}

/* ---- Mega menu (full-width package panel) ---- */

.mainnav { position: relative; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  width: min(1080px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 0 30px;
  padding: 26px 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange-600);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 30px 60px rgba(23, 58, 94, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.has-mega:hover .caret,
.has-mega:focus-within .caret { transform: rotate(180deg); }

.mega-intro {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.mega-intro h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--deep);
}

.mega-intro p {
  margin: 10px 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink);
}

.mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--sky-500);
  border-radius: 8px;
  color: var(--sky-700);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mega-all svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.mega-all:hover { background: var(--sky-50); color: var(--orange-700); }

.mega-all:hover svg { transform: translateX(3px); }

.mega-col h4 {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--deep);
}

.mega-list {
  margin-top: 8px;
  list-style: none;
}

.mega-list a {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mega-list a:hover { background: var(--sky-50); color: var(--orange-700); }

.mega-days {
  flex: none;
  color: var(--deep);
  font-weight: 800;
}

.mega-days::after {
  content: "•";
  margin-left: 7px;
  color: var(--orange-600);
}

.nav-cta-item { margin-left: 12px; }

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--orange-grad);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(240, 90, 40, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-ico {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(240, 90, 40, 0.45);
}

.btn-cta:hover::before { left: 130%; }

.btn-lg { padding: 15px 30px; font-size: 15px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1.5px solid var(--sky-600);
  border-radius: 999px;
  color: var(--sky-700);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover { background: var(--sky-50); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--deep);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ Hero ============ */

.hero {
  background:
    radial-gradient(900px 420px at 88% -10%, var(--sky-100), transparent 65%),
    var(--hairline-sky),
    var(--white);
  padding: 84px 0 90px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero-eyebrow {
  margin: 14px 0 12px;
  color: var(--sky-700);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  line-height: 1.16;
  color: var(--deep);
}

.title-accent { color: var(--orange-600); }

.hero-sub {
  margin-top: 12px;
  color: var(--sky-700);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
}

.hero-lead {
  margin-top: 14px;
  max-width: 560px;
  color: var(--ink);
  font-size: 15.5px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--orange-600);
  line-height: 1.1;
}

.stat-label {
  margin-top: 2px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 42px;
  background: var(--line);
}

.hero-visual { position: relative; }

.flight-path {
  position: absolute;
  top: -74px;
  left: -34px;
  width: 300px;
  color: var(--orange-500);
  pointer-events: none;
}

.hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 26px 60px rgba(23, 58, 94, 0.2);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  right: -22px;
  bottom: -22px;
  border-radius: 18px;
  background: var(--sky-100);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  left: -20px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(23, 58, 94, 0.18);
  color: var(--deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.35;
}

.hero-badge strong {
  color: var(--orange-600);
  font-size: 16px;
}

.badge-om {
  color: var(--orange-600);
  font-size: 26px;
  line-height: 1;
}

/* ============ Shared section bits ============ */

.section-kicker {
  margin-bottom: 10px;
  color: var(--sky-700);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  text-align: center;
}

.section-title {
  max-width: 820px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: var(--deep);
  text-align: center;
}

.accent { color: var(--orange-600); }

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
}

.ornament span {
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-500));
}

.ornament span:last-child { background: linear-gradient(90deg, var(--orange-500), transparent); }

.ornament svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--orange-600);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ornament.left { justify-content: flex-start; margin: 16px 0 20px; }

.ornament.left span:first-child { display: none; }

/* ============ Intro ============ */

.intro {
  background: var(--sky-50);
  padding: 92px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.intro-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(23, 58, 94, 0.18);
}

.intro-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.intro-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(23, 58, 94, 0.2);
  color: var(--deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.4;
}

.caption-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-600);
  line-height: 1.1;
}

.intro-copy .section-title {
  margin: 8px 0 0;
  text-align: left;
}

.intro-copy .script-kicker { margin-bottom: 4px; }

.intro-copy p { margin-bottom: 14px; font-size: 15.5px; }

.tick-list {
  margin-top: 18px;
  list-style: none;
}

.tick-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  color: var(--deep);
  font-weight: 700;
  font-size: 14.5px;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
}

/* ============ Why us ============ */

.why {
  background: var(--hairline-sky), var(--white);
  padding: 90px 0 96px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.card {
  position: relative;
  padding: 34px 24px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(23, 58, 94, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  scroll-margin-top: 120px;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange-grad);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-300);
  box-shadow: 0 18px 40px rgba(23, 58, 94, 0.13);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--sky-100);
  border: 1px solid var(--sky-200);
}

.card-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(47, 159, 216, 0.3);
  border-radius: 50%;
}

.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--orange-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.35;
  color: var(--deep);
}

.card p { color: var(--ink); font-size: 14px; }

/* ============ Offer ============ */

.offer {
  background:
    var(--hairline-white),
    radial-gradient(800px 380px at 12% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    var(--sky-grad);
  padding: 92px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.offer-badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--orange-grad);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.offer-title {
  margin: 18px 0 22px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.22;
  color: #ffffff;
}

.offer-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.meta-chip svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ffe1d4;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 30px 0 24px;
}

.price-box {
  padding: 16px 28px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.price-label {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price-value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-600);
  line-height: 1.15;
}

.price-note {
  display: block;
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
}

.offer-list {
  list-style: none;
}

.offer-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  font-size: 14.5px;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffe1d4;
  font-weight: 800;
}

.offer-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.offer-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ============ Calling ============ */

.calling {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(180deg, rgba(16, 43, 71, 0.82), rgba(16, 43, 71, 0.72)),
    url("../assets/photos/Charan _parsha_Kailash_North_Face.jpeg") center 40% / cover no-repeat;
  text-align: center;
}

.calling-om {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-300);
  font-size: 54px;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 181, 156, 0.5);
}

.calling-quote {
  max-width: 860px;
  margin: 22px auto 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.85;
  color: #ffffff;
}

.calling-quote p + p { margin-top: 20px; }

.calling-quote strong {
  color: var(--orange-300);
  font-weight: 700;
}

/* ============ Gallery ============ */

.gallery {
  background: var(--sky-50);
  padding: 90px 0 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.gallery-grid figure {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(23, 58, 94, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(23, 58, 94, 0.2);
}

.gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img { transform: scale(1.07); }

/* ============ Footer ============ */

.footer {
  background: var(--hairline-white), var(--deep-900);
  color: #a9c3de;
  padding: 46px 0 26px;
  border-top: 3px solid var(--orange-600);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(169, 195, 222, 0.16);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 62px;
  filter: drop-shadow(0 0 14px rgba(244, 112, 63, 0.35));
}

.footer-name {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.footer-tag { font-size: 12.5px; color: var(--sky-500); }

.footer-contact {
  display: flex;
  gap: 14px 26px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 600;
}

.footer-contact a,
.footer-contact > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fc-ico {
  width: 15px;
  height: 15px;
  flex: none;
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fc-ico.fill {
  fill: var(--orange-500);
  stroke: none;
}

.footer-contact a {
  color: #a9c3de;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover { color: var(--orange-300); }

.footer-copy {
  padding-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: #6f8bab;
}

/* ============ Packages ============ */

.packages {
  padding: 92px 0 96px;
  background: var(--white);
  background-image: var(--hairline-sky);
}

.pkg-group { margin-top: 56px; }

.pkg-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.pkg-head-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sky-100);
  box-shadow: inset 0 0 0 1px var(--sky-200);
}

.pkg-head-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--orange-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pkg-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
}

.pkg-head p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink);
}

.pkg-count {
  margin-left: auto;
  flex: none;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sky-100);
  color: var(--sky-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pkg-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--orange-grad);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.25s ease;
}

.pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-200);
  box-shadow: 0 18px 36px rgba(23, 58, 94, 0.12);
}

.pkg-card:hover::before { transform: scaleY(1); }

.pkg-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pkg-days {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--orange-100);
  color: var(--orange-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.pkg-tag {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--sky-100);
  color: var(--sky-700);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.pkg-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--deep);
}

.pkg-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
}

.pkg-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.pkg-card:hover .pkg-link svg { transform: translateX(4px); }

/* ============ Responsive ============ */

@media (max-width: 1360px) {
  .nav-link { padding: 11px 6px; font-size: 13.5px; }
  .nav-link::after { left: 6px; right: 6px; }
  .btn-cta { padding: 11px 16px; font-size: 13px; }
  .brand-name { font-size: 24px; }
}

@media (max-width: 1120px) {
  .mantra-tag { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1160px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
    background: var(--white);
    box-shadow: 0 24px 40px rgba(23, 58, 94, 0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
  }

  .nav-menu.open {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    padding: 8px 24px 26px;
  }

  .nav-menu > li { display: block; }

  .nav-link {
    display: flex;
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after { display: none; }

  .nav-link.is-active { color: var(--orange-600); }

  .sub-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 6px;
    padding: 0 0 0 22px;
    background: none;
    border: 0;
    border-left: 1px solid var(--sky-200);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .sub-menu a { padding: 7px 10px 7px 24px; font-size: 13px; white-space: normal; }

  .mega-menu {
    position: static;
    width: auto;
    display: block;
    margin: 4px 0 6px;
    padding: 0 0 0 22px;
    background: none;
    border: 0;
    border-left: 1px solid var(--sky-200);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mega-intro {
    display: none;
  }

  .mega-col { margin-top: 10px; }

  .mega-col h4 {
    padding: 0 0 6px 24px;
    border-bottom: 0;
    font-size: 13px;
    color: var(--sky-700);
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .mega-list { margin-top: 0; }

  .mega-list a { padding: 6px 10px 6px 24px; font-size: 13px; }

  .caret { margin-left: auto; }

  .nav-cta-item { margin: 18px 0 0; }

  .nav-cta-item .btn-cta { display: flex; justify-content: center; padding: 14px 24px; font-size: 15px; }

  .hero-grid,
  .intro-grid,
  .offer-grid { grid-template-columns: 1fr; gap: 48px; }

  .hero-visual { max-width: 640px; margin: 26px auto 0; }

  .intro-photo img,
  .offer-photo img,
  .hero-photo img { height: 400px; }
}

@media (max-width: 720px) {
  .mantra-tag, .mantra-dot { display: none; }
  .topbar-link[href^="mailto"] { display: none; }
  .topbar-sep { display: none; }
  .brand-name { font-size: 21px; }
  .brand-sub { letter-spacing: 2.2px; }
  .brand-emblem { height: 50px; }
  .hero { padding: 60px 0 70px; }
  .flight-path { width: 220px; top: -56px; left: -10px; }
  .hero-badge { left: 10px; bottom: -16px; }
  .hero-visual::before { display: none; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-head { flex-wrap: wrap; gap: 12px; }
  .pkg-count { margin-left: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-contact { justify-content: center; }
}

@media (max-width: 420px) {
  .socials { display: none; }
  .brand-sub { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .hero-stats { gap: 20px; }
}
