/* ============================================================
   North People Co — Landing page styles
   Class prefix: np-*  · Mobile-first · breakpoints 700 / 1024
   ============================================================ */

.np-root {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.np-root *, .np-root *::before, .np-root *::after { box-sizing: border-box; }
.np-root a { color: inherit; text-decoration: none; }

.np-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 700px) {
  .np-container { padding: 0 44px; }
}
@media (min-width: 1024px) {
  .np-container { padding: 0 64px; }
}

/* --------------------------- Type tokens --------------------------- */
.np-eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.9;
}
.np-eyebrow-tan { color: var(--tan-soft); opacity: 1; }

.np-h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 18px 0 32px;
  text-wrap: balance;
}
.np-script {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: var(--ink);
  display: inline-block;
  margin-left: -4px;
  /* Reserve space for descenders (g, p, y) so the next element isn't kissed */
  padding-bottom: 0.08em;
}
.np-lead {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 60ch;
}
.np-lead em { font-style: italic; }
.np-body {
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

/* --------------------------- Buttons --------------------------- */
.np-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: background .2s, color .2s, transform .2s, border-color .2s;
  white-space: nowrap;
}
.np-btn:hover { background: var(--ink-deep); transform: translateY(-1px); }
.np-btn-sm { padding: 10px 18px; font-size: 11px; }
.np-btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.np-btn-ghost:hover { background: var(--ink); color: var(--cream); }
.np-btn-primary { background: var(--cream); color: var(--ink-deep); border-color: var(--cream); }
.np-btn-primary:hover { background: var(--tan-soft); color: var(--ink-deep); }
.np-btn-full { width: 100%; justify-content: center; padding: 18px 24px; }

/* ============================== NAV ============================== */
.np-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  color: var(--cream);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
html[data-scrolled] .np-nav {
  background: rgba(245, 238, 221, 0.92);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--hairline-light);
}
.np-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 700px) { .np-nav-inner { padding: 22px 44px; } }
@media (min-width: 1024px) { .np-nav-inner { padding: 26px 64px; } }
.np-nav-links {
  display: none;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.np-nav-links a { transition: opacity .15s; }
.np-nav-links a:hover { opacity: 0.65; }
.np-nav-burger {
  -webkit-appearance: none; appearance: none;
  background: transparent; border: 0; border-radius: 0; margin: 0;
  padding: 8px; cursor: pointer; color: inherit;
  display: inline-flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 0;
}
.np-nav-burger svg { display: block; }
.np-nav .np-btn-sm { display: none; }
@media (min-width: 1024px) {
  .np-nav-links { display: flex; }
  .np-nav .np-btn-sm { display: inline-flex; }
  .np-nav-burger { display: none; }
}
html[data-scrolled] .np-nav .np-btn-sm { background: var(--ink); color: var(--cream); border-color: var(--ink); }
html[data-scrolled] .np-nav .np-btn-sm:hover { background: var(--ink-deep); }

/* While the mobile menu is open, force the whole bar dark + solid so it reads
   clearly over any content and matches the dropdown panel (overrides scrolled). */
.np-nav-open,
html[data-scrolled] .np-nav-open {
  background: var(--ink-deep);
  color: var(--cream);
  box-shadow: none;
  backdrop-filter: none;
}

/* Mobile dropdown menu — revealed by the burger, hidden at desktop width. */
.np-nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 6px 22px 24px;
  background: var(--ink-deep);
  color: var(--cream);
  border-top: 1px solid rgba(245, 238, 221, 0.10);
  animation: np-nav-drop .18s ease;
}
@media (min-width: 700px) { .np-nav-mobile { padding: 6px 44px 28px; } }
.np-nav-mobile a {
  padding: 15px 2px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 238, 221, 0.08);
}
.np-nav-mobile a:active { opacity: 0.6; }
.np-nav-mobile .np-btn-primary {
  margin-top: 18px;
  border-bottom: 0;
  justify-content: center;
}
@media (min-width: 1024px) { .np-nav-mobile { display: none; } }
@keyframes np-nav-drop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Fixed nav overlaps section tops on anchor jumps — offset the scroll target. */
section[id] { scroll-margin-top: 76px; }
#enquiry { scroll-margin-top: 90px; }

