    :root {
      /* Brand */
      --orange: #ff6600;
      --orange-deep: #e35a00;
      --violet: #6b2d8b;
      --violet-deep: #532171;

      /* Editorial neutrals — warm, tactile */
      --cream: #faf6f0;
      --cream-2: #f3ecdf;
      --paper: #fffcf6;
      --ink: #1a1410;
      --ink-soft: #3a302a;
      --muted: #6b5d54;
      --line: #e8dfd3;
      --line-strong: #d6c8b3;

      /* Type */
      --display: 'Fraunces', 'Times New Roman', serif;
      --sans: 'Geist', system-ui, -apple-system, sans-serif;

      /* Rhythm */
      --container: 1240px;
      --gutter: clamp(20px, 4vw, 40px);
      --radius: 14px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--sans);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.55;
      font-feature-settings: 'ss01', 'cv11';
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

    /* ============ TOPBAR ============ */
    .topbar {
      background: var(--ink);
      color: var(--cream);
      font-size: 13px;
      letter-spacing: 0.02em;
    }
    .topbar .wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 9px;
      padding-bottom: 9px;
      gap: 16px;
    }
    .topbar a { transition: color .2s; }
    .topbar a:hover { color: var(--orange); }
    .topbar .left { display: flex; align-items: center; gap: 18px; }
    .topbar .pulse {
      display: inline-flex; align-items: center; gap: 8px;
    }
    .pulse::before {
      content: ''; width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: ping 2s infinite;
    }
    @keyframes ping {
      0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
      70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
      100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
    }
    .topbar .hide-sm { display: inline; }
    @media (max-width: 640px) {
      .topbar .hide-sm { display: none; }
      .topbar .wrap { font-size: 12px; }
    }

    /* ============ HEADER ============ */
    header.site {
      position: sticky; top: 0; z-index: 50;
      background: rgba(250, 246, 240, 0.85);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      border-bottom: 1px solid var(--line);
    }
    header.site .wrap {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 14px; padding-bottom: 14px; gap: 24px;
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--display); font-weight: 700; font-size: 22px;
      letter-spacing: -0.01em;
    }
    .logo img { height: 44px; width: auto; }
    nav.primary {
      display: flex; align-items: center; gap: 28px;
      font-size: 14px; font-weight: 500;
    }
    nav.primary a { position: relative; padding: 6px 0; transition: color .2s; }
    nav.primary a::after {
      content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
      background: var(--orange); transition: width .25s ease;
    }
    nav.primary a:hover::after { width: 100%; }
    @media (max-width: 880px) { nav.primary { display: none; } }

    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 20px; border-radius: 999px; font-weight: 600;
      font-size: 14px; letter-spacing: 0.01em;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
      cursor: pointer; border: none; font-family: inherit;
    }
    .btn-primary { background: var(--orange); color: white; box-shadow: 0 6px 18px -8px rgba(255,102,0,0.6); }
    .btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(255,102,0,0.7); }
    .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
    .btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
    .btn-violet { background: var(--violet); color: white; }
    .btn-violet:hover { background: var(--violet-deep); }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(60% 60% at 88% 12%, rgba(255,102,0,0.10), transparent 60%),
        radial-gradient(50% 50% at 8% 90%, rgba(107,45,139,0.08), transparent 60%);
      pointer-events: none;
    }
    .hero .wrap {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: end;
    }
    @media (max-width: 900px) {
      .hero .wrap { grid-template-columns: 1fr; align-items: stretch; }
    }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
      font-weight: 600; color: var(--violet);
    }
    .eyebrow::before {
      content: ''; width: 28px; height: 1.5px; background: var(--violet);
    }
    h1.display {
      font-family: var(--display);
      font-weight: 360;
      font-size: clamp(44px, 6.4vw, 84px);
      line-height: 0.98;
      letter-spacing: -0.025em;
      margin: 22px 0 0;
      font-variation-settings: "opsz" 144, "SOFT" 50;
    }
    h1.display em {
      font-style: italic;
      font-weight: 320;
      color: var(--orange);
      font-variation-settings: "opsz" 144, "SOFT" 100;
    }
    .lede {
      font-size: clamp(16px, 1.4vw, 19px);
      color: var(--ink-soft);
      max-width: 56ch;
      margin: 28px 0 0;
    }
    .hero-cta {
      display: flex; flex-wrap: wrap; gap: 12px;
      margin-top: 32px;
    }
    .hero .meta {
      border-left: 1px solid var(--line-strong);
      padding-left: clamp(20px, 3vw, 36px);
    }
    @media (max-width: 900px) {
      .hero .meta { border-left: none; padding-left: 0; border-top: 1px solid var(--line-strong); padding-top: 28px; margin-top: 8px; }
    }
    .meta dl { display: grid; gap: 22px; }
    .meta dt {
      font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 4px;
    }
    .meta dd { font-family: var(--display); font-size: 22px; font-weight: 400; line-height: 1.2; }
    .meta dd a { color: var(--ink); border-bottom: 1px solid var(--line-strong); transition: border-color .2s, color .2s; }
    .meta dd a:hover { color: var(--orange); border-color: var(--orange); }
    .stars { color: var(--orange); letter-spacing: 1px; font-size: 14px; }

    /* Trust strip */
    .trust {
      background: var(--ink); color: var(--cream);
      border-top: 1px solid var(--ink-soft);
      border-bottom: 1px solid var(--ink-soft);
    }
    .trust .wrap {
      display: grid; grid-template-columns: repeat(4, 1fr);
      padding-top: 28px; padding-bottom: 28px;
      gap: 24px;
    }
    @media (max-width: 760px) { .trust .wrap { grid-template-columns: repeat(2, 1fr); } }
    .trust-item { display: flex; flex-direction: column; gap: 4px; }
    .trust-num {
      font-family: var(--display); font-weight: 380; font-size: clamp(28px, 3vw, 38px);
      line-height: 1; letter-spacing: -0.02em;
    }
    .trust-num em { font-style: italic; color: var(--orange); font-weight: 320; }
    .trust-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #a89e94; }

    /* ============ SECTION HEADERS ============ */
    section.block { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
      gap: clamp(20px, 4vw, 60px);
      align-items: end;
      margin-bottom: clamp(40px, 5vw, 64px);
    }
    @media (max-width: 820px) { .section-head { grid-template-columns: 1fr; } }
    .section-num {
      font-family: var(--display); font-style: italic; font-size: 18px;
      color: var(--violet); font-weight: 400;
    }
    .section-head h2 {
      font-family: var(--display); font-weight: 360; line-height: 1.02;
      font-size: clamp(34px, 4.5vw, 56px); letter-spacing: -0.02em;
      margin-top: 8px;
    }
    .section-head h2 em { font-style: italic; color: var(--orange); font-weight: 320; }
    .section-head p { font-size: 17px; color: var(--ink-soft); max-width: 56ch; }

    /* ============ SERVICES ============ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
    }
    .service {
      grid-column: span 2;
      padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
      border-bottom: 1px solid var(--line);
      border-right: 1px solid var(--line);
      position: relative;
      transition: background .25s ease;
      display: flex; flex-direction: column; gap: 14px;
      min-height: 320px;
    }
    .service:nth-child(3n) { border-right: none; }
    .service:hover { background: var(--paper); }
    .service:hover .service-arrow { transform: translateX(4px); color: var(--orange); }
    .service-icon {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      color: var(--violet);
      margin-bottom: 4px;
    }
    .service-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
    .service h3 {
      font-family: var(--display); font-weight: 400;
      font-size: clamp(22px, 2vw, 26px); line-height: 1.15;
      letter-spacing: -0.01em;
    }
    .service p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; flex: 1; }
    .service-tag {
      align-self: flex-start;
      font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--muted); padding: 4px 10px; border: 1px solid var(--line-strong);
      border-radius: 999px;
    }
    .service-tag.urgent { color: var(--orange); border-color: var(--orange); }
    .service-arrow {
      position: absolute; bottom: 28px; right: 28px;
      transition: transform .25s ease, color .25s ease;
      color: var(--ink-soft);
    }
    @media (max-width: 980px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .service { grid-column: span 1; }
      .service:nth-child(3n) { border-right: 1px solid var(--line); }
      .service:nth-child(2n) { border-right: none; }
    }
    @media (max-width: 560px) {
      .services-grid { grid-template-columns: 1fr; }
      .service { border-right: none !important; }
    }

    /* ============ WHY US ============ */
    .why {
      background: var(--paper);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(24px, 3vw, 48px);
    }
    @media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }
    .why-card {
      padding: 32px 28px;
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--violet));
    }
    .why-card .num {
      font-family: var(--display); font-style: italic; font-weight: 380;
      font-size: 56px; line-height: 1; color: var(--orange); margin-bottom: 12px;
      letter-spacing: -0.03em;
    }
    .why-card h3 {
      font-family: var(--display); font-weight: 420; font-size: 22px;
      margin-bottom: 8px;
    }
    .why-card p { color: var(--ink-soft); font-size: 14.5px; }

    /* ============ PROCESS ============ */
    .process-list {
      list-style: none;
      counter-reset: step;
      display: grid;
      gap: 0;
      border-top: 1px solid var(--line);
    }
    .process-item {
      counter-increment: step;
      display: grid;
      grid-template-columns: 80px 1fr auto;
      gap: clamp(16px, 3vw, 40px);
      padding: clamp(28px, 4vw, 44px) 0;
      border-bottom: 1px solid var(--line);
      align-items: center;
    }
    @media (max-width: 700px) {
      .process-item { grid-template-columns: 60px 1fr; }
      .process-item .step-when { grid-column: 2; padding-top: 4px; }
    }
    .process-item::before {
      content: counter(step, decimal-leading-zero);
      font-family: var(--display); font-style: italic; font-weight: 380;
      font-size: clamp(40px, 5vw, 64px); color: var(--violet);
      letter-spacing: -0.03em; line-height: 1;
    }
    .process-item h3 {
      font-family: var(--display); font-weight: 380;
      font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; letter-spacing: -0.01em;
    }
    .process-item p { color: var(--ink-soft); margin-top: 6px; max-width: 50ch; font-size: 15px; }
    .step-when {
      font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--muted); white-space: nowrap;
    }

    /* ============ TESTIMONIALS ============ */
    .reviews {
      background: var(--cream-2);
    }
    .reviews-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    @media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
    .review {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .review .stars { font-size: 16px; }
    .review blockquote {
      font-family: var(--display); font-weight: 380;
      font-size: 19px; line-height: 1.4;
      color: var(--ink); flex: 1;
    }
    .review-author {
      display: flex; align-items: center; gap: 12px;
      padding-top: 14px; border-top: 1px solid var(--line);
    }
    .review-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--violet));
      color: white; display: flex; align-items: center; justify-content: center;
      font-weight: 600; font-size: 14px;
    }
    .review-name { font-weight: 600; font-size: 14px; }
    .review-meta { font-size: 12px; color: var(--muted); }

    /* ============ FAQ ============ */
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-item summary {
      list-style: none; cursor: pointer;
      padding: 26px 0;
      display: flex; align-items: flex-start; justify-content: space-between;
      gap: 24px;
      font-family: var(--display); font-weight: 400;
      font-size: clamp(20px, 2vw, 24px); line-height: 1.25; letter-spacing: -0.01em;
      transition: color .2s;
    }
    .faq-item summary:hover { color: var(--orange); }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border: 1px solid var(--line-strong); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform .25s ease, background .2s, border-color .2s;
      margin-top: 4px;
    }
    .faq-item[open] .faq-icon { background: var(--ink); border-color: var(--ink); transform: rotate(45deg); }
    .faq-item[open] .faq-icon svg { color: var(--cream); }
    .faq-icon svg { width: 14px; height: 14px; transition: color .2s; }
    .faq-answer {
      padding: 0 0 26px;
      max-width: 64ch;
      color: var(--ink-soft);
      font-size: 16px; line-height: 1.65;
    }

    /* ============ LOCATION ============ */
    .location {
      background: var(--ink); color: var(--cream);
      padding: clamp(64px, 9vw, 110px) 0;
    }
    .location .section-head h2 { color: var(--cream); }
    .location .section-head p { color: #a89e94; }
    .location-grid {
      display: grid; grid-template-columns: 1.3fr 1fr;
      gap: clamp(24px, 4vw, 56px);
      align-items: stretch;
    }
    @media (max-width: 860px) { .location-grid { grid-template-columns: 1fr; } }
    .map-frame {
      border-radius: var(--radius);
      overflow: hidden; border: 1px solid #2a2018;
      aspect-ratio: 4/3;
      filter: grayscale(0.2);
    }
    .map-frame iframe { width: 100%; height: 100%; border: 0; }
    .location-info {
      display: flex; flex-direction: column; gap: 28px;
      padding: 4px 0;
    }
    .info-block { display: flex; flex-direction: column; gap: 6px; }
    .info-label {
      font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #a89e94;
    }
    .info-value {
      font-family: var(--display); font-weight: 380; font-size: clamp(20px, 1.8vw, 24px);
      line-height: 1.3; color: var(--cream);
    }
    .info-value a:hover { color: var(--orange); }
    .hours-table { display: grid; gap: 6px; font-size: 15px; }
    .hours-row { display: flex; justify-content: space-between; gap: 16px; color: var(--cream); }
    .hours-row .day { color: #a89e94; }
    .badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 12px; background: rgba(255,102,0,0.14);
      color: var(--orange); border-radius: 999px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
    }

    /* ============ FOOTER ============ */
    footer.site {
      background: var(--ink); color: var(--cream);
      padding: 56px 0 32px;
      border-top: 1px solid #2a2018;
    }
    footer.site .wrap {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
    }
    @media (max-width: 760px) { footer.site .wrap { grid-template-columns: 1fr; gap: 32px; } }
    footer.site h4 {
      font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
      color: #a89e94; margin-bottom: 14px; font-weight: 600;
    }
    footer.site .brand {
      font-family: var(--display); font-weight: 380; font-size: 20px; line-height: 1.4;
      max-width: 36ch;
    }
    footer.site ul { list-style: none; display: grid; gap: 10px; font-size: 14px; }
    footer.site a:hover { color: var(--orange); }
    .footer-bar {
      max-width: var(--container); margin: 40px auto 0; padding: 24px var(--gutter) 0;
      border-top: 1px solid #2a2018;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
      font-size: 12px; color: #a89e94;
    }

    /* ============ MOBILE STICKY CALL ============ */
    .mobile-call {
      display: none;
      position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
      z-index: 60;
      background: var(--orange); color: white;
      padding: 14px 24px; border-radius: 999px;
      font-weight: 600; font-size: 15px;
      box-shadow: 0 12px 30px -8px rgba(255,102,0,0.65);
      display: none;
    }
    @media (max-width: 700px) {
      .mobile-call { display: inline-flex; align-items: center; gap: 10px; }
    }

    /* Animation utility */
    @media (prefers-reduced-motion: no-preference) {
      .reveal { opacity: 0; transform: translateY(16px); animation: rise .8s cubic-bezier(.2,.6,.2,1) forwards; }
      .reveal.d1 { animation-delay: .08s; }
      .reveal.d2 { animation-delay: .16s; }
      .reveal.d3 { animation-delay: .24s; }
      .reveal.d4 { animation-delay: .32s; }
      @keyframes rise { to { opacity: 1; transform: translateY(0); } }
    }

    /* Decorative element near hero */
    .hero-mark {
      position: absolute;
      top: 16%; right: -40px;
      width: 220px; height: 220px;
      opacity: 0.85;
      pointer-events: none;
    }
    @media (max-width: 900px) { .hero-mark { display: none; } }


/* ============ SERVICE PAGE EXTENSIONS ============ */

/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  padding-top: 32px;
  padding-bottom: 0;
  letter-spacing: 0.02em;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--line-strong); margin-left: 6px; }
