/* =====================================================
   Maqam Travels — Hajj Package Page (Clean CSS)
   ===================================================== */

/* ========== Variables ========== */
:root {
  --primary: #2384c6;
  --primary-600: #1d73ac;
  --ink: #0f1b2d;
  --muted: #56657a;
  --line: #e6edf4;
  --bg: #f6f9fc;
  --card: #ffffff;

  --container-max: 1200px;
  --hero-h-mobile: 320px;
}

/* ========== Base ========== */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nexa", "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--muted);
  background: #fff;
  line-height: 1.6;
}

.container {
  width: min(var(--container-max), 92%);
  margin-inline: auto;
  box-sizing: border-box;
}

.section {
  padding: 2rem 0;
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: .8rem 1rem .8rem 0;
}

.logo-badge {
  position: absolute;
  left: 0;
  top: -28px;
  width: 90px;
  height: 165px;
  text-decoration: none;
}

.logo-badge .badge-rect {
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 27, 45, .15);
}

.logo-badge .badge-logo {
  position: absolute;
  left: 50%;
  top: 64%;
  transform: translate(-50%, -50%);
  height: 78px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .2));
}

.primary-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.lang-btn,
.menu-toggle {
  border: 1px solid var(--line);
  background: #fff;
  padding: .55rem .9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 900;
  display: none;
}

body.nav-open .nav-scrim {
  display: block;
}

@media (max-width:900px) {
  .header-inner {
    justify-content: flex-end;
    padding: .7rem 0;
    padding-left: 140px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: #fff;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1000;
    padding-top: 72px;
    box-shadow: -12px 0 30px rgba(15, 27, 45, .1);
  }

  body.nav-open .primary-nav {
    transform: translateX(0);
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 6%;
  }

  .primary-nav li {
    padding: .8rem 0;
    border-top: 1px solid var(--line);
  }

  .primary-nav li:first-child {
    border-top: none;
  }
}

@media (min-width:901px) {
  .header-inner {
    padding-left: 150px;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 40vh;
  display: block;
  background-size: cover;
  background-position: center;
  background-color: #0f4c72;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .45));
}

.hero-content {
  position: absolute;
  color: #fff;
}

.hero--mini {
  min-height: 40vh;
}

.hero--qa {
  position: relative;
}

/* Desktop placement */
@media (min-width:901px) {
  .hero--qa {
    min-height: 52vh;
  }

  .hero--qa .overlay {
    background:
      radial-gradient(130% 120% at 0% 50%, rgba(10, 16, 28, .70) 0%, rgba(10, 16, 28, .40) 28%, rgba(10, 16, 28, .18) 48%, rgba(10, 16, 28, 0) 64%),
      radial-gradient(120% 110% at 100% 50%, rgba(10, 16, 28, .40) 0%, rgba(10, 16, 28, .18) 34%, rgba(10, 16, 28, 0) 60%),
      linear-gradient(180deg, rgba(10, 16, 28, .16) 0%, rgba(10, 16, 28, 0) 40%, rgba(10, 16, 28, .24) 100%);
  }

  .hero--qa .hero-content {
    left: max(calc((100vw - var(--container-max)) / 2 + 56px), 6vw);
    top: 50%;
    transform: translateY(-50%);
    width: min(44vw, 620px);
  }
}

@media (max-width:900px) {
  .hero {
    height: var(--hero-h-mobile);
  }

  .hero .overlay {
    background:
      linear-gradient(180deg, rgba(10, 16, 28, .58) 0%, rgba(10, 16, 28, .42) 36%, rgba(10, 16, 28, .18) 68%, rgba(10, 16, 28, 0) 100%),
      radial-gradient(120% 90% at 8% 50%, rgba(10, 16, 28, .55) 0%, rgba(10, 16, 28, 0) 60%);
  }

  .hero--qa .hero-content {
    left: clamp(45px, 4vw, 24px);
    right: clamp(14px, 6vw, 28px);
    bottom: clamp(45px, 4.5vw, 28px);
    top: auto;
    transform: none;
    width: auto;
  }
}

.hero-content h1 {
  margin: 0;
  font-weight: 900;
  color: #fff;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
}

/* Price/Meta cluster in hero */
.hero--pkg .overlay {
  opacity: .25;
}

.hero-content--pkg {
  display: grid;
  gap: .75rem;
}

.pkg-eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .95;
}

.pkg-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.price-pill {
  margin-top: .5rem;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: .6rem .9rem;
  display: inline-grid;
  gap: .1rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
}

.price-pill__eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .7;
}

.price-pill__value {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
}

.price-pill__value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-left: .2rem;
  opacity: .8;
}

.price-pill__note {
  font-size: .75rem;
  opacity: .75;
}

/* ========== Package Body ========== */
.pkg {
  --card-pad: 1rem;
}

.pkg-wrap {
  display: grid;
  gap: 18px;
}

/* Card */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: var(--card-pad);
}

.card-title {
  margin: .1rem 0 .6rem 0;
  font-size: 1.15rem;
  color: var(--ink);
}

.card--overview p {
  max-width: 72ch;
}

/* Hotels */
.hotel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.hotel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .7rem;
  background: #fff;
}

.hotel__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.hotel__media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.media-count {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .25rem .5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}