/* ============================== HERO ============================== */
.np-hero {
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  overflow: hidden;
  padding: 120px 0 0;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}
.np-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(229, 201, 164, 0.06), transparent 60%),
    radial-gradient(circle at 18% 100%, rgba(20, 36, 90, 0.7), transparent 55%);
}
.np-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 22px 110px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 700px) { .np-hero-inner { padding: 32px 44px 140px; } }
@media (min-width: 1024px) { .np-hero-inner { padding: 40px 64px 168px; } }

.np-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan-soft);
  border: 1px solid rgba(229, 201, 164, 0.32);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(11, 20, 55, 0.4);
}
@media (min-width: 700px) { .np-hero-eyebrow { margin-bottom: 36px; } }

.np-hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin: 0 0 28px;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 18ch;
}
.np-hero-title > span + span { color: var(--tan-soft); }
.np-hero-script {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(58px, 10.2vw, 168px);
  letter-spacing: -0.015em;
  /* Slightly tighter than 1 so the cap lines hug the script visually,
     but loose enough that ascenders/descenders don't overlap them. */
  line-height: 0.95;
  color: var(--tan-soft);
  margin: 0;
  /* Pull the cap line above closer to the x-height of the script without
     overlapping the ascender. */
  margin-top: -0.02em;
  margin-bottom: -0.02em;
}
@media (min-width: 700px) {
  .np-hero-script {
    margin-top: -0.04em;
    margin-bottom: -0.04em;
  }
}

.np-hero-lead {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.55;
  color: rgba(245, 238, 221, 0.92);
  margin: 16px auto 36px;
  max-width: 640px;
  text-wrap: pretty;
}
.np-hero-lead em { font-style: italic; color: var(--tan-soft); }

.np-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
}
.np-hero-cta .np-btn-primary { color: var(--ink-deep); }
.np-hero-cta .np-btn-ghost { color: var(--cream); border-color: rgba(245, 238, 221, 0.5); }
.np-hero-cta .np-btn-ghost:hover { background: var(--cream); color: var(--ink-deep); border-color: var(--cream); }

.np-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 238, 221, 0.75);
  margin-top: auto;
  padding-top: 32px;
}
.np-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.np-meta-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--tan-soft);
  box-shadow: 0 0 8px var(--tan-soft);
}
.np-meta-sep { opacity: 0.4; }

/* Hero stats strip */
.np-hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(245, 238, 221, 0.16);
  background: linear-gradient(180deg, transparent, rgba(11, 20, 55, 0.45));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: rgba(245, 238, 221, 0.16);
}
@media (min-width: 700px) {
  .np-hero-stats { grid-template-columns: repeat(4, 1fr); }
}
.np-stat {
  background: var(--ink-deep);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 700px) { .np-stat { padding: 36px 28px; } }
.np-stat-num {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.np-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-soft);
}

/* =========================== TRUST STRIP =========================== */
.np-trust {
  padding: 32px 22px;
  border-bottom: 1px solid var(--hairline-light);
  background: var(--cream);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 700px) { .np-trust { padding: 36px 44px; } }
@media (min-width: 1024px) { .np-trust { padding: 40px 64px; } }
.np-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: center;
  opacity: 0.72;
}
@media (min-width: 1024px) { .np-logos { gap: 22px 48px; } }
.np-logo {
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--ink);
}
.np-logo.is-display {
  font-family: var(--f-display);
  letter-spacing: 0.18em;
}
.np-logo.is-serif {
  font-family: var(--f-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* =========================== SECTIONS =========================== */
.np-section { padding: 80px 0; }
@media (min-width: 700px) { .np-section { padding: 120px 0; } }
@media (min-width: 1024px) { .np-section { padding: 140px 0; } }

.np-section-head {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 56px;
}
@media (min-width: 900px) {
  .np-section-head {
    grid-template-columns: 1.2fr 1fr;
    column-gap: 64px;
    row-gap: 18px;
    margin-bottom: 72px;
  }
  .np-section-head > div:first-child { display: contents; }
  .np-section-head > div:first-child > .np-eyebrow { grid-column: 1 / -1; }
}
.np-section-head-lede {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 42ch;
}
@media (min-width: 900px) {
  .np-section-head-lede { margin-top: 14px; }
}

/* --------------------------- ABOUT --------------------------- */
.np-about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  padding-top: 32px;
}
@media (min-width: 700px) { .np-about { padding-top: 48px; } }
@media (min-width: 1024px) { .np-about { padding-top: 64px; } }
.np-about-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .np-about-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
  }
}
.np-about-left .np-h2 { margin: 18px 0 28px; }

