/* ==========================================================================
   Nile Heaven — brand stylesheet
   Recreated from the Claude Design handoff prototype
   (Nile Heaven - Home.dc.html). Values (colors, spacing, type scale,
   breakpoints 1024/900/640/560) match the prototype; markup is semantic
   .nh-* classes instead of the prototype's inline styles.
   ========================================================================== */

:root {
  --nh-navy: #08111f;
  --nh-navy-2: #0b1728;
  --nh-navy-3: #16233a;
  --nh-navy-footer: #060d18;
  --nh-gold: #c8a24c;
  --nh-gold-light: #e9cd8b;
  --nh-gold-deep: #9c7a2e;
  --nh-gold-warm: #b8894b;
  --nh-sand: #f4ebda;
  --nh-cream: #efe7d6;
  --nh-cream-bright: #f7efdd;
  --nh-mist: #dce3ec;
  --nh-mist-2: #d3dbe6;
  --nh-slate: #b9c2cf;
  --nh-slate-2: #9da9ba;
  --nh-slate-3: #8894a4;
  --nh-slate-4: #5c6879;
  --nh-sand-ink: #6b6350;
  --nh-gold-line: rgba(200, 162, 76, 0.16);
  --nh-serif: "Cormorant Garamond", serif;
  --nh-caps: "Marcellus", serif;
  --nh-sans: "Jost", sans-serif;
  --nh-pad-x: 56px;
  --nh-grad-gold: linear-gradient(135deg, #e9cd8b, #c8a24c 60%, #9c7a2e);
  --nh-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html, body.nh {
  margin: 0;
  padding: 0;
  background: var(--nh-navy);
  scroll-behavior: smooth;
}

body.nh {
  font-family: var(--nh-sans);
  color: var(--nh-cream);
  width: 100%;
  overflow-x: hidden;
}

body.nh ::selection { background: rgba(200, 162, 76, 0.3); }
body.nh a { color: var(--nh-gold); text-decoration: none; }
body.nh a:hover { color: var(--nh-gold-light); }

@keyframes nhFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

/* --------------------------------------------------------------- utilities */
.nh-eyebrow {
  font-family: var(--nh-caps);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--nh-gold);
  text-transform: uppercase;
}

.nh-section { padding: 100px var(--nh-pad-x); background: var(--nh-navy); }
.nh-section--panel { background: var(--nh-navy-2); padding-top: 110px; padding-bottom: 110px; }
.nh-section--sand { background: var(--nh-sand); color: var(--nh-navy-3); }
.nh-section--sand .nh-eyebrow { color: var(--nh-gold-warm); }

.nh-section-head { text-align: center; margin-bottom: 56px; }
.nh-section-head h2 {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: 48px;
  margin: 14px 0 0;
  color: var(--nh-cream-bright);
}
.nh-section--sand .nh-section-head h2 { color: var(--nh-navy-3); font-weight: 600; }

.nh-btn {
  display: inline-block;
  font-family: var(--nh-sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 34px;
  font-weight: 500;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  /* transform/opacity/shadow only — nothing that triggers layout */
  transition: transform 0.3s var(--nh-ease), box-shadow 0.3s var(--nh-ease), opacity 0.3s ease;
}
.nh-btn:hover { transform: translateY(-2px); }
.nh-btn:active { transform: translateY(0); }
.nh-btn:focus-visible { outline: 2px solid var(--nh-gold); outline-offset: 3px; }
.nh-btn[aria-busy="true"], .nh-btn:disabled { opacity: 0.6; cursor: progress; transform: none; }

/* Shadow tinted to the surface hue rather than a neutral/neon drop. */
.nh-btn--gold { color: var(--nh-navy-2) !important; background: var(--nh-grad-gold); }
.nh-btn--gold:hover { box-shadow: 0 12px 28px -10px rgba(156, 122, 46, 0.65); }
.nh-btn--ghost { color: var(--nh-cream-bright) !important; border: 1px solid rgba(239, 231, 214, 0.5); background: transparent; }
.nh-btn--ghost:hover { border-color: var(--nh-gold); color: var(--nh-gold-light) !important; }

@media (prefers-reduced-motion: reduce) {
  .nh-btn { transition: box-shadow 0.3s ease; }
  .nh-btn:hover, .nh-btn:active { transform: none; }
}

/* --------------------------------------------------------------------- nav */
/* The nav is solid by default. Its links are light (--nh-mist), so a
   transparent bar is only safe over a dark hero — every inner page in the
   design bundle (About, Contact, Destinations) ships a solid bar for exactly
   that reason. Transparency is opt-in per page, not the default, so a page
   with a light hero can never silently swallow the menu. */
.nh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--nh-pad-x);
  background: rgba(8, 17, 31, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 162, 76, 0.18);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

/* Home is the opt-in: its full-bleed dark hero carries the bar until scroll. */
.nh-home .nh-nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.nh-home .nh-nav.is-scrolled {
  background: rgba(8, 17, 31, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(200, 162, 76, 0.18);
}
.nh-nav.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
}

.nh-brand { display: flex; align-items: center; gap: 13px; }
.nh-brand__logo { height: 40px; width: auto; display: block; }
/* Felucca mark. Inherits currentColor so one asset serves navy and sand surfaces. */
.nh-mark { height: 40px; width: auto; aspect-ratio: 120 / 118; display: block; flex-shrink: 0; color: var(--nh-gold); }
.nh-brand__name {
  font-family: var(--nh-caps);
  letter-spacing: 0.26em;
  font-size: 15px;
  color: var(--nh-cream-bright);
}
.nh-brand__sub {
  font-family: var(--nh-sans);
  letter-spacing: 0.5em;
  font-size: 7px;
  color: var(--nh-gold);
  margin-top: 2px;
  text-transform: uppercase;
}

.nh-nav__links {
  display: flex;
  gap: 30px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nh-nav__links a { color: var(--nh-mist); }
.nh-nav__links a:hover,
.nh-nav__links a[aria-current="page"] { color: var(--nh-gold); }

.nh-nav__cta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nh-navy-2) !important;
  background: var(--nh-grad-gold);
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 999px;
}

.nh-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
}
.nh-burger span { width: 26px; height: 2px; background: var(--nh-cream); display: block; }

/* mobile drawer */
.nh-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 80%;
  max-width: 330px;
  z-index: 130;
  background: var(--nh-navy-2);
  border-left: 1px solid rgba(200, 162, 76, 0.22);
  transform: translateX(100%);
  transition: transform 0.5s var(--nh-ease);
  display: flex;
  flex-direction: column;
  padding: 30px 34px 40px;
  box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
