/* ============================================================
   Nioush Therapy – Brand Overrides
   Source of truth: brand-profile.json
   Loaded LAST after webflow css. Do not edit upstream files.
   ============================================================ */

/* --- Layout tokens (standardized across sections) ---------- */
:root {
  --nt-container-max: 1200px;
  --nt-container-pad-x: 24px;
}
@media (max-width: 600px) {
  :root { --nt-container-pad-x: 20px; }
}

/* --- Brand tokens ----------------------------------------- */
:root {
  /* Brand palette – locked */
  --nt-bone: #F6F1E8;          /* primary background */
  --nt-bone-tint: #EFE7D6;     /* subtle bone variant */
  --nt-off-white: #FDFBF6;     /* warm off-white (replaces pure white) */
  --nt-charcoal: #2A2520;      /* primary text */
  --nt-charcoal-soft: #4A4138; /* secondary text */
  --nt-eucalyptus: #7A8B7A;    /* primary CTA + links */
  --nt-eucalyptus-deep: #5F715F; /* hover */
  --nt-eucalyptus-tint: #D9E0D5; /* tints, soft fills */
  --nt-terracotta: #C97D5D;    /* warmth/highlight only – never CTA */

  /* Remap the legacy webflow library variables onto brand palette */
  --flowstica-webflow-library--black: var(--nt-charcoal);
  --flowstica-webflow-library--black-light: var(--nt-charcoal-soft);
  --flowstica-webflow-library--black-2: var(--nt-charcoal);
  --flowstica-webflow-library--white: var(--nt-off-white);
  --flowstica-webflow-library--white-smoke: var(--nt-bone-tint);
  --flowstica-webflow-library--color-primary: var(--nt-bone);
  --flowstica-webflow-library--color-primary-darker: var(--nt-bone-tint);
  --flowstica-webflow-library--color-secondary: var(--nt-eucalyptus);
  --flowstica-webflow-library--color-secondary-lighter: var(--nt-eucalyptus-deep);
  --flowstica-webflow-library--medium-sea-green: var(--nt-eucalyptus-tint);
  --flowstica-webflow-library--honeydew: var(--nt-eucalyptus-tint);

  /* Typography stacks */
  --nt-font-heading: "Fraunces", "Times New Roman", Georgia, serif;
  --nt-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* --- Base body / text ------------------------------------- */
html, body {
  background-color: var(--nt-bone);
  color: var(--nt-charcoal);
  font-family: var(--nt-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, p, li, span, a, button, input, textarea, select, label, blockquote, figcaption, small, strong, em {
  font-family: var(--nt-font-body);
}

/* --- Headings -> Fraunces -------------------------------- */
h1, h2, h3, h4, h5, h6,
.heading, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6,
[class*="heading"], .display, .display-1, .display-2,
.hero-title, .hero-heading, .section-title, .section-heading {
  font-family: var(--nt-font-heading);
  color: var(--nt-charcoal);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1, .heading, .display-1, .hero-title { font-weight: 600; }
h2, .heading-2, .display-2 { font-weight: 600; }
h3, .heading-3 { font-weight: 600; }

/* No italic Fraunces below 24px – fall back to body italic for readability */
em, i, .italic {
  font-style: italic;
}
h1 em, h2 em, h3 em, .heading em, .heading-2 em, .heading-3 em {
  font-family: var(--nt-font-heading);
}

/* Body line-height for warmth (rule from brand profile) */
p, li, body { line-height: 1.55; }

/* --- Links + primary CTAs --------------------------------- */
a {
  color: var(--nt-eucalyptus);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--nt-eucalyptus-deep); }

.button, .btn, .w-button {
  background-color: var(--nt-eucalyptus) !important;
  color: var(--nt-off-white) !important;
  border-color: var(--nt-eucalyptus) !important;
  font-family: var(--nt-font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: background-color 200ms ease, transform 150ms ease;
}
.button:hover, .btn:hover, .w-button:hover {
  background-color: var(--nt-eucalyptus-deep) !important;
  border-color: var(--nt-eucalyptus-deep) !important;
}

/* Secondary / ghost buttons */
.button.is-secondary, .button-secondary, [class*="secondary-button"], .button.w--current {
  background-color: transparent !important;
  color: var(--nt-charcoal) !important;
  border: 1px solid var(--nt-charcoal) !important;
}
.button.is-secondary:hover, .button-secondary:hover, [class*="secondary-button"]:hover {
  background-color: var(--nt-charcoal) !important;
  color: var(--nt-off-white) !important;
}

/* --- Strip forbidden gradients globally ------------------- */
[style*="linear-gradient"], [style*="radial-gradient"] {
  /* inline gradients still need attention case-by-case */
}

/* Kill gradient backgrounds anywhere in legacy webflow CSS */
[class*="gradient"], .has-gradient,
.bg-gradient, .background-gradient {
  background-image: none !important;
  background: var(--nt-bone) !important;
}

/* --- Cards / surfaces (legacy webflow only) --------------- */
.card, .w-tab-pane, .feature-card {
  background-color: var(--nt-off-white);
  color: var(--nt-charcoal);
  border-color: var(--nt-bone-tint);
}

/* --- Form fields ------------------------------------------ */
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="search"], textarea, select,
.w-input, .w-select {
  font-family: var(--nt-font-body);
  background-color: var(--nt-off-white);
  color: var(--nt-charcoal);
  border: 1px solid var(--nt-bone-tint);
  border-radius: 6px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
input:focus, textarea:focus, select:focus,
.w-input:focus, .w-select:focus {
  border-color: var(--nt-eucalyptus) !important;
  box-shadow: 0 0 0 3px rgba(122, 139, 122, 0.18) !important;
  outline: none;
}
::placeholder { color: var(--nt-charcoal-soft); opacity: 0.7; }

/* --- Nav / header (legacy webflow fallbacks) -------------- */
.navbar, .nav-bar, .w-nav {
  background-color: var(--nt-bone) !important;
  border-bottom: 1px solid var(--nt-bone-tint);
}
.navbar a, .nav-link, .w-nav-link {
  color: var(--nt-charcoal) !important;
  font-family: var(--nt-font-body);
}
.navbar a:hover, .nav-link:hover, .w-nav-link:hover {
  color: var(--nt-eucalyptus) !important;
}

/* ============================================================
   Primary header (.nt-header) – simplified two-row layout
   Top utility bar + main nav (logo / centered links / CTA)
   ============================================================ */
.nt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--nt-bone);
  border-bottom: 1px solid rgba(42, 37, 32, 0.08);
}

.nt-topbar {
  background-color: var(--nt-eucalyptus-deep);
  border-bottom: 1px solid rgba(42, 37, 32, 0.10);
  font-size: 13px;
}
.nt-topbar-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
  padding: 8px var(--nt-container-pad-x);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.nt-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nt-off-white) !important;
  text-decoration: none;
  font-family: var(--nt-font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 150ms ease;
  opacity: 0.92;
}
.nt-topbar-link:hover { opacity: 1; color: var(--nt-bone) !important; }
.nt-topbar-link svg { opacity: 0.85; }

.nt-nav-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
  padding: 18px var(--nt-container-pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nt-brand {
  font-family: "Cormorant Garamond", "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--nt-eucalyptus) !important;
  text-decoration: none;
  letter-spacing: 0.005em;
  justify-self: start;
  transition: color 200ms ease;
}
.nt-brand:hover { color: var(--nt-eucalyptus-deep) !important; }

.nt-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  justify-self: center;
}
.nt-nav-links li { margin: 0; }
.nt-nav-links a {
  font-family: var(--nt-font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--nt-charcoal) !important;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 6px 2px;
  transition: color 150ms ease;
}
.nt-nav-links a:hover { color: var(--nt-eucalyptus) !important; }

.nt-nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  background-color: var(--nt-eucalyptus) !important;
  color: var(--nt-off-white) !important;
  font-family: var(--nt-font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, transform 150ms ease;
  white-space: nowrap;
}
.nt-nav-cta:hover {
  background-color: var(--nt-eucalyptus-deep) !important;
  color: var(--nt-off-white) !important;
}

/* Mobile toggle (hidden on desktop) */
.nt-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  justify-self: end;
}
.nt-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--nt-charcoal);
  margin: 5px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (max-width: 820px) {
  .nt-nav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 0;
  }
  .nt-brand { flex: 0 0 auto; order: 1; }
  .nt-nav-toggle {
    display: block;
    order: 2;
    flex: 0 0 auto;
  }
  .nt-nav-links,
  .nt-nav-cta {
    display: none;
    order: 3;
    flex: 1 0 100%;
  }
  .nt-header.is-open .nt-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0 4px;
    margin-top: 14px;
    border-top: 1px solid rgba(42, 37, 32, 0.08);
  }
  .nt-header.is-open .nt-nav-links a {
    padding: 10px 4px;
    display: block;
  }
  .nt-header.is-open .nt-nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
  }
  .nt-topbar-inner { justify-content: center; gap: 16px; padding: 6px var(--nt-container-pad-x); }
}