/* Portrait figure (image + caption) */
.np-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
  background: var(--cream-warm);
  box-shadow:
    0 1px 0 var(--hairline),
    0 30px 60px -30px rgba(20, 36, 90, 0.25);
}
.np-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  /* Subtle warm grade so the photo feels in-palette */
  filter: saturate(0.92) contrast(1.02);
  transition: transform .8s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.np-portrait:hover img { transform: scale(1.03); }
.np-portrait::after {
  /* Editorial vignette toward the bottom for the caption to sit on */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(11, 20, 55, 0.55) 100%),
    linear-gradient(180deg, rgba(229, 201, 164, 0.06) 0%, transparent 30%);
}
.np-portrait figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
}
.np-about-right { padding-top: 0; }
@media (min-width: 900px) { .np-about-right { padding-top: 64px; } }
.np-about-right .np-lead { margin: 0 0 28px; }
.np-about-right .np-body + .np-body { margin-top: 18px; }

.np-about-credentials {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 540px) { .np-about-credentials { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .np-about-credentials { grid-template-columns: 1fr 1fr; gap: 28px 36px; } }
.np-credential {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.np-credential > svg { margin-top: 5px; flex-shrink: 0; }
.np-credential-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.np-credential-v {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* --------------------------- SERVICES --------------------------- */
.np-services {
  background: var(--cream-soft);
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  padding-top: 48px;
}
@media (min-width: 700px) { .np-services { padding-top: 72px; } }
@media (min-width: 1024px) { .np-services { padding-top: 88px; } }
.np-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) {
  .np-services-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .np-services-grid > :nth-child(3) { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .np-services-grid { grid-template-columns: repeat(3, 1fr); }
  .np-services-grid > :nth-child(3) { grid-column: auto; }
}

.np-service {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.np-service:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 12px 40px rgba(20, 36, 90, 0.08);
}
@media (min-width: 700px) { .np-service { padding: 36px 32px; } }
.np-service-watermark {
  position: absolute;
  right: -22px; top: -22px;
  opacity: 0.05;
  transition: opacity .3s, transform .4s;
  pointer-events: none;
}
.np-service:hover .np-service-watermark {
  opacity: 0.08;
  transform: rotate(10deg);
}
.np-service-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.np-service-num {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.35;
}
.np-service-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--cream-soft);
  white-space: nowrap;
}
.np-service-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 8px 0 4px;
  color: var(--ink);
}
.np-service-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  flex: 0 0 auto;
}
.np-service-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  flex: 1;
}
.np-service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}
.np-service-cta {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  transition: gap .2s;
}
.np-service-cta:hover { gap: 16px; }

/* --------------------------- APPROACH --------------------------- */
.np-approach { background: var(--cream); }
.np-approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 700px) {
  .np-approach-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .np-approach-list { grid-template-columns: repeat(4, 1fr); }
}
.np-phase {
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
@media (min-width: 700px) {
  .np-phase {
    padding: 36px 32px 36px 0;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .np-phase:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 32px; }
}
@media (min-width: 1024px) {
  .np-phase {
    padding: 44px 28px;
    border-bottom: none;
    border-right: 1px solid var(--hairline);
  }
  .np-phase:nth-child(2n) { border-right: 1px solid var(--hairline); padding-right: 28px; padding-left: 28px; }
  .np-phase:last-child { border-right: none; }
}
.np-phase-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
}
.np-phase-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--ink);
}
.np-phase-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------- VOICES --------------------------- */
.np-voices {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  overflow: hidden;
}
@media (min-width: 700px) { .np-voices { padding: 110px 0; } }
.np-voices-inner { position: relative; z-index: 2; }
.np-voices-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .np-voices-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.np-quote { margin: 0; display: flex; flex-direction: column; gap: 22px; }
.np-quote blockquote {
  margin: 0;
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--cream);
  text-wrap: pretty;
}
.np-quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 238, 221, 0.2);
}
.np-quote-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tan-soft), var(--tan));
  opacity: 0.9;
}
.np-quote-who { font-size: 14px; font-weight: 600; }
.np-quote-role { font-size: 12px; letter-spacing: 0.08em; opacity: 0.7; margin-top: 2px; }

