@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800;900&display=swap");

:root {
  --nh-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --nh-font-body: "Outfit", "Inter", "Segoe UI", Arial, sans-serif;
  --nh-navy: #0F2548;
  --nh-navy-2: #1B3A6B;
  --nh-navy-3: #08172e;
  --nh-navy-mid: #152d55;
  --nh-gold: #c8960c;
  --nh-gold-2: #e8b020;
  --nh-gold-pale: #fff8e7;
  --nh-cream: #fafaf7;
  --nh-paper: #ffffff;
  --nh-ink: #172126;
  --nh-muted: #566574;
  --nh-line: rgba(15, 37, 72, .12);
  --nh-shadow: 0 18px 55px rgba(15, 37, 72, .12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--nh-cream) !important;
  color: var(--nh-ink) !important;
  font-family: var(--nh-font-body) !important;
  line-height: 1.65;
}

a {
  color: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 48px)) !important;
  margin-inline: auto;
}

header {
  background: rgba(15, 37, 72, .97) !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .15);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--nh-font-display);
  font-size: 1.38rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.brand::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  margin-right: 9px;
  border-radius: 999px;
  background: #fff url("/social/nh365-profile-logo.png") center / 112% 112% no-repeat;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.brand span {
  color: var(--nh-gold-2) !important;
}

.navlinks,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 26px);
  flex-wrap: wrap;
}

.navlinks a,
.nav-links a {
  color: rgba(255, 255, 255, .88) !important;
  font-size: .92rem !important;
  font-weight: 800;
  text-decoration: none;
}

.navlinks a:hover,
.nav-links a:hover {
  color: var(--nh-gold-2) !important;
}

.nav-phone-link {
  color: #071a24 !important;
  background: var(--nh-gold-2);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.nav-phone-link:hover {
  color: #071a24 !important;
  background: #ffd45f;
}

.site-call-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(7, 26, 36, .94);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
  backdrop-filter: blur(12px);
}

.site-call-bar a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 850;
  font-size: .9rem;
  line-height: 1;
  padding: 12px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.site-call-bar .site-call-primary {
  color: #071a24 !important;
  background: var(--nh-gold-2);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(232, 176, 32, .18), transparent 38%),
    linear-gradient(135deg, var(--nh-navy-3), var(--nh-navy) 56%, var(--nh-navy-2)) !important;
  color: #fff !important;
  padding: 84px 0 66px !important;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -180px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  border: 70px solid rgba(200, 150, 12, .14);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-inner,
.nav:not(.wrap) {
  width: min(1160px, calc(100% - 48px)) !important;
  margin-inline: auto !important;
}

.eyebrow,
.section-label {
  color: var(--nh-gold-2) !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

h1,
h2 {
  font-family: var(--nh-font-display) !important;
  letter-spacing: 0 !important;
}

h1 {
  max-width: 980px;
  margin: 14px 0 18px !important;
  color: #fff !important;
  font-size: clamp(2.5rem, 4.9vw, 4.05rem) !important;
  font-weight: 700 !important;
  line-height: 1.04 !important;
  text-wrap: balance;
}

h2 {
  color: var(--nh-navy) !important;
  font-size: clamp(1.85rem, 3.4vw, 3rem) !important;
  line-height: 1.08 !important;
}

h3 {
  color: var(--nh-navy) !important;
  line-height: 1.18;
}

.lead {
  max-width: 820px;
  color: rgba(255, 255, 255, .82) !important;
  font-size: clamp(1.12rem, 1.55vw, 1.28rem) !important;
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  padding: 0 24px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn:hover,
.button:hover {
  transform: translateY(-1px);
}

.primary,
.btn.primary,
.button {
  background: var(--nh-gold-2) !important;
  color: #08172e !important;
  box-shadow: 0 16px 40px rgba(200, 150, 12, .26);
}

.secondary,
.btn.secondary {
  border: 1px solid rgba(255, 255, 255, .34) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .08) !important;
}

.section {
  padding: 82px 0 !important;
}

.band {
  background: #f2f4ee !important;
  border-top: 1px solid var(--nh-line) !important;
  border-bottom: 1px solid var(--nh-line) !important;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 34px;
  align-items: start;
}

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

.card,
.post-link,
.booking-panel {
  background: var(--nh-paper) !important;
  border: 1px solid var(--nh-line) !important;
  border-radius: 14px !important;
  box-shadow: var(--nh-shadow) !important;
}

.card {
  padding: 26px !important;
}

.stats,
.proof {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 38px !important;
}

.stat,
.proof-item {
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 8px !important;
  padding: 18px !important;
  background: rgba(255, 255, 255, .06) !important;
  box-shadow: none !important;
}

.num,
.proof-num {
  font-family: var(--nh-font-body) !important;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem) !important;
  font-weight: 900 !important;
  color: var(--nh-gold-2) !important;
  line-height: 1 !important;
}

