@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,600&family=Inter+Tight:wght@400;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #1A1008;
  --accent:         #3D2B1F;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --muted:          #6B6660;
  --border:         rgba(26, 16, 8, 0.14);
  --border-strong:  rgba(26, 16, 8, 0.28);
  --primary-10:     rgba(26, 16, 8, 0.08);
  --primary-20:     rgba(26, 16, 8, 0.18);
  --radius:         8px;
  --radius-pill:    999px;
  --max-w:          1240px;
  --wide-w:         1400px;
  --section-py:     clamp(72px, 9vh, 120px);
  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;
}

/* ============================================================
   RESET + UNIVERSAL IMAGE CAP
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Anchors inside headings render as the heading */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms;
}
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.wide-container {
  width: 100%;
  max-width: var(--wide-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ============================================================
   EYEBROW — square-bullet mono-uppercase label
   ============================================================ */
.eyebrow,
.credentials-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow::before,
.credentials-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: clamp(32px, 4vh, 52px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, color 180ms, border-color 180ms, transform 150ms;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-nav {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--canvas);
  border: 2px solid var(--primary);
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, border-color 180ms;
}
.btn-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--canvas);
  text-decoration: none;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--primary);
  color: var(--canvas);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 9px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 900;
}

.util-bar a { color: var(--canvas); }
.util-bar a:hover { color: rgba(250,246,238,0.75); text-decoration: none; }

.util-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.8;
}

.util-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ============================================================
   NAV
   ============================================================ */
nav#nav {
  position: sticky;
  top: 38px;
  z-index: 800;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; color: inherit; }

.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

ul#navLinks.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

#navLinks a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}

#navLinks a:hover {
  background: var(--primary-10);
  color: var(--primary);
  text-decoration: none;
}

#navToggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  display: flex;
  align-items: center;
}

#navToggle svg { width: 24px; height: 24px; }

/* Mobile nav open state */
#navLinks.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(20px, 5vw, 48px) 24px;
  gap: 2px;
  z-index: 799;
  align-items: flex-start;
}

#navLinks.open a {
  width: 100%;
  padding: 12px 16px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--canvas);
  padding-top: clamp(60px, 8vh, 96px);
  padding-bottom: clamp(60px, 8vh, 96px);
  overflow: hidden;
}

.hero-hairline {
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 48px);
  width: 3px;
  height: 100%;
  background: var(--primary);
  z-index: 3;
}

.hero-supergraphic {
  position: absolute;
  top: -0.08em;
  right: -0.04em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(180px, 28vw, 420px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-strong);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.35;
  white-space: nowrap;
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(32px, 6vw, 72px);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 450;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  background: transparent;
}

/* ============================================================
   TRUST STRIP (marquee)
   ============================================================ */
.trust-strip {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  max-height: 80px !important;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}

.trust-strip:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 14px) !important;
  line-height: 1.2 !important;
  color: var(--muted);
  flex-shrink: 0;
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
}

.marquee-item-accent {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--canvas);
}

/* ============================================================
   SECTION INNER WRAPPER
   ============================================================ */
.section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--canvas);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  text-decoration: none;
  color: var(--ink);
}

.service-card img,
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* img!size inside service-card needs its height capped */
.service-card > img {
  max-height: 180px !important;
  height: 180px;
  width: 100%;
}

.service-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  margin-top: 8px;
  transition: transform 200ms;
}
.service-card:hover .service-card-arrow { transform: translateX(4px); }
.service-card-arrow svg { width: 18px; height: 18px; }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--canvas);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.about-grid > div { display: block; }

.about-grid img {
  width: 100%;
  height: clamp(300px, 45vw, 520px);
  object-fit: cover;
  border-radius: 12px;
}

.about-photo {
  width: 100%;
  height: clamp(300px, 45vw, 520px);
  object-fit: cover;
  border-radius: 12px;
}

.about-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.about-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
}

.about-hairline {
  height: 2px;
  background: var(--primary);
  width: 56px;
  border-radius: 2px;
  margin-top: 4px;
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
#credentials {
  background: var(--primary);
}

.credentials-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.credentials-eyebrow {
  color: rgba(250,246,238,0.55);
}
.credentials-eyebrow::before {
  background: rgba(250,246,238,0.55);
}

.credentials-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.credential-badge {
  background: rgba(250,246,238,0.06);
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(250,246,238,0.1);
}

.credential-badge-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.5);
}

.credential-badge-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--canvas);
}

.credential-badge-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(250,246,238,0.6);
  line-height: 1.4;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
#service-areas {
  background: var(--canvas);
}

.areas-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.area-pill {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--ink);
  background: var(--surface);
}

.area-pill-featured {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
  background: var(--canvas);
}

.areas-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--canvas);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: start;
}

.contact-grid > div { display: block; }

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-field,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 450;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
  outline: none;
  line-height: 1.5;
}

.contact-field:focus,
input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,16,8,0.08);
}

.textarea,
textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-submit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--canvas);
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 32px;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, transform 150ms;
  align-self: flex-start;
}

.contact-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Contact info column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-row-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}

.contact-info-row-value {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.contact-info-row-value a { color: var(--primary); font-weight: 500; }
.contact-info-row-value a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary);
  color: var(--canvas);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-top: clamp(56px, 7vh, 80px);
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,246,238,0.12);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--canvas);
  line-height: 1;
}

.footer-brand-tag {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250,246,238,0.55);
  max-width: 280px;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.45);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,246,238,0.75);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover { color: var(--canvas); text-decoration: none; }

.footer-col li > span {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  line-height: 1.5;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(250,246,238,0.4);
}

/* ============================================================
   PROCESS, STATS, FAQ, REVIEWS (global patterns required)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}

.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

.review-card {
  padding: 28px;
  border-radius: 12px;
  background: rgba(0,0,0,0.02);
}

.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

details.faq {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.96); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }
.stagger > *:nth-child(7) { transition-delay: 480ms; }
.stagger > *:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: background 180ms, transform 150ms;
}
.mobile-call-pill:hover { background: var(--accent); text-decoration: none; color: var(--canvas); transform: translateY(-1px); }
.mobile-call-pill svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (min-width: 640px) {
  .credentials-band {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (min-width: 900px) {
  ul#navLinks.nav-links { display: flex; }
  #navToggle { display: none; }

  .mobile-call-pill { display: none; }

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

  .about-grid {
    grid-template-columns: 5fr 4fr;
    align-items: center;
  }

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

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

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (min-width: 1200px) {
  .hero-inner {
    padding-inline: clamp(48px, 6vw, 80px);
  }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.fade-up { grid-column: 1 / -1; }
.contact-info-row-label { grid-column: 1 / -1; }
.contact-info-row-value { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