/* --------------------------- CONTACT --------------------------- */
.np-contact { background: var(--cream); }
.np-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .np-contact-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
  }
}
.np-contact-left .np-h2 { margin: 18px 0 24px; }
.np-contact-left .np-lead { margin: 0 0 36px; max-width: 480px; }

.np-contact-lines {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
  border-top: 1px solid var(--hairline);
}
.np-contact-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
  transition: padding-left .2s;
}
a.np-contact-line:hover { padding-left: 6px; }
.np-contact-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.np-contact-v {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.np-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 480px) {
  .np-offices { grid-template-columns: 1fr 1fr; }
}
.np-office-city {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.np-office-addr {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
}

/* Form */
.np-form {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 32px 24px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 700px) { .np-form { padding: 44px 40px; } }
.np-form-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.np-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 500px) {
  .np-form-row { grid-template-columns: 1fr 1fr; }
}
.np-field { display: flex; flex-direction: column; gap: 8px; }
.np-field > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 238, 221, 0.7);
}
.np-field input,
.np-field select,
.np-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 238, 221, 0.3);
  padding: 10px 0;
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  border-radius: 0;
  width: 100%;
  transition: border-color .2s;
}
.np-field input:focus,
.np-field select:focus,
.np-field textarea:focus {
  border-bottom-color: var(--tan-soft);
}
.np-field textarea { resize: vertical; min-height: 80px; }
.np-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--tan-soft) 50%), linear-gradient(135deg, var(--tan-soft) 50%, transparent 50%); background-position: calc(100% - 16px) 18px, calc(100% - 11px) 18px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 28px; }
.np-field select option { color: var(--ink); }
.np-field input::placeholder, .np-field textarea::placeholder { color: rgba(245, 238, 221, 0.4); }
.np-form .np-btn-primary { background: var(--cream); color: var(--ink-deep); }
.np-form .np-btn-primary:hover { background: var(--tan-soft); }
.np-form-fineprint {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(245, 238, 221, 0.55);
  margin: 0;
}
.np-form-fineprint a { color: var(--tan-soft); text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot — visually gone but still in the DOM for bots to trip over. */
.np-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Inline submit error */
.np-form-error {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--tan-soft);
}

/* Thank-you panel — reuses .np-form so it fills the same card footprint */
.np-form-thanks {
  justify-content: center;
  gap: 14px;
  min-height: 320px;
}
.np-thanks-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.05;
  margin: 6px 0 0;
  color: var(--cream);
}
.np-thanks-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 238, 221, 0.72);
  margin: 0;
  max-width: 42ch;
}

/* --------------------------- FOOTER --------------------------- */
.np-footer {
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  padding: 64px 0 28px;
  overflow: hidden;
}
.np-footer-inner { position: relative; z-index: 2; }
.np-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245, 238, 221, 0.16);
}
@media (min-width: 700px) {
  .np-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}
.np-footer-brand p {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 238, 221, 0.75);
  max-width: 320px;
}
.np-footer-col { display: flex; flex-direction: column; gap: 12px; }
.np-footer-col a {
  font-size: 13px;
  color: rgba(245, 238, 221, 0.85);
  transition: color .15s;
}
.np-footer-col a:hover { color: var(--tan-soft); }
.np-footer-fine {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 238, 221, 0.55);
  text-transform: uppercase;
}

/* --------------------------- A11Y --------------------------- */
@media (prefers-reduced-motion: reduce) {
  .np-btn, .np-service, .np-contact-line { transition: none !important; }
}

::selection { background: var(--ink); color: var(--cream); }

