@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; border: none; background: none; }
button { cursor: pointer; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --canvas:      #F7F5F2;
  --canvas-alt:  #EFEDE9;
  --surface:     #FFFFFF;
  --charcoal:    #1C1C1E;
  --ink:         #2E2E30;
  --muted:       #6B6B70;
  --rule:        #DDD9D3;
  --accent:      #C2610A;
  --accent-soft: #F5E6D6;
  --accent-dark: #9C4C06;
  --primary-hue: 324deg;
  --plum:        hsl(324, 38%, 28%);
  --plum-soft:   hsl(324, 30%, 94%);
  --plum-mid:    hsl(324, 28%, 42%);
  --white:       #FFFFFF;
  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --radius-pill: 999px;
  --shadow-xs:   0 1px 3px rgba(28,28,30,.07);
  --shadow-sm:   0 2px 8px rgba(28,28,30,.09);
  --shadow-md:   0 6px 24px rgba(28,28,30,.11);
  --shadow-lg:   0 16px 48px rgba(28,28,30,.13);
  --ease-out:    cubic-bezier(.22,.68,0,1.2);
  --space-xs:    clamp(.375rem, .5vw, .5rem);
  --space-sm:    clamp(.625rem, 1vw, .875rem);
  --space-md:    clamp(1rem, 2vw, 1.5rem);
  --space-lg:    clamp(1.5rem, 3vw, 2.5rem);
  --space-xl:    clamp(2.5rem, 5vw, 4.5rem);
  --space-2xl:   clamp(4rem, 8vw, 8rem);
}

/* ─── BASE ───────────────────────────────────────────────── */
html, body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  background-color: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.nx-wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--charcoal);
  line-height: 1.15;
  font-weight: 400;
}

.t-display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -.02em;
  line-height: 1.05;
}
.t-h1 { font-size: clamp(2rem, 4.5vw, 3.75rem); letter-spacing: -.018em; }
.t-h2 { font-size: clamp(1.6rem, 3.2vw, 2.75rem); letter-spacing: -.015em; }
.t-h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: -.01em; }
.t-h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); letter-spacing: -.008em; font-family: 'DM Sans', sans-serif; font-weight: 600; }

.t-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}
.t-body { font-size: clamp(.9rem, 1.2vw, 1rem); color: var(--ink); line-height: 1.7; }
.t-small { font-size: clamp(.75rem, 1vw, .85rem); color: var(--muted); }
.t-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.t-accent-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.t-plum-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--plum-mid);
}

p { max-width: 68ch; }
p + p { margin-top: var(--space-md); }

em.serif { font-family: 'DM Serif Display', Georgia, serif; font-style: italic; color: var(--accent); }

/* ─── LINKS ──────────────────────────────────────────────── */
.nx-link {
  color: var(--accent);
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nx-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nx-link:hover { color: var(--accent-dark); }
.nx-link:hover::after { transform: scaleX(1); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(.85rem, 1.1vw, .95rem);
  letter-spacing: .01em;
  border-radius: var(--radius-pill);
  padding: .7em 1.7em;
  transition: background .22s, color .22s, box-shadow .22s, transform .18s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--plum);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(194,97,10,.25);
}
.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(194,97,10,.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--rule);
}
.btn-ghost:hover {
  background: var(--canvas-alt);
  box-shadow: inset 0 0 0 1.5px var(--charcoal);
}

.btn-plum {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(90,35,70,.18);
}
.btn-plum:hover {
  background: hsl(324, 38%, 22%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(90,35,70,.28);
}

.btn-sm { padding: .5em 1.2em; font-size: .82rem; }
.btn-lg { padding: .85em 2.2em; font-size: 1rem; }

/* ─── HEADER ─────────────────────────────────────────────── */
.nx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,245,242,.92);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--rule);
}

.nx-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .45rem;
  border-bottom: 1px solid var(--rule);
}
.nx-header__contact-group {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nx-header__contact-item {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
}
.nx-header__contact-item:hover { color: var(--accent); }
.nx-header__contact-icon {
  width: 13px; height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.nx-header__top-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.nx-header__top-link {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nx-header__top-link:hover { color: var(--charcoal); }
.nx-header__top-divider {
  width: 1px; height: 12px;
  background: var(--rule);
  display: inline-block;
}

.nx-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .9rem;
  gap: var(--space-lg);
}

.nx-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nx-logo__mark {
  width: 34px; height: 34px;
  flex-shrink: 0;
}
.nx-logo__wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  letter-spacing: -.03em;
  color: var(--charcoal);
  line-height: 1;
}
.nx-logo__wordmark span {
  color: var(--accent);
}

.nx-nav {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 2rem);
}
.nx-nav__item {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
  position: relative;
  padding-block: .25rem;
  transition: color .2s;
  white-space: nowrap;
}
.nx-nav__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nx-nav__item:hover { color: var(--accent); }
.nx-nav__item:hover::after,
.nx-nav__item.is-active::after { transform: scaleX(1); }
.nx-nav__item.is-active { color: var(--accent); }

