:root {
  --ink: #16312d;
  --muted: #5b6d68;
  --line: #d9e4df;
  --mist: #eef7f1;
  --leaf: #0f7d5b;
  --leaf-dark: #07533f;
  --sun: #e2ab35;
  --clay: #b84c35;
  --cream: #fffaf0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 45, 35, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 240, 0.95);
  border-bottom: 1px solid rgba(22, 49, 45, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(22, 49, 45, 0.08);
  border-radius: 50%;
}

.brand-wordmark {
  width: 112px;
  height: 46px;
  object-fit: contain;
  padding: 4px 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

nav a:hover {
  color: var(--leaf-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), #0aa57a);
}

.btn.secondary {
  color: var(--leaf-dark);
  background: #dff0e8;
}

.hero .btn.secondary {
  color: #fff7df;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.header-cta:hover,
.btn.primary:hover {
  background: var(--leaf-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100vh - 72px);
  align-items: center;
  padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(7, 35, 31, 0.86), rgba(7, 83, 63, 0.55) 48%, rgba(226, 171, 53, 0.16)),
    linear-gradient(180deg, rgba(5, 24, 22, 0.36), rgba(5, 24, 22, 0.54)),
    url("assets/attraction-wadi-darbat.jpg?v=public-20260621") center / cover;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--sun), var(--clay), var(--leaf), #159fc7);
  content: "";
}

.hero-copy,
.hero-booking-card {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: #ffd76d;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.94), rgba(238, 247, 241, 0.84)),
    url("assets/khareef-salalah-bus-hero.png") center / cover;
}

.demo-summary {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.demo-summary strong {
  margin-bottom: 4px;
  font-size: 20px;
}

.demo-summary span,
.check-grid span {
  padding: 12px 14px;
  color: var(--leaf-dark);
  font-weight: 800;
  background: #e4f2ec;
  border-radius: 8px;
}

.creative-hero {
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.9), rgba(238, 247, 241, 0.8)),
    url("assets/khareef-salalah-bus-hero.png") center / cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 34px 0 0;
}

.quick-facts div {
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.quick-facts dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #173c34;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 83, 63, 0.02), rgba(7, 33, 28, 0.36)),
    linear-gradient(90deg, rgba(7, 33, 28, 0.34), transparent 52%);
  content: "";
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-brand-card {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 44px);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(7, 33, 28, 0.18);
}

.hero-brand-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
}

.hero-brand-card strong,
.hero-brand-card span {
  display: block;
  color: var(--leaf-dark);
  font-weight: 900;
}

.hero-brand-card span {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.route-card {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  width: min(290px, calc(100% - 48px));
  padding: 18px;
  color: var(--white);
  background: rgba(7, 83, 63, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.route-card strong,
.route-card small {
  display: block;
}

.hero-booking-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(4, 25, 22, 0.28);
}

.trip-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 12px;
  color: #583316;
  font-weight: 900;
  background: #ffd86e;
  border-radius: 999px;
}

.price-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 10px;
  margin-bottom: 8px;
}

.price-lockup span {
  margin-bottom: 12px;
  color: var(--clay);
  font-weight: 900;
  writing-mode: vertical-rl;
}

.price-lockup strong {
  color: var(--leaf-dark);
  font-size: 96px;
  line-height: 0.82;
}

.price-lockup small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 800;
}

.hero-booking-card p {
  color: var(--muted);
  line-height: 1.5;
}

.hero-inclusion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 22px;
}

.hero-inclusion-list span {
  padding: 9px 11px;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 800;
  background: #e7f3ed;
  border: 1px solid #cce3d9;
  border-radius: 999px;
}

.route-card small {
  margin-top: 6px;
  color: #d8eee7;
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 28px;
  color: var(--white);
  background: var(--leaf-dark);
}

.intro-band p {
  color: #d8eee7;
  line-height: 1.6;
}

.inclusions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.inclusions span {
  padding: 18px;
  color: var(--ink);
  font-weight: 800;
  background: #f6f0d8;
  border-radius: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.6;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.attraction-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(10, 45, 35, 0.08);
}

.gallery-card a {
  display: block;
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dfe8df;
}

.gallery-card figcaption {
  padding: 12px 14px 14px;
  color: var(--leaf-dark);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 230px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(10, 45, 35, 0.06);
}

