/* =========================================
   Honeymoon 2026 — same-to-same mockup
   Navy #0B1F3A + Gold #D4AF37 + Blush #E94E77
========================================= */

.hm-page {
  --navy: #0b1f3a;
  --gold: #d4af37;
  --blush: #e94e77;
  --ink: #152238;
  --muted: #6b7280;
  --line: #ebe6df;
  --soft: #faf8f5;
  --font: "Poppins", "Segoe UI", sans-serif;
  --display: "Poppins", "Segoe UI", sans-serif;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

.hm-page *,
.hm-page *::before,
.hm-page *::after { box-sizing: border-box; }

.hm-wrap {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: 0.25s ease;
  white-space: nowrap;
}

.hm-page a.hm-btn--blush,
.hm-btn--blush {
  background: var(--blush) !important;
  color: #fff !important;
  border-color: var(--blush) !important;
  box-shadow: 0 10px 24px rgba(233, 78, 119, 0.28);
}
.hm-btn--blush:hover { filter: brightness(1.05); color: #fff !important; }

.hm-page a.hm-btn--outline-light,
.hm-btn--outline-light {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.85) !important;
}
.hm-btn--outline-light:hover { background: rgba(255,255,255,.12) !important; color: #fff !important; }

.hm-btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.hm-btn--navy:hover { filter: brightness(1.08); color: #fff; }

.hm-btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: #d7dde8;
}
.hm-btn--ghost:hover { border-color: var(--navy); color: var(--navy); }

.hm-btn--wa {
  background: #fff !important;
  color: #128c7e !important;
  border-color: #fff !important;
}
.hm-btn--wa:hover { filter: brightness(0.98); color: #128c7e !important; }

.hm-btn--call {
  background: #fff !important;
  color: var(--navy) !important;
  border-color: #fff !important;
}
.hm-btn--call:hover { filter: brightness(0.98); color: var(--navy) !important; }

.hm-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hm-ctas--center { justify-content: center; }

.hm-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin: 0 auto 12px;
}
.hm-ico i { color: var(--gold); font-size: 20px; }

/* smaller icon inside the 6-across include boxes */
.hm-include .hm-ico { width: 44px; height: 44px; margin: 0 auto 11px; }
.hm-include .hm-ico i { font-size: 19px; }
.hm-ico--circle {
  border: 1.5px solid rgba(212,175,55,.55);
  background: #fff;
  margin-bottom: 12px;
}
.hm-ico--circle i { font-size: 16px; }

/* ---------- HERO ---------- */
.hm-hero {
  position: relative;
  min-height: 52svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  isolation: isolate;
  padding-bottom: 0;
}

.hm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(8,22,45,.55) 0%, rgba(8,22,45,.32) 55%, rgba(8,22,45,.22) 100%),
    url("https://images.unsplash.com/photo-1518568814500-bf0f8d125f46?auto=format&fit=crop&w=2000&q=85") center/cover no-repeat;
}

.hm-hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 36px;
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
  align-self: stretch;
}

.hm-hero__inner > .hm-eyebrow,
.hm-hero__inner > h1,
.hm-hero__inner > .hm-sub,
.hm-hero__inner > .hm-ctas {
  max-width: 560px;
}

.hm-eyebrow {
  margin: 0 0 12px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hm-eyebrow i { font-size: 0.7em; }

.hm-hero h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.hm-hero h1 span { color: var(--gold); }

.hm-sub {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  max-width: 48ch;
  white-space: pre-line;
}

/* USP white floating bar — same as Home, tight under CTAs */
.hm-usp {
  margin-top: -36px;
  position: relative;
  z-index: 3;
  padding-bottom: 10px;
}

.hm-page .hm-usp-row,
.hm-usp-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 18px 16px !important;
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 40px rgba(8, 22, 45, 0.12) !important;
  list-style: none !important;
}

.hm-page .hm-usp-row > div,
.hm-usp-row > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  gap: 8px !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  float: none !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #0b1f3a !important;
  line-height: 1.3 !important;
}

.hm-usp-row > div span {
  display: block;
  color: #0b1f3a !important;
}

.hm-usp-row i {
  color: #d4af37 !important;
  font-size: 16px !important;
  line-height: 1;
  margin: 0;
}

.hm-hero__usp { display: none !important; }

/* ---------- SECTIONS ---------- */
.hm-section { padding: 32px 0; background: #fff; }
.hm-section--soft {
  background: var(--soft);
  border-bottom: 1px solid rgba(11, 31, 58, 0.09);
}

.hm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hm-head h2,
.hm-title-center h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  color: var(--navy);
  font-weight: 700;
}

.hm-link {
  color: var(--blush);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hm-link:hover { color: #d63d66; }

.hm-title-center {
  text-align: center;
  margin-bottom: 20px;
}

.hm-title-center h2::after {
  content: "♥";
  display: block;
  margin-top: 10px;
  color: var(--blush);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
}

.hm-title-center h2::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 0;
  background: transparent;
}

/* ---------- DESTINATIONS ---------- */
.hm-dest-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.hm-dest {
  position: relative;
  display: block;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(8,22,45,.1);
}

.hm-dest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hm-dest:hover img { transform: scale(1.06); }

.hm-dest__copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(8,22,45,.94));
  color: #fff;
  text-align: left;
}

.hm-dest__copy h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 16px;
  color: #fff;
}

.hm-dest__copy p {
  margin: 0 0 4px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
}

.hm-dest__copy span {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

/* ---------- INCLUDES ---------- */
/* all 6 boxes in a single row (mockup) */
.hm-include-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.hm-include {
  background: #fff;
  border: 1px solid #ebdbe2;
  border-radius: 16px;
  padding: 22px 14px 18px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(8,22,45,.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hm-include:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(8,22,45,.1);
}

.hm-include h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.hm-include ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 8px;
}

.hm-include li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: #334155;
  line-height: 1.4;
}

.hm-include li i {
  color: var(--blush);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- PACKAGES ---------- */
.hm-pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(8,22,45,.06);
  display: flex;
  flex-direction: column;
}

.hm-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 200px;
  overflow: hidden;
  background: #eef2f7;
}
.hm-card__media a {
  display: block;
  position: absolute;
  inset: 0;
}
.hm-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  display: block;
}
.hm-card__media::after { display: none !important; }

.hm-card__badge { display: none !important; }

.hm-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.hm-card__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.hm-card__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  color: var(--navy);
  line-height: 1.3;
}

.hm-card__rating {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.hm-card__loc {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.hm-card__loc i { color: var(--gold); margin-right: 4px; }

.hm-card__incs {
  display: flex;
  gap: 12px;
  color: #9aa3b2;
  font-size: 14px;
  padding: 2px 0;
}

.hm-card__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hm-card__price small,
.hm-card__price em {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}
.hm-card__price strong {
  font-size: 17px;
  color: var(--navy);
  margin: 0 4px;
}

.hm-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hm-card__actions .hm-btn { padding: 9px 8px; font-size: 12px; }

.hm-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.hm-empty i { color: var(--blush); font-size: 28px; margin-bottom: 10px; }

/* ---------- WHY ---------- */
.hm-why-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.hm-why h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

/* ---------- GALLERY ---------- */
.hm-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.hm-gallery__item {
  margin: 0;
  grid-column: span 1;
  border-radius: 14px;
  overflow: hidden;
}

.hm-gallery__item:nth-child(1) { grid-column: span 2; }
.hm-gallery__item:nth-child(2) { grid-column: span 1; }
.hm-gallery__item:nth-child(3) { grid-column: span 1; }
.hm-gallery__item:nth-child(4) { grid-column: span 1; }
.hm-gallery__item:nth-child(5) { grid-column: span 1; }

.hm-gallery__item--wide { grid-column: span 2 !important; }

.hm-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.hm-gallery__item:hover img { transform: scale(1.04); }

/* ---------- REVIEWS ---------- */
.hm-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hm-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(8,22,45,.05);
}

.hm-review__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  border: 3px solid rgba(233,78,119,.25);
}

.hm-stars {
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 13px;
}

.hm-review > p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  color: var(--ink);
  min-height: 66px;
}

.hm-review h4 {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--navy);
  font-family: var(--display);
}

.hm-review > span {
  font-size: 12px;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.hm-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hm-faq__col { display: grid; gap: 10px; align-content: start; }

.hm-faq details {
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.hm-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 42px 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.hm-faq summary::-webkit-details-marker { display: none; }

.hm-faq summary::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: 12px;
}

.hm-faq details[open] summary::after { content: "▴"; }

.hm-faq details p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- CTA ---------- */
.hm-cta {
  padding: 22px 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(8,22,45,.55), rgba(11,31,58,.38)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.hm-cta h2 {
  margin: 0 0 6px;
  font-family: var(--font);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}

.hm-cta p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
}

.hm-cta .hm-btn {
  padding: 9px 14px;
  font-size: 13px;
  min-height: 40px;
}

/* ---------- UTIL BAR ---------- */
.hm-util {
  background: var(--navy);
  color: #fff;
  padding: 0;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: none !important;
}

.hm-util__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 16px;
  text-align: center;
  padding: 14px 12px;
  border: 0 !important;
  outline: none !important;
}

.hm-util__row > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  min-height: 48px;
  padding: 8px 10px;
  border: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-top: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  text-align: left;
  line-height: 1.35;
}

.hm-util__row > div:last-child,
.hm-util__row > div:nth-child(2n),
.hm-util__row > div:nth-child(3n),
.hm-util__row > div:nth-child(4n) {
  border: 0 !important;
}

.hm-util__icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  border: 0 !important;
  background: rgba(212,175,55,.14);
}
.hm-util__row > div > span:last-child {
  flex: 1 1 auto;
  min-width: 0;
}
.hm-util__row i { color: var(--gold); font-size: 13px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hm-dest-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hm-pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hm-include-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hm-why-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hm-page .hm-usp-row,
  .hm-usp-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    flex-wrap: unset !important;
    gap: 14px 10px !important;
  }
  .hm-page .hm-usp-row > div,
  .hm-usp-row > div {
    flex: unset !important;
  }
  .hm-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hm-gallery__item,
  .hm-gallery__item:nth-child(n),
  .hm-gallery__item--wide { grid-column: span 1 !important; }
}

@media (max-width: 720px) {
  .hm-section { padding: 22px 0 !important; }
  .hm-head { margin-bottom: 12px !important; }
  .hm-title-center { margin-bottom: 14px !important; }
  .hm-dest-row,
  .hm-include-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .hm-pkg-grid,
  .hm-reviews,
  .hm-faq,
  .hm-why-row { grid-template-columns: 1fr; gap: 12px; }
  .hm-util__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    padding: 12px 10px;
    border: 0 !important;
  }
  .hm-util__row > div {
    justify-content: flex-start;
    border: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    min-height: 44px;
  }
  .hm-page .hm-usp-row,
  .hm-usp-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 10px !important;
    padding: 14px 12px !important;
  }
  .hm-page .hm-usp-row > div,
  .hm-usp-row > div {
    flex: unset !important;
    font-size: 11px !important;
  }
  .hm-usp { margin-top: -16px; padding-bottom: 0; }
  .hm-hero { min-height: 56svh; }
  .hm-hero__inner { padding: 88px 0 40px; }
  .hm-dest { height: 200px; }
  .hm-cta { padding: 28px 0 !important; }
}