.media-count img {
  width: 14px;
  height: 14px;
  filter: invert(1);
  opacity: .9;
}

.hotel__body {
  display: grid;
  gap: .4rem;
}

.hotel__top {
  display: flex;
  gap: .65rem;
  align-items: center;
  flex-wrap: wrap;
}

.hotel__name {
  margin: 0;
  font-size: 1.05rem;
}

.hotel__name a {
  color: var(--ink);
  text-decoration: none;
}

.hotel__name a:hover {
  text-decoration: underline;
}

.hotel__badge {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .25rem .5rem;
}

.hotel__meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
}

.dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: .75rem;
}

.dot--blue {
  background: #e8f3fb;
  color: #0d4f7f;
}

.dist {
  font-size: .8rem;
  color: var(--muted);
}

.hotel__desc {
  margin: .35rem 0 0;
}

/* Inline media cards (Camps/Transport) */
.card--inline {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: start;
}

.card__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.card__media img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* Services */
.card--services {
  padding: 1rem 1rem 1.1rem;
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.legend {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .85rem;
}

.status {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
  margin-right: .4rem;
}

.status.included {
  background: #3bb273;
}

.status.not {
  background: #e34f4f;
}

.status.extra {
  background: #f5a524;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: .75rem;
}

.svc-col h3 {
  margin: .5rem 0 .35rem 0;
  font-size: 1rem;
  color: var(--ink);
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .3rem;
}

.svc-list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.35;
}

.svc-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .38rem;
  width: .7rem;
  height: .7rem;
  border-radius: 2px;
  background: #3bb273;
}

.svc-list li.not:before {
  background: #e34f4f;
}

.svc-list li.extra:before {
  background: #f5a524;
}

/* Responsive */
@media (max-width:1024px) {
  .hotel {
    grid-template-columns: 180px 1fr;
  }

  .card--inline {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width:800px) {
  .hotel {
    grid-template-columns: 1fr;
  }

  .hotel__media img {
    height: 200px;
  }

  .card--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width:700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--primary);
  color: #dcebfa;
  margin-top: 2rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  opacity: .95;
}

.site-footer a:hover {
  opacity: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1.3fr;
  gap: clamp(16px, 4vw, 48px);
  padding: clamp(30px, 3vw, 28px) 0 clamp(24px, 4vw, 36px);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.8vw, 18px);
}

.footer-logo {
  max-width: 30%;
  width: clamp(160px, 40%, 260px);
  height: auto;
}

.footer-divider {
  border: 0;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, .85);
  border-radius: 3px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
}

.partner-logos img {
  height: 50px;
  width: auto;
  opacity: .95;
}

.partner-logos img:hover {
  opacity: 1;
}

.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2.5vw, 28px);
  align-content: start;
}

.footer-col h4 {
  margin: 0 0 .6rem 0;
  color: #fff;
  font-size: clamp(1rem, .9vw + .8rem, 1.2rem);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .45rem;
}

.footer-links li a {
  font-weight: 500;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .6rem 0;
  display: grid;
  gap: .4rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.contact-list .ico img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.socials-row {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: .95;
}

.btn-icon:hover {
  opacity: 1;
}

.btn-icon img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.copyright {
  text-align: center;
  padding: .9rem 0;
  background: rgba(0, 0, 0, .12);
  color: #e5f1fb;
  margin: 0;
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-right {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    width: clamp(120px, 35vw, 180px);
  }
}

@media (max-width:600px) {
  .footer-right {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: clamp(110px, 50vw, 160px);
  }

  .partner-logos img {
    height: clamp(22px, 6vw, 32px);
  }

  .btn-icon {
    width: 34px;
    height: 34px;
  }

  .btn-icon img {
    width: 18px;
    height: 18px;
  }

  .contact-list .ico img {
    width: 18px;
    height: 18px;
  }
}


/* ======== Page Title (sits ABOVE hero band) ======== */

.page-head .page-title {
  margin: 0;
  font-weight: 900;
  color: var(--ink);
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
  line-height: 1.05;
}

.page-head .page-title .sub {
  display: block;
}

/* ======== Hero (band) tweaks to match screenshot ======== */
.hero--pkg {
  min-height: 260px;
}

.hero--pkg .overlay {
  opacity: .12;
  background:
    linear-gradient(180deg, rgba(10, 16, 28, .22) 0%, rgba(10, 16, 28, .10) 46%, rgba(10, 16, 28, 0) 100%);
}

/* extend the 'wash' slightly below hero so it fades behind the overlapping card */
.hero--pkg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 42px;
  background: linear-gradient(180deg, rgba(10, 16, 28, .10), rgba(10, 16, 28, 0));
  pointer-events: none;
  opacity: .18;
}

/* Position hero content a bit lower and keep it from clashing with the header badge */
.hero-content--pkg {
  left: max(calc((100vw - var(--container-max)) / 2 + 56px), 6vw);
  top: 58%;
  transform: translateY(-50%);
  width: min(56vw, 740px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(12px, 2vw, 22px);
}

@media (max-width:900px) {
  .hero--pkg {
    min-height: 260px;
  }

  .hero-content--pkg {
    left: clamp(45px, 4vw, 24px);
    right: clamp(14px, 6vw, 28px);
    width: auto;
    grid-template-columns: 1fr;
    top: auto;
    bottom: 36px;
    transform: none;
  }
}

/* Kicker on the left of the band */
.pkg-meta .meta-kicker {
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.4vw + .4rem, 1.25rem);
}