.nh-menu.is-open { transform: translateX(0); }
.nh-menu__close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--nh-cream);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  margin-bottom: 24px;
}
.nh-menu a:not(.nh-btn) {
  font-family: var(--nh-serif);
  font-size: 27px;
  color: var(--nh-cream-bright);
  padding: 13px 0;
  border-bottom: 1px solid rgba(200, 162, 76, 0.14);
}
.nh-menu .nh-btn { margin-top: 28px; text-align: center; }

/* -------------------------------------------------------------------- hero */
/* One hero for every page: navy base, photo bleeding in from the right,
   glyph columns down both edges. Size is the only thing that varies —
   --home is full height, inner pages sit shorter, --detail bottom-aligns. */
.nh-hero {
  position: relative;
  min-height: 60dvh;
  display: flex;
  align-items: center;
  padding: 150px var(--nh-pad-x) 90px;
  overflow: hidden;
  background: var(--nh-navy);
}
.nh-hero--home { min-height: 100dvh; padding-top: 120px; }
.nh-hero--tall { min-height: 84dvh; }
.nh-hero--detail { align-items: flex-end; }
.nh-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nh-hero__scrim-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, #08111f 6%, rgba(8, 17, 31, 0.55) 44%, rgba(8, 17, 31, 0.12) 74%, rgba(8, 17, 31, 0.4) 100%);
}
.nh-hero__scrim-y {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.6) 0%, transparent 26%, transparent 62%, #08111f 100%);
}
/* Carved glyph columns framing every hero. The assets are re-keyed from the
   handoff art (which is opaque sand) to gold on true transparency, so only the
   carving shows over the navy and the photo. Tiles down the edge; hidden on
   narrow screens where it would crowd the copy. */
.nh-hero__glyph {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 128px;
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 128px auto;
  opacity: 0.85;
  pointer-events: none;
}
.nh-hero__glyph--left { left: 0; background-image: url("../images/glyph/glyph-left.png"); }
.nh-hero__glyph--right { right: 0; background-image: url("../images/glyph/glyph-right.png"); }

/* Wide screens: pull the copy clear of the columns so the headline never sits
   on top of the carving. Narrow screens: the columns would eat the text, so
   they go entirely and the photo carries the hero alone. */
@media (min-width: 1100px) {
  .nh-hero { padding-left: 176px; padding-right: 176px; }
}
@media (max-width: 900px) {
  .nh-hero__glyph { display: none; }
}

.nh-hero__body { position: relative; max-width: 720px; }
.nh-hero__kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.nh-hero__rule { height: 1px; width: 48px; background: var(--nh-gold); }
.nh-hero__kicker span:last-child {
  font-family: var(--nh-caps);
  font-size: 13px;
  letter-spacing: 0.42em;
  color: var(--nh-gold);
  text-transform: uppercase;
}
.nh-hero h1 {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: clamp(38px, 8.5vw, 92px);
  line-height: 1;
  margin: 0;
  color: var(--nh-cream-bright);
  letter-spacing: 0.005em;
}
.nh-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--nh-gold);
}
.nh-hero__lead {
  max-width: 520px;
  margin: 30px 0 40px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--nh-mist-2);
  font-weight: 300;
}
.nh-hero__ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nh-hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.nh-hero__scroll span:first-child {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--nh-slate-2);
  text-transform: uppercase;
}
.nh-hero__scroll span:last-child {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--nh-gold), transparent);
  animation: nhFloat 2.4s ease-in-out infinite;
}

/* -------------------------------------------------------- difference cards */
.nh-cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.nh-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.nh-diff-card {
  padding: 38px 30px;
  border: 1px solid var(--nh-gold-line);
  background: linear-gradient(180deg, rgba(200, 162, 76, 0.04), transparent);
}
.nh-diff-card__num {
  font-family: var(--nh-serif);
  font-size: 30px;
  color: var(--nh-gold);
  margin-bottom: 20px;
}
.nh-diff-card h3 {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: 25px;
  color: var(--nh-cream-bright);
  margin: 0 0 10px;
}
.nh-diff-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--nh-slate-2);
  margin: 0;
  font-weight: 300;
}

/* ---------------------------------------------------------- cruise cards */
.nh-fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.nh-fleet-head h2 {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: 52px;
  margin: 12px 0 0;
  color: var(--nh-navy-3);
  line-height: 1;
}
.nh-fleet-head p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nh-sand-ink);
  margin: 0;
  font-weight: 300;
}

/* Cards are a flex column so the CTA row can pin to the bottom — tagline
   lengths vary, and without it the buttons sit at ragged heights across a row. */
.nh-cruise-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 30, 50, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--nh-ease), box-shadow 0.5s ease;
}
.nh-cruise-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(20, 30, 50, 0.18); }
.nh-cruise-card__media { position: relative; }
.nh-cruise-card__frame { height: 250px; overflow: hidden; }
.nh-cruise-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--nh-ease);
  display: block;
}
.nh-cruise-card:hover .nh-cruise-card__frame img { transform: scale(1.07); }
.nh-cruise-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--nh-navy-2);
  color: var(--nh-gold-light);
  padding: 6px 12px;
  text-transform: uppercase;
}
.nh-cruise-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.nh-cruise-card__meta {
  font-family: var(--nh-caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--nh-gold-warm);
  text-transform: uppercase;
}
.nh-cruise-card h3 {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: 28px;
  margin: 8px 0 10px;
  color: var(--nh-navy-3);
}
.nh-cruise-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--nh-sand-ink);
  margin: 0 0 20px;
  font-weight: 300;
}
.nh-cruise-card__link {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nh-navy-3) !important;
  border-bottom: 1px solid var(--nh-gold);
  padding-bottom: 4px;
}
/* margin-top:auto pins the row to the card foot regardless of tagline length. */
.nh-cruise-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}
.nh-cruise-card__inquire {
  font-family: var(--nh-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--nh-navy-2);
  background: var(--nh-grad-gold);
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s var(--nh-ease), box-shadow 0.3s ease;
}
.nh-cruise-card__inquire:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(156, 122, 46, 0.7); }
.nh-cruise-card__inquire:active { transform: translateY(0); }
.nh-cruise-card__inquire:focus-visible { outline: 2px solid var(--nh-gold); outline-offset: 3px; }