.breadcrumbs a { transition: color .2s; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs li[aria-current] { color: var(--ink); font-weight: 500; }

/* Service hero variation */
.service-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 90px); position: relative; overflow: hidden; }
.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 92% 18%, rgba(255,102,0,0.08), transparent 60%),
    radial-gradient(40% 40% at 5% 95%, rgba(107,45,139,0.06), transparent 60%);
  pointer-events: none;
}
.service-hero .wrap { position: relative; }
.service-hero h1 {
  font-family: var(--display); font-weight: 360;
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.0;
  letter-spacing: -0.025em; margin-top: 14px; max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.service-hero h1 em { font-style: italic; color: var(--orange); font-weight: 320; }
.service-hero .lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 60ch; margin-top: 22px; }
.service-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Two-column content section */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.two-col h2 {
  font-family: var(--display); font-weight: 360;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.02em;
}
.two-col h2 em { font-style: italic; color: var(--orange); font-weight: 320; }
.two-col-body { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.two-col-body p + p { margin-top: 16px; }
.two-col-body strong { color: var(--ink); font-weight: 600; }

/* Featured list (what's included) */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li:nth-child(odd) { padding-right: clamp(16px, 3vw, 32px); border-right: 1px solid var(--line); padding-left: 0; }
.feature-list li:nth-child(even) { padding-left: clamp(16px, 3vw, 32px); padding-right: 0; }
@media (max-width: 700px) {
  .feature-list li { padding: 18px 0 !important; border-right: none !important; }
}
.feature-mark {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream-2); color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-mark svg { width: 14px; height: 14px; stroke-width: 2.2; }
.feature-list h3 {
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: var(--ink); margin-bottom: 4px; line-height: 1.3;
}
.feature-list p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* Related services */
.related {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  padding: 24px 20px; background: var(--paper);
  border: 1px solid var(--line); margin: -1px 0 0 -1px;
  display: flex; flex-direction: column; gap: 8px; min-height: 140px;
  transition: background .2s, transform .2s;
  position: relative;
}
.related-card:hover { background: var(--cream); transform: translateY(-2px); }
.related-card .label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--violet); font-weight: 600;
}
.related-card h3 {
  font-family: var(--display); font-weight: 400; font-size: 19px;
  line-height: 1.2; letter-spacing: -0.01em; flex: 1;
}
.related-card .arrow { color: var(--ink-soft); transition: transform .2s, color .2s; }
.related-card:hover .arrow { color: var(--orange); transform: translateX(3px); }

/* Inline CTA banner */
.cta-banner {
  background: var(--ink); color: var(--cream);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  border-radius: var(--radius);
  display: grid; grid-template-columns: 1.4fr auto;
  gap: 32px; align-items: center;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 720px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner h2 {
  font-family: var(--display); font-weight: 360;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.1; letter-spacing: -0.02em;
}
.cta-banner h2 em { font-style: italic; color: var(--orange); font-weight: 320; }
.cta-banner p { color: #a89e94; margin-top: 10px; max-width: 50ch; }
