/* Palette sampled directly from the 2026-08-06 brand guide board
   (median of the swatch pixels). The guide's printed labels read
   #C9A227 / #0F4D3A / #F2F4F7, but the rendered board is darker and
   warmer; the site follows the render (site owner decision, 2026-08-25).
   TODO: have the team ratify one canonical set and update tokens.css. */
:root {
  --np-gold:        #C89021;
  --np-green:       #062F21;
  --np-gray:        #E4E5E7;
  --np-ink:         #14261F;
  --np-white:       #FFFFFF;
  --np-gold-soft:   #E8CC82;
  --np-green-deep:  #041F15;
  --np-line:        #E2E6EC;
  --np-font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --np-font-body:    "Inter", "Source Sans 3", system-ui, sans-serif;
  --np-tracking-display: 0.08em;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

h1, h2, h3, .step-num, .fee-title, .footer-close, .wordmark {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

body {
  background: var(--np-white);
  color: var(--np-ink);
  font-family: var(--np-font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- header ---------- */

header {
  background: var(--np-white);
  border-bottom: 1px solid var(--np-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.lockup .mark { height: 32px; width: auto; flex: none; }
.lockup .rule {
  width: 1px; height: 30px;
  background: var(--np-gold);
  flex: none;
}
.wordmark {
  font-family: var(--np-font-display);
  letter-spacing: var(--np-tracking-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.25rem;
  white-space: nowrap;
}
.wordmark .nobel { color: var(--np-gold); }
.wordmark .path  { color: var(--np-green); }

nav { display: flex; align-items: center; gap: 28px; }
nav a {
  color: var(--np-green);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
nav a:hover { color: var(--np-gold); }
nav .nav-cta {
  background: var(--np-green);
  color: var(--np-white);
  padding: 9px 18px;
  border-radius: 4px;
}
nav .nav-cta:hover { background: var(--np-green-deep); color: var(--np-white); }

@media (max-width: 760px) {
  nav a:not(.nav-cta) { display: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--np-green);
  color: var(--np-white);
  overflow: hidden;
  text-align: center;
  padding: 88px 24px 96px;
}
.hero .sweep {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 760px; margin: 0 auto; }
/* display:block on the lone-line images below cancels the standards-mode
   inline descender gap, keeping the doctype-less draft's exact rendering. */
.hero .mark { display: block; margin-left: auto; margin-right: auto; height: 78px; width: auto; margin-bottom: 20px; }
.hero .wordmark {
  font-size: clamp(2rem, 6vw, 3.2rem);
  display: block;
}
.hero .wordmark .path { color: var(--np-white); }
.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 40px;
  color: var(--np-gold-soft);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tagline::before, .tagline::after {
  content: "";
  height: 1px;
  width: clamp(20px, 8vw, 60px);
  background: var(--np-gold);
  flex: none;
}
@media (max-width: 560px) {
  .tagline {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    white-space: normal;
    max-width: 100%;
  }
  .tagline::before, .tagline::after { display: none; }
}
.hero h1 {
  font-family: var(--np-font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  line-height: 1.25;
  text-wrap: balance;
  margin-bottom: 18px;
}
.hero p.lede {
  color: #DCE6E1;
  max-width: 56ch;
  margin: 0 auto 36px;
}
.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.btn-gold { background: var(--np-gold); color: var(--np-green-deep); }
.btn-gold:hover { background: var(--np-gold-soft); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.55); color: var(--np-white); }
.btn-ghost:hover { border-color: var(--np-gold); color: var(--np-gold-soft); }

/* ---------- sections ---------- */

section { padding: 84px 0; }
.band-gray { background: var(--np-gray); }
.band-green { background: var(--np-green); color: var(--np-white); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--np-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--np-gold);
}
.center .eyebrow { justify-content: center; }
.center .eyebrow::after {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--np-gold);
}

h2 {
  font-family: var(--np-font-display);
  font-weight: 600;
  color: var(--np-green);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  text-wrap: balance;
  margin-bottom: 18px;
}
.band-green h2 { color: var(--np-white); }
.center { text-align: center; }

.prose { max-width: 64ch; }
.prose p + p { margin-top: 14px; }
.center .prose { margin: 0 auto; }

/* ---------- what is sred ---------- */

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}
.fact-list { list-style: none; display: grid; gap: 16px; }
.fact-list li {
  background: var(--np-gray);
  border-left: 3px solid var(--np-gold);
  padding: 14px 18px;
  font-size: 0.95rem;
  border-radius: 0 4px 4px 0;
}
.fact-list strong { color: var(--np-green); font-weight: 600; }

/* ---------- pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
}
.pillar {
  background: var(--np-white);
  border: 1px solid var(--np-line);
  border-radius: 6px;
  padding: 30px 26px;
  text-align: left;
}
.pillar svg { display: block; width: 34px; height: 34px; margin-bottom: 16px; }
.pillar h3 {
  font-family: var(--np-font-display);
  color: var(--np-green);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.pillar p { font-size: 0.92rem; color: #3D4F47; }

/* ---------- process ---------- */

.steps { display: grid; gap: 0; margin-top: 44px; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--np-line);
}
.step:last-child { border-bottom: 1px solid var(--np-line); }
.step-num {
  font-family: var(--np-font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--np-gold);
  line-height: 1;
}
.step h3 {
  font-family: var(--np-font-display);
  color: var(--np-green);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.step p { max-width: 62ch; font-size: 0.95rem; }
@media (max-width: 560px) {
  .step { grid-template-columns: 48px 1fr; gap: 14px; }
  .step-num { font-size: 1.8rem; }
}

.fee-note {
  margin-top: 40px;
  background: var(--np-green);
  color: var(--np-white);
  border-radius: 6px;
  padding: 28px 32px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.fee-note .fee-title {
  font-family: var(--np-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--np-gold-soft);
  white-space: nowrap;
}
.fee-note p { font-size: 0.95rem; color: #DCE6E1; max-width: 58ch; }

/* ---------- faq ---------- */

.faq-list { max-width: 760px; margin: 36px auto 0; display: grid; gap: 12px; }
details {
  background: var(--np-white);
  border: 1px solid var(--np-line);
  border-radius: 6px;
  padding: 0;
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--np-green);
  font-size: 0.98rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-family: var(--np-font-display);
  font-size: 1.4rem;
  color: var(--np-gold);
  line-height: 1;
  flex: none;
}
details[open] summary::after { content: "\2212"; }
details .answer {
  padding: 0 22px 20px;
  font-size: 0.94rem;
  color: #3D4F47;
  max-width: 68ch;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.band-green .prose p { color: #DCE6E1; }
.contact-alt { margin-top: 22px; font-size: 0.95rem; }
.contact-alt a { color: var(--np-gold-soft); text-decoration: underline; }
.contact-alt a:hover { color: var(--np-gold); }

form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--np-gold-soft);
}
input, textarea {
  background: var(--np-white);
  border: 1px solid var(--np-line);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--np-font-body);
  font-size: 0.95rem;
  color: var(--np-ink);
  width: 100%;
}
input:focus, textarea:focus, .btn:focus-visible, summary:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--np-gold);
  outline-offset: 2px;
}
textarea { min-height: 110px; resize: vertical; }
form button {
  border: none;
  cursor: pointer;
  font-family: var(--np-font-body);
  justify-self: start;
}
.form-note {
  display: none;
  background: var(--np-green-deep);
  border: 1px solid var(--np-gold);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--np-gold-soft);
}
.form-note.show { display: block; }

/* ---------- footer ---------- */

footer {
  background: var(--np-green-deep);
  color: #B9C9C2;
  padding: 56px 0 40px;
  font-size: 0.88rem;
}
.footer-inner {
  display: grid;
  gap: 28px;
  text-align: center;
  justify-items: center;
}
.footer-close {
  font-family: var(--np-font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--np-gold-soft);
  font-style: italic;
  max-width: 40ch;
  text-wrap: balance;
}
footer .wordmark { font-size: 1rem; }
footer .wordmark .path { color: var(--np-white); }
footer a { color: #B9C9C2; text-decoration: underline; }
footer a:hover { color: var(--np-gold-soft); }
.footer-meta { display: grid; gap: 6px; }