.pkg-meta .meta-sub {
  margin-top: 2px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .9;
}

/* Price cluster on the right with NO pill background */
.price-pill {
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: #000;
  text-align: right;
  margin: 0;
}

.price-pill__eyebrow {
  opacity: .75;
  font-weight: 800;
  letter-spacing: .12em;
}

.price-pill__value {
  font-size: clamp(1.6rem, 2.2vw + .6rem, 2.2rem);
}

.price-pill__note {
  opacity: .7;
}

/* ======== Overlapping Overview Card ======== */
.card--overview {
  margin-top: clamp(-84px, -9.5vw, -64px);
  box-shadow: 0 10px 28px rgba(15, 27, 45, .12);
  position: relative;
  z-index: 5;
}

/* push subsequent section down a touch since overview overlaps the hero */
#accommodation {
  margin-top: clamp(12px, 1.6vw, 16px);
}

/* Minor hotel card polish to match screenshot spacing */
.hotel {
  padding: .8rem;
}

.hotel__desc {
  margin-top: .15rem;
}

.card__media img {
  height: 130px;
}

/* ===============================
   1) PAGE-HEAD: size + push down,
      and create space before hero
   =============================== */

/* Make the title a “bit medium” */
.page-head .page-title{
  font-size: clamp(1.75rem, 2.1vw + 0.8rem, 2.45rem);
}

/* Nudge the whole section down (so it never sits within the .badge-rect)
   and add some breathing room before the hero band */
.page-head{
  margin-top: clamp(20px, 4vw, 56px);     /* down from the header/badge */
  margin-bottom: clamp(14px, 3vw, 28px);  /* gap between Page head and hero */
}

/* Optional: if your page-title ever drifts under the left badge on small screens,
   you can indent the Page head to mirror your header’s left padding.
   Uncomment if you need it.

@media (max-width:900px){
  .page-head .container{ padding-left: 140px; }
}
@media (min-width:901px){
  .page-head .container{ padding-left: 150px; }
}
*/


/* ==========================================
   2) HERO: make content black + light overlay
   ========================================== */

/* Force hero text to be dark (overrides the global white hero text) */
.hero--pkg .hero-content{
  color: #0f1b2d;
  text-shadow: none;
}

/* Light, “beautiful” wash so dark text stays readable on the photo */
.hero--pkg .overlay{
  opacity: 1; /* let the gradients control visibility */
  background:
    radial-gradient(80% 50% at 50% 40%, rgba(255,255,255,.78) 0%, rgba(255,255,255,.42) 60%, rgba(255,255,255,.12) 100%),
    linear-gradient(180deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.18) 46%, rgba(255,255,255,0) 100%);
}

/* Keep the hero readable on mobile too */
@media (max-width:900px){
  .hero--pkg .overlay{
    background:
      linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.40) 36%, rgba(255,255,255,.10) 100%),
      radial-gradient(120% 90% at 8% 50%, rgba(255,255,255,.60) 0%, rgba(255,255,255,0) 60%);
  }
}

/* Make sure any bits inside the hero inherit the dark color */
.hero--pkg .price-pill,
.hero--pkg .pkg-meta{ color: inherit; }
.hero--pkg .price-pill__eyebrow{ color: rgba(0,0,0,.75); }

/* You already removed the white pill; this keeps it clean */
.hero--pkg .price-pill{
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: right;
}


/* =======================================================
   3) OVERVIEW PARAGRAPH: stretch to the right edge of card
   ======================================================= */

/* Remove the width cap so the paragraph aligns with the title width */
.card--overview p{
  max-width: none; /* was 72ch */
}

/* === Soft warm wash like the screenshot (white -> peach) === */
.hero--pkg .overlay{
  opacity: 1;
  background:
    linear-gradient(
      188deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,244,237,0.92) 38%,
      rgba(255,233,223,0.88) 68%,
      rgba(255,220,201,0.82) 100%
    );
}

/* Keep it gentle on mobile too */
@media (max-width:900px){
  .hero--pkg .overlay{
    background:
      linear-gradient(
        188deg,
        rgba(255,255,255,0.98) 0%,
        rgba(255,246,240,0.94) 45%,
        rgba(255,230,215,0.86) 100%
      );
  }
}

/* Extend the same warm fade below the overlapping card */
.hero--pkg::after{
  background: linear-gradient(180deg, rgba(255,233,223,0.55), rgba(255,233,223,0));
  opacity: 1;          /* was .18 */
  height: 56px;        /* a touch more tail */
  bottom: -36px;
}

/* Kill the tail that causes the band */
.hero--pkg::after{ content: none !important; }

/* Bleed the overlay 1px so no seam appears at the edge */
.hero--pkg .overlay{ bottom: -1px; position: absolute; left:0; right:0; top:0; }

/* ============================
   HERO content: match mockup
   ============================ */

/* Two columns: left label + right price */
.hero-content--pkg{
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: clamp(16px, 2.6vw, 32px);
  color: #0f1b2d;          /* dark text */
  text-shadow: none;
}

