:root {
  --red: #ef001c;
  --blue: #0646a0;
  --ink: #10233f;
  --muted: #68768b;
  --line: #dce6f0;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 35, 63, 0.18);
  --glass: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 5vw, 72px);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
  background: linear-gradient(180deg, rgba(5, 18, 38, 0.42), rgba(5, 18, 38, 0));
  backdrop-filter: blur(4px);
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.12);
  backdrop-filter: blur(16px);
}
.brand {
  width: clamp(112px, 12vw, 174px);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.site-header.scrolled .brand,
.site-header.solid .brand {
  background: transparent;
  box-shadow: none;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 24px);
  color: var(--white);
  font-weight: 750;
}
.site-header.scrolled .main-nav,
.site-header.solid .main-nav { color: var(--ink); }
.main-nav a {
  border-radius: 999px;
  padding: 8px 2px;
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}
.main-nav a:not(.nav-cta):hover {
  background: rgba(255,255,255,0.18);
  padding-left: 12px;
  padding-right: 12px;
}
.site-header.scrolled .main-nav a:not(.nav-cta):hover,
.site-header.solid .main-nav a:not(.nav-cta):hover {
  background: rgba(6, 70, 160, 0.08);
}
.nav-cta {
  color: var(--white) !important;
  background: var(--red);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(239, 0, 28, 0.24);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.15);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 130px clamp(20px, 7vw, 98px) 88px;
}
.hero-slider,
.hero-slider img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slider img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 7000ms ease;
}
.hero-slider img.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(4, 18, 43, 0.74), rgba(4, 18, 43, 0.24) 62%, rgba(4, 18, 43, 0.45));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.hero .eyebrow { color: #fff; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  max-width: 900px;
}
.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 850;
}
.button-primary { background: var(--red); color: var(--white); }
.button-ghost { border-color: rgba(255,255,255,0.7); color: var(--white); }
.hero-destination {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: 44px;
  z-index: 1;
  color: var(--white);
  text-align: right;
}
.hero-destination span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.78;
}
.hero-destination strong {
  font-size: clamp(32px, 5vw, 70px);
  line-height: 1;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 40px));
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.intro-strip div { padding: 28px clamp(18px, 3vw, 42px); border-right: 1px solid var(--line); }
.intro-strip div:last-child { border-right: 0; }
.intro-strip strong { display: block; color: var(--blue); font-size: 34px; }
.intro-strip span { color: var(--muted); font-weight: 650; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.section-heading h2,
.split-copy h2,
.enquiry-band h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.03;
}
.section-heading a { color: var(--blue); font-weight: 850; }

.destination-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  gap: 22px;
}
.destination-feature,
.destination-card {
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.destination-feature {
  position: relative;
  grid-row: span 2;
  min-height: 584px;
  color: var(--white);
}
.destination-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-feature::after,
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2, 17, 42, 0.78));
}
.destination-feature div {
  position: absolute;
  z-index: 1;
  inset: auto 28px 28px;
}
.destination-feature p,
.destination-card span {
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.destination-feature h3,
.destination-card strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}
.destination-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background-image: linear-gradient(180deg, transparent, rgba(2, 17, 42, 0.74)), var(--image);
  background-size: cover;
  background-position: center;
}
.destination-card > * { position: relative; z-index: 1; }

.package-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.empty-packages {
  grid-column: 1 / -1;
  border-radius: 10px;
  padding: 24px;
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.09);
}
.package-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 35, 63, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(16, 35, 63, 0.16);
}
.package-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.package-body { padding: 20px; }
.package-body p {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.package-body h3 {
  min-height: 58px;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.18;
}
.package-body > span { color: var(--muted); font-weight: 700; }
.package-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 850;
}
.price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price small,
.price em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
}
.price strong {
  display: block;
  color: var(--red);
  font-size: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
}
.split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.split-copy .button { margin-top: 10px; }
.expert-stack {
  display: grid;
  gap: 18px;
}
.expert-stack article {
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 35, 63, 0.11);
}
.expert-stack span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.expert-stack strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.1;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.mood-grid a,
.filter-buttons button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 16px 18px;
  color: var(--blue);
  font-weight: 850;
  text-align: center;
}

.catalog-grid,
.places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.catalog-grid article,
.catalog-grid a,
.places-grid article,
.places-grid a {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.catalog-grid a:hover,
.places-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(16, 35, 63, 0.16);
}
.catalog-grid img,
.places-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.catalog-grid strong,
.places-grid h2 {
  display: block;
  margin: 18px 18px 4px;
  font-size: 22px;
}
.catalog-grid span,
.places-grid span,
.places-grid p {
  display: block;
  margin: 0 18px 18px;
  color: var(--muted);
  line-height: 1.5;
}
.places-grid p {
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 850;
}

.enquiry-band {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(70px, 10vw, 120px) auto 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: center;
  border-radius: 8px;
  padding: clamp(30px, 5vw, 58px);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.enquiry-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
}
.enquiry-form label span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
.enquiry-form textarea {
  min-height: 96px;
  padding-top: 13px;
  resize: vertical;
}
.enquiry-form .full-field { grid-column: 1 / -1; }
.enquiry-form button {
  grid-column: 1 / -1;
  border: 0;
  white-space: nowrap;
}
.form-status {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 800;
}
.form-status.error { background: rgba(239, 0, 28, 0.2); }

.site-footer {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
  padding: 52px clamp(20px, 6vw, 80px);
  background: #06172f;
  color: var(--white);
}
.footer-brand img {
  width: 220px;
  border-radius: 8px;
  background: var(--white);
  padding: 6px 10px;
}
.site-footer h3 {
  margin-bottom: 16px;
  color: #b8d2f8;
  font-size: 15px;
}
.site-footer a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255,255,255,0.78);
}