/* ----------------------------------------------------------- why split */
.nh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.nh-why__media { position: relative; height: 560px; overflow: hidden; }
.nh-why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--nh-ease);
  display: block;
}
.nh-why__media:hover img { transform: scale(1.05); }
.nh-why__quote {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  background: rgba(8, 17, 31, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 162, 76, 0.2);
  padding: 22px 26px;
  font-family: var(--nh-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--nh-cream-bright);
}
.nh-why__text h2 {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.05;
  margin: 14px 0 20px;
  color: var(--nh-cream-bright);
}
.nh-why__text h2 em { font-style: italic; color: var(--nh-gold); }
.nh-why__body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--nh-slate);
  margin: 0 0 40px;
  font-weight: 300;
  max-width: 520px;
}
.nh-why__rows { display: flex; flex-direction: column; }
.nh-why-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--nh-gold-line);
}
.nh-why-row:last-child { border-bottom: 1px solid var(--nh-gold-line); }
.nh-why-row__mark {
  font-family: var(--nh-serif);
  font-size: 22px;
  color: var(--nh-gold);
  min-width: 34px;
}
.nh-why-row__title {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--nh-cream-bright);
}
.nh-why-row__text { font-size: 14px; color: var(--nh-slate-2); font-weight: 300; }

/* ------------------------------------------------------ destinations mosaic */
.nh-dest-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}
.nh-dest-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
  margin-top: 18px;
}
.nh-tile { position: relative; overflow: hidden; }
.nh-tile--big { grid-row: span 2; }
.nh-tile--wide { grid-column: span 2; }
.nh-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--nh-ease);
  display: block;
}
.nh-tile:hover img { transform: scale(1.06); }
.nh-tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 17, 31, 0.8), transparent 60%);
  pointer-events: none;
}
.nh-tile__label { position: absolute; left: 22px; bottom: 18px; pointer-events: none; }
.nh-tile--big .nh-tile__label { left: 28px; bottom: 26px; }
.nh-tile__kicker {
  font-family: var(--nh-caps);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--nh-gold);
  text-transform: uppercase;
}
.nh-tile--big .nh-tile__kicker { font-size: 11px; letter-spacing: 0.28em; }
.nh-tile__name {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--nh-cream-bright);
}
.nh-tile--big .nh-tile__name { font-size: 42px; margin-top: 4px; }
.nh-tile--wide .nh-tile__name { font-size: 36px; margin-top: 2px; }

/* ---------------------------------------------------------- onboard mosaic */
.nh-onboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.nh-onboard .nh-tile__tag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--nh-caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}
.nh-onboard .nh-tile img { transition: transform 1s ease; }
.nh-onboard .nh-tile:hover img { transform: scale(1.07); }

/* ------------------------------------------------------------ testimonials */
.nh-quotes { max-width: 1240px; margin: 0 auto; }
.nh-quote-card {
  padding: 38px 34px;
  border: 1px solid var(--nh-gold-line);
  background: rgba(255, 255, 255, 0.02);
}
.nh-quote-card__mark {
  font-family: var(--nh-serif);
  font-size: 34px;
  color: var(--nh-gold);
  line-height: 0;
  margin-bottom: 22px;
}
.nh-quote-card blockquote {
  font-family: var(--nh-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--nh-cream);
  margin: 0 0 26px;
}
.nh-quote-card__name {
  font-family: var(--nh-caps);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--nh-cream-bright);
  text-transform: uppercase;
}
.nh-quote-card__loc { font-size: 12px; color: var(--nh-slate-2); margin-top: 3px; font-weight: 300; }

/* -------------------------------------------------------------------- CTA */
.nh-cta {
  position: relative;
  padding: 130px var(--nh-pad-x);
  overflow: hidden;
}
.nh-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nh-cta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.72), rgba(8, 17, 31, 0.86));
}
.nh-cta__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.nh-cta__mark { margin-bottom: 22px; height: 45px; }
.nh-cta h2 {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: clamp(34px, 6.5vw, 60px);
  line-height: 1.05;
  color: var(--nh-cream-bright);
  margin: 0 0 20px;
}
.nh-cta p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--nh-mist-2);
  margin: 0 0 38px;
  font-weight: 300;
}
.nh-cta .nh-btn { padding: 18px 44px; font-size: 14px; }

/* ------------------------------------------------------------------ footer */
.nh-footer {
  background: var(--nh-navy-footer);
  padding: 80px var(--nh-pad-x) 40px;
  border-top: 1px solid var(--nh-gold-line);
}
.nh-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(200, 162, 76, 0.12);
}
.nh-footer__brandline {
  font-size: 14px;
  line-height: 1.8;
  color: var(--nh-slate-3);
  max-width: 320px;
  font-weight: 300;
}
.nh-footer__heading {
  font-family: var(--nh-caps);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--nh-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.nh-footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.nh-footer__links a { color: var(--nh-slate); }
.nh-footer__links a:hover { color: var(--nh-gold-light); }
.nh-footer__news-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--nh-slate-3);
  margin: 0 0 16px;
  font-weight: 300;
}
.nh-footer__news-form { display: flex; border: 1px solid rgba(200, 162, 76, 0.3); }
.nh-footer__news-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--nh-cream);
  font-family: var(--nh-sans);
  background: transparent;
  border: 0;
  outline: none;
}
.nh-footer__news-form input::placeholder { color: #6d7a8c; }
.nh-footer__news-form button {
  background: var(--nh-gold);
  color: var(--nh-navy-2);
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--nh-sans);
  font-weight: 500;
  border: 0;
  cursor: pointer;
}
.nh-footer__news-msg { font-size: 12px; margin-top: 8px; color: var(--nh-gold-light); min-height: 1em; }
.nh-footer__social {
  display: flex;
  gap: 22px;
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nh-footer__social a { color: var(--nh-slate); }
.nh-footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
}
.nh-footer__copy { font-size: 12px; color: var(--nh-slate-4); letter-spacing: 0.08em; }
.nh-footer__tagline {
  font-family: var(--nh-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--nh-gold);
}