.label,
.proof-label {
  color: rgba(255, 255, 255, .84) !important;
  font-size: .9rem !important;
  font-weight: 500 !important;
  margin-top: 8px !important;
}

.cta {
  background: var(--nh-navy) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 34px !important;
  box-shadow: 0 18px 50px rgba(15, 37, 72, .18) !important;
}

.cta h3 {
  color: #fff !important;
}

.cta p {
  color: rgba(255, 255, 255, .78) !important;
}

.card p,
.muted,
.list,
.booking-list li {
  color: var(--nh-muted) !important;
}

.card a,
.related a {
  color: var(--nh-navy) !important;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.proof-item {
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .08) !important;
  padding: 18px !important;
}

.proof-num {
  color: var(--nh-gold-2) !important;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.proof-label {
  color: rgba(255, 255, 255, .78) !important;
  margin-top: 8px;
}

.cta {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 176, 32, .18), transparent 34%),
    linear-gradient(135deg, var(--nh-navy), var(--nh-navy-2)) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 32px !important;
  box-shadow: var(--nh-shadow);
}

.cta h3,
.cta h2 {
  color: #fff !important;
}

.cta p {
  color: rgba(255, 255, 255, .78) !important;
}

.note,
.booking-note {
  border-left: 4px solid var(--nh-gold-2) !important;
  background: rgba(255, 255, 255, .72) !important;
  color: var(--nh-muted) !important;
}

textarea.booking-text {
  border: 1px solid var(--nh-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: inset 0 1px 0 rgba(15, 37, 72, .04);
}

.post-link {
  display: block;
  padding: 24px !important;
  text-decoration: none !important;
  min-height: 245px !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.post-link:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 150, 12, .38) !important;
  box-shadow: 0 24px 60px rgba(15, 37, 72, .16) !important;
}

.post-link .tag,
.tag {
  color: var(--nh-gold) !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.post-link h2 {
  margin: 14px 0 12px !important;
  color: var(--nh-navy) !important;
  font-family: var(--nh-font-body) !important;
  font-size: clamp(1.12rem, 1.35vw, 1.34rem) !important;
  line-height: 1.18 !important;
  font-weight: 850 !important;
}

.post-link p {
  color: var(--nh-muted) !important;
  font-size: .98rem !important;
  line-height: 1.58 !important;
}

article h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.05rem) !important;
  margin-top: 34px !important;
}

article p,
article li {
  color: #314252;
}

main article,
article.wrap,
.article {
  background: transparent !important;
}

footer {
  width: 100% !important;
  background: #08172e !important;
  border-top: 1px solid rgba(255, 255, 255, .1) !important;
  color: rgba(255, 255, 255, .72) !important;
  padding: 34px 0 !important;
}

footer > * {
  width: min(1160px, calc(100% - 48px)) !important;
  margin-inline: auto !important;
}

footer a {
  color: var(--nh-gold-2) !important;
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 32px, 1160px) !important;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: auto !important;
    padding: 14px 0 10px;
  }

  .navlinks,
  .nav-links {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: none;
  }

  .navlinks::-webkit-scrollbar,
  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .navlinks a,
  .nav-links a {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    font-size: .82rem !important;
    line-height: 1;
  }

  .navlinks .nav-phone-link,
  .nav-links .nav-phone-link {
    display: none;
  }

  .split,
  .grid,
  .stats,
  .proof {
    grid-template-columns: 1fr !important;
  }

  .hero {
    padding: 64px 0 58px !important;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 76px;
  }

  .site-call-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
    border-radius: 18px;
  }

  .site-call-bar a {
    flex: 1 1 0;
    text-align: center;
    padding: 13px 10px;
    font-size: .86rem;
  }

  h1 {
    font-size: 2.35rem !important;
  }

  .btn,
  .button,
  .actions .btn {
    width: 100%;
  }
}