/* --- Footer ---------------------------------------------- */
.nt-footer { background-color: var(--nt-eucalyptus-deep); color: var(--nt-off-white); padding: 64px var(--nt-container-pad-x) 32px; }
.nt-footer-inner { max-width: var(--nt-container-max); margin: 0 auto; }
.nt-footer-brand { margin-bottom: 40px; max-width: 460px; }
.nt-footer .nt-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 32px;
  color: var(--nt-bone) !important;
  display: inline-block;
  margin-bottom: 12px;
}
.nt-footer-tag {
  font-family: var(--nt-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--nt-off-white);
  opacity: 0.85;
  margin: 0;
}
.nt-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(253, 251, 246, 0.18);
  border-bottom: 1px solid rgba(253, 251, 246, 0.18);
}
.nt-footer-col h4 {
  font-family: var(--nt-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nt-bone);
  margin: 0 0 14px;
  opacity: 0.75;
}
.nt-footer-col p {
  font-family: var(--nt-font-body);
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--nt-off-white);
  opacity: 0.85;
}
.nt-footer-col a { color: var(--nt-off-white) !important; text-decoration: none; }
.nt-footer-col a:hover { color: var(--nt-bone) !important; }
.nt-footer-bottom {
  padding-top: 24px;
  font-family: var(--nt-font-body);
  font-size: 13px;
  opacity: 0.65;
}
.nt-footer-bottom p { margin: 0; color: var(--nt-off-white); }
.nt-footer-bottom a { color: var(--nt-off-white) !important; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) {
  .nt-footer-cols { grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }
}