.nx-header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.nx-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nx-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

.nx-mobile-nav {
  display: none;
  flex-direction: column;
  padding-block: var(--space-md) var(--space-lg);
  gap: .1rem;
  border-top: 1px solid var(--rule);
}
.nx-mobile-nav.is-open { display: flex; }
.nx-mobile-nav__item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding: .65rem .25rem;
  border-bottom: 1px solid var(--rule);
  transition: color .2s;
}
.nx-mobile-nav__item:hover { color: var(--accent); }
.nx-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: var(--space-md);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.nx-footer {
  background: var(--charcoal);
  color: rgba(247,245,242,.72);
  padding-block: var(--space-2xl) var(--space-lg);
}

.nx-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.nx-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: var(--space-md);
  text-decoration: none;
}
.nx-footer__brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  letter-spacing: -.03em;
  color: var(--white);
}
.nx-footer__brand-name span { color: var(--accent); }
.nx-footer__tagline {
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(247,245,242,.55);
  max-width: 26ch;
  margin-bottom: var(--space-lg);
}
.nx-footer__social {
  display: flex;
  gap: .75rem;
}
.nx-footer__social-link {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.nx-footer__social-link:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
}
.nx-footer__social-link svg {
  width: 14px; height: 14px;
  fill: rgba(247,245,242,.65);
}

.nx-footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.nx-footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.nx-footer__link {
  font-size: .875rem;
  color: rgba(247,245,242,.6);
  transition: color .2s;
  line-height: 1.4;
}
.nx-footer__link:hover { color: var(--white); }

.nx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  gap: var(--space-md);
  flex-wrap: wrap;
}
.nx-footer__copy {
  font-size: .8rem;
  color: rgba(247,245,242,.38);
}
.nx-footer__legal {
  display: flex;
  gap: var(--space-md);
}
.nx-footer__legal-link {
  font-size: .8rem;
  color: rgba(247,245,242,.38);
  transition: color .2s;
}
.nx-footer__legal-link:hover { color: rgba(247,245,242,.75); }

/* ─── HERO ───────────────────────────────────────────────── */
.nx-hero {
  padding-block: var(--space-2xl);
  background: var(--canvas);
  overflow: hidden;
  position: relative;
}
.nx-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at top right, hsl(324,30%,93%), transparent 68%);
  pointer-events: none;
}

.nx-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.nx-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: var(--space-md);
}
.nx-hero__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.nx-hero__title {
  margin-bottom: var(--space-md);
}

.nx-hero__subtitle {
  margin-bottom: var(--space-lg);
  max-width: 46ch;
}

.nx-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.nx-hero__img-slot {
  position: relative;
}
.nx-hero__img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--canvas-alt);
  position: relative;
}
.nx-hero__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nx-hero__img-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  box-shadow: var(--shadow-sm);
}
.nx-hero__img-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}
.nx-hero__img-badge-text {
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

/* ─── SECTION GENERIC ────────────────────────────────────── */
.nx-section {
  padding-block: var(--space-2xl);
}
.nx-section--alt {
  background: var(--canvas-alt);
}
.nx-section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.nx-section--plum {
  background: var(--plum);
  color: var(--white);
}
.nx-section--surface {
  background: var(--surface);
}

.nx-section__header {
  max-width: 56ch;
  margin-bottom: var(--space-xl);
}
.nx-section__header--center {
  max-width: 56ch;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-xl);
}
.nx-section__eyebrow {
  margin-bottom: var(--space-sm);
}
.nx-section__title {
  margin-bottom: var(--space-md);
}
.nx-section__lead {
  color: var(--muted);
}
.nx-section--dark .nx-section__lead,
.nx-section--plum .nx-section__lead { color: rgba(255,255,255,.65); }
.nx-section--dark h2,
.nx-section--dark h3 { color: var(--white); }
.nx-section--plum h2,
.nx-section--plum h3 { color: var(--white); }

/* ─── FEATURE CARDS ──────────────────────────────────────── */
.nx-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.nx-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: box-shadow .28s, transform .28s var(--ease-out), border-color .28s;
  position: relative;
  overflow: hidden;
}
.nx-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--plum-mid) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nx-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.nx-card:hover::before { transform: scaleX(1); }

