:root {
  --np-navy: #071b33;
  --np-navy-2: #0d294c;
  --np-red: #d83434;
  --np-red-dark: #b92525;
  --np-green: #2f8f5b;
  --np-gold: #d7a93c;
  --np-blue: #1266a8;
  --np-cream: #f6f1e8;
  --np-panel: #ffffff;
  --np-ink: #122133;
  --np-muted: #627086;
  --np-line: rgba(7, 27, 51, 0.13);
  --np-shadow: 0 20px 58px rgba(7, 27, 51, 0.13);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(216, 52, 52, 0.025), rgba(47, 143, 91, 0.025) 52%, rgba(7, 27, 51, 0.02)),
    var(--np-cream);
  color: var(--np-ink);
  font-family: var(--font);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  background: var(--np-panel);
  border: 2px solid var(--np-red);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  min-height: 104px;
  padding: 10px clamp(22px, 5vw, 68px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 27, 51, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  flex: 0 0 auto;
  color: var(--np-navy);
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 90px;
  max-width: 340px;
  object-fit: contain;
}

.brand-logo--footer {
  height: clamp(66px, 6vw, 90px);
  max-width: min(320px, 72vw);
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.22));
}

.brand-text {
  display: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--np-navy);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--np-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
}

.site-nav a,
.footer-nav a {
  color: var(--np-navy);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 850;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 2px 0;
  color: rgba(7, 27, 51, 0.72);
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--np-green);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--np-navy);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 0.48;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--np-navy);
  box-shadow: none;
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(7, 27, 51, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 27, 51, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--np-navy);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.button--primary {
  background: var(--np-red);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--np-red-dark);
}

.button--secondary {
  background: var(--np-navy);
  border-color: var(--np-navy);
  color: #fff;
}

.button--light {
  background: #fff;
  border-color: #fff;
  color: var(--np-navy);
}

.section {
  background: var(--np-cream);
}

.section--raised {
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

.section--navy {
  background: var(--np-navy);
  color: #fff;
}

.section--join {
  padding-bottom: clamp(42px, 6vw, 72px);
}

.section__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading--split,
.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  max-width: none;
}

.brand-kicker {
  margin: 0 0 10px;
  color: var(--np-red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--np-navy);
  line-height: 1.05;
  letter-spacing: 0;
}

.section--navy h2,
.section--navy .brand-kicker {
  color: #fff;
}

h1 {
  font-size: clamp(2.35rem, 5.6vw, 4.45rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.22rem;
}

.page-hero {
  background: var(--np-navy);
  color: #fff;
}

.page-hero--image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.page-hero--image > img,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero--image > img {
  object-fit: cover;
}

.page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.94), rgba(7, 27, 51, 0.68), rgba(7, 27, 51, 0.26)),
    linear-gradient(0deg, rgba(7, 27, 51, 0.42), transparent 52%);
}

.page-hero--image .section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 460px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-hero h1,
.page-hero .brand-kicker {
  color: #fff;
}

.page-hero__copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.page-hero--locations {
  min-height: 420px;
}

.page-hero--locations > img {
  object-position: center center;
}

.page-hero--locations .section__inner {
  min-height: 420px;
}

.page-hero--locations h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 4.2vw, 3.7rem);
  line-height: 1.06;
}

.page-hero--locations .page-hero__copy {
  max-width: 780px;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.page-hero--categories > img {
  object-position: 72% center;
}

.page-hero--join > img {
  object-position: 60% center;
}

.directory-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--np-panel);
  box-shadow: var(--np-shadow);
}

.directory-search input {
  width: 100%;
  min-height: 48px;
  border: 0;
  padding: 0 14px;
  color: var(--np-ink);
  outline: 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.business-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.business-card {
  --card-accent: var(--np-navy);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 27, 51, 0.14);
  border-top: 4px solid var(--card-accent);
  border-radius: var(--radius);
  background: var(--np-panel);
  box-shadow: 0 16px 34px rgba(7, 27, 51, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.business-card:nth-child(4n + 1) {
  --card-accent: var(--np-red);
}

.business-card:nth-child(4n + 2) {
  --card-accent: var(--np-green);
}

.business-card:nth-child(4n + 3) {
  --card-accent: var(--np-blue);
}

.business-card:nth-child(4n) {
  --card-accent: var(--np-gold);
}

.business-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.05), rgba(47, 143, 91, 0.06)),
    #fff;
}

.business-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.business-card__media--contain {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(246, 241, 232, 0.98), rgba(255, 255, 255, 0.96)),
    #fff;
}

.business-card__media--contain img {
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  object-position: center;
}

.business-card__media--placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(13, 41, 76, 0.92)),
    var(--np-navy);
  color: #fff;
  text-align: center;
}

.business-card__media--placeholder strong {
  max-width: 92%;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.12;
}

.business-card__placeholder-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--np-navy);
}

.business-card__placeholder-icon svg {
  width: 24px;
  height: 24px;
}

.business-card:hover img {
  transform: scale(1.03);
}

.business-card:hover {
  border-color: color-mix(in srgb, var(--card-accent), transparent 55%);
  box-shadow: 0 22px 46px rgba(7, 27, 51, 0.13);
  transform: translateY(-2px);
}

.business-card:hover .business-card__media--contain img {
  transform: scale(1.015);
}

