/* ==========================================================================
   Praedyn — Cybersecurity & Compliance Advisors
   Stylesheet
   ========================================================================== */

:root {
  /* Brand palette — sourced from the Praedyn logo identity */
  /* Brand palette — Praedyn identity */
  --navy: #0A1929;
  --navy-deep: #050D17;
  --navy-soft: #142133;
  --stone: #F2F2F0;
  --charcoal: #1C1C1C;
  --slate: #5A6B82;
  --crimson: #8B1A1A;
  --crimson-hot: #A52525;
  --bronze: #B8860B;
  --bronze-soft: #C9971F;

  --bg: #F2F2F0;
  --bg-alt: #E8E8E5;
  --surface: #FFFFFF;

  --text: #0A1929;
  --text-muted: #4F5F75;
  --text-light: #F2F2F0;
  --text-light-muted: rgba(242, 242, 240, 0.66);

  --border: #DCDFE5;
  --border-soft: #E8EAEE;
  --border-dark: rgba(255, 255, 255, 0.12);

  --font-sans: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --shadow-card: 0 1px 2px rgba(10, 25, 41, 0.04), 0 4px 24px rgba(10, 25, 41, 0.05);
  --shadow-card-hover: 0 8px 30px rgba(10, 25, 41, 0.10), 0 2px 6px rgba(10, 25, 41, 0.06);

  --transition: 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-slow: 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(250, 250, 250, 0.92);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-mark {
  height: 26px;
  width: auto;
}
.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  line-height: 1;
  padding-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--crimson); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition);
}

@media (max-width: 960px) {
  .nav .nav-links, .nav .nav-cta { display: none; }
  .nav .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--surface);
}

.btn-ghost-light {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost-light:hover {
  border-color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
}

.btn-on-dark {
  background: var(--text-light);
  color: var(--navy);
  border-color: var(--text-light);
}
.btn-on-dark:hover {
  background: var(--crimson);
  color: var(--text-light);
  border-color: var(--crimson);
  transform: translateY(-1px);
}

.btn-large {
  padding: 18px 32px;
  font-size: 15px;
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.nav-cta {
  padding: 10px 18px;
  font-size: 13px;
}

/* ==========================================================================
   SHARED — Eyebrows, section heads
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.eyebrow-light { color: var(--text-light); }

.dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--crimson);
}

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 20px;
  color: var(--text);
}

.section-title-light { color: var(--text-light); }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 18px;
  max-width: 620px;
  line-height: 1.6;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 120px;
  overflow: hidden;
  background: var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 25, 41, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 25, 41, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero { padding-top: 130px; padding-bottom: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}

.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 800ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 100ms; }
.hero-content > *:nth-child(2) { animation-delay: 220ms; }
.hero-content > *:nth-child(3) { animation-delay: 340ms; }
.hero-content > *:nth-child(4) { animation-delay: 460ms; }
.hero-content > *:nth-child(5) { animation-delay: 580ms; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-top: 24px;
  color: var(--text);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 26px;
  max-width: 580px;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.hero-meta-item strong {
  color: var(--text);
  font-weight: 500;
}

.hero-meta-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

.hero-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fade 1200ms cubic-bezier(0.22, 0.61, 0.36, 1) 400ms forwards;
}

.hero-mark img {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(10, 25, 41, 0.08));
}

@keyframes fade { to { opacity: 1; } }

@media (max-width: 960px) {
  .hero-mark { display: none; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  padding: 40px 32px 56px;
  position: relative;
  transition: background var(--transition), transform var(--transition);
  display: block;
  color: inherit;
  text-decoration: none;
}

.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 2px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-slow);
}

.card:hover { background: #FCFCFB; }
.card:hover::before { transform: scaleX(1); }

.card-link { cursor: pointer; }

.card-link:hover .card-num { color: var(--crimson); }
.card-link:hover .card-arrow { opacity: 1; transform: translateX(2px); }
.card-link:hover .card-title { color: var(--navy); }

.card-arrow {
  position: absolute;
  right: 32px;
  bottom: 28px;
  font-size: 18px;
  color: var(--slate);
  opacity: 0.35;
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
  line-height: 1;
}

.card-link:hover .card-arrow {
  opacity: 1;
  color: var(--crimson);
}

.card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 28px;
  transition: color var(--transition);
}

.card-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
}

.card-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================================
   APPROACH
   ========================================================================== */

.approach {
  padding: 120px 0;
  background: var(--navy);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.approach .container { position: relative; }

.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

@media (max-width: 960px) { .phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .phases { grid-template-columns: 1fr; } }

.phase {
  padding: 36px 28px 36px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 28px;
  position: relative;
}

.phase::before {
  content: '';
  position: absolute;
  left: -1px; top: 0;
  width: 1px;
  height: 36px;
  background: var(--crimson);
}

.phase-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 250, 0.55);
  margin-bottom: 20px;
}

.phase-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text-light);
}

.phase-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-light-muted);
}

/* ==========================================================================
   WHY PRAEDYN
   ========================================================================== */

.why {
  padding: 120px 0;
  background: var(--bg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 24px;
}

@media (max-width: 960px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } }

.stat {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

@media (max-width: 960px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

.stat-num {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
}

.stat-plus {
  font-size: 0.65em;
  color: var(--crimson);
  margin-left: 4px;
  font-weight: 600;
}

.stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.trust-row {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 8px;
}

.trust-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
  padding: 120px 0;
  background: var(--navy-deep);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 800px;
  text-align: left;
}

.cta-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 24px;
  color: var(--text-light);
}

.cta-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-light-muted);
  margin-top: 24px;
  max-width: 600px;
}

.cta-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--navy-deep);
  color: var(--text-light-muted);
  padding: 48px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 320px; }
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-mark {
  height: 26px;
  width: auto;
}
.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  line-height: 1;
  padding-top: 2px;
}
.footer-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-light-muted);
}

.footer-meta { text-align: right; }
.footer-line {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-light-muted);
}

@media (max-width: 640px) {
  .footer-meta { text-align: left; }
}

/* ==========================================================================
   SCROLL REVEALS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   SERVICE DETAIL PAGES
   ========================================================================== */

.service-main {
  padding-top: 120px;
  padding-bottom: 0;
}

.service-hero {
  background: var(--bg);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-soft);
}

.service-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

.service-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-meta .dash { background: var(--crimson); width: 28px; height: 2px; display: inline-block; }

.service-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}

.service-lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 720px;
}

.service-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 32px 60px;
}

.service-section { margin-bottom: 64px; }

.service-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
}

.service-section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-prose {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
}

.service-prose p { margin-bottom: 16px; }

.service-prose strong { color: var(--text); font-weight: 600; }

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

@media (max-width: 640px) { .deliverables-list { grid-template-columns: 1fr; } }

.deliverables-list li {
  background: var(--surface);
  padding: 22px 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  position: relative;
  padding-left: 50px;
}

.deliverables-list li::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 30px;
  width: 14px;
  height: 1.5px;
  background: var(--crimson);
}

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

@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  padding: 24px;
  border-left: 1px solid var(--border);
  padding-left: 24px;
  position: relative;
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--slate);
  margin-bottom: 10px;
}

.process-step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.process-step-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.fit-list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 12px;
}

.fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1.5px;
  background: var(--crimson);
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 24px 0;
}

@media (max-width: 640px) { .spec-row { grid-template-columns: 1fr; gap: 16px; } }

.spec-row > div { padding: 0; }

.spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}

.spec-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.related-services {
  background: var(--bg-alt);
  padding: 64px 0;
}

.related-services-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.related-services h2 {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

@media (max-width: 960px) { .related-cards { grid-template-columns: 1fr; } }

.service-cta-band {
  background: var(--navy);
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.service-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.service-cta-text { max-width: 560px; }

.service-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 12px;
}

.service-cta-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-light);
  line-height: 1.2;
}

/* ==========================================================================
   GUIDE PAGES — extended long-form prose styling
   ========================================================================== */

.guide-prose { max-width: 720px; }

.guide-prose h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.guide-prose h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.guide-prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.guide-prose strong { color: var(--text); font-weight: 600; }

.guide-prose ul,
.guide-prose ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.guide-prose li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.guide-prose li strong { color: var(--text); }

.guide-prose blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  background: var(--bg-alt);
  border-left: 3px solid var(--crimson);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.guide-prose blockquote p:last-child { margin-bottom: 0; }

.guide-prose a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.guide-prose a:hover { color: var(--crimson-hot); }

.guide-prose code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--text);
}

.guide-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 28px 0 40px;
}

.guide-meta-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.guide-meta-item strong { color: var(--text); font-weight: 500; }

.guide-meta-divider { width: 1px; height: 12px; background: var(--border); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 820px; margin: 0 auto; }

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

.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-question {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  padding: 22px 0 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  letter-spacing: -0.005em;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 22px;
  font-size: 24px;
  font-weight: 300;
  color: var(--slate);
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--crimson);
}

.faq-question:hover { color: var(--crimson); }

.faq-answer {
  padding: 0 40px 28px 0;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.faq-answer strong { color: var(--text); font-weight: 600; }

.faq-answer a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   BRAND IDENTITY — motto, statement, decorative elements
   ========================================================================== */

.brand-statement {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--slate);
  text-transform: uppercase;
  margin: 28px 0 36px;
  position: relative;
  padding-left: 0;
}

.brand-statement::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--crimson);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 3px;
}

.footer-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bronze);
  margin-top: 4px;
}

/* Cinzel serif treatment for select hero h1 elements on key pages */
.service-title-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
}
