/* =====================================================
   SAPRO CONSULTING — Editorial / Path-for-Growth-style theme
   Warm, photography-led, generous spacing.
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Brand */
  --primary: #C44A1A;          /* SAPRO orange, slightly deepened for editorial feel */
  --primary-bright: #F15A24;   /* original brand orange for accents */
  --primary-soft: #f9e5d8;
  --primary-tint: #fdf2eb;

  /* Ink scale — warm charcoals not cold blacks */
  --ink:     #1A1814;
  --ink-2:   #2E2A24;
  --ink-3:   #54504A;
  --muted:   #88837B;
  --line:    #E2DDD2;
  --line-soft: #EFEAE0;

  /* Background tones — warm cream, NOT white */
  --bg:      #F5F0E6;       /* primary page bg, warm cream */
  --bg-2:    #EDE6D7;       /* slightly deeper variant */
  --bg-3:    #E8DFCC;       /* deeper still */
  --paper:   #FBF8F1;       /* card surfaces */
  --ink-bg:  #1F1B16;       /* deep brown-black for dark sections */

  /* Type families */
  --serif: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1280px;
  --container-narrow: 1040px;
  --container-tight: 880px;
  --pad: clamp(1.25rem, 3vw, 2.5rem);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 8px rgba(26, 24, 20, 0.05);
  --shadow:    0 16px 40px -16px rgba(26, 24, 20, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(26, 24, 20, 0.28);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
::selection { background: var(--primary); color: white; }

.skip-link {
  position: absolute; left: -10000px; top: 0;
  background: var(--ink); color: white;
  padding: 0.75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container--narrow { max-width: var(--container-narrow); }
.container--tight  { max-width: var(--container-tight); }

/* =====================================================
   Eyebrow (small caps, no bar — editorial feel)
   ===================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

/* =====================================================
   Buttons — minimal, square-ish, editorial
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease),
              background 0.3s var(--ease),
              color 0.3s var(--ease),
              border-color 0.3s var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn .btn-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--primary); color: white; }

.btn--accent { background: var(--primary); color: white; }
.btn--accent:hover { background: var(--ink); color: white; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--inverse { background: var(--bg); color: var(--ink); }
.btn--inverse:hover { background: var(--primary); color: white; }

.btn--lg { padding: 1.15rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.88rem; }

/* =====================================================
   Header — minimal, transparent over bg
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 240, 230, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  gap: 1.5rem;
}

.brand img { height: 52px; width: auto; }

.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 1.65rem;
  align-items: center;
}
.primary-nav a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--primary); }
.primary-nav a[aria-current="page"] { color: var(--primary); }

.header-actions { display: flex; gap: 0.6rem; align-items: center; }

.nav-toggle {
  display: none;
  background: var(--ink);
  border: none;
  border-radius: 6px;
  width: 44px; height: 44px;
  position: relative;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--bg);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 1rem var(--pad) 1.5rem;
}
.mobile-nav ul { list-style: none; display: grid; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a[aria-current="page"] { color: var(--primary); }

/* =====================================================
   Hero — editorial, photography-led
   ===================================================== */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary);
}
.hero-lede {
  margin: 0 0 2.25rem;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-3);
  max-width: 50ch;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-3) linear-gradient(135deg, #c4a888 0%, #8a6a4f 100%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional: small photo badge (for "Trusted by" or "X years" call-out below hero photo) */
.hero-photo-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(31, 27, 22, 0.85);
  color: var(--bg);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =====================================================
   Page Hero (interior pages)
   ===================================================== */
.page-hero {
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.page-hero-inner {
  display: grid;
  gap: 1rem;
  max-width: 880px;
}
.breadcrumb {
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--muted); transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }
.breadcrumb-sep { color: var(--primary); }

.page-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.page-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary);
}
.page-hero-lede {
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-3);
  margin: 0.75rem 0 0;
  line-height: 1.55;
}

/* =====================================================
   Trusted-by strip (sector tags or partners)
   ===================================================== */
.trusted-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.trusted-strip-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.trusted-strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2.25rem;
  justify-content: center;
  align-items: center;
}
.trusted-tag {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}
.trusted-tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

/* =====================================================
   Section base
   ===================================================== */