.verified {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: var(--np-green);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.business-card__body {
  padding: 22px 20px 20px;
}

.business-card__meta {
  margin-bottom: 8px;
  color: var(--np-muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.business-card h3 a {
  text-decoration: none;
}

.business-card p {
  color: var(--np-muted);
}

.business-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--np-line);
  color: var(--np-navy);
  font-size: 0.88rem;
  font-weight: 850;
}

.business-card__foot span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 36px clamp(18px, 5vw, 54px);
  background: #031020;
  color: #fff;
}

.site-footer .brand,
.site-footer .footer-nav a {
  color: #fff;
}

.site-footer .brand-mark {
  background: var(--np-red);
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer .site-footer__phone {
  margin-top: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer__phone a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--np-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.site-socials__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  min-width: 126px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-socials__button:hover {
  border-color: var(--np-green);
  background: var(--np-green);
}

.site-socials__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--np-navy);
  font-size: 0.76rem;
  font-weight: 950;
}

.site-socials--light {
  margin-top: 10px;
}

.site-socials--light .site-socials__button {
  border-color: var(--np-line);
  background: #fff;
  color: var(--np-navy);
}

.site-socials--light .site-socials__button:hover {
  border-color: var(--np-green);
  background: var(--np-green);
  color: #fff;
}

.tick-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tick-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--np-green);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 800;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 24px;
}

.join-social-block {
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--np-line);
}

.join-social-block p {
  margin: 0;
  color: var(--np-navy);
  font-weight: 900;
}

.info-panel,
.join-form,
.location-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(7, 27, 51, 0.14);
  border-top: 4px solid var(--np-green);
  border-radius: var(--radius);
  background: var(--np-panel);
  box-shadow: 0 16px 38px rgba(7, 27, 51, 0.08);
}

.info-panel {
  display: grid;
  gap: 18px;
  align-self: start;
}

.pricing-options--join {
  margin: 2px 0 4px;
}

.pricing-options--single {
  grid-template-columns: 1fr;
}

.pricing-options--join .pricing-option {
  min-height: 118px;
  border-color: var(--np-line);
  background: #fff;
}

.pricing-options--join .pricing-option--primary {
  border-color: rgba(216, 52, 52, 0.5);
  background: linear-gradient(180deg, rgba(216, 52, 52, 0.96), rgba(177, 28, 36, 0.92));
}

.pricing-options--join .pricing-option:not(.pricing-option--primary) span,
.pricing-options--join .pricing-option:not(.pricing-option--primary) small {
  color: var(--np-muted);
}

.pricing-options--join .pricing-option:not(.pricing-option--primary) strong {
  color: var(--np-navy);
}

.join-form {
  display: grid;
  gap: 14px;
}

.referral-notice {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(47, 143, 91, 0.22);
  border-left: 4px solid var(--np-green);
  border-radius: var(--radius);
  background: rgba(47, 143, 91, 0.08);
}

.referral-notice span,
.referral-notice small {
  color: var(--np-muted);
  font-weight: 800;
}

.referral-notice span {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.referral-notice strong {
  color: var(--np-navy);
  font-size: 1.05rem;
}

.form-group {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--np-line);
  border-radius: var(--radius);
  background: rgba(47, 143, 91, 0.06);
}

.form-group p {
  margin: 0;
  color: var(--np-navy);
  font-weight: 900;
}

.form-group small {
  color: var(--np-muted);
  font-weight: 700;
  line-height: 1.45;
}

.form-group[data-referral-locked="true"] {
  border-color: rgba(45, 147, 94, 0.28);
  background: rgba(45, 147, 94, 0.07);
}

.join-form label {
  display: grid;
  gap: 7px;
  color: var(--np-muted);
  font-weight: 850;
}

.join-form input,
.join-form textarea {
  border: 1px solid var(--np-line);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.join-form input:disabled {
  background: #f3f6f8;
  color: var(--np-muted);
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(7, 27, 51, 0.06);
  color: var(--np-muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  --location-accent: var(--np-green);
  display: grid;
  align-content: start;
  gap: 10px;
  border-top-color: var(--location-accent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--location-accent), transparent 92%), rgba(255, 255, 255, 0) 46%),
    var(--np-panel);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.location-card:nth-child(4n + 1) {
  --location-accent: var(--np-red);
}

.location-card:nth-child(4n + 2) {
  --location-accent: var(--np-green);
}

.location-card:nth-child(4n + 3) {
  --location-accent: var(--np-blue);
}

.location-card:nth-child(4n) {
  --location-accent: var(--np-gold);
}

.location-card:hover {
  border-color: color-mix(in srgb, var(--location-accent), transparent 55%);
  box-shadow: 0 22px 46px rgba(7, 27, 51, 0.12);
  transform: translateY(-2px);
}

.location-card h2,
.location-card p {
  margin: 0;
}

.location-card h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
  line-height: 1.02;
}

.location-card > p:not(.brand-kicker) {
  color: var(--np-muted);
  font-size: 1rem;
  line-height: 1.45;
}

.location-card__businesses {
  display: grid;
  gap: 8px;
  margin: 4px 0 6px;
  padding: 14px 0;
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
  list-style: none;
}

.location-card__businesses a {
  color: var(--np-navy);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.location-card__businesses a:hover {
  color: var(--np-green);
}

.location-card__more {
  color: var(--np-muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.location-card .button {
  min-height: 42px;
  margin-top: 2px;
  padding: 10px 14px;
  font-size: 0.92rem;
}