/* ---------------------------------------------------------- floating social */
.nh-sfloat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.nh-sfloat a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(11, 23, 40, 0.92);
  border: 1px solid rgba(200, 162, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
  color: var(--nh-cream);
}
.nh-sfloat a:hover { transform: scale(1.1); background: var(--nh-gold); color: var(--nh-navy-2); }
.nh-sfloat a.nh-sfloat--whatsapp {
  width: 58px;
  height: 58px;
  background: #25d366;
  border: 0;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
.nh-sfloat a.nh-sfloat--whatsapp:hover { transform: scale(1.1); background: #25d366; color: #fff; }

.nh-prose-block { padding: 60px var(--nh-pad-x); }
.nh-prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--nh-slate);
}
.nh-prose h2, .nh-prose h3 {
  font-family: var(--nh-serif);
  color: var(--nh-cream-bright);
  font-weight: 600;
  margin: 1.6em 0 0.5em;
}
.nh-prose h2 { font-size: 32px; }
.nh-prose h3 { font-size: 24px; }
.nh-prose a { border-bottom: 1px solid var(--nh-gold); }
.nh-prose img { max-width: 100%; height: auto; }

/* ------------------------------------------------------------------- FAQ */
.nh-faq { max-width: 820px; margin: 0 auto; }
.nh-faq details {
  border: 1px solid var(--nh-gold-line);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 14px;
  padding: 0 26px;
}
.nh-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--nh-cream-bright);
}
.nh-faq summary::-webkit-details-marker { display: none; }
.nh-faq summary:focus-visible { outline: 2px solid var(--nh-gold); outline-offset: 4px; }
/* One glyph, not two: the "+" rotates into an "×" so the marker turns rather
   than swapping character and jumping. */
.nh-faq summary::after {
  content: "+";
  color: var(--nh-gold);
  font-size: 26px;
  line-height: 1;
  flex: none;
  transition: transform 0.35s var(--nh-ease);
}
.nh-faq details[open] summary::after { transform: rotate(135deg); }
.nh-faq details > div {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--nh-slate-2);
  font-weight: 300;
}
/* JS drives the height so <details> can animate; without JS the panel is just
   open/closed as the browser intends. */
.nh-faq.is-enhanced details > div {
  overflow: hidden;
  transition: height 0.4s var(--nh-ease);
}
@media (prefers-reduced-motion: reduce) {
  .nh-faq summary::after,
  .nh-faq.is-enhanced details > div { transition: none; }
}
.nh-faq__topic {
  font-family: var(--nh-caps);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--nh-gold);
  text-transform: uppercase;
  margin: 34px 0 16px;
}

/* ------------------------------------------------------------ filter chips */
.nh-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.nh-chip {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nh-mist);
  border: 1px solid var(--nh-gold-line);
  padding: 10px 20px;
  cursor: pointer;
  background: transparent;
  font-family: var(--nh-sans);
  border-radius: 999px;
}
.nh-chip.is-active, .nh-chip:hover { color: var(--nh-navy-2); background: var(--nh-grad-gold); border-color: transparent; }

/* -------------------------------------------------------------- gallery */
.nh-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 18px; }
.nh-gallery .nh-tile.is-hidden { display: none; }

/* ------------------------------------------------------------- lightbox */
/* Tiles that open the lightbox are real buttons (keyboard + screen readers);
   this strips the UA button chrome so they still look like plain tiles. */
button.nh-tile {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
  cursor: zoom-in;
}
button.nh-tile:focus-visible { outline: 2px solid var(--nh-gold); outline-offset: 3px; }

.nh-lb {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(6, 13, 24, 0.94);
  backdrop-filter: blur(6px);
}
.nh-lb[hidden] { display: none; }
.nh-lb__figure {
  margin: 0;
  max-width: min(1180px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.nh-lb__img {
  max-width: 100%;
  max-height: 78dvh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.7);
  animation: nh-lb-in 0.35s var(--nh-ease);
}
@keyframes nh-lb-in {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: none; }
}
.nh-lb__cap {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--nh-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--nh-slate-2);
}
.nh-lb__count { font-family: var(--nh-caps); letter-spacing: 0.14em; color: var(--nh-gold); }
.nh-lb__close,
.nh-lb__nav {
  flex-shrink: 0;
  background: rgba(200, 162, 76, 0.1);
  border: 1px solid rgba(200, 162, 76, 0.45);
  color: var(--nh-cream-bright);
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background 0.3s ease, transform 0.3s var(--nh-ease);
}
.nh-lb__nav { width: 52px; height: 52px; font-size: 30px; }
.nh-lb__close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; font-size: 26px; }
.nh-lb__close:hover,
.nh-lb__nav:hover { background: rgba(200, 162, 76, 0.24); }
.nh-lb__close:active,
.nh-lb__nav:active { transform: scale(0.94); }
.nh-lb__close:focus-visible,
.nh-lb__nav:focus-visible { outline: 2px solid var(--nh-gold); outline-offset: 3px; }
/* A single-image gallery has nowhere to go — don't offer the arrows. */
.nh-lb.is-single .nh-lb__nav { display: none; }
body.nh-lb-open { overflow: hidden; }

@media (max-width: 640px) {
  .nh-lb { padding: 12px; gap: 4px; }
  .nh-lb__nav { width: 42px; height: 42px; font-size: 24px; }
  .nh-lb__close { top: 12px; right: 12px; }
  .nh-lb__img { max-height: 68dvh; }
}

/* --------------------------------------------------------- cruise list page */
.nh-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 44px;
  padding: 26px;
  border: 1px solid var(--nh-gold-line);
  background: rgba(255, 255, 255, 0.02);
}
.nh-filters label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nh-slate-2);
}
.nh-filters select, .nh-filters input {
  background: var(--nh-navy-2);
  color: var(--nh-cream);
  border: 1px solid var(--nh-gold-line);
  padding: 10px 12px;
  font-family: var(--nh-sans);
  font-size: 14px;
  min-width: 150px;
}
.nh-loadmore { text-align: center; margin-top: 46px; }
.nh-detail-meta {
  font-family: var(--nh-caps);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--nh-gold);
  text-transform: uppercase;
}
.nh-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: start; }
.nh-detail-side {
  border: 1px solid var(--nh-gold-line);
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  position: sticky;
  top: 110px;
}
.nh-list-plain { list-style: none; padding: 0; margin: 0; }
.nh-list-plain li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 162, 76, 0.1);
  font-weight: 300;
  color: var(--nh-slate);
  font-size: 15px;
}
.nh-list-plain li::before { content: "✦"; color: var(--nh-gold); margin-right: 12px; font-size: 12px; }

.nh-itinerary details { border-top: 1px solid var(--nh-gold-line); }
.nh-itinerary details:last-child { border-bottom: 1px solid var(--nh-gold-line); }
.nh-itinerary summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: baseline;
  padding: 20px 0;
}
.nh-itinerary summary::-webkit-details-marker { display: none; }
.nh-itinerary__day {
  font-family: var(--nh-caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--nh-gold);
  text-transform: uppercase;
  min-width: 74px;
}
.nh-itinerary__title { font-family: var(--nh-serif); font-weight: 600; font-size: 22px; color: var(--nh-cream-bright); }
.nh-itinerary details > div { padding: 0 0 22px 96px; font-weight: 300; color: var(--nh-slate-2); line-height: 1.8; }

/* ------------------------------------------------------------- forms/modal */
.nh-form { display: grid; gap: 16px; }
.nh-form .nh-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nh-form input, .nh-form select, .nh-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--nh-cream);
  border: 1px solid rgba(200, 162, 76, 0.25);
  padding: 13px 14px;
  font-family: var(--nh-sans);
  font-size: 14px;
  outline: none;
}
.nh-form input:focus, .nh-form select:focus, .nh-form textarea:focus { border-color: var(--nh-gold); }
.nh-form ::placeholder { color: #6d7a8c; }
.nh-form .nh-honeypot { position: absolute; left: -9999px; top: -9999px; }

.nh-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.nh-modal.is-open { display: flex; }
.nh-modal__scrim { position: absolute; inset: 0; background: rgba(4, 9, 18, 0.8); backdrop-filter: blur(6px); }
.nh-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--nh-navy-2);
  border: 1px solid rgba(200, 162, 76, 0.3);
  padding: 40px;
}
.nh-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: 0;
  color: var(--nh-cream);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.nh-modal h3 {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--nh-cream-bright);
  margin: 0 0 6px;
}
.nh-modal__sub { font-size: 14px; color: var(--nh-slate-2); font-weight: 300; margin: 0 0 26px; }

/* ---------------------------------------------------------------- messages */
.nh-messages { position: fixed; top: 92px; left: 50%; transform: translateX(-50%); z-index: 160; width: min(560px, 92vw); }
.nh-message {
  background: var(--nh-navy-2);
  border: 1px solid rgba(200, 162, 76, 0.4);
  color: var(--nh-cream);
  padding: 16px 44px 16px 20px;
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.nh-message--error { border-color: rgba(186, 33, 33, 0.65); }
.nh-message button {
  position: absolute;
  top: 8px; right: 12px;
  background: none;
  border: 0;
  color: var(--nh-cream);
  font-size: 20px;
  cursor: pointer;
}

/* ---------------------------------------------------------------- journal */
.nh-article-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nh-slate-2);
  margin-bottom: 12px;
}
.nh-article-card p { color: var(--nh-slate-2); }
.nh-article-card h3 { color: var(--nh-cream-bright); }
.nh-article-card .nh-cruise-card__link { color: var(--nh-gold) !important; }
.nh-article-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--nh-gold-line); }

.nh-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  border: 1px solid var(--nh-gold-line);
  background: rgba(255, 255, 255, 0.02);
}
.nh-feature__media { height: 100%; min-height: 360px; overflow: hidden; }
.nh-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.nh-feature__body { padding: 40px 44px 40px 0; }
.nh-feature__body h2 {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: 38px;
  color: var(--nh-cream-bright);
  margin: 12px 0 14px;
  line-height: 1.1;
}
.nh-feature__body p { color: var(--nh-slate); font-weight: 300; line-height: 1.8; margin: 0 0 18px; }

.nh-article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; max-width: 1120px; margin: 0 auto; }
.nh-article-aside { position: relative; }
.article-prose { max-width: 780px; }
.article-prose h2, .article-prose h3 {
  font-family: var(--nh-serif);
  color: var(--nh-cream-bright);
  font-weight: 600;
  margin: 1.5em 0 0.5em;
}
.article-prose h2 { font-size: 30px; }
.article-prose h3 { font-size: 23px; }
.article-prose p { font-size: 16px; line-height: 1.9; font-weight: 300; color: var(--nh-slate); margin: 0 0 1.2em; }
.article-figure { margin: 40px 0; }
.article-figure img { width: 100%; height: auto; display: block; }
.article-figure--duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.article-figure figcaption, .gallery-strip__cap {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--nh-slate-2);
  margin-top: 10px;
  text-transform: uppercase;
}
.article-figure--duo figcaption { grid-column: 1 / -1; }
.article-pullquote {
  border-left: 2px solid var(--nh-gold);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
}
.article-pullquote p {
  font-family: var(--nh-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.5;
  color: var(--nh-cream-bright);
  margin: 0;
}
.article-pullquote cite { display: block; margin-top: 14px; font-style: normal; font-size: 13px; letter-spacing: 0.12em; color: var(--nh-gold); text-transform: uppercase; }
.gallery-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 12px; }
.gallery-strip__item { margin: 0; }
.gallery-strip__item img { width: 100%; height: 280px; object-fit: cover; }

[dir="rtl"] .nh-feature__body { padding: 40px 0 40px 44px; }
[dir="rtl"] .article-pullquote { border-left: 0; border-right: 2px solid var(--nh-gold); padding: 8px 28px 8px 0; }