/* Left side text stack */
.pkg-meta__left{ display: grid; gap: .25rem; line-height: 1.05; }

/* Hide the first kicker (“Hajj 2026 / 1447”) in the hero */
.pkg-meta .meta-kicker:first-child{ display: none; }

/* “STANDARD” */
.pkg-meta .meta-kicker{
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.2vw + .8rem, 2.6rem);
  color: #0f1b2d;
}

/* “(CLASS B – VISA)” on its own line with parentheses */
.pkg-meta .meta-sub{
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  color: #0f1b2d;
  font-size: clamp(1.05rem, .7vw + .9rem, 1.4rem);
  opacity: .95;
}
.pkg-meta .meta-sub::before{ content: "("; }
.pkg-meta .meta-sub::after{ content: ")"; }

/* Right price block */
.price-pill{
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: right;
  align-self: start;
  color: inherit;
}
.price-pill__eyebrow{
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  opacity: .68;
}
.price-pill__value{
  font-weight: 900;
  font-size: clamp(1.8rem, 2.2vw + .8rem, 2.6rem);
  line-height: 1;
}
.price-pill__note{
  font-size: .8rem;
  opacity: .7;
  margin-top: .15rem;
}

/* Mobile: stack with left alignment */
@media (max-width:900px){
  .hero-content--pkg{ grid-template-columns: 1fr; }
  .price-pill{ text-align: left; }
}

/* Stretch hero content across the full container so the price can sit at the far right */
@media (min-width:901px){
  .hero--pkg .hero-content--pkg{
    /* span from container left gutter to container right gutter */
    left:  max(calc((100vw - var(--container-max))/2 + 56px), 6vw);
    right: max(calc((100vw - var(--container-max))/2 + 24px), 6vw);
    width: auto;                   /* ignore earlier fixed width */
    grid-template-columns: 1fr auto;
    align-items: start;
    justify-items: stretch;
  }

  /* ensure the price block hugs the right edge */
  .hero--pkg .price-pill{
    justify-self: end;
    text-align: right;
  }
}

/* Page background */
:root{ --page-bg: #f3f3f3; }

html, body{
  background: var(--page-bg) !important; /* override earlier #fff */
}

/* (Optional) keep cards crisp on the new grey */
.card{ background:#fff; }

/* ===== Accommodation card wrapper ===== */
#accommodation{
  padding: 1.2rem 1.2rem 1.4rem;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(15,27,45,.08);
}

/* Title a bit bigger */
#accommodation .card-title{
  font-size: clamp(1.25rem, .9vw + 1rem, 1.6rem);
  margin-bottom: .8rem;
}

/* Each hotel tile */
#accommodation .hotel{
  position: relative;
  grid-template-columns: 280px 1fr;
  border: 1px solid #e8ebf1;
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}

@media (max-width: 1100px){
  #accommodation .hotel{ grid-template-columns: 240px 1fr; }
}
@media (max-width: 800px){
  #accommodation .hotel{ grid-template-columns: 1fr; }
}

/* Left image block */
#accommodation .hotel__media{
  border-radius: 14px;
  overflow: hidden;
}
#accommodation .hotel__media img{
  height: 190px;         /* tall like mockup */
  width: 100%;
  object-fit: cover;
}

/* “7 photos” badge */
#accommodation .media-count{
  right: 10px;
  bottom: 10px;
  background: rgba(15,27,45,.7);
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 800;
}

/* Right-top “Hotel in …” label */
#accommodation .hotel__badge{
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: .42rem .72rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: .02em;
  font-size: .95rem;
}

/* Name + keep space so the badge never overlaps */
#accommodation .hotel__top{ 
  padding-right: 200px; 
  align-items: flex-start; 
  gap: .5rem; 
}
#accommodation .hotel__name{
  font-size: clamp(1.1rem, .9vw + 1rem, 1.5rem);
  margin: 0;
}
#accommodation .hotel__name a{
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}
#accommodation .hotel__name a:hover{ text-decoration: underline; }

/* Rating + distance */
#accommodation .hotel__meta{ gap: .45rem; margin-top: .25rem; }
#accommodation .dot--blue{
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: .18rem .5rem;
  width: auto; height: auto;
  font-size: .85rem; font-weight: 800;
}
#accommodation .dist{ font-weight: 700; }

/* Paragraph spacing */
#accommodation .hotel__desc{ margin-top: .4rem; }

/* Add subtle divider feeling between tiles via gap + light border */
#accommodation .hotel + .hotel{ margin-top: 12px; }