/* ============================================================
   CTA band (.nt-cta) – conversion section between About and Reviews
   ============================================================ */
.nt-cta {
  background-color: var(--nt-eucalyptus-deep);
  color: var(--nt-off-white);
  padding: 56px var(--nt-container-pad-x);
}
.nt-cta-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
}
.nt-cta-copy { max-width: 560px; }
.nt-cta-eyebrow {
  font-family: var(--nt-font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nt-eucalyptus-tint);
  margin: 0 0 12px;
  opacity: 0.9;
}
.nt-cta-title {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--nt-off-white);
  margin: 0 0 14px;
}
.nt-cta-body {
  font-family: var(--nt-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--nt-off-white);
  opacity: 0.88;
  margin: 0 0 24px;
  max-width: 52ch;
}
.nt-cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--nt-bone);
  color: var(--nt-charcoal) !important;
  font-family: var(--nt-font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 200ms ease;
}
.nt-cta-button:hover {
  background-color: var(--nt-off-white);
  color: var(--nt-charcoal) !important;
}
.nt-cta-media { margin: 0; }
.nt-cta-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 10px;
  display: block;
}
@media (max-width: 820px) {
  .nt-cta { padding: 44px var(--nt-container-pad-x); }
  .nt-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .nt-cta-media img { max-height: 240px; aspect-ratio: 16 / 10; }
}

/* ============================================================
   Reviews (.nt-reviews) – horizontally-scrolling carousel
   ============================================================ */
.nt-reviews {
  background-color: var(--nt-off-white);
  padding: 96px 0 80px;
  overflow: hidden;
}
.nt-reviews-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
  padding: 0 var(--nt-container-pad-x);
}
.nt-reviews-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.nt-reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nt-reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px;
  scrollbar-width: none;
  flex: 1 1 auto;
  scroll-padding: 4px;
}
.nt-reviews-track::-webkit-scrollbar { display: none; }
.nt-review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 280px;
  background-color: var(--nt-bone);
  border: 1px solid rgba(42, 37, 32, 0.08);
  border-radius: 10px;
  padding: 28px 26px 24px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.nt-review-card:hover {
  border-color: var(--nt-eucalyptus);
  box-shadow: 0 8px 20px rgba(42, 37, 32, 0.05);
}
.nt-review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--nt-terracotta);
}
.nt-review-quote {
  font-family: var(--nt-font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  color: var(--nt-charcoal);
  margin: 0;
  flex: 1;
}
.nt-review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(42, 37, 32, 0.10);
}
.nt-review-name {
  font-family: var(--nt-font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--nt-charcoal);
}
.nt-review-context {
  font-family: var(--nt-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nt-eucalyptus);
}