@media (max-width: 1024px) {
  .nh-feature { grid-template-columns: 1fr; }
  .nh-feature__media { min-height: 300px; }
  .nh-feature__body { padding: 32px 32px 40px; }
  .nh-article-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .article-figure--duo { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ reveal */
[data-reveal] { opacity: 0; transform: translateY(30px); }
.nh-no-reveal [data-reveal], [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal].is-in { transition: opacity 1s var(--nh-ease), transform 1s var(--nh-ease); }

/* ------------------------------------------------------------ CMS toolbar */
.cms-toolbar-expanded .nh-nav { top: 46px; }
.cms-structure-mode-structure .nh-sfloat { display: none; }

/* -------------------------------------------------------------------- RTL */
[dir="rtl"] body.nh, body.nh[dir="rtl"] { direction: rtl; }
[dir="rtl"] .nh-menu { right: auto; left: 0; transform: translateX(-100%); border-left: 0; border-right: 1px solid rgba(200, 162, 76, 0.22); }
[dir="rtl"] .nh-menu.is-open { transform: translateX(0); }
[dir="rtl"] .nh-sfloat { right: auto; left: 22px; }
[dir="rtl"] .nh-cruise-card__badge { left: auto; right: 16px; }
[dir="rtl"] .nh-tile__label { left: auto; right: 22px; }
[dir="rtl"] .nh-onboard .nh-tile__tag { left: auto; right: 18px; }
[dir="rtl"] .nh-why-row__mark { margin-left: 0; }
[dir="rtl"] .nh-list-plain li::before { margin-right: 0; margin-left: 12px; }
[dir="rtl"] .nh-itinerary details > div { padding: 0 96px 22px 0; }

/* ----------------------------------------------------------- breakpoints */
@media (max-width: 1024px) {
  .nh-cols-4, .nh-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .nh-split { grid-template-columns: 1fr; gap: 48px; }
  .nh-dest-top { grid-template-columns: 1fr 1fr; }
  .nh-onboard { grid-template-columns: repeat(2, 1fr); }
  .nh-footer__grid { grid-template-columns: 1fr 1fr; }
  .nh-detail-grid { grid-template-columns: 1fr; gap: 44px; }
  .nh-detail-side { position: static; }
  .nh-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nh-nav__links { display: none; }
  .nh-burger { display: flex; }
}

@media (max-width: 640px) {
  :root { --nh-pad-x: 20px; }
  .nh-section { padding-top: 64px; padding-bottom: 64px; }
  .nh-section-head h2, .nh-why__text h2, .nh-fleet-head h2 { font-size: 34px; }
  .nh-cols-4, .nh-cols-3, .nh-footer__grid, .nh-onboard, .nh-dest-top, .nh-gallery { grid-template-columns: 1fr; }
  .nh-dest-top { grid-auto-rows: 210px; }
  .nh-tile--big, .nh-tile--wide { grid-row: auto; grid-column: auto; }
  .nh-why__media { height: 360px; }
  .nh-split { gap: 36px; }
  .nh-form .nh-field-row { grid-template-columns: 1fr; }
  .nh-itinerary details > div { padding-left: 0; }
  [dir="rtl"] .nh-itinerary details > div { padding-right: 0; }
}

@media (max-width: 560px) {
  .nh-nav__cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .nh-hero__scroll span:last-child { animation: none; }
}

/* ==========================================================================
   Updated design pages — About / Contact / Destinations
   (imported from the Claude Design handoff; tokens reused from :root above)
   ========================================================================== */
.nh-hero__star { color: var(--nh-gold); font-size: 18px; }
.nh-about-story { grid-template-columns: 1fr 1.05fr; gap: 64px; }
.nh-about-story__media { position: relative; height: 540px; overflow: hidden; }
.nh-about-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--nh-ease); display: block; }
.nh-about-story__media:hover img { transform: scale(1.05); }
.nh-about-story__title {
  font-family: var(--nh-serif); font-weight: 600; font-size: 50px; line-height: 1.04;
  margin: 12px 0 22px; color: var(--nh-navy-3);
}
.nh-about-story__lead { font-size: 16px; line-height: 1.85; color: var(--nh-sand-ink); margin: 0 0 18px; font-weight: 300; max-width: 560px; }
.nh-about-story__lead:last-of-type { margin-bottom: 40px; }

.nh-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.nh-pillar { padding: 0 22px; border-right: 1px solid rgba(184, 137, 75, 0.28); }
.nh-pillar:first-child { padding-left: 0; }
.nh-pillar:last-child { padding-right: 0; border-right: 0; }
.nh-pillar__mark { font-size: 25px; color: var(--nh-gold-warm); margin-bottom: 14px; }
.nh-pillar h3 { font-family: var(--nh-caps); font-size: 14px; letter-spacing: 0.06em; color: var(--nh-navy-3); margin: 0 0 10px; text-transform: uppercase; }
.nh-pillar p { font-size: 13px; line-height: 1.65; color: #7a7362; margin: 0; font-weight: 300; }

/* ------------------------------------------------------------- About · Stats */
.nh-stats-panel { background: var(--nh-navy-2); border: 1px solid rgba(200, 162, 76, 0.18); padding: 52px 40px; }
.nh-stats-panel__head { text-align: center; margin-bottom: 40px; }
.nh-stats { display: flex; align-items: stretch; justify-content: space-between; gap: 0; }
.nh-stat { flex: 1; text-align: center; padding: 0 16px; }
.nh-stat + .nh-stat { border-left: 1px solid rgba(200, 162, 76, 0.18); }
.nh-stat__ic { font-size: 26px; color: var(--nh-gold); margin-bottom: 14px; }
.nh-stat__num { font-family: var(--nh-serif); font-weight: 600; font-size: 46px; color: var(--nh-cream-bright); line-height: 1; }
.nh-stat__label { font-family: var(--nh-caps); font-size: 11px; letter-spacing: 0.16em; color: var(--nh-slate-2); margin-top: 10px; text-transform: uppercase; }

/* ----------------------------------------------------------- About · Promise */
.nh-promise { grid-template-columns: 0.85fr 1.4fr; gap: 56px; }
.nh-promise__title { font-family: var(--nh-serif); font-weight: 500; font-size: 46px; line-height: 1.08; margin: 14px 0 22px; color: var(--nh-cream-bright); }
.nh-promise__lead { font-size: 16px; line-height: 1.85; color: var(--nh-slate); margin: 0 0 34px; font-weight: 300; max-width: 420px; }
.nh-promise-card { position: relative; height: 400px; overflow: hidden; }
.nh-promise-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--nh-ease); display: block; }
.nh-promise-card:hover > img { transform: scale(1.07); }
.nh-promise-card__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,17,31,.92) 8%, rgba(8,17,31,.2) 55%, transparent); pointer-events: none; }
.nh-promise-card__label { position: absolute; left: 22px; right: 22px; bottom: 24px; text-align: center; pointer-events: none; }
.nh-promise-card__ic {
  width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 50%;
  background: rgba(200, 162, 76, 0.14); border: 1px solid rgba(200, 162, 76, 0.5);
  display: flex; align-items: center; justify-content: center; color: var(--nh-gold); font-size: 19px;
}
.nh-promise-card__name { font-family: var(--nh-caps); font-size: 15px; letter-spacing: 0.14em; color: var(--nh-cream-bright); text-transform: uppercase; margin-bottom: 8px; }
.nh-promise-card__label p { font-size: 12.5px; line-height: 1.6; color: var(--nh-mist); margin: 0; font-weight: 300; }