.feature-grid strong {
  font-size: 18px;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-grid a,
.feature-grid span {
  align-self: end;
  color: var(--leaf-dark);
  font-weight: 800;
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.creative-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 430px;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  background: #17372f;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.creative-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 83, 63, 0.06), rgba(9, 33, 28, 0.9)), url("assets/khareef-salalah-bus-hero.png") center / cover;
  content: "";
}

.creative-card > * {
  position: relative;
  z-index: 1;
}

.creative-logo {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 76px;
  height: 52px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
}

.creative-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.creative-card span {
  color: #f5d881;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.creative-card strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: 0;
}

.creative-card em {
  display: block;
  margin-top: 16px;
  color: #d8eee7;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

.creative-card b {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  color: #16312d;
  background: #e2ab35;
  border-radius: 8px;
}

.creative-card small {
  display: block;
  margin-top: 12px;
  color: #edf6f2;
  font-weight: 700;
}

.concept-urgency::before {
  background: linear-gradient(180deg, rgba(184, 76, 53, 0.12), rgba(58, 22, 17, 0.92)), url("assets/khareef-salalah-bus-hero.png") center / cover;
}

.concept-dates::before {
  background: linear-gradient(180deg, rgba(15, 125, 91, 0.2), rgba(9, 54, 44, 0.95)), url("assets/khareef-salalah-bus-hero.png") 40% center / cover;
}

.concept-family::before {
  background: linear-gradient(180deg, rgba(226, 171, 53, 0.12), rgba(10, 45, 35, 0.9)), url("assets/khareef-salalah-bus-hero.png") right center / cover;
}

.concept-attraction::before {
  background: linear-gradient(180deg, rgba(8, 50, 72, 0.12), rgba(12, 42, 55, 0.92)), url("assets/khareef-salalah-bus-hero.png") left center / cover;
}

.concept-carousel::before {
  background: linear-gradient(180deg, rgba(253, 248, 238, 0.08), rgba(22, 49, 45, 0.94)), url("assets/khareef-salalah-bus-hero.png") center / cover;
}

.campaign-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(10, 45, 35, 0.06);
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 0.9fr 1.6fr 1.2fr;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row span {
  padding: 16px;
  color: var(--muted);
  line-height: 1.45;
}

.table-row span:first-child {
  color: var(--leaf-dark);
  font-weight: 800;
}

.table-head {
  background: var(--leaf-dark);
}

.table-head span,
.table-head span:first-child {
  color: var(--white);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-grid article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-grid article.recommended {
  color: var(--white);
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
}

.pricing-grid strong {
  font-size: 22px;
}

.pricing-grid b {
  color: var(--clay);
  font-size: 34px;
}

.pricing-grid .recommended b {
  color: #f5d881;
}

.pricing-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.pricing-grid .recommended span {
  color: #d8eee7;
}

.attraction-card {
  position: relative;
  display: grid;
  min-height: 350px;
  overflow: hidden;
  align-content: end;
  color: var(--white);
  background: var(--leaf-dark);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(10, 45, 35, 0.16);
  isolation: isolate;
}

.attraction-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.attraction-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 33, 28, 0.05), rgba(7, 33, 28, 0.84));
  content: "";
}

.attraction-card::after {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  content: "View image";
}

.attraction-card:hover img {
  transform: scale(1.055);
}

.attraction-card strong,
.attraction-card span,
.attraction-card em {
  position: relative;
  display: block;
  margin-right: 18px;
  margin-left: 18px;
}

.attraction-card strong {
  margin-bottom: 8px;
  font-size: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.attraction-card span,
.source-note {
  line-height: 1.55;
}

.attraction-card span {
  margin-bottom: 12px;
  color: #edf7f2;
  font-weight: 600;
}

.attraction-card em {
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  background: #f5d881;
  border-radius: 8px;
}

.source-note {
  color: var(--muted);
  max-width: 860px;
  margin: 18px 0 0;
  font-size: 14px;
}

.showcase-band {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 83, 63, 0.94), rgba(22, 49, 45, 0.9)),
    url("assets/khareef-salalah-bus-hero-optimized.jpg") center / cover;
}

.showcase-band .section-heading p {
  color: #d8eee7;
}

.showcase-band .eyebrow {
  color: #f5d881;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showcase-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.9);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.date-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(10, 45, 35, 0.06);
}

.date-card strong,
.date-card span {
  display: block;
}

.date-card strong {
  font-size: 20px;
}

.date-card span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  color: var(--muted);
  line-height: 1.5;
}

.notice,
.contact-card {
  padding: 22px;
  background: #f5eadc;
  border: 1px solid #e8d4bc;
  border-radius: 8px;
}

.notice p,
.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.form-panel {
  max-width: 980px;
  padding: clamp(18px, 4vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #bfd0ca;
  border-radius: 8px;
  padding: 11px 12px;
  background: #fbfdfb;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--leaf-dark);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-card {
  background: var(--white);
}

.contact-card a {
  display: block;
  margin-top: 8px;
  color: var(--leaf-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card img {
  width: 100%;
  margin-top: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.passenger-hero {
  min-height: calc(100vh - 140px);
  background: linear-gradient(180deg, var(--mist), var(--cream));
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.chat-toggle {
  width: 62px;
  height: 62px;
  color: var(--white);
  font-weight: 800;
  background: var(--clay);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(360px, calc(100vw - 36px));
  height: 470px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--white);
  background: var(--leaf-dark);
}

.chat-head button {
  color: var(--white);
  font-size: 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 14px;
  background: #f7faf8;
}

.msg {
  max-width: 84%;
  padding: 10px 12px;
  line-height: 1.45;
  border-radius: 8px;
}

.msg.bot {
  align-self: flex-start;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.msg.user {
  align-self: flex-end;
  color: var(--white);
  background: var(--leaf);
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-input button {
  min-width: 76px;
  color: var(--white);
  font-weight: 800;
  background: var(--leaf);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(6, 22, 19, 0.82);
}

.lightbox figure {
  width: min(1040px, 100%);
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #102e28;
}

.lightbox figcaption {
  padding: 14px 18px 18px;
  color: var(--ink);
  font-weight: 900;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

footer {
  padding: 28px clamp(18px, 5vw, 64px);
  color: #d8eee7;
  background: var(--ink);
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .demo-hero,
  .intro-band,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .brand {
    min-width: 220px;
  }

  .date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .attraction-grid,
  .attraction-gallery,
  .creative-grid,
  .feature-grid,
  .pricing-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .header-cta {
    padding: 0 12px;
  }

  h1 {
    font-size: 42px;
  }

  .quick-facts,
  .date-grid,
  .attraction-grid,
  .attraction-gallery,
  .creative-grid,
  .feature-grid,
  .pricing-grid,
  .check-grid,
  .form-grid,
  .inclusions {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-booking-card {
    padding: 20px;
  }

  .price-lockup strong {
    font-size: 74px;
  }

  .attraction-card {
    min-height: 300px;
  }
}