.nt-reviews-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--nt-bone);
  border: 1px solid rgba(42, 37, 32, 0.10);
  color: var(--nt-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.nt-reviews-arrow:hover {
  background-color: var(--nt-eucalyptus);
  color: var(--nt-off-white);
  border-color: var(--nt-eucalyptus);
}

@media (max-width: 980px) {
  .nt-review-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .nt-reviews { padding: 64px 0 56px; }
  .nt-review-card { flex: 0 0 86%; }
  .nt-reviews-arrow { display: none; }
  .nt-reviews-track { padding-left: 24px; padding-right: 24px; }
}

/* ============================================================
   FAQ (.nt-faq) – clean accordion using <details>
   ============================================================ */
.nt-faq {
  background-color: var(--nt-bone);
  padding: 96px var(--nt-container-pad-x) 80px;
}
.nt-faq-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
}
.nt-faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.nt-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(42, 37, 32, 0.10);
}
.nt-faq-item {
  border-bottom: 1px solid rgba(42, 37, 32, 0.10);
}
.nt-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--nt-charcoal);
  position: relative;
  transition: color 150ms ease;
}
.nt-faq-item summary::-webkit-details-marker { display: none; }
.nt-faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--nt-eucalyptus);
  border-bottom: 2px solid var(--nt-eucalyptus);
  transform: rotate(45deg);
  transition: transform 200ms ease;
  margin-right: 8px;
  margin-top: -4px;
}
.nt-faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.nt-faq-item summary:hover {
  color: var(--nt-eucalyptus-deep);
}
.nt-faq-body {
  padding: 0 4px 22px;
}
.nt-faq-body p {
  font-family: var(--nt-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--nt-charcoal-soft);
  margin: 0;
  max-width: 70ch;
}
@media (max-width: 600px) {
  .nt-faq { padding: 64px 20px 56px; }
  .nt-faq-item summary { font-size: 17px; padding: 18px 4px; }
  .nt-faq-body p { font-size: 15px; }
}

/* --- Thank you page ---------------------------------------- */
.nt-thanks { background-color: var(--nt-bone); padding: 80px var(--nt-container-pad-x) 96px; }
.nt-thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.nt-thanks-portrait {
  margin: 0 auto 36px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  clip-path: inset(0 round 50%);
  background-color: var(--nt-eucalyptus-tint);
  border: 1px solid rgba(42, 37, 32, 0.06);
}
@media (max-width: 600px) {
  .nt-thanks-portrait { width: 180px; height: 180px; }
}
.nt-thanks-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.nt-thanks-title {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--nt-charcoal);
  margin: 0 0 20px;
}
.nt-thanks-body {
  font-family: var(--nt-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--nt-charcoal-soft);
  max-width: 56ch;
  margin: 0 auto 32px;
}

/* --- Selection ------------------------------------------- */
::selection {
  background: var(--nt-eucalyptus);
  color: var(--nt-off-white);
}

/* --- Utility: prevent pure black being used as text ------ */
[style*="color: #000"], [style*="color:#000"],
[style*="color: black"], [style*="color:black"] {
  color: var(--nt-charcoal) !important;
}

/* ============================================================
   Hero (.nt-hero) – two-column: copy + form card | portrait
   ============================================================ */
.nt-hero {
  background-color: var(--nt-bone);
  padding: 64px var(--nt-container-pad-x) 80px;
}
.nt-hero-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.nt-hero-eyebrow {
  font-family: var(--nt-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nt-eucalyptus);
  margin: 0 0 16px;
}
.nt-hero-title {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--nt-charcoal);
  margin: 0 0 20px;
  max-width: 14ch;
}
.nt-hero-sub {
  font-family: var(--nt-font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--nt-charcoal-soft);
  max-width: 52ch;
  margin: 0 0 32px;
}