.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
}
.section--tight { padding: clamp(3rem, 5vw, 5rem) 0; }
.section--bg-2 { background: var(--bg-2); }
.section--bg-3 { background: var(--bg-3); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--ink-bg); color: var(--bg); }
.section--dark .eyebrow { color: var(--primary-bright); }

.section-head {
  display: grid;
  gap: 0;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 760px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary);
}
.section-sub {
  margin: 1rem 0 0;
  color: var(--ink-3);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  max-width: 60ch;
  line-height: 1.6;
}
.section--dark .section-title { color: var(--bg); }
.section--dark .section-sub { color: rgba(245, 240, 230, 0.75); }

/* =====================================================
   "What We Do" / Service preview cards (PFG-style image cards)
   ===================================================== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}
.service-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card-photo img { transform: scale(1.05); }

.service-card-num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--bg);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.service-card-body {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}
.service-card-eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.service-card-body h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.service-card-body p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--ink-3);
  line-height: 1.6;
}
.service-card-link {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line-soft);
  margin-top: 1rem;
  padding-top: 1rem;
}
.service-card-link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .service-card-link::after { transform: translateX(4px); }
.service-card:hover .service-card-link { color: var(--primary); }

/* =====================================================
   Service detail blocks (services.html)
   ===================================================== */
.service-detail {
  padding: clamp(3.5rem, 5vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.service-detail-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.service-detail-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--ink);
}
.service-detail-tag {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 38ch;
  line-height: 1.6;
}
.service-detail-pull {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 400;
  border-left: 2px solid var(--primary);
  padding-left: 1rem;
}
.service-detail-list {
  list-style: none;
  display: grid;
  gap: 0;
}
.service-detail-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 2.25rem;
}
.service-detail-list li:last-child { border-bottom: none; }
.service-detail-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 1.55rem;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}
.service-detail-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}
.service-detail-list span {
  display: block;
  font-size: 0.97rem;
  color: var(--ink-3);
  line-height: 1.6;
}

/* Jump nav */
.jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.jumpnav-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 1.5rem;
}
.jumpnav a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0;
  margin-right: 1.75rem;
  color: var(--ink-2);
  border-bottom: 1.5px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.jumpnav a:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* =====================================================
   Editorial split (about-style)
   ===================================================== */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.editorial-split--reverse { direction: rtl; }
.editorial-split--reverse > * { direction: ltr; }

.editorial-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-3) linear-gradient(135deg, #c4a888 0%, #8a6a4f 100%);
}
.editorial-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.editorial-photo--wide { aspect-ratio: 5 / 4; }

.editorial-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.editorial-copy h2 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
}
.editorial-copy p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 56ch;
  line-height: 1.65;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 2.25rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.checklist li::before {
  content: "→";
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.05rem;
}

/* =====================================================
   Big editorial pullquote / philosophy block
   ===================================================== */