/* ===== Lightbox (gallery) ===== */
.mt-lb{
  position: fixed; inset: 0; z-index: 4000;
  display: none;
}
.mt-lb.is-open{ display: block; }
.mt-lb__scrim{
  position: absolute; inset: 0; background: rgba(0,0,0,.62);
}
.mt-lb__frame{
  position: absolute; inset: 4% 6%;
  border-radius: 14px; background: #000;
  display: grid; place-items: center;
  overflow: hidden;
}
.mt-lb__img{
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.mt-lb__close, .mt-lb__prev, .mt-lb__next{
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9); border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 22px; font-weight: 900; line-height: 42px;
}
.mt-lb__close{ top: 14px; right: 14px; transform: none; }
.mt-lb__prev{ left: 14px; }
.mt-lb__next{ right: 14px; }
.mt-lb__caption{
  position: absolute; left: 18px; right: 18px; bottom: 12px;
  color: #fff; text-align: center; font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
@media (max-width:700px){
  .mt-lb__frame{ inset: 8% 4%; }
  .mt-lb__prev, .mt-lb__next{ top: auto; bottom: 12px; transform: none; }
}

/* ========== Accommodation media tweaks ========== */

/* Smaller "photos" badge */
#accommodation .media-count{
  right: 10px;
  bottom: 10px;
  padding: .18rem .44rem;
  font-size: .72rem;
  gap: .35rem;
  border-radius: 10px;
  background: rgba(15,27,45,.72);
  border: 1px solid rgba(255,255,255,.22);
}
#accommodation .media-count img{
  width: 12px;
  height: 12px;
  opacity: .95;
}

/* Hover: gentle image zoom + center zoom icon */
#accommodation .hotel__media{
  cursor: zoom-in;
}
#accommodation .hotel__media img{
  transition: transform .35s ease, filter .35s ease;
}
#accommodation .hotel__media:hover img{
  transform: scale(1.04);
}

/* faint dark overlay on hover */
#accommodation .hotel__media::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.08);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1;
}

/* center "zoom" icon bubble */
#accommodation .hotel__media::after{
  content:"";
  position:absolute; left:50%; top:50%;
  width: 46px; height: 46px; border-radius: 50%;
  transform: translate(-50%,-50%) scale(.9);
  background: rgba(255,255,255,.92)
              url('https://unpkg.com/lucide-static@latest/icons/zoom-in.svg')
              no-repeat center / 22px 22px;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 2;
}

#accommodation .hotel__media:hover::before{ opacity: 1; }
#accommodation .hotel__media:hover::after{ opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Keyboard focus ring (JS below makes the media focusable) */
#accommodation .hotel__media:focus-visible{
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* Lightbox: default = 1:1 (actual) with scroll/pan */
.mt-lb__frame{
  overflow: auto;                /* allow panning if image is larger */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #000;
}
.mt-lb__img{
  width: auto; height: auto;
  max-width: none; max-height: none; /* no shrinking by default */
  object-fit: contain;
}

/* Fit-to-screen mode (toggled via .is-fit on .mt-lb) */
.mt-lb.is-fit .mt-lb__frame{
  overflow: hidden;
  display: grid;
  place-items: center;
}
.mt-lb.is-fit .mt-lb__img{
  max-width: 100%;
  max-height: 100%;
}

/* Tiny toolbar button to toggle 1:1 / Fit */
.mt-lb__mode{
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  border: 0; border-radius: 999px;
  padding: .35rem .6rem;
  font-weight: 800; cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

/* ===== Zoomable Lightbox (black transparent box + size readout) ===== */
.mt-lb{ position:fixed; inset:0; z-index:4000; display:none; }
.mt-lb.is-open{ display:block; }
.mt-lb__scrim{ position:absolute; inset:0; background:rgba(0,0,0,.65); }

.mt-lb__frame{
  position:absolute; inset:4% 5%;
  border-radius:14px; overflow:hidden;
  box-shadow:0 18px 48px rgba(0,0,0,.35);
  background:rgba(0,0,0,.82);
  display:block;
}

/* Stage holds the image; we transform the IMG for zoom/pan */
.mt-lb__stage{
  position:absolute; inset:56px 0 66px 0;   /* space for top close & bottom bar */
  overflow:hidden; touch-action:none;       /* allow our own gestures */
}
.mt-lb__img{
  position:absolute; left:50%; top:50%;
  transform: translate3d(-50%,-50%,0) scale(1);
  will-change: transform;
  user-select:none; -webkit-user-drag:none; pointer-events:auto;
}

/* Controls */
.mt-lb__close, .mt-lb__prev, .mt-lb__next{
  position:absolute; background:rgba(255,255,255,.94);
  border:0; width:42px; height:42px; border-radius:50%;
  font-size:22px; font-weight:900; line-height:42px; cursor:pointer;
  box-shadow:0 6px 14px rgba(0,0,0,.18);
}
.mt-lb__close{ top:10px; right:10px; }
.mt-lb__prev{ left:12px; top:50%; transform:translateY(-50%); }
.mt-lb__next{ right:12px; top:50%; transform:translateY(-50%); }

/* Bottom translucent toolbar showing size + zoom + buttons */
.mt-lb__bar{
  position:absolute; left:14px; right:14px; bottom:12px;
  display:flex; justify-content:space-between; align-items:center; gap:.8rem;
  padding:.5rem .7rem; border-radius:10px;
  background:rgba(0,0,0,.55); color:#fff; backdrop-filter:blur(6px);
  font-weight:800;
}
.mt-lb__meta{ display:flex; gap:.6rem; align-items:center; opacity:.95; }
.mt-lb__sep{ opacity:.65; }
.mt-lb__zoomval{ min-width:54px; text-align:right; }

.mt-lb__btn{
  border:0; border-radius:10px; cursor:pointer;
  padding:.35rem .6rem; font-weight:900;
  background:rgba(255,255,255,.92); color:#0f1b2d;
}
.mt-lb__btn:active{ transform:translateY(1px); }

.mt-lb--dragging .mt-lb__stage{ cursor:grabbing; }
.mt-lb--canpan    .mt-lb__stage{ cursor:grab; }

@media (max-width:700px){
  .mt-lb__frame{ inset:6% 4%; }
  .mt-lb__prev, .mt-lb__next{ top:auto; bottom:64px; transform:none; }
}

/* No hover zoom/magnifier on accommodation images */
#accommodation .hotel__media{
  cursor: pointer;                 /* simple pointer, no zoom icon */
}
#accommodation .hotel__media:hover img{
  transform: none !important;      /* cancel previous hover scale */
  filter: none !important;
}
#accommodation .hotel__media::before,
#accommodation .hotel__media::after{
  content: none !important;        /* remove hover overlays/icons */
}