/* Form card */
.nt-hero-card {
  background-color: var(--nt-off-white);
  border: 1px solid rgba(42, 37, 32, 0.10);
  border-radius: 10px;
  padding: 28px 28px 24px;
  max-width: 480px;
  box-shadow: 0 1px 2px rgba(42, 37, 32, 0.04);
}
.nt-hero-card-title {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--nt-charcoal);
  margin: 0 0 18px;
}
.nt-hero-form { display: flex; flex-direction: column; gap: 16px; }
.nt-hero-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px; opacity: 0;
}
.nt-field { display: flex; flex-direction: column; gap: 6px; }
.nt-field-label {
  font-family: var(--nt-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nt-charcoal-soft);
}
.nt-field input,
.nt-field textarea {
  font-family: var(--nt-font-body);
  font-size: 15px;
  color: var(--nt-charcoal);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(122, 139, 122, 0.45);
  border-radius: 0;
  padding: 6px 0 8px;
  transition: border-color 150ms ease;
  resize: vertical;
  width: 100%;
}
.nt-field input:focus,
.nt-field textarea:focus {
  outline: none;
  border-bottom-color: var(--nt-eucalyptus) !important;
  box-shadow: none !important;
}
.nt-hero-form-submit {
  margin-top: 6px;
  background-color: var(--nt-eucalyptus);
  color: var(--nt-off-white);
  font-family: var(--nt-font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 6px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background-color 200ms ease;
  width: 100%;
}
.nt-hero-form-submit:hover { background-color: var(--nt-eucalyptus-deep); }
.nt-hero-form-fineprint {
  font-family: var(--nt-font-body);
  font-size: 12.5px;
  color: var(--nt-charcoal-soft);
  margin: 4px 0 0;
  text-align: center;
  opacity: 0.85;
}

/* Portrait / media side */
.nt-hero-media {
  align-self: center;
  position: relative;
  margin: 0;
  border-radius: 10px;
  background-color: var(--nt-bone);
  clip-path: inset(0 round 10px);
  isolation: isolate;
}
.nt-hero-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: var(--nt-off-white);
  border-left: 2px solid var(--nt-eucalyptus);
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(42, 37, 32, 0.10);
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: calc(100% - 40px);
}
.nt-hero-caption-name {
  font-family: var(--nt-font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  color: var(--nt-charcoal);
}
.nt-hero-caption-role {
  font-family: var(--nt-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nt-charcoal-soft);
}
.nt-hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 32%;
  display: block;
  border: 0;
}

/* Trust strip — credential logos */
.nt-trust {
  background-color: var(--nt-bone);
  padding: 32px var(--nt-container-pad-x);
}
.nt-trust-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 28px 48px;
}
.nt-trust-logo {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 200ms ease;
}
.nt-trust-logo:hover { opacity: 1; }
.nt-trust-logo--google { height: 64px; }

@media (max-width: 900px) {
  .nt-hero { padding: 40px 20px 56px; }
  .nt-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nt-hero-media { order: 0; }
  .nt-hero-image { aspect-ratio: 4 / 3; }
  .nt-hero-card { max-width: none; }
  .nt-hero-caption {
    left: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }
  .nt-hero-caption-name { font-size: 17px; }
  .nt-hero-caption-role { font-size: 11px; }
  .nt-trust { padding: 24px 16px; }
  .nt-trust-inner { gap: 20px 28px; }
  .nt-trust-logo { height: 40px; }
  .nt-trust-logo--google { height: 48px; }
}

/* ============================================================
   About (.nt-about) – portrait left, bio right with modality tags
   ============================================================ */
.nt-about {
  background-color: var(--nt-bone);
  padding: 96px var(--nt-container-pad-x);
}
.nt-about-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
}
.nt-about-media {
  margin: 0;
  border-radius: 10px;
  background-color: var(--nt-bone);
  clip-path: inset(0 round 10px);
  isolation: isolate;
}
.nt-about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}
.nt-about-eyebrow {
  font-family: var(--nt-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nt-eucalyptus);
  margin: 0 0 12px;
}
.nt-about-title {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--nt-charcoal);
  margin: 0 0 24px;
}
.nt-about-copy p {
  font-family: var(--nt-font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--nt-charcoal-soft);
  margin: 0 0 18px;
  max-width: 60ch;
}
.nt-about-tags {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nt-about-tags li {
  font-family: var(--nt-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--nt-off-white);
  background-color: var(--nt-eucalyptus);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nt-about { padding: 64px 20px; }
  .nt-about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nt-about-image { aspect-ratio: 4 / 5; max-height: 540px; }
}

/* ============================================================
   Areas of Focus (.nt-aof) – clean card grid
   ============================================================ */
.nt-aof {
  background-color: var(--nt-off-white);
  padding: 96px var(--nt-container-pad-x) 80px;
}
.nt-aof-inner {
  max-width: var(--nt-container-max);
  margin: 0 auto;
}
.nt-aof-header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.nt-aof-eyebrow {
  font-family: var(--nt-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nt-eucalyptus);
  margin: 0 0 14px;
}
.nt-aof-title {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--nt-charcoal);
  margin: 0 0 16px;
}
.nt-aof-lead {
  font-family: var(--nt-font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--nt-charcoal-soft);
  margin: 0;
}