.pullquote {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
  max-width: 880px;
  margin: 0 auto;
}
.pullquote-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.pullquote blockquote em {
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
}
.pullquote figcaption {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =====================================================
   Testimonials (PFG-style — large photo + quote + logo)
   ===================================================== */
.testimonial {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}
.testimonial:last-child { border-bottom: none; }
.testimonial--reverse { direction: rtl; }
.testimonial--reverse > * { direction: ltr; }

.testimonial-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-3);
}
.testimonial-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.testimonial-body blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1.5rem;
  font-style: italic;
  letter-spacing: -0.01em;
}
.testimonial-body blockquote::before {
  content: """;
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
  color: var(--primary);
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.testimonial-attr-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  display: block;
}
.testimonial-attr-role {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
}

/* =====================================================
   Why / values feature grid (editorial cards, no boxes)
   ===================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.value-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.value-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.value-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-3);
  line-height: 1.6;
}

/* Why-page editorial rows */
.why-rows { display: grid; }
.why-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.why-row:last-child { border-bottom: none; }
.why-row-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-row-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
  color: var(--ink);
}
.why-row-body {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 60ch;
  line-height: 1.7;
}
.why-row-body strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
}

/* =====================================================
   Team grid (PFG-style — large photo, simple caption)
   ===================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.75rem, 3vw, 2.5rem);
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.team-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-3);
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); }

.team-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.team-role {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0.4rem 0 0;
}
.team-bio {
  margin: 0.85rem 0 0;
  font-size: 0.97rem;
  color: var(--ink-3);
  line-height: 1.6;
}
.team-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.team-creds li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* =====================================================
   Stats strip
   ===================================================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.025em;
  font-feature-settings: "tnum";
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink-3);
  margin-top: 0.6rem;
  display: block;
  line-height: 1.4;
}

/* =====================================================
   CTA section (dark band, editorial)
   ===================================================== */
.cta-section {
  background: var(--ink-bg);
  color: var(--bg);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(196, 74, 26, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(196, 74, 26, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; text-align: center; }
.cta-section .eyebrow { color: var(--primary-bright); }
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 auto 0.75rem;
  color: var(--bg);
  max-width: 18ch;
}
.cta-section h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary-bright);
}
.cta-section .lede {
  font-size: 1.08rem;
  color: rgba(245, 240, 230, 0.72);
  margin: 0 auto 2.25rem;
  max-width: 50ch;
  line-height: 1.55;
}
.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================================================
   Contact page
   ===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-info { display: grid; gap: 0; }
.contact-info-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:first-child { padding-top: 0; }
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.6rem;
}
.contact-info-block p,
.contact-info-block a {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
}
.contact-info-block a { transition: color 0.3s var(--ease); }
.contact-info-block a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact-form-card p.intro {
  margin: 0 0 1.85rem;
  color: var(--ink-3);
  font-size: 0.98rem;
  line-height: 1.55;
}
.contact-form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field input,
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 74, 26, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form button { justify-self: start; margin-top: 0.5rem; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-success {
  background: var(--primary-tint);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.85rem;
  display: none;
}
.form-success.is-visible { display: block; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.form-success p { margin: 0; color: var(--ink-2); }

/* =====================================================
   Audit Checker page
   ===================================================== */
.audit-source {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.15rem 0.55rem 0.55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-3);
}
.audit-source img {
  height: 28px;
  width: auto;
  border-radius: 999px;
  background: white;
}
.audit-source strong {
  color: var(--ink);
  font-weight: 600;
}

.audit-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.audit-stat-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.audit-stat-pill-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.audit-stat-pill-text { display: flex; flex-direction: column; line-height: 1.2; }
.audit-stat-pill-text strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.audit-stat-pill-text span {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.audit-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.audit-card-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.audit-search-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  flex-wrap: wrap;
}
.audit-input-wrap {
  flex: 1;
  min-width: 240px;
  position: relative;
  display: flex;
  align-items: center;
}
.audit-input-icon {
  position: absolute;
  left: 1.1rem;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.3s var(--ease);
  display: flex;
}
#tin {
  width: 100%;
  padding: 1.05rem 1.1rem 1.05rem 2.85rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
}
#tin::placeholder { color: var(--muted); letter-spacing: 0.05em; }
#tin:focus {
  background: var(--paper);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 74, 26, 0.12);
}
.audit-input-wrap:focus-within .audit-input-icon { color: var(--primary); }

.audit-search-btn {
  padding: 0 1.85rem;
  border: none;
  border-radius: 6px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 160px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.audit-search-btn:hover:not(:disabled) {
  background: var(--primary);
  color: white;
}
.audit-search-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.audit-search-btn .btn-arrow { font-weight: 600; }

.audit-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(245, 240, 230, 0.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: audit-spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes audit-spin { to { transform: rotate(360deg); } }

.audit-hint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.55;
}
.audit-hint svg { flex-shrink: 0; margin-top: 0.15rem; }

.audit-load-state {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.audit-load-state .audit-spinner {
  border-color: var(--primary-soft);
  border-top-color: var(--primary);
}

.audit-result {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  padding: 1.85rem;
  border: 1.5px solid transparent;
  background: var(--bg);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.audit-result.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.audit-result-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.audit-result-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.audit-result-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 0.4rem;
}
.audit-result-message {
  color: var(--ink-3);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0;
}
.audit-result-message a {
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px dotted var(--primary);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.audit-result-message a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.audit-result-message strong { color: var(--ink); font-weight: 600; }

.audit-result.is-error { background: #fef3f2; border-color: #fecaca; }
.audit-result.is-error .audit-result-icon { background: #fee2e2; color: #b91c1c; }
.audit-result.is-error .audit-result-title { color: #b91c1c; }

.audit-result.is-selected { background: var(--primary-tint); border-color: var(--primary-soft); }
.audit-result.is-selected .audit-result-icon { background: var(--primary-soft); color: var(--primary); }
.audit-result.is-selected .audit-result-title { color: var(--primary); }

.audit-result.is-clear { background: #ecfdf5; border-color: #a7f3d0; }
.audit-result.is-clear .audit-result-icon { background: #d1fae5; color: #047857; }
.audit-result.is-clear .audit-result-title { color: #047857; }

.audit-detail-grid {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 24, 20, 0.10);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.audit-detail-item .label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.audit-detail-item .value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.audit-detail-item .value.mono {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  font-weight: 400;
}

.audit-result-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 24, 20, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.audit-result-actions .btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.disclaimer-card { display: flex; flex-direction: column; gap: 0.85rem; }
.disclaimer-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
}
.disclaimer-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.disclaimer-card p {
  font-size: 0.97rem;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}

.audit-actions-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* =====================================================
   Footer (warm, editorial — like PFG)
   ===================================================== */
.site-footer {
  background: var(--ink-bg);
  color: rgba(245, 240, 230, 0.72);
  padding-top: clamp(4.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}
.footer-brand img {
  height: 52px;
  margin-bottom: 1.5rem;
}
.footer-brand-tagline {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  max-width: 28ch;
  color: var(--bg);
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245, 240, 230, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-nav h4,
.footer-newsletter h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
  margin: 0 0 1.5rem;
}
.footer-nav ul { list-style: none; display: grid; gap: 0.85rem; }
.footer-nav a {
  font-family: var(--sans);
  font-size: 0.97rem;
  color: rgba(245, 240, 230, 0.82);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--primary-bright); }

.footer-newsletter p {
  font-size: 0.97rem;
  color: rgba(245, 240, 230, 0.72);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.newsletter-form {
  position: relative;
  display: flex;
  align-items: stretch;
  background: rgba(245, 240, 230, 0.08);
  border-radius: 6px;
  padding: 4px;
  border: 1px solid rgba(245, 240, 230, 0.12);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.7rem 1rem;
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(245, 240, 230, 0.4); }
.newsletter-form button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.65rem 1.25rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.newsletter-form button:hover { background: var(--bg); color: var(--primary); }

.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact a {
  font-family: var(--sans);
  font-size: 0.93rem;
  color: rgba(245, 240, 230, 0.72);
  transition: color 0.3s var(--ease);
}
.footer-contact a:hover { color: var(--primary-bright); }

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  font-size: 0.82rem;
  color: rgba(245, 240, 230, 0.45);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { transition: color 0.3s var(--ease); }
.footer-bottom-links a:hover { color: var(--primary-bright); }

/* =====================================================
   Reveal animations
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .editorial-split { grid-template-columns: 1fr; gap: 3rem; }
  .editorial-photo { max-width: 540px; margin: 0 auto; }
  .testimonial { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-photo { max-width: 360px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
}

/* Tighter desktop: hide secondary CTA so header doesn't crowd */
@media (max-width: 1180px) {
  .header-actions .btn--ghost.btn--sm { display: none; }
}

@media (max-width: 880px) {
  .primary-nav,
  .header-actions { display: none; }
  .nav-toggle { display: block; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-row { grid-template-columns: 70px 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 0.5rem; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .field--row { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); padding: 1rem 0; }
  .stat-item:last-child { border-bottom: none; }
  .audit-search-row { flex-direction: column; }
  .audit-search-btn { width: 100%; }
  .audit-result-actions { flex-direction: column; }
  .audit-result-actions .btn { width: 100%; }
  .trusted-strip-tags { gap: 0.6rem 1.25rem; }
  .trusted-tag-dot { display: none; }
}

/* Loading state for audit search button */
.audit-search-btn.is-loading .btn-arrow { display: none; }
.audit-search-btn.is-loading::after {
  content: "";
  width: 14px; height: 14px;
  border: 2px solid rgba(245, 240, 230, 0.35);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: audit-spin 0.7s linear infinite;
  display: inline-block;
}

/* External-link arrow next to nav items pointing offsite */
.primary-nav a .ext,
.mobile-nav a .ext {
  display: inline-block;
  font-size: 0.78em;
  margin-left: 0.2em;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
  vertical-align: 0.05em;
}
.primary-nav a:hover .ext,
.mobile-nav a:hover .ext {
  transform: translate(2px, -2px);
}