.nx-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}
.nx-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nx-card__icon--plum {
  background: var(--plum-soft);
}
.nx-card__icon--plum svg { stroke: var(--plum-mid); }

.nx-card__title {
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}
.nx-card__body {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── STATS ──────────────────────────────────────────────── */
.nx-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.nx-stat {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--rule);
}
.nx-stat__number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: .35rem;
}
.nx-stat__number em {
  font-style: normal;
  color: var(--accent);
}
.nx-stat__label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .03em;
}
.nx-section--dark .nx-stat {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.nx-section--dark .nx-stat__number { color: var(--white); }
.nx-section--dark .nx-stat__label { color: rgba(255,255,255,.55); }

/* ─── CTA BAND ───────────────────────────────────────────── */
.nx-cta {
  padding-block: var(--space-2xl);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.nx-cta::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse, hsl(324,38%,25%), transparent 65%);
  pointer-events: none;
}
.nx-cta::after {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(ellipse, rgba(194,97,10,.18), transparent 65%);
  pointer-events: none;
}
.nx-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.nx-cta__title {
  color: var(--white);
  margin-bottom: var(--space-md);
}
.nx-cta__subtitle {
  color: rgba(247,245,242,.6);
  margin-bottom: var(--space-lg);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}
.nx-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.nx-faq-list {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  max-width: 760px;
  margin-inline: auto;
}

.nx-faq-item {
  border-bottom: 1px solid var(--rule);
}
.nx-faq-item:first-child { border-top: 1px solid var(--rule); }

.nx-faq-item__q {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.nx-faq-item__q:hover { color: var(--accent); }
.nx-faq-item__chevron {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform .25s var(--ease-out);
}
.nx-faq-item.is-open .nx-faq-item__chevron { transform: rotate(180deg); }

.nx-faq-item__a {
  display: none;
  padding-bottom: var(--space-md);
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 64ch;
}
.nx-faq-item.is-open .nx-faq-item__a { display: block; }

/* ─── CONTENT SECTION ────────────────────────────────────── */
.nx-content-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.nx-content-body--full { grid-template-columns: 1fr; }

/* ─── DIVIDER ────────────────────────────────────────────── */
.nx-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin-block: var(--space-xl);
}

/* ─── PILL TAG ───────────────────────────────────────────── */
.nx-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: var(--radius-pill);
  padding: .3em .9em;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nx-pill--accent { background: var(--accent-soft); color: var(--accent-dark); }
.nx-pill--plum   { background: var(--plum-soft);   color: var(--plum); }
.nx-pill--muted  { background: var(--canvas-alt);  color: var(--muted); }

/* ─── FORM ───────────────────────────────────────────────── */
.nx-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.nx-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.nx-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.nx-field__label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
}
.nx-field__input,
.nx-field__textarea,
.nx-field__select {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-md);
  padding: .7em 1em;
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.nx-field__input:focus,
.nx-field__textarea:focus,
.nx-field__select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194,97,10,.12);
}
.nx-field__textarea { resize: vertical; min-height: 120px; }

/* ─── IMAGES ─────────────────────────────────────────────── */
.nx-img-rounded { border-radius: var(--radius-lg); }
.nx-img-shadow  { box-shadow: var(--shadow-md); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nx-card-grid { grid-template-columns: 1fr 1fr; }
  .nx-stats-row { grid-template-columns: 1fr 1fr; }
  .nx-footer__grid { grid-template-columns: 1fr 1fr; }
  .nx-hero__grid { grid-template-columns: 1fr; }
  .nx-hero__img-slot { order: -1; }
  .nx-content-body { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nx-header__top { display: none; }
  .nx-nav { display: none; }
  .nx-header__cta { display: none; }
  .nx-hamburger { display: flex; }
  .nx-card-grid { grid-template-columns: 1fr; }
  .nx-stats-row { grid-template-columns: 1fr 1fr; }
  .nx-footer__grid { grid-template-columns: 1fr; }
  .nx-form__row { grid-template-columns: 1fr; }
  .nx-cta__inner { max-width: 100%; }
}

@media (max-width: 480px) {
  .nx-stats-row { grid-template-columns: 1fr; }
  .nx-hero__actions { flex-direction: column; align-items: flex-start; }
  .nx-cta__actions { flex-direction: column; }
}
*{box-sizing:border-box}
body{margin:0}
html{-webkit-text-size-adjust:100%}
img,svg,video{max-width:100%;height:auto}
