/* ========================================================================== 
   NURO GLOW WHOLESALE — APPROVED WARM-GLOW VISUAL SYSTEM
   ========================================================================== */
:root {
  --navy: #a03c60;
  --navy-deep: #6d2340;
  --navy-soft: #b3547a;
  --page: #fdf9f7;
  --surface: #ffffff;
  --surface-2: #faf1ee;
  --ink: #241a1e;
  --muted-ink: #6b5a60;
  --faint-ink: #9c8b91;
  --border: #ecdfda;
  --border-soft: #f5ebe7;
  --gold: #d1a13a;
  --error: #a12622;
  --success: #235c3b;
  --shadow: 0 18px 44px rgba(112, 35, 64, 0.1);
  --shadow-sm: 0 6px 18px rgba(112, 35, 64, 0.06);
  --radius: 14px;
  --radius-small: 10px;
  --container: 1180px;
  --gutter: 28px;
  --section-space: 88px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
}

/* ========================================================================== 
   RESET, ACCESSIBILITY, AND TYPE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--navy-deep);
}

/* Keep phone numbers and email addresses intact at every viewport width. */
a[href^="tel:"],
a[href^="mailto:"] {
  white-space: nowrap;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  min-height: 44px;
  padding: 10px 16px;
  background: var(--surface);
  border: 2px solid var(--navy);
  border-radius: var(--radius-small);
  color: var(--navy-deep);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  max-width: 17ch;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.7vw, 4.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

p,
li,
dd {
  color: var(--muted-ink);
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

/* Approved mockup kicker: a real non-heading label with a gold hairline. */
.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  flex: 0 0 26px;
  background: var(--gold);
  border-radius: 2px;
  content: "";
}

.eyebrow.on-dark {
  color: #f7e0e9;
}

.eyebrow.on-dark::before {
  background: var(--gold);
}

/* ========================================================================== 
   LAYOUT
   ========================================================================== */
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--surface {
  background: var(--surface-2);
  border-block: 1px solid var(--border);
}

.section--compact {
  padding-block: 72px 84px;
}

.prose {
  max-width: 68ch;
}

.prose > * + * {
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: start;
}

.split--wide-copy {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.stack > * + * {
  margin-top: 24px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

/* ========================================================================== 
   STICKY HEADER AND NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(253, 249, 247, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(1.4) blur(12px);
}

.header-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  margin-top: 5px;
  color: var(--muted-ink);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.wordmark:hover {
  color: var(--navy);
}

.primary-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(10px, 1.35vw, 22px);
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding: 10px 2px;
  align-items: center;
  color: var(--muted-ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:not(.button)::after {
  position: absolute;
  right: 2px;
  bottom: 6px;
  left: 2px;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin-block: 5px;
  background: var(--navy-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================================================== 
   BUTTONS
   ========================================================================== */
.button {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: var(--radius-small);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--primary {
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(112, 35, 64, 0.22);
  color: #ffffff;
}

.button--primary:hover {
  border-color: var(--navy-deep);
  background: var(--navy-deep);
  box-shadow: 0 12px 26px rgba(112, 35, 64, 0.3);
  color: #ffffff;
}

.button--secondary {
  background: transparent;
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--navy-deep);
  background: var(--surface-2);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

/* ========================================================================== 
   HOMEPAGE HERO AND TRUST STRIP
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 96px 104px;
  background:
    radial-gradient(60% 90% at 82% 15%, rgba(209, 161, 58, 0.16), transparent 60%),
    radial-gradient(50% 70% at 10% 100%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: #fbeef2;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 18%, var(--gold) 48%, transparent 82%);
  content: "";
  opacity: 0.85;
}

.hero-media {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 850px;
}

.hero .eyebrow,
.page-intro .eyebrow,
.page-banner .eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: clamp(2.75rem, 6.2vw, 4.9rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy > p {
  max-width: 640px;
  margin-bottom: 34px;
  color: #f1d6df;
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.58;
}

.hero .button--primary {
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  color: var(--navy);
}

.hero .button--primary:hover {
  background: #faf1ee;
  color: var(--navy-deep);
}

.hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.hero .button--secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.trust-strip {
  background: var(--navy-deep);
  color: #eecdd8;
}

.trust-strip .container {
  display: flex;
  min-height: 54px;
  padding-block: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 40px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #eecdd8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-strip span::before {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

/* ========================================================================== 
   COMPACT INTERIOR PAGE HEADERS
   ========================================================================== */
.page-intro,
.page-banner {
  position: relative;
  overflow: hidden;
  padding-block: 68px 72px;
  background:
    radial-gradient(45% 120% at 100% 0%, rgba(112, 35, 64, 0.055), transparent 68%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-intro::after,
.page-banner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0 12%, transparent 12%);
  content: "";
}

.banner-media {
  display: none;
}

.page-intro h1,
.page-banner h1 {
  max-width: 20ch;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.8vw, 3.65rem);
  letter-spacing: -0.045em;
}

.page-intro .container > p:last-child,
.page-banner .container > p:last-child {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 1.08rem;
}

/* ========================================================================== 
   CARDS, LISTS, AND PROCESS
   ========================================================================== */
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link:hover {
  color: inherit;
}

.card {
  height: 100%;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 220ms ease, transform 180ms ease;
}

.card-link:hover .card,
.card:hover {
  border-color: #e6d5cf;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  padding: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--navy);
}

.card p {
  margin-bottom: 0;
  font-size: 0.91rem;
  line-height: 1.62;
}

.service-list,
.check-list,
.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(112, 35, 64, 0.06);
  content: "";
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 54px 14px 0 0;
  counter-increment: steps;
}

.step-card::before {
  position: absolute;
  top: -10px;
  left: 0;
  color: var(--navy);
  content: counter(steps, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.2;
}

.step-card::after {
  position: absolute;
  top: 40px;
  right: 14px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0 38%, var(--border) 38% 100%);
  border-radius: 3px;
  content: "";
}

.step-card p {
  font-size: 0.91rem;
  line-height: 1.62;
}

.process-list {
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 0 25px 56px;
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  top: -0.25em;
  left: 0;
  color: var(--navy);
  content: counter(process, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.48;
}

.timeline {
  position: relative;
  max-width: 840px;
  margin: 0;
  padding: 0;
  counter-reset: timeline;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 24px;
  width: 2px;
  background: var(--border);
  content: "";
}

.timeline-item {
  position: relative;
  padding: 0 0 56px 82px;
  counter-increment: timeline;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  content: counter(timeline, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.timeline-item p {
  max-width: 68ch;
}

/* ========================================================================== 
   FEATURE ROWS AND MEDIA
   ========================================================================== */
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(40px, 7vw, 84px);
  padding-block: 68px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.feature-row:first-child {
  padding-top: 0;
}

.feature-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-row:nth-child(even) .feature-copy {
  order: 2;
}

.feature-row:nth-child(even) .img-slot {
  order: 1;
}

.feature-row--text {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.feature-row ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.feature-row li + li {
  margin-top: 8px;
}

.img-slot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 0;
  aspect-ratio: 3 / 2;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.img-slot[data-slot="hero"] {
  aspect-ratio: 16 / 9;
}

.img-slot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  color: transparent;
  font-size: 0;
  object-fit: cover;
}

.img-slot::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--surface-2);
  color: var(--muted-ink);
  content: attr(data-slot);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
}

.img-slot.is-missing::after {
  opacity: 1;
}

/* ========================================================================== 
   ROUNDED CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--page);
}

.cta-band .container {
  display: flex;
  min-height: 250px;
  padding: clamp(38px, 5vw, 60px);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background:
    radial-gradient(55% 140% at 88% 0%, rgba(209, 161, 58, 0.14), transparent 62%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band h2 {
  max-width: 580px;
  margin-bottom: 14px;
}

.cta-band p {
  max-width: 560px;
  color: #f1d6df;
  font-size: 1.04rem;
}

.cta-band .button {
  flex: 0 0 auto;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  color: var(--navy);
}

.cta-band .button:hover {
  background: #faf1ee;
  color: var(--navy-deep);
}

/* ========================================================================== 
   FORMS AND INFORMATION COMPONENTS
   ========================================================================== */
.form-shell {
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  background: var(--surface);
  border: 1px solid #cbb9b3;
  border-radius: var(--radius-small);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(112, 35, 64, 0.12);
  outline: none;
}

.field [aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  min-height: 1.35em;
  margin: 6px 0 0;
  color: var(--error);
  font-size: 0.82rem;
  line-height: 1.35;
}

.form-captcha {
  max-width: 100%;
  margin-top: 26px;
  overflow-x: auto;
}

.form-actions {
  margin-top: 26px;
}

.form-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.payment-marks {
  display: flex;
  margin: 18px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.payment-marks img {
  width: auto;
  height: 34px;
  border-radius: 4px;
}

.note-box {
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
}

.note-box p {
  margin: 0;
  font-size: 0.9rem;
}

.callout {
  padding: 22px 24px;
  background: var(--surface-2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.callout p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.business-info {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
  max-width: 780px;
  margin: 0;
  border-top: 1px solid var(--border);
}

.business-info dt,
.business-info dd {
  margin: 0;
  padding-block: 15px;
  border-bottom: 1px solid var(--border);
}

.business-info dt {
  color: var(--ink);
  font-weight: 800;
}

.contact-details {
  margin: 0;
}

.contact-details > div + div {
  margin-top: 22px;
}

.contact-details dt {
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 800;
}

.contact-details dd {
  margin: 0;
}

/* ========================================================================== 
   POLICY PAGES
   ========================================================================== */
.policy {
  max-width: 820px;
}

.policy > section + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.policy h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.12;
}

.policy .eyebrow {
  margin-bottom: 12px;
  font-size: 0.66rem !important;
}

.policy h3 {
  margin-top: 30px;
}

.policy ul,
.policy ol {
  padding-left: 22px;
}

.policy li + li {
  margin-top: 10px;
}

.effective-date {
  margin-top: -10px;
  font-size: 0.92rem;
}

/* ========================================================================== 
   DARK FOUR-COLUMN FOOTER
   ========================================================================== */
.site-footer {
  margin-top: 20px;
  background: var(--navy-deep);
  color: #e7bccb;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(140px, 1fr) minmax(190px, 1fr) minmax(210px, 1.2fr);
  gap: 40px;
  padding-block: 64px 48px;
}

.wordmark--footer {
  margin-bottom: 18px;
  color: #ffffff;
}

.wordmark--footer span {
  color: #ddaabd;
}

.wordmark--footer:hover {
  color: #ffffff;
}

.footer-company > p {
  max-width: 310px;
  color: #dfaec0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-heading {
  margin-bottom: 13px;
  color: #d69fb4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: #eecdd8;
  font-size: 0.88rem;
  line-height: 1.35;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #eecdd8;
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  padding-block: 22px 30px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #d69fb4;
  font-size: 0.79rem;
}

/* ========================================================================== 
   UTILITIES
   ========================================================================== */
.ph {
  color: var(--muted-ink);
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.muted {
  color: var(--muted-ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================================================== 
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .js .header-inner {
    flex-wrap: nowrap;
  }

  .js .nav-toggle {
    display: block;
  }

  .js .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .js .primary-nav.is-open {
    display: block;
  }

  .primary-nav {
    width: 100%;
  }

  .nav-list {
    width: min(100% - (var(--gutter) * 2), var(--container));
    margin-inline: auto;
    padding-block: 18px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }

  .nav-link {
    width: 100%;
    min-height: 44px;
    padding: 12px 0;
  }

  .nav-link.button {
    margin-top: 8px;
  }

  .grid-4,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 22px;
    --section-space: 66px;
  }

  body {
    font-size: 16px;
  }

  .split,
  .split--wide-copy,
  .feature-row,
  .feature-row--text,
  .grid-2,
  .grid-3,
  .grid-4,
  .steps-grid,
  .check-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-copy,
  .feature-row:nth-child(even) .img-slot {
    order: initial;
  }

  .feature-row {
    gap: 30px;
    padding-block: 52px;
  }

  .field--full {
    grid-column: auto;
  }

  .hero {
    padding-block: 72px 78px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.25rem);
  }

  .page-intro,
  .page-banner {
    padding-block: 54px 58px;
  }

  .trust-strip .container {
    justify-content: flex-start;
    gap: 6px 24px;
  }

  .cta-band .container {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .business-info {
    grid-template-columns: 1fr;
  }

  .business-info dt {
    padding-bottom: 3px;
    border-bottom: 0;
  }

  .business-info dd {
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 18px;
  }

  .wordmark {
    font-size: 0.92rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero {
    padding-block: 62px 68px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.55rem);
  }

  .trust-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 16px;
  }

  .timeline-item {
    padding-left: 68px;
  }

  .cta-band .container {
    padding: 32px 24px;
    border-radius: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