.nt-aof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.nt-aof-grid > .nt-aof-card:nth-child(4) { grid-column: 1 / 2; }
.nt-aof-grid > .nt-aof-card:nth-child(5) { grid-column: 2 / 4; }

.nt-aof-card {
  background-color: var(--nt-bone);
  border: 1px solid rgba(42, 37, 32, 0.08);
  border-radius: 10px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.nt-aof-card:hover {
  border-color: var(--nt-eucalyptus);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 37, 32, 0.06);
}

.nt-aof-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--nt-off-white) !important;
  color: var(--nt-eucalyptus);
  margin-bottom: 4px;
  border: 1px solid rgba(42, 37, 32, 0.06);
  box-shadow: 0 1px 3px rgba(42, 37, 32, 0.04);
}
.nt-aof-card-title {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: var(--nt-charcoal);
  margin: 0;
  background: transparent;
}
.nt-aof-card-blurb {
  font-family: var(--nt-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--nt-charcoal-soft);
  margin: 0;
  background: transparent;
}
.nt-aof-checks {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-aof-checks li {
  font-family: var(--nt-font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--nt-charcoal);
  position: relative;
  padding-left: 26px;
}
.nt-aof-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--nt-eucalyptus-tint);
}
.nt-aof-checks li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 1.6px solid var(--nt-eucalyptus-deep);
  border-bottom: 1.6px solid var(--nt-eucalyptus-deep);
  transform: rotate(-45deg);
}

.nt-aof-card-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nt-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--nt-eucalyptus) !important;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.nt-aof-card-link::after {
  content: "→";
  transition: transform 200ms ease;
}
.nt-aof-card-link:hover {
  color: var(--nt-eucalyptus-deep) !important;
  border-bottom-color: var(--nt-eucalyptus-deep);
}
.nt-aof-card-link:hover::after { transform: translateX(3px); }

@media (max-width: 980px) {
  .nt-aof { padding: 64px 20px 56px; }
  .nt-aof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .nt-aof-grid > .nt-aof-card:nth-child(4) { grid-column: auto; }
  .nt-aof-grid > .nt-aof-card:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .nt-aof-grid { grid-template-columns: 1fr; }
  .nt-aof-grid > .nt-aof-card:nth-child(5) { grid-column: auto; }
  .nt-aof-card { padding: 24px 22px; }
}

/* ============================================================
   Areas of Focus modal styling (.nt-modal)
   ============================================================ */
.modal-overlay .nt-modal {
  background-color: var(--nt-off-white);
  border-radius: 12px;
  padding: 36px 40px 32px;
  max-width: 720px;
  width: 92%;
  font-family: var(--nt-font-body);
  color: var(--nt-charcoal);
}
.nt-modal .close-button-wrapper { margin-bottom: 8px; }
.nt-modal-close {
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  font-size: 26px;
  line-height: 1;
  color: var(--nt-charcoal-soft);
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 150ms ease, color 150ms ease;
}
.nt-modal-close:hover {
  background-color: var(--nt-bone-tint);
  color: var(--nt-charcoal);
}
.nt-modal-eyebrow {
  font-family: var(--nt-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nt-eucalyptus);
  margin: 0 0 8px;
}
.nt-modal-title {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--nt-charcoal);
}
.nt-modal-lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--nt-charcoal-soft);
  margin: 0 0 24px;
}
.nt-modal-h3 {
  font-family: var(--nt-font-heading);
  font-weight: 600;
  font-size: 19px;
  margin: 22px 0 12px;
  color: var(--nt-charcoal);
}
.nt-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-modal-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--nt-charcoal);
  position: relative;
  padding-left: 22px;
}
.nt-modal-list li::before {
  content: "·";
  position: absolute;
  left: 8px;
  top: -2px;
  font-size: 22px;
  color: var(--nt-eucalyptus);
  line-height: 1;
}
.nt-modal p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--nt-charcoal-soft);
  margin: 0 0 14px;
}
.nt-modal-form-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 37, 32, 0.10);
}
.nt-modal-form-wrap .nt-modal-h3 {
  margin-top: 0;
}
.nt-modal-form-wrap .nt-hero-form {
  margin-top: 14px;
}

@media (max-width: 600px) {
  .modal-overlay .nt-modal { padding: 28px 22px 24px; }
  .nt-modal-title { font-size: 30px; }
}