.admin-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #eef5fb, #ffffff 48%, #f8e9ec);
}
.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 70px;
}
.admin-header {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.admin-logo {
  border-radius: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.12);
}
.admin-header h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}
.admin-card {
  border: 1px solid rgba(220, 230, 240, 0.8);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 50px rgba(16, 35, 63, 0.12);
}
.login-card { max-width: 460px; }
.admin-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 22px;
  align-items: start;
}
.admin-quick-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.28fr 0.8fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}
.admin-form {
  display: grid;
  gap: 14px;
}
.admin-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
}
.admin-check input {
  width: 18px;
  min-height: 18px;
}
.admin-check span {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.admin-form textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}
.itinerary-builder {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: #f7fbff;
}
.builder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.builder-head span,
.day-builder-card span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.builder-head strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}
.admin-mini-button,
.day-builder-title button {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.day-builder-list {
  display: grid;
  gap: 12px;
}
.day-builder-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: var(--white);
}
.day-builder-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.day-builder-title button {
  background: rgba(239, 0, 28, 0.1);
  color: var(--red);
}
.day-builder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.day-builder-grid .wide { grid-column: 1 / -1; }
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-secondary {
  border-color: var(--line);
  color: var(--blue);
  background: var(--white);
}
.admin-alert {
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(6, 70, 160, 0.1);
  color: var(--blue);
  font-weight: 850;
}
.admin-alert.error {
  background: rgba(239, 0, 28, 0.1);
  color: var(--red);
}
.admin-package-list {
  display: grid;
  gap: 14px;
}
.admin-package {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: var(--white);
}
.admin-package img {
  width: 112px;
  height: 86px;
  border-radius: 8px;
  object-fit: cover;
}
.admin-package span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.admin-package strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}
.admin-package p {
  margin: 5px 0 0;
  color: var(--muted);
}
.admin-package-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.admin-package-actions a,
.admin-package-actions button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.admin-package-actions button { color: var(--red); }

.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 7vw, 98px) 70px;
  color: var(--white);
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 23, 47, 0.78), rgba(6, 23, 47, 0.25));
}
.page-hero div { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.filter-buttons button {
  cursor: pointer;
  color: var(--ink);
}
.filter-buttons button.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.places-grid article.is-hidden { display: none; }
.places-grid a.is-hidden { display: none; }

.itinerary-page {
  background: #f4f8fb;
}
.itinerary-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 7vw, 98px) 70px;
  overflow: hidden;
  color: var(--white);
}
.itinerary-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.itinerary-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 18, 38, 0.82), rgba(5, 18, 38, 0.28));
}
.itinerary-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.itinerary-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.98;
}
.itinerary-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,0.88);
  font-size: 19px;
  line-height: 1.7;
}
.itinerary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  max-width: 780px;
  margin-top: 28px;
}
.itinerary-stats span {
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-weight: 750;
  backdrop-filter: blur(10px);
}
.itinerary-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 22px;
}
.itinerary-shell {
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 24px;
  align-items: start;
}
.trip-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}
.summary-card,
.day-card,
.include-grid article {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 35, 63, 0.11);
}
.summary-card {
  padding: 24px;
}
.summary-card h2,
.include-grid h3 {
  margin-bottom: 12px;
}
.summary-card p,
.day-card p {
  color: var(--muted);
  line-height: 1.7;
}
.summary-card ul,
.include-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.summary-card .button {
  width: 100%;
  margin-top: 12px;
}
.day-timeline {
  display: grid;
  gap: 16px;
}
.compact-heading {
  align-items: start;
  margin: 0 0 6px;
  padding: 24px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 35, 63, 0.08);
}
.compact-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
}
.day-card {
  position: relative;
  padding: 26px 28px 26px 34px;
  overflow: hidden;
}
.day-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(var(--red), var(--blue));
}
.day-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.day-card h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}
.day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.day-meta small {
  border-radius: 999px;
  padding: 8px 12px;
  background: #eef5fb;
  color: var(--blue);
  font-weight: 850;
}
.include-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.notes-grid {
  grid-template-columns: 1fr;
}
.include-grid article {
  padding: 24px;
}
.not-found {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 80px;
}
.not-found h1 {
  font-size: clamp(40px, 7vw, 72px);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 8px;
    padding: 14px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; }
  .nav-cta { text-align: center; }
  .hero { min-height: 82svh; }
  .intro-strip,
  .destination-grid,
  .package-row,
  .split-section,
  .enquiry-band,
  .enquiry-form,
  .site-footer,
  .admin-layout,
  .admin-quick-grid,
  .admin-header,
  .itinerary-shell,
  .itinerary-stats,
  .include-grid {
    grid-template-columns: 1fr;
  }
  .intro-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .destination-feature { min-height: 420px; }
  .trip-summary { position: static; }
  .mood-grid,
  .catalog-grid,
  .places-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 16px; }
  .brand { width: 116px; }
  .hero { padding: 112px 20px 84px; }
  .hero-destination { left: 20px; right: auto; bottom: 92px; text-align: left; }
  .intro-strip { margin-top: 0; }
  .section,
  .enquiry-band { width: calc(100% - 28px); }
  .section-heading { display: block; }
  .mood-grid,
  .catalog-grid,
  .places-grid,
  .day-builder-grid { grid-template-columns: 1fr; }
  .admin-package { grid-template-columns: 1fr; }
  .admin-package img { width: 100%; height: 190px; }
  .admin-package-actions { justify-items: start; }
}