/* -------------------------------------------------------------- About · Team */
.nh-team-card { background: #fff; box-shadow: 0 20px 50px rgba(20, 30, 50, 0.1); }
.nh-team-card__frame { height: 300px; overflow: hidden; }
.nh-team-card__frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--nh-ease); }
.nh-team-card:hover .nh-team-card__frame img { transform: scale(1.06); }
.nh-team-card__body { padding: 24px 24px 28px; text-align: center; }
.nh-team-card__body h3 { font-family: var(--nh-serif); font-weight: 600; font-size: 24px; margin: 0 0 4px; color: var(--nh-navy-3); }
.nh-team-card__role { font-family: var(--nh-caps); font-size: 11px; letter-spacing: 0.16em; color: var(--nh-gold-warm); text-transform: uppercase; }
.nh-team-card__body p { font-size: 13px; line-height: 1.7; color: #7a7362; margin: 16px 0 0; font-weight: 300; }

/* Portrait not uploaded yet: a monogram on sand, so the card still reads as a
   person rather than borrowing an unrelated photo. */
.nh-team-card__monogram {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #efe4cd, #e2d4b8);
  font-family: var(--nh-serif); font-size: 76px; font-weight: 500;
  color: rgba(184, 137, 75, 0.55);
  user-select: none;
}
.nh-team__empty { grid-column: 1 / -1; text-align: center; padding: 64px 20px; }
.nh-team__empty-mark { font-size: 30px; color: var(--nh-gold-warm); margin-bottom: 14px; }
.nh-team__empty-title { font-family: var(--nh-serif); font-size: 24px; color: var(--nh-navy-3); margin: 0 0 8px; }
.nh-team__empty-text { font-size: 14px; color: #8a8271; font-weight: 300; margin: 0 auto; max-width: 42ch; line-height: 1.7; }
.nh-contact { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
.nh-contact-card { background: #fff; box-shadow: 0 24px 60px rgba(20, 30, 50, 0.1); padding: 44px 42px 40px; }
.nh-contact-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.nh-contact-card__mark { font-size: 26px; color: var(--nh-gold-warm); }
.nh-contact-card__head h2, .nh-contact-info__head h2 { font-family: var(--nh-serif); font-weight: 600; font-size: 32px; margin: 0; color: var(--nh-navy-3); }
.nh-contact-card__submit { width: 100%; margin-top: 6px; text-align: center; }
.nh-contact-card__note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: 12.5px; color: #7a7362; font-weight: 300; }
.nh-contact-card__note span { color: var(--nh-gold-warm); }

/* light form variant (dark text on a white card) */
.nh-form--light { display: block; }
.nh-form--light .nh-field { display: block; margin-top: 18px; }
.nh-form--light .nh-field:first-child { margin-top: 0; }
.nh-form--light .nh-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-bottom: 18px; }
.nh-form--light .nh-field-row .nh-field { margin-top: 0; }
.nh-field__label { display: block; font-size: 12.5px; letter-spacing: 0.04em; color: var(--nh-sand-ink); margin-bottom: 9px; }
.nh-field__label b { color: var(--nh-gold-warm); font-weight: 400; }
.nh-form--light input, .nh-form--light select, .nh-form--light textarea {
  width: 100%; background: #faf6ec; border: 1px solid rgba(184, 137, 75, 0.32);
  color: var(--nh-navy-3); padding: 14px 15px; font-family: var(--nh-sans); font-size: 14px;
  outline: none; transition: border-color 0.25s;
}
.nh-form--light input:focus, .nh-form--light select:focus, .nh-form--light textarea:focus { border-color: var(--nh-gold); }
.nh-form--light ::placeholder { color: #a89f8c; }
.nh-form--light select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23B8894B' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 15px center; }
.nh-form--light select:invalid { color: #a89f8c; }
.nh-form--light textarea { resize: vertical; }

.nh-contact-info__head { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.nh-contact-info__list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.nh-contact-info__list li { display: flex; gap: 18px; }
.nh-contact-info__ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(184, 137, 75, 0.4); display: flex; align-items: center; justify-content: center;
  color: var(--nh-gold-warm); font-size: 18px;
}
.nh-contact-info__label { font-family: var(--nh-caps); font-size: 12px; letter-spacing: 0.14em; color: var(--nh-gold-warm); text-transform: uppercase; margin-bottom: 4px; }
.nh-contact-info__value { font-size: 16px; color: var(--nh-navy-3); }
.nh-contact-info__hint { font-size: 12.5px; color: #8a8271; font-weight: 300; margin-top: 2px; }

.nh-contact-map { position: relative; height: 230px; border: 1px solid rgba(184, 137, 75, 0.3); overflow: hidden; background: #e7e0d0; }
.nh-contact-map__grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0 46%, #b9c8d6 46% 54%, transparent 54%),
    repeating-linear-gradient(0deg, #ddd6c6 0 38px, #e7e0d0 38px 78px),
    repeating-linear-gradient(90deg, #ddd6c6 0 52px, #e7e0d0 52px 104px);
}
.nh-contact-map__nile { position: absolute; left: 47%; bottom: 14%; font-family: var(--nh-sans); font-size: 10px; letter-spacing: 0.1em; color: #7a94a8; transform: rotate(-90deg); transform-origin: left; }
.nh-contact-map__pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); }
.nh-contact-map__pin span {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50% 50% 50% 0; background: var(--nh-navy-2);
  transform: rotate(-45deg); box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3); color: var(--nh-gold); font-size: 11px;
}
.nh-contact-map__pin span::before { content: ""; }

.nh-contact-note { margin-top: 22px; background: #fff; border: 1px solid rgba(184, 137, 75, 0.28); border-left: 3px solid var(--nh-gold); padding: 22px 24px; }
.nh-contact-note__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.nh-contact-note__head span:first-child { color: var(--nh-gold-warm); font-size: 16px; }
.nh-contact-note__head span:last-child { font-family: var(--nh-caps); font-size: 13px; letter-spacing: 0.1em; color: var(--nh-navy-3); text-transform: uppercase; }
.nh-contact-note p { font-size: 13.5px; line-height: 1.75; color: #7a7362; margin: 0; font-weight: 300; }

/* ----------------------------------------------------- Contact · feature strip */
.nh-featstrip-section { padding-top: 0; margin-top: -30px; }
.nh-featstrip { display: flex; align-items: stretch; justify-content: space-between; gap: 20px; background: var(--nh-navy-2); border: 1px solid rgba(200, 162, 76, 0.18); padding: 44px; }
.nh-featstrip__item { flex: 1; display: flex; gap: 18px; align-items: flex-start; padding: 0 8px; }
.nh-featstrip__ic { flex-shrink: 0; color: var(--nh-gold); font-size: 24px; }
.nh-featstrip__title { font-family: var(--nh-caps); font-size: 13px; letter-spacing: 0.1em; color: var(--nh-gold); text-transform: uppercase; margin-bottom: 8px; }
.nh-featstrip__item p { font-size: 13px; line-height: 1.6; color: var(--nh-slate-2); margin: 0; font-weight: 300; }
.nh-featstrip__divider { width: 1px; background: rgba(200, 162, 76, 0.16); }

/* ---------------------------------------------------------- Destinations grid */
.nh-dest-section { padding-top: 44px; }
.nh-dest__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.nh-section--sand .nh-chip { color: var(--nh-sand-ink); border-color: rgba(184, 137, 75, 0.3); }
.nh-section--sand .nh-chip.is-active, .nh-section--sand .nh-chip:hover { color: #fff; background: linear-gradient(135deg, var(--nh-gold), var(--nh-gold-deep)); }
.nh-dest__count { font-size: 13px; color: #8a8271; font-weight: 300; margin: 0 0 32px; letter-spacing: 0.02em; }
.nh-dest__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.nh-dest-card { background: #fff; border-radius: 20px; box-shadow: 0 18px 44px rgba(20, 30, 50, 0.1); overflow: hidden; transition: transform 0.5s var(--nh-ease), box-shadow 0.5s ease; }
.nh-dest-card.is-hidden { display: none; }
.nh-dest-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(20, 30, 50, 0.18); }
.nh-dest-card__media { position: relative; height: 260px; overflow: hidden; }
.nh-dest-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--nh-ease); display: block; }
.nh-dest-card:hover .nh-dest-card__img { transform: scale(1.08); }
.nh-dest-card__loc { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--nh-sans); font-size: 11px; letter-spacing: 0.12em; color: var(--nh-cream-bright); text-transform: uppercase; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }
.nh-dest-card__body { padding: 26px 26px 28px; }
.nh-dest-card__body h3 { font-family: var(--nh-serif); font-weight: 600; font-size: 27px; margin: 0 0 8px; color: var(--nh-navy-3); text-transform: uppercase; letter-spacing: 0.01em; }
.nh-dest-card__body p { font-size: 14px; line-height: 1.65; color: var(--nh-sand-ink); margin: 0 0 20px; font-weight: 300; }
.nh-dest-card__meta { display: flex; align-items: center; gap: 22px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(184, 137, 75, 0.2); }
.nh-dest-card__meta span { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #8a8271; }
.nh-dest-card__cta { display: block; text-align: center; padding: 14px; color: #fff !important; background: linear-gradient(135deg, var(--nh-gold), var(--nh-gold-deep)); }
.nh-dest__empty { text-align: center; padding: 70px 20px; color: #8a8271; }
.nh-dest__empty-mark { font-size: 30px; color: var(--nh-gold); margin-bottom: 14px; }
.nh-dest__empty-title { font-family: var(--nh-serif); font-size: 24px; color: var(--nh-navy-3); margin: 0; }

/* --------------------------------------------------- Destinations · experiences */
.nh-exp-section { padding-top: 0; padding-bottom: 90px; }
.nh-exp { display: flex; align-items: center; gap: 44px; background: var(--nh-navy-2); border: 1px solid rgba(200, 162, 76, 0.18); padding: 52px 48px; }
.nh-exp__promo { flex: 0 0 30%; display: flex; gap: 20px; align-items: flex-start; }
.nh-exp__mark { flex-shrink: 0; color: var(--nh-gold); font-size: 30px; line-height: 1; }
.nh-exp__kicker { font-family: var(--nh-sans); font-size: 12px; letter-spacing: 0.18em; color: var(--nh-gold); text-transform: uppercase; margin-bottom: 6px; }
.nh-exp__promo h2 { font-family: var(--nh-serif); font-weight: 600; font-size: 34px; line-height: 1.1; margin: 0 0 16px; color: var(--nh-cream-bright); }
.nh-exp__promo p { font-size: 14px; line-height: 1.7; color: var(--nh-slate-2); margin: 0 0 22px; font-weight: 300; max-width: 300px; }
.nh-exp__promo .nh-btn { padding: 14px 26px; font-size: 12px; }
.nh-exp__divider { width: 1px; align-self: stretch; background: rgba(200, 162, 76, 0.16); }
.nh-exp__features { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.nh-exp__ic { color: var(--nh-gold); font-size: 26px; margin-bottom: 14px; }
.nh-exp__title { font-family: var(--nh-caps); font-size: 13px; letter-spacing: 0.08em; color: var(--nh-cream-bright); text-transform: uppercase; margin-bottom: 8px; }
.nh-exp__features p { font-size: 13px; line-height: 1.6; color: var(--nh-slate-2); margin: 0; font-weight: 300; }

/* --------------------------------------------------- responsive (new pages) */
@media (max-width: 1024px) {
  .nh-about-story { grid-template-columns: 1fr; }
  .nh-pillars { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .nh-pillar:nth-child(2) { padding-right: 0; border-right: 0; }
  .nh-pillar:nth-child(3) { padding-left: 0; }
  .nh-promise { grid-template-columns: 1fr; }
  .nh-promise__cards { grid-template-columns: repeat(3, 1fr); }
  .nh-stats { flex-wrap: wrap; }
  .nh-stat { flex: 1 1 40%; padding: 16px 12px; }
  .nh-stat + .nh-stat { border-left: 0; }
  .nh-contact { grid-template-columns: 1fr; gap: 44px; }
  .nh-dest__grid { grid-template-columns: repeat(2, 1fr); }
  .nh-featstrip { flex-wrap: wrap; }
  .nh-featstrip__item { flex: 1 1 40%; }
  .nh-featstrip__divider { display: none; }
  .nh-exp { flex-direction: column; align-items: stretch; }
  .nh-exp__divider { display: none; }
  .nh-exp__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nh-pillars, .nh-promise__cards, .nh-dest__grid, .nh-exp__features { grid-template-columns: 1fr; }
  .nh-pillar { padding: 0; border-right: 0; }
  .nh-form--light .nh-field-row { grid-template-columns: 1fr; }
  .nh-featstrip__item { flex: 1 1 100%; }
  .nh-stat { flex: 1 1 100%; }
  .nh-about-story__title, .nh-promise__title { font-size: 34px; }
}
