/* =============================================
   DECODING WORK — styles.css
   Stage 2 | Palette locked Stage 1
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --cream:      #FAF7F2;
  --navy:       #0E1B2C;
  --terra:      #C96F4A;
  --neutral:    #6B6B6B;
  --soft:       #E8DFD3;
  --white:      #FFFFFF;

  --ff-head:    'Fraunces', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --size-xs:    0.75rem;
  --size-sm:    0.875rem;
  --size-base:  1rem;
  --size-md:    1.125rem;
  --size-lg:    1.375rem;
  --size-xl:    1.75rem;
  --size-2xl:   2.25rem;
  --size-3xl:   3rem;
  --size-4xl:   4rem;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;

  --shadow:     0 2px 12px rgba(14,27,44,0.08);
  --shadow-md:  0 6px 24px rgba(14,27,44,0.12);

  --transition: 0.22s ease;

  --max-w:      1120px;
  --gap:        clamp(1.5rem, 4vw, 3rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: min(var(--max-w), 100% - 2 * clamp(1rem, 4vw, 2.5rem));
  margin-inline: auto;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: var(--size-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn-primary:hover {
  background: #b55e3a;
  border-color: #b55e3a;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(14,27,44,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--terra); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: var(--size-sm);
  font-weight: 500;
  color: rgba(250,247,242,0.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  padding: 0.5rem 1.25rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem;
  z-index: 99;
  border-top: 1px solid rgba(250,247,242,0.1);
}
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block;
  padding: 0.75rem 0;
  font-size: var(--size-md);
  font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid rgba(250,247,242,0.08);
}
.nav-drawer .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding-top: calc(68px + clamp(4rem, 10vw, 7rem));
  padding-bottom: clamp(4rem, 10vw, 7rem);
  position: relative;
  overflow: hidden;
}

/* subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,111,74,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,111,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--gap);
}

.hero-eyebrow {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--terra); }

.hero-sub {
  font-size: var(--size-md);
  color: rgba(250,247,242,0.75);
  max-width: 42ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* hero right — decorative stat card cluster */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.stat-card {
  background: rgba(250,247,242,0.05);
  border: 1px solid rgba(250,247,242,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(8px);
  min-width: 220px;
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card:nth-child(2) { align-self: flex-start; margin-left: 2rem; }

.stat-number {
  font-family: var(--ff-head);
  font-size: var(--size-3xl);
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
}
.stat-label {
  font-size: var(--size-sm);
  color: rgba(250,247,242,0.65);
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════
   THREE PILLARS
══════════════════════════════════════ */
.pillars {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-eyebrow {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 30ch;
  margin-inline: auto;
}

.section-sub {
  font-size: var(--size-md);
  color: var(--neutral);
  max-width: 52ch;
  margin-inline: auto;
  margin-top: 0.75rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pillar-card:hover::after { transform: scaleX(1); }

/* Primary pillar emphasis — senior leaders */
.pillar-primary {
  border: 2px solid var(--terra);
  position: relative;
}
.pillar-primary::before {
  content: "Primary service";
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--terra);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--ff-head);
  font-size: var(--size-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.pillar-desc {
  font-size: var(--size-base);
  color: var(--neutral);
  line-height: 1.65;
  flex: 1;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pillar-list li {
  font-size: var(--size-sm);
  color: var(--neutral);
  padding-left: 1.25rem;
  position: relative;
}
.pillar-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: var(--size-xs);
  top: 1px;
}

.pillar-link {
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: gap var(--transition);
}
.pillar-link:hover { gap: 0.75rem; }

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-us {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--navy);
  color: var(--cream);
}

.why-us .section-eyebrow { color: var(--terra); }
.why-us .section-title { color: var(--cream); }
.why-us .section-sub { color: rgba(250,247,242,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.why-card {
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(250,247,242,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover {
  background: rgba(250,247,242,0.07);
  border-color: rgba(201,111,74,0.4);
}

.why-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.why-card-title {
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.why-card-text {
  font-size: var(--size-sm);
  color: rgba(250,247,242,0.65);
  line-height: 1.7;
}

.why-cta-row {
  margin-top: 3rem;
  text-align: center;
}

/* ══════════════════════════════════════
   BLOG TEASER
══════════════════════════════════════ */
.blog-teaser {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.blog-card-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-thumb.thumb-1 { background: linear-gradient(135deg, #0E1B2C 0%, #1a2e45 100%); }
.blog-card-thumb.thumb-2 { background: linear-gradient(135deg, #C96F4A 0%, #e08060 100%); }
.blog-card-thumb.thumb-3 { background: linear-gradient(135deg, #E8DFD3 0%, #d4c8b8 100%); }

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-tag {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}

.blog-card-title {
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.blog-card-excerpt {
  font-size: var(--size-sm);
  color: var(--neutral);
  line-height: 1.65;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--size-xs);
  color: var(--neutral);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--soft);
}
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--neutral); }

.blog-cta-row {
  text-align: center;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(250,247,242,0.65);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--ff-head);
  font-size: var(--size-xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-brand-name span { color: var(--terra); }

.footer-tagline {
  font-size: var(--size-sm);
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,242,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: rgba(201,111,74,0.08);
}

.footer-col-title {
  font-size: var(--size-sm);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: var(--size-sm);
  color: rgba(250,247,242,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,242,0.08);
  font-size: var(--size-xs);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a {
  color: rgba(250,247,242,0.45);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--cream); }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .pillars-grid  { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .nav-links     { display: none; }
  .nav-toggle    { display: flex; }
  .blog-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════
   INNER PAGES — SHARED COMPONENTS
══════════════════════════════════════ */

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding-top: calc(68px + clamp(3.5rem, 8vw, 5.5rem));
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201,111,74,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 700px;
}

.page-hero-eyebrow {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.page-hero-sub {
  font-size: var(--size-md);
  color: rgba(250,247,242,0.75);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Services Grid ── */
.services {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(201,111,74,0.3);
}

.service-card-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.service-card-title {
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--navy);
}

.service-card-desc {
  font-size: var(--size-sm);
  color: var(--neutral);
  line-height: 1.7;
  flex: 1;
}

/* ── Feature Split (text + visual side by side) ── */
.feature-split {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--soft);
}

.feature-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.feature-split-inner.reverse { direction: rtl; }
.feature-split-inner.reverse > * { direction: ltr; }

.feature-split-content { display: flex; flex-direction: column; gap: 1rem; }

.feature-split-title {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.feature-split-text {
  font-size: var(--size-base);
  color: var(--neutral);
  line-height: 1.7;
}

.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.feature-check-list li {
  font-size: var(--size-sm);
  color: var(--navy);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.feature-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
}

.feature-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 300px;
  justify-content: center;
}

.feature-visual-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 3px solid var(--terra);
  padding-left: 1rem;
}
.feature-visual-stat .num {
  font-family: var(--ff-head);
  font-size: var(--size-2xl);
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
}
.feature-visual-stat .lbl {
  font-size: var(--size-sm);
  color: rgba(250,247,242,0.65);
}

/* ── Process Steps ── */
.process {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  margin-top: 0.5rem;
}

/* connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: var(--soft);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--soft);
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .step-num {
  background: var(--terra);
  border-color: var(--terra);
}

.step-title {
  font-family: var(--ff-head);
  font-size: var(--size-base);
  font-weight: 700;
  color: var(--navy);
}

.step-desc {
  font-size: var(--size-sm);
  color: var(--neutral);
  line-height: 1.6;
}

/* ── Testimonial ── */
.testimonial-band {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: var(--navy);
}

.testimonial-card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--ff-head);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-name {
  font-size: var(--size-sm);
  font-weight: 700;
  color: var(--cream);
}

.testimonial-role {
  font-size: var(--size-xs);
  color: rgba(250,247,242,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CTA Band ── */
.cta-band {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--terra);
  color: var(--white);
  text-align: center;
}

.cta-band-title {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-band-sub {
  font-size: var(--size-md);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.btn-white {
  background: var(--white);
  color: var(--terra);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--terra);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ── Tool Pills (automation page) ── */
.tools-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--soft);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.tool-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid rgba(14,27,44,0.1);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tool-pill:hover {
  border-color: var(--terra);
  box-shadow: 0 2px 8px rgba(201,111,74,0.15);
}
.tool-pill .pill-icon { font-size: 1.1rem; }

/* ── FAQ ── */
.faq-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

.faq-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--soft);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--ff-body);
  font-size: var(--size-base);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--terra); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--terra);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.25rem; }

.faq-answer p {
  font-size: var(--size-sm);
  color: var(--neutral);
  line-height: 1.75;
}

/* ── Inner page responsive ── */
@media (max-width: 900px) {
  .services-grid        { grid-template-columns: 1fr; }
  .process-steps        { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .feature-split-inner  { grid-template-columns: 1fr; }
  .feature-split-inner.reverse { direction: ltr; }
}

@media (max-width: 600px) {
  .process-steps        { grid-template-columns: 1fr; }
  .page-hero-actions    { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
  .cta-band .btn        { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════
   BLOG INDEX PAGE
══════════════════════════════════════ */

/* ── Blog page hero ── */
.blog-page-hero {
  background: var(--navy);
  color: var(--cream);
  padding-top: calc(68px + clamp(3.5rem, 8vw, 5.5rem));
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,111,74,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.blog-page-hero-inner { position: relative; }
.blog-page-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.blog-page-hero-sub {
  font-size: var(--size-md);
  color: rgba(250,247,242,0.7);
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Blog index section ── */
.blog-index {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream);
}

/* ── Filter tabs ── */
.blog-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--soft);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--neutral);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.filter-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.filter-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* ── Blog index grid ── */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-index-card {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.blog-index-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.blog-index-card[data-hidden="true"] {
  display: none;
}

.blog-index-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-thumb-careers  { background: linear-gradient(135deg, #0E1B2C 0%, #1a2e45 100%); }
.blog-thumb-automation { background: linear-gradient(135deg, #C96F4A 0%, #e08060 100%); }
.blog-thumb-talent   { background: linear-gradient(135deg, #E8DFD3 0%, #d4c8b8 100%); }

.blog-index-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.blog-index-tag {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}
.blog-index-title {
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.blog-index-excerpt {
  font-size: var(--size-sm);
  color: var(--neutral);
  line-height: 1.65;
  flex: 1;
}
.blog-index-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--size-xs);
  color: var(--neutral);
  padding-top: 0.75rem;
  border-top: 1px solid var(--soft);
}
.blog-index-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--neutral); }

.blog-read-more {
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
  margin-top: auto;
}
.blog-index-card:hover .blog-read-more { gap: 0.75rem; }

/* ── No results ── */
.blog-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
  color: var(--neutral);
  font-size: var(--size-md);
  display: none;
}

@media (max-width: 900px) {
  .blog-index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-index-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   ARTICLE / BLOG POST PAGE
══════════════════════════════════════ */

/* ── Reading progress bar ── */
.reading-progress {
  position: fixed;
  top: 68px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--terra);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ── Article hero ── */
.article-hero {
  background: var(--navy);
  color: var(--cream);
  padding-top: calc(68px + clamp(3rem, 7vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(201,111,74,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.article-hero-inner {
  position: relative;
  max-width: 760px;
}
.article-hero-tag {
  display: inline-block;
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}
.article-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.article-hero-sub {
  font-size: var(--size-md);
  color: rgba(250,247,242,0.72);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 2rem;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: var(--size-sm);
  color: rgba(250,247,242,0.55);
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(250,247,242,0.35); }
.article-meta-author { color: rgba(250,247,242,0.8); font-weight: 600; }

/* ── Article body layout ── */
.article-layout {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream);
}
.article-layout-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* ── Article body prose ── */
.article-body {
  min-width: 0; /* prevent overflow */
}

.article-body h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-body p {
  font-size: var(--size-base);
  color: var(--neutral);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: #b55e3a; }

.article-body ul, .article-body ol {
  margin: 0 0 1.25rem 0;
  padding: 0;
}
.article-body ul li, .article-body ol li {
  font-size: var(--size-base);
  color: var(--neutral);
  line-height: 1.75;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.article-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
  font-size: var(--size-sm);
  top: 2px;
}
.article-body ol {
  counter-reset: art-counter;
}
.article-body ol li::before {
  counter-increment: art-counter;
  content: counter(art-counter) '.';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
  font-size: var(--size-sm);
  top: 2px;
}

/* ── Pull-quote / callout ── */
.article-callout {
  background: var(--soft);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.article-callout p {
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0 !important;
}

/* ── Numbered insight blocks ── */
.insight-block {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.insight-block:hover { box-shadow: var(--shadow); }
.insight-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.insight-content h3 {
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  margin-top: 0;
}
.insight-content p {
  font-size: var(--size-sm);
  color: var(--neutral);
  line-height: 1.7;
  margin-bottom: 0 !important;
}

/* ── Article sidebar ── */
.article-sidebar {
  position: sticky;
  top: calc(68px + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-card-title {
  font-family: var(--ff-head);
  font-size: var(--size-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--soft);
}

/* Table of contents */
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.toc-list a {
  font-size: var(--size-sm);
  color: var(--neutral);
  padding: 0.4rem 0;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  transition: color var(--transition), border-color var(--transition);
  line-height: 1.4;
}
.toc-list a:hover,
.toc-list a.active {
  color: var(--terra);
  border-left-color: var(--terra);
}

/* Share */
.share-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-size: var(--size-sm);
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--soft);
  background: var(--cream);
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
  font-family: var(--ff-body);
}
.share-btn:hover { border-color: var(--terra); color: var(--terra); }

/* Author bio sidebar */
.author-bio {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.author-name { font-weight: 700; color: var(--navy); font-size: var(--size-sm); }
.author-desc { font-size: var(--size-xs); color: var(--neutral); line-height: 1.6; }

/* ── Related posts ── */
.related-posts {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--soft);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.related-card {
  background: var(--white);
  border: 1px solid rgba(14,27,44,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.related-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
}
.related-body { padding: 1.25rem; }
.related-tag {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.related-title {
  font-family: var(--ff-head);
  font-size: var(--size-base);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ── Article responsive ── */
@media (max-width: 900px) {
  .article-layout-inner {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
    order: -1; /* move TOC above article on mobile */
  }
  .related-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */

.contact-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

/* ── Service type selector ── */
.service-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-option {
  position: relative;
}

.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 2px solid var(--soft);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.service-option-label:hover {
  border-color: rgba(201,111,74,0.4);
  box-shadow: var(--shadow);
}

.service-option input:checked + .service-option-label {
  border-color: var(--terra);
  background: rgba(201,111,74,0.05);
  box-shadow: 0 0 0 3px rgba(201,111,74,0.12);
}

.service-option-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.service-option-name {
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.service-option-desc {
  font-size: var(--size-xs);
  color: var(--neutral);
  line-height: 1.4;
}

/* ── Form section legend ── */
.form-legend {
  font-family: var(--ff-head);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  display: block;
}

/* ── Form fields ── */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--navy);
}

.form-label .required {
  color: var(--terra);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--soft);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: var(--size-base);
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(107,107,107,0.5);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(201,111,74,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.form-hint {
  font-size: var(--size-xs);
  color: var(--neutral);
  line-height: 1.5;
}

/* ── Conditional fields ── */
.conditional-field {
  display: none;
}

.conditional-field.visible {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ── Select arrow ── */
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--neutral);
  font-size: 0.75rem;
}

/* ── Checkbox row ── */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--terra);
  cursor: pointer;
}

.form-check-label {
  font-size: var(--size-sm);
  color: var(--neutral);
  line-height: 1.55;
}

.form-check-label a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Submit row ── */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.form-footer-note {
  font-size: var(--size-xs);
  color: var(--neutral);
  line-height: 1.5;
}

/* ── Field error states ── */
.form-error-msg {
  font-size: var(--size-xs);
  color: #c0392b;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: #c0392b;
}

.form-group.has-error .form-error-msg {
  display: block;
}

/* ── Form success state ── */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 3.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius-lg);
}

.form-success.visible {
  display: flex;
}

.form-success-icon {
  font-size: 3rem;
  line-height: 1;
}

.form-success-title {
  font-family: var(--ff-head);
  font-size: var(--size-xl);
  font-weight: 700;
  color: var(--navy);
}

.form-success-text {
  font-size: var(--size-base);
  color: var(--neutral);
  max-width: 40ch;
  line-height: 1.65;
}

/* ── Contact sidebar ── */
.contact-sidebar {
  position: sticky;
  top: calc(68px + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-info-title {
  font-family: var(--ff-head);
  font-size: var(--size-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--soft);
}

/* ── Next steps mini-timeline ── */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.next-step {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.next-step:last-child {
  padding-bottom: 0;
}

.next-step::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--soft);
}

.next-step:last-child::before {
  display: none;
}

.next-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: var(--size-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.next-step-content {
  padding-top: 0.3rem;
}

.next-step-title {
  font-size: var(--size-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.next-step-text {
  font-size: var(--size-xs);
  color: var(--neutral);
  line-height: 1.55;
}

/* ── Contact detail items ── */
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--size-sm);
}

.contact-detail-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--navy);
}

.contact-detail-text a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  font-size: var(--size-sm);
}

.contact-detail-text a:hover {
  color: #b55e3a;
}

.contact-detail-sub {
  font-size: var(--size-xs);
  color: var(--neutral);
  margin-top: 0.1rem;
}

/* ── Contact responsive ── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 600px) {
  .service-selector {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-submit-row .btn {
    width: 100%;
    justify-content: center;
  }
}