/* ============================================================
   TWEAKS — expressive variant classes
   ============================================================ */

/* ---------- MOOD ---------- */
/* Boutique = the document defaults; nothing to override. */

.np-root.np-mood-coastal {
  /* Cooler, more corporate maritime palette */
  --ink: #102345;
  --ink-deep: #07112F;
  --ink-soft: #2A3F70;
  --cream: #ECEEE9;
  --cream-soft: #F4F5F1;
  --cream-warm: #E2E5DE;
  --tan: #6B8AB8;
  --tan-soft: #B8C6D8;
  --rust: #4F708F;
  --muted: #5A6877;
  --hairline: rgba(16, 35, 69, 0.16);
  --hairline-light: rgba(16, 35, 69, 0.08);
}
.np-root.np-mood-coastal .np-hero-glow {
  background:
    radial-gradient(circle at 82% 16%, rgba(184, 198, 216, 0.22), transparent 42%),
    radial-gradient(circle at 18% 88%, rgba(7, 17, 47, 0.55), transparent 50%);
}

.np-root.np-mood-sunrise {
  /* Warmest — modernist studio with rust accent */
  --ink: #2A2150;
  --ink-deep: #1B143A;
  --ink-soft: #463A6E;
  --cream: #F8EDD8;
  --cream-soft: #FCF3E1;
  --cream-warm: #EDDDB7;
  --tan: #B0552E;
  --tan-soft: #E5A878;
  --rust: #B0552E;
  --muted: #7A5F44;
  --hairline: rgba(42, 33, 80, 0.16);
  --hairline-light: rgba(42, 33, 80, 0.08);
}
.np-root.np-mood-sunrise .np-hero-glow {
  background:
    radial-gradient(circle at 82% 12%, rgba(229, 168, 120, 0.32), transparent 40%),
    radial-gradient(circle at 22% 90%, rgba(176, 85, 46, 0.18), transparent 45%);
}
.np-root.np-mood-sunrise .np-hero-script,
.np-root.np-mood-sunrise .np-quote .np-eyebrow-tan {
  color: var(--tan-soft);
}

/* ---------- HEADLINE VOICE ---------- */
/* Display = Anton (already wired via --f-display); nothing to override. */

.np-root.np-voice-refined {
  --f-display: "Fraunces", "Iowan Old Style", Georgia, serif;
}
.np-root.np-voice-refined .np-h2,
.np-root.np-voice-refined .np-hero-title,
.np-root.np-voice-refined .np-service-title,
.np-root.np-voice-refined .np-phase-title,
.np-root.np-voice-refined .np-stat-num,
.np-root.np-voice-refined .np-service-num,
.np-root.np-voice-refined .np-logo.is-display,
.np-root.np-voice-refined .np-quote blockquote {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.012em;
}
/* Display voice (Anton) doesn't have an italic; reset just in case */
.np-root.np-voice-display .np-hero-title,
.np-root.np-voice-display .np-h2 {
  font-style: normal;
  letter-spacing: 0.01em;
}
/* Anton is condensed/tall and reads larger; Fraunces italic at the same px
   feels smaller, so bump the hero scale a touch when refined. */
.np-root.np-voice-refined .np-hero-title {
  font-size: clamp(60px, 10.5vw, 168px);
  line-height: 0.92;
}
.np-root.np-voice-refined .np-h2 {
  line-height: 0.98;
  margin: 18px 0 28px;
}
/* The script accent stays Allura regardless of voice. */
.np-root.np-voice-refined .np-script,
.np-root.np-voice-refined .np-hero-script {
  font-style: normal;
  font-family: var(--f-script);
  letter-spacing: 0.01em;
  font-variation-settings: normal;
}
/* Tag pills look better non-italic */
.np-root.np-voice-refined .np-service-tag,
.np-root.np-voice-refined .np-stat-label,
.np-root.np-voice-refined .np-phase-num,
.np-root.np-voice-refined .np-credential-k,
.np-root.np-voice-refined .np-contact-k,
.np-root.np-voice-refined .np-office-city,
.np-root.np-voice-refined .np-eyebrow {
  font-style: normal;
  font-variation-settings: normal;
  letter-spacing: 0.16em;
}