/* ===== Minimal Lightbox (FB-style) ===== */
.mt-lb{ position:fixed; inset:0; z-index:4000; display:none; }
.mt-lb.is-open{ display:block; }
.mt-lb__scrim{ position:absolute; inset:0; background:rgba(0,0,0,.8); }

.mt-lb__frame{
  position:absolute; inset:0; display:block;
}

.mt-lb__stage{
  position:absolute; inset:0;
  cursor: default;
  overflow:hidden;
  touch-action:none;              /* we handle gestures */
}

.mt-lb__img{
  position:absolute; left:50%; top:50%;
  transform: translate3d(-50%,-50%,0) scale(1);
  will-change: transform;
  user-select:none; -webkit-user-drag:none; pointer-events:auto;
}

/* Close (subtle, top-right) */
.mt-lb__close{
  position:absolute; top:16px; right:16px;
  width:40px; height:40px; border:0; border-radius:50%;
  background:rgba(255,255,255,.9);
  box-shadow:0 6px 14px rgba(0,0,0,.18);
  font-size:22px; font-weight:900; line-height:40px;
  cursor:pointer;
}

/* Cursor when panning */
.mt-lb--drag .mt-lb__stage{ cursor:grabbing; }
.mt-lb--canpan .mt-lb__stage{ cursor:grab; }

@media (max-width:700px){
  .mt-lb__close{ top:10px; right:10px; width:36px; height:36px; line-height:36px; }
}

/* ========= Al-Muaisim + Transport (inline cards) ========= */
#al-muaisim, #transport{
  border: 1px solid #e8ebf1;
  border-radius: 22px;
  background:#fff;
  padding: 14px;
  box-shadow: 0 14px 36px rgba(15,27,45,.08);
}

/* Layout like the mockup: big image left, content right */
#al-muaisim.card--inline, #transport.card--inline{
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: center;
}
@media (max-width:900px){
  #al-muaisim.card--inline, #transport.card--inline{
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Media block */
#al-muaisim .card__media, #transport .card__media{
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;           /* click to open viewer */
}
#al-muaisim .card__media img, #transport .card__media img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* Small blue “photos” badge (bottom-right) */
#al-muaisim .media-count, #transport .media-count{
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .26rem .5rem;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  font-size: .78rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.22);
}
#al-muaisim .media-count img, #transport .media-count img{
  width: 14px; height: 14px;
  filter: brightness(0) invert(1);
}

/* Heading in brand blue, larger */
#al-muaisim .card-title, #transport .card-title{
  margin: 0 0 .35rem 0;
  color: var(--primary);
  font-size: clamp(1.15rem, 1vw + 1rem, 1.55rem);
}

/* Body spacing */
#al-muaisim .card__body, #transport .card__body{
  display: grid;
  gap: .4rem;
}

/* ===========================================
   SERVICES CARD — screenshot look + SVG icons
   =========================================== */

/* 1) Set your icon files here */
:root{
  --svc-ico-included: url("../icons/svc-included.svg");
  --svc-ico-not:      url("../icons/svc-not.svg");
  --svc-ico-extra:    url("../icons/svc-extra.svg");
}

/* Card shell */
#services.card--services{
  background:#fff;
  border:1px solid #e8ebf1;
  border-radius:22px;
  box-shadow:0 14px 36px rgba(15,27,45,.08);
  padding: clamp(16px, 1.8vw, 24px) clamp(18px, 2.4vw, 28px);
}

/* Header row */
#services .services-head{
  align-items:center;
  gap: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(12px, 1.6vw, 18px);
}
#services .card-title{
  font-size: clamp(1.3rem, 1.1vw + 1rem, 1.8rem);
  margin: 0;
  color: var(--ink);
}

/* Legend uses your SVGs (no colored dots) */
#services .legend{
  display:flex;
  gap: clamp(14px, 2vw, 28px);
  align-items:center;
  font-weight:800;
  color:#111;
}
#services .legend li{
  display:flex;
  align-items:center;
  gap:.55rem;
  white-space:nowrap;
}
#services .legend .status{
  width: 18px; height: 18px; border-radius:0;
  background: transparent no-repeat center / contain;
  display:inline-block;
}
#services .legend .status.included{ background-image: var(--svc-ico-included); }
#services .legend .status.not{      background-image: var(--svc-ico-not); }
#services .legend .status.extra{    background-image: var(--svc-ico-extra); }

