@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --ink: #0a1f2e;
  --ink-2: #15394b;
  --gold: #c7a145;
  --gold-light: #efd58a;
  --paper: #f6f1e8;
  --mist: #e9f0ee;
  --line: rgba(10, 31, 46, 0.14);
  --danger: #a33b2f;
  --success: #1e6b50;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Source Sans 3", sans-serif; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { transition: 180ms ease; }

.np-header {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; padding: 0.75rem clamp(1.25rem, 6vw, 6rem); border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px);
}
.np-brand { display: flex; gap: 0.75rem; align-items: center; font-weight: 700; text-decoration: none; }
.np-brand img { width: 42px; height: 42px; object-fit: contain; }
.np-header nav { display: flex; gap: 1.35rem; align-items: center; }
.np-header nav a { font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.np-header nav a:hover { color: #8f6c1e; }

.np-hero {
  min-height: 520px; display: grid; align-items: end; padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 8vw, 8rem);
  color: white; background: radial-gradient(circle at 80% 25%, rgba(199,161,69,.25), transparent 25%), linear-gradient(130deg, #061722, #0d3041 68%, #17444e);
}
.np-hero > div { max-width: 1050px; }
.np-hero p, .np-kicker, .np-section-heading > p { color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.np-hero h1, .np-main h2, .np-main h3 { font-family: "Cormorant Garamond", Georgia, serif; }
.np-hero h1 { max-width: 960px; margin: 1rem 0 1.4rem; font-size: clamp(3.3rem, 7vw, 7rem); line-height: .94; letter-spacing: -.04em; }
.np-lead { max-width: 780px; color: rgba(255,255,255,.72); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.7; }
.np-main { max-width: 1320px; min-height: 500px; margin: 0 auto; padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 4rem); }

.np-grid { display: grid; gap: 1rem; }
.np-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.np-card { min-height: 290px; padding: 2rem; border: 1px solid var(--line); border-radius: 22px; background: white; text-decoration: none; box-shadow: 0 12px 32px rgba(10,31,46,.05); }
.np-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,31,46,.11); }
.np-card span { color: #8f6c1e; font-size: .7rem; font-weight: 700; letter-spacing: .16em; }
.np-card h2 { margin: 4.5rem 0 .8rem; font-size: 2.25rem; line-height: 1; }
.np-card p { color: rgba(10,31,46,.68); line-height: 1.65; }

.np-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.np-split h2, .np-section-heading h2 { margin: .8rem 0 1rem; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: .98; }
.np-split p { color: rgba(10,31,46,.68); line-height: 1.75; }
.np-price-list { display: grid; gap: .75rem; }
.np-price-list article { display: grid; grid-template-columns: 110px 1fr auto; gap: .75rem 1rem; padding: 1.4rem; border: 1px solid var(--line); border-radius: 16px; background: white; }
.np-price-list strong { color: #8f6c1e; text-transform: uppercase; }
.np-price-list b { font-size: 1.15rem; }
.np-price-list small { grid-column: 2 / -1; color: rgba(10,31,46,.6); line-height: 1.5; }
.np-form-section { margin-top: clamp(4rem, 8vw, 8rem); }

.np-tabs { display: grid; gap: 2rem; }
.np-tab-list { display: flex; flex-wrap: wrap; gap: .6rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.np-tab-list button, .np-directory-filters button { padding: .72rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink); cursor: pointer; font-weight: 700; }
.np-tab-list button[aria-selected="true"], .np-directory-filters button.is-active { border-color: var(--gold); background: var(--gold-light); }

.np-form { display: grid; gap: 2.2rem; margin-top: 2rem; }
.np-form fieldset { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 0; padding: 1.5rem; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.8); }
.np-form legend { padding: 0 .6rem; color: #8f6c1e; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.np-field { display: grid; gap: .45rem; }
.np-field--wide { grid-column: 1 / -1; }
.np-field label, .np-field > span { font-size: .82rem; font-weight: 700; }
.np-field input, .np-field select, .np-field textarea { width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid rgba(10,31,46,.22); border-radius: 10px; background: white; color: var(--ink); }
.np-field textarea { min-height: 130px; resize: vertical; }
.np-field input:focus, .np-field select:focus, .np-field textarea:focus { outline: 3px solid rgba(199,161,69,.3); border-color: var(--gold); }
.np-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; }
.np-option { display: flex; gap: .55rem; align-items: flex-start; padding: .6rem; border: 1px solid rgba(10,31,46,.1); border-radius: 9px; background: white; font-weight: 500 !important; }
.np-option input { width: auto; min-height: auto; margin-top: .2rem; }
.np-help { color: rgba(10,31,46,.58); font-size: .75rem; line-height: 1.5; }
.np-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.np-submit { min-height: 52px; padding: .8rem 1.35rem; border: 0; border-radius: 999px; background: var(--ink); color: white; cursor: pointer; font-weight: 700; }
.np-submit:hover { background: var(--ink-2); transform: translateY(-2px); }
.np-submit:disabled { cursor: wait; opacity: .6; }
.np-notice { padding: 1rem 1.1rem; border-radius: 12px; background: var(--mist); line-height: 1.5; }
.np-notice--error { background: #f9e6e2; color: var(--danger); }
.np-notice--success { background: #e3f2eb; color: var(--success); }
.np-sandbox { display: inline-flex; margin-left: .75rem; padding: .25rem .55rem; border-radius: 999px; background: #fff1c6; color: #725108; font-size: .7rem; font-weight: 700; }

.np-directory-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.np-directory { display: grid; gap: .75rem; }
.np-directory article { display: grid; grid-template-columns: minmax(160px,.6fr) 1fr auto; gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: white; }
.np-directory article strong { color: #8f6c1e; }
.np-directory article p { margin: 0; color: rgba(10,31,46,.66); }
.np-status { align-self: start; padding: .25rem .55rem; border-radius: 999px; background: #e3f2eb; color: var(--success); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.np-result { max-width: 760px; padding: 3rem; border: 1px solid var(--line); border-radius: 22px; background: white; text-align: center; }
.np-spinner { width: 48px; height: 48px; margin: 0 auto 1.2rem; border: 4px solid var(--mist); border-top-color: var(--gold); border-radius: 50%; animation: spin 800ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.np-footer { display: flex; justify-content: space-between; gap: 2rem; padding: 3rem clamp(1.25rem, 8vw, 8rem); background: var(--ink); color: white; }
.np-footer p { color: rgba(255,255,255,.55); }
.np-footer div:last-child { display: grid; gap: .35rem; text-align: right; }

@media (max-width: 900px) {
  .np-header nav { display: none; }
  .np-grid--three, .np-split { grid-template-columns: 1fr; }
  .np-form fieldset { grid-template-columns: 1fr; }
  .np-field--wide { grid-column: auto; }
}
@media (max-width: 620px) {
  .np-hero { min-height: 440px; }
  .np-price-list article, .np-directory article { grid-template-columns: 1fr; }
  .np-price-list small { grid-column: auto; }
  .np-options { grid-template-columns: 1fr; }
  .np-footer { flex-direction: column; }
  .np-footer div:last-child { text-align: left; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }
