/* =========================================================
   ElevenTwo — Design tokens
   ========================================================= */
:root {
  --bg:           #F7F5F0;   /* off-white canvas */
  --surface:     #FFFFFF;   /* cards */
  --surface-alt: #FCFBF7;   /* alternate section bg */
  --ink:         #14140F;   /* near-black text */
  --ink-soft:    #3A3A33;   /* secondary text */
  --muted:       #7A7770;   /* tertiary text */
  --line:        #E6E3DB;   /* hairline borders */
  --line-soft:   #EFEDE6;
  --accent:      #14140F;   /* monochrome accent (= ink) */
  --accent-warm: #B96B3C;   /* single warm hint, used very sparingly */

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(20,20,15,.04), 0 1px 1px rgba(20,20,15,.03);
  --shadow:    0 1px 2px rgba(20,20,15,.04), 0 8px 24px -8px rgba(20,20,15,.08);
  --shadow-lg: 0 2px 4px rgba(20,20,15,.05), 0 24px 48px -16px rgba(20,20,15,.12);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;

  --max: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --t: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--ink); color: var(--bg); }

/* =========================================================
   Layout primitives
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
  border-top: 1px solid var(--line-soft);
}

.section-alt {
  background: var(--surface-alt);
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}

.section-head h2,
.about-title,
.contact-inner h2,
.why-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section-sub,
.about-sub,
.contact-sub {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .25s var(--t), background .25s var(--t), color .25s var(--t), box-shadow .25s var(--t), border-color .25s var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--ink);
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--t), background .25s var(--t);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand-name {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  transition: color .2s var(--t);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--t);
}
.nav-links a:hover::after { transform: scaleX(1); }

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

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s var(--t), opacity .2s var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px var(--gutter) 28px;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 17px;
}
.mobile-menu .btn { align-self: flex-start; }
/* explicit hidden support — beats display:flex below */
.mobile-menu[hidden] { display: none !important; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(72px, 10vw, 120px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Grain texture overlay — adds tactile depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Ambient gradient orbs — slow ambient drift */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero-orb-warm {
  top: -200px;
  right: -160px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(185, 107, 60, .22), rgba(185, 107, 60, 0) 65%);
  animation: drift-warm 26s ease-in-out infinite;
}
.hero-orb-cool {
  bottom: -260px;
  left: -180px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(20, 20, 15, .09), rgba(20, 20, 15, 0) 65%);
  animation: drift-cool 34s ease-in-out infinite;
}

@keyframes drift-warm {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(-60px, 40px, 0) scale(1.08); }
  66%      { transform: translate3d(30px, 80px, 0) scale(.96); }
}
@keyframes drift-cool {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  40%      { transform: translate3d(80px, -50px, 0) scale(1.1); }
  75%      { transform: translate3d(-40px, -30px, 0) scale(.94); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}


.hero-title {
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.hero-trust {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 36px;
  font-size: 14px;
  color: var(--ink-soft);
}
.trust-list li {
  position: relative;
  font-weight: 500;
}
.trust-list li + li::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--line);
  transform: translateY(-50%);
}

/* =========================================================
   Services grid
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: block;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .35s var(--t), box-shadow .35s var(--t), border-color .35s var(--t);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}

.service-card-link:hover {
  border-color: var(--ink);
}
.service-card-link:hover .service-arrow {
  color: var(--ink);
  transform: translate(2px, -2px);
}

.service-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  transition: color .25s var(--t), transform .25s var(--t);
}

.service-icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  margin-bottom: 20px;
}
.service-icon svg {
  width: 22px; height: 22px;
}

.service-card h3 {
  font-size: 17.5px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* =========================================================
   Process
   ========================================================= */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .3s var(--t), transform .3s var(--t);
}
.process-step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* =========================================================
   Why
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.why-copy h2 { margin-bottom: 20px; }
.why-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
.why-copy p + p { margin-top: 16px; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.stat-num {
  display: block;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
}

/* =========================================================
   About
   ========================================================= */
.about-inner {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}
.about-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.about-sub {
  margin-top: 24px;
}

/* =========================================================
   Contact
   ========================================================= */
.section-contact {
  padding-bottom: clamp(96px, 12vw, 160px);
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  transition: border-color .2s var(--t), box-shadow .2s var(--t);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20,20,15,.06);
}

.form-actions {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-note {
  font-size: 13.5px;
  color: var(--muted);
}
.form-note a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color .2s var(--t);
}
.form-note a:hover { border-color: var(--ink); }

.form-success {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

/* Calendly inline widget */
.calendly-wrap {
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.calendly-inline-widget {
  width: 100%;
}
.contact-fallback {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
}
.contact-fallback a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color .2s var(--t);
}
.contact-fallback a:hover {
  border-color: var(--ink);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: var(--surface-alt);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--ink-soft);
}
.footer-links a:hover { color: var(--ink); }
.footer-meta {
  font-size: 13px;
  color: var(--muted);
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--t), transform .7s var(--t);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu:not([hidden]) { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .process-list  { grid-template-columns: 1fr; }
  .why-stats     { grid-template-columns: 1fr 1fr; }

  .trust-list { gap: 18px 26px; }
  .trust-list li + li::before { left: -16px; }

  .contact-form { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

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

/* =========================================================
   Service page (social-media-growth.html) styles
   ========================================================= */

/* Centered narrow prose container */
.narrow-prose {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.narrow-prose h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 18px;
  text-align: left;
}
.narrow-prose > .prose:first-of-type { margin-top: 24px; }
.prose-lead {
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
  text-align: center;
  margin-top: 28px;
}
.prose em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* "This isn't..." list */
.negative-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px auto 12px;
  max-width: 600px;
  text-align: left;
}
.negative-list li {
  position: relative;
  padding-left: 32px;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.negative-list li::before {
  content: '\2715'; /* × */
  position: absolute;
  left: 6px;
  top: 1px;
  font-size: 14px;
  color: var(--muted);
}

/* Includes grid — 2 columns of larger cards */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.include-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: box-shadow .3s var(--t), transform .3s var(--t);
}
.include-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.include-item h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.include-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.include-item em {
  font-family: var(--font-serif);
  font-style: italic;
}

/* Fit grid — who-for / who-not-for */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.fit-col h3 {
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.fit-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fit-col li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.fit-for li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}
.fit-not li::before {
  content: '\2715';
  position: absolute;
  left: 6px;
  top: 0;
  font-size: 13px;
  color: var(--muted);
}
.fit-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Pricing card */
.pricing-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow);
}
.pricing-card .eyebrow {
  margin-bottom: 12px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
}
.price-num {
  font-size: clamp(56px, 8vw, 84px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.price-period {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}
.pricing-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}
.pricing-meta li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pricing-meta li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}
.pricing-cta {
  width: 100%;
  justify-content: center;
}
.pricing-note {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: 28px 4px;
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Footer disclaimer */
.footer-disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.footer-disclaimer p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 760px;
}

/* =========================================================
   Responsive — service page additions
   ========================================================= */
@media (max-width: 960px) {
  .includes-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .narrow-prose .prose { text-align: left; }
  .prose-lead { text-align: left; }
  .fit-col { padding: 24px; }
  .pricing-card { padding: 32px 24px; }
}

/* =========================================================
   Service-doc — keeps the homepage's centered alignment pattern,
   adds tighter section spacing + continuous canvas (no alt bg)
   so the long-form page reads less chopped.
   ========================================================= */
.service-doc .section {
  padding: clamp(56px, 7vw, 80px) 0;
}

.service-doc .section-alt {
  background: transparent;
}

.service-doc .hero {
  padding: clamp(64px, 9vw, 96px) 0 clamp(48px, 7vw, 72px);
}

.service-doc .hero-title {
  font-size: clamp(36px, 5.5vw, 60px);
}

/* Slightly smaller section h2s — service-page hierarchy under the homepage */
.service-doc .section-head h2,
.service-doc .narrow-prose h2 {
  font-size: clamp(26px, 3.5vw, 36px);
}