/* Grid layout like mockup */
#services .services-grid{
  grid-template-columns: repeat(3, minmax(0,1fr));
  column-gap: clamp(18px, 3vw, 44px);
  row-gap: clamp(10px, 1.5vw, 16px);
  margin-top: clamp(10px, 1.2vw, 14px);
}

/* Section headers in blue */
#services .svc-col h3{
  margin: 1rem 0 .5rem 0;
  color: var(--primary);
  font-weight: 900;
  font-size: clamp(1rem, .8vw + .85rem, 1.25rem);
}

/* Lists with SVG bullet icons instead of color squares */
#services .svc-list{
  display:grid;
  gap:.45rem;
}
#services .svc-list li{
  position:relative;
  padding-left: 1.55rem;      /* room for icon */
  line-height: 1.5;
  color: var(--ink);
}
#services .svc-list li::before{
  content:"";
  position:absolute; left:0; top:.15rem;
  width: 18px; height: 18px;
  background: transparent no-repeat center / contain;
}

/* Map list-item classes to your icons */
#services .svc-list li.included::before{ background-image: var(--svc-ico-included); }
#services .svc-list li.not::before{      background-image: var(--svc-ico-not); }
#services .svc-list li.extra::before{    background-image: var(--svc-ico-extra); }

/* Remove old dot colors completely */
#services .svc-list li:before,
#services .status{ background-color: transparent !important; }

/* Responsive: single column on narrow screens */
@media (max-width: 700px){
  #services .services-grid{ grid-template-columns: 1fr; }
  #services .legend{ flex-wrap: wrap; row-gap:.4rem; }
}

/* ===== Need Help (Contact Options) ===== */
.card--assist{
  border: 1px solid #e8ebf1;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(15,27,45,.08);
  padding: clamp(16px, 2vw, 24px);
  background:#fff;
}

.assist-title{
  margin: 0 0 .8rem 0;
  font-size: clamp(1.2rem, 1.1vw + 1rem, 1.6rem);
  color: var(--ink);
}

.assist-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(14px, 2.2vw, 22px);
}

.assist-card{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid #e8ebf1;
  border-radius: 18px;
  background:#fff;
  padding: clamp(12px, 1.4vw, 16px);
}

.assist-ico{
  width: 72px; height: 72px;
  border-radius: 14px;
  background: #f6f9fc;
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.assist-ico img{ width: 42px; height: 42px; display:block; }

.assist-body h3{
  margin: .1rem 0 .35rem;
  color: var(--ink);
  font-size: clamp(1.05rem, .8vw + .9rem, 1.3rem);
}
.assist-body p{ margin: 0 0 .6rem 0; color: var(--muted); }

.btn-cta{
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 10px;
  background: #b9925b;          /* warm, like the screenshot */
  color: #fff; text-decoration: none; font-weight: 900;
  box-shadow: 0 6px 14px rgba(15,27,45,.08);
}
.btn-cta:hover{ filter: brightness(.95); }

@media (max-width: 900px){
  .assist-grid{ grid-template-columns: 1fr; }
  .assist-card{ grid-template-columns: 60px 1fr; }
  .assist-ico{ width:60px; height:60px; }
  .assist-ico img{ width:34px; height:34px; }
}

@media print{
  .site-header, .nav-scrim, .hero, .site-footer { display:none !important; }
  body{ background:#fff !important; color:#000; }
  .card{ box-shadow:none !important; border-color:#bbb !important; }
  a{ color:#000; text-decoration:none; }
  .card--overview{ margin-top:0 !important; }
}

/* Match hotel media-count to Al-Muaisim/Transport style */
#accommodation .hotel .media-count{
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .26rem .5rem;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.22);
}
#accommodation .hotel .media-count img{
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

/* ===== Disable hotel name link interaction + brand color ===== */
#accommodation .hotel__name a{
  color: var(--primary) !important;      /* match Al-Muaisim/Transport */
  text-decoration: none !important;
  pointer-events: none !important;       /* not clickable */
  cursor: default !important;
}
#accommodation .hotel__name a:hover,
#accommodation .hotel__name a:active,
#accommodation .hotel__name a:focus{
  text-decoration: none !important;
  outline: none !important;
}

/* ===== Media-count badges shouldn't capture hover/click ===== */
#accommodation .hotel .media-count,
#al-muaisim .media-count,
#transport .media-count,
#accommodation .hotel .media-count img,
#al-muaisim .media-count img,
#transport .media-count img{
  pointer-events: none !important;
  cursor: default !important;
}

/* ===== Show hand cursor only on the image areas ===== */
#accommodation .hotel__media,
#al-muaisim .card__media,
#transport .card__media{
  cursor: pointer !important;            /* “finger” hover */
}

/* Never change media-count color on hover (anywhere) */
#accommodation .hotel .media-count,
#al-muaisim .media-count,
#transport .media-count,
#accommodation .hotel .media-count img,
#al-muaisim .media-count img,
#transport .media-count img{
  transition: none !important;
}

/* If the parent image area is hovered, keep the same colors */
#accommodation .hotel__media:hover .media-count,
#al-muaisim .card__media:hover .media-count,
#transport .card__media:hover .media-count{
  background: var(--primary) !important;
  border-color: rgba(255,255,255,.22) !important;
}

#accommodation .hotel__media:hover .media-count img,
#al-muaisim .card__media:hover .media-count img,
#transport .card__media:hover .media-count img{
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}

/* Optional: also neutralize direct hover on the badge itself */
#accommodation .hotel .media-count:hover,
#al-muaisim .media-count:hover,
#transport .media-count:hover{
  background: var(--primary) !important;
  border-color: rgba(255,255,255,.22) !important;
}

/* === MOBILE TWEAKS: meta left of price, desktop-like overlay, page-head below badge === */
@media (max-width: 900px){
  /* 1) Meta (left) + Price (right) layout */
  .hero--pkg .hero-content--pkg{
    left: clamp(22px,5vw,40px) !important;
    right: clamp(16px,6vw,28px) !important;
    bottom: 28px !important;
    top: auto !important;
    transform: none !important;

    display: grid !important;
    grid-template-columns: 1fr auto !important; /* meta on left, price on right */
    align-items: end !important;
    gap: 8px !important;
  }
  .pkg-meta{ margin:0 !important; }
  .pkg-meta .meta-kicker{
    font-size: clamp(1rem, 3.6vw, 1.25rem) !important;
    line-height: 1.05 !important;
  }
  .pkg-meta .meta-sub{
    font-size: clamp(.8rem, 3.2vw, .95rem) !important;
    opacity: .9 !important;
  }
  .hero--pkg .price-pill{ text-align: right !important; }

  /* 2) Use the same desktop peach overlay on mobile and bleed 1px to avoid a seam */
  .hero--pkg .overlay{
    inset: 0 !important;
    bottom: -1px !important;
    background: linear-gradient(188deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,244,237,.92) 38%,
      rgba(255,233,223,.88) 68%,
      rgba(255,220,201,.82) 100%) !important;
  }

  /* 3) Ensure Page Head sits below the badge/rect */
  .page-head{
    margin-top: clamp(100px, 18vw, 130px) !important;  /* clears the logo badge */
  }
  .page-head .container{
    padding-left: 140px !important;                    /* lines up with header */
  }
}

/* Page head: keep it below the badge but push it to the left */
  .page-head{
    margin-top: clamp(120px, 18vw, 120px) !important; /* clears the badge */
    margin-bottom: clamp(30px, 18vw, 10px) !important; /* clears the badge */
  }
  .page-head .container{
    padding-left: 0 !important;  /* push title flush left */
  }

/* === MOBILE: make hero/overlay height match content (crop image if needed) === */
@media (max-width: 900px){
  /* Let content define the hero’s height (no tall empty band) */
  .hero--pkg{
    min-height: 0 !important;
    height: auto !important;
    padding: 50px 0 50px !important;      /* adjust to taste */
    background-size: cover !important;     /* crop image as needed */
    background-position: center !important;
  }

  /* Put content in normal flow so it *sets* the hero height */
  .hero--pkg .hero-content--pkg{
    position: relative !important;
    left: auto !important; right: auto !important;
    top: auto !important;  bottom: auto !important;
    transform: none !important;

    display: grid !important;
    grid-template-columns: 1fr auto !important; /* meta left, price right */
    align-items: end !important;
    gap: 8px !important;

    margin-inline: clamp(22px, 5vw, 40px) clamp(16px, 6vw, 28px) !important;
    z-index: 1;
  }

  /* Overlay fills the hero’s new (content-sized) height */
  .hero--pkg .overlay{
    position: absolute !important;
    inset: 0 !important;           /* same dimensions as hero */
    height: 100% !important;       /* follow hero height */
    background: linear-gradient(188deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,244,237,.92) 38%,
      rgba(255,233,223,.88) 68%,
      rgba(255,220,201,.82) 100%) !important;
  }
}

/* === Desktop: align hero meta to container left + balanced sizes === */
@media (min-width: 901px){
  /* Make the hero content span exactly the container gutters */
  .hero--pkg .hero-content--pkg{
    left:  max(calc((100vw - var(--container-max)) / 2), 4vw) !important;
    right: max(calc((100vw - var(--container-max)) / 2), 4vw) !important;
    width: auto !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;  /* meta left, price right */
    align-items: end !important;
  }

  /* Tighter, balanced typography for meta */
  .pkg-meta .meta-kicker{
    font-size: clamp(1.15rem, 1.1vw + 0.85rem, 1.5rem) !important;
    letter-spacing: .06em !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
  }
  .pkg-meta .meta-sub{
    font-size: clamp(.95rem, .8vw + .7rem, 1.25rem) !important;
    letter-spacing: .06em !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    opacity: .95 !important;
  }

  /* Keep price on the far right */
  .hero--pkg .price-pill{
    justify-self: end !important;
    text-align: right !important;
  }
}

/* Tighten space between the SVG/icon and its text in Services legend */
#services .legend li{
  display: flex;           /* keep */
  align-items: center;     /* keep */
  gap: .25rem !important;  /* ↓ from .55rem (adjust to taste) */
}

/* Remove any inherited margin on the icon span */
#services .legend .status{
  margin-right: 0 !important;
}

/* If you use inline <svg> or <img> instead of .status background icons */
#services .legend svg,
#services .legend img{
  margin: 0 !important;
  width: 16px;             /* optional: keep icons compact */
  height: 16px;            /* optional */
  vertical-align: middle;
}


