    :root {
      --sage: #7A9E82;
      --sage-light: #B5BCA8;
      --sage-dark: #5A6453;
      --terracotta: #B85C38;
      --terracotta-light: #E8A672;
      --terracotta-dark: #8F4628;
      --cream: #F8F4ED;
      --cream-warm: #FAF7F0;
      --bg: #FAF7F0;
      --ink: #1C2B1E;
      --ink-muted: #6B6356;
      --rule: #E6DFD2;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    a { color: inherit; text-decoration: none; }
    ::selection { background: var(--terracotta); color: var(--cream); }

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

    [hidden] { display: none !important; }

    /* Preview banner */
    .preview-banner {
      background: var(--ink);
      color: var(--cream);
      padding: 0.65rem 1.5rem;
      font-size: 0.8125rem;
      letter-spacing: 0.06em;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-weight: 500;
    }

    .preview-banner svg {
      width: 14px;
      height: 14px;
      opacity: 0.7;
    }

    /* Container */
    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(248, 244, 237, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--rule);
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.9rem 0;
      gap: 1rem;
    }

    .brand-logo {
      height: 44px;
      width: auto;
      display: block;
    }

    .nav {
      display: none;
      gap: 1.75rem;
    }
    .nav-link {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink);
      transition: color 0.2s ease;
    }
    .nav-link:hover { color: var(--terracotta); }

    @media (min-width: 900px) {
      .nav { display: flex; }
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* Language switcher (flags) */
    .lang-switcher {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .lang-btn {
      position: relative;
      display: inline-flex;
      width: 30px;
      height: 30px;
      padding: 0;
      background: transparent;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      transition: transform 0.2s ease;
      opacity: 0.55;
    }
    .lang-btn svg {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      box-shadow: 0 1px 3px rgba(28, 43, 30, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    }
    .lang-btn:hover { opacity: 1; transform: translateY(-1px); }
    .lang-btn[aria-pressed="true"] { opacity: 1; }
    .lang-btn[aria-pressed="true"] svg {
      box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--sage), 0 2px 8px rgba(122, 132, 113, 0.4);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-family: inherit;
      font-size: 0.9375rem;
      font-weight: 600;
      padding: 0.85rem 1.5rem;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--terracotta);
      color: var(--cream);
    }
    .btn-primary:hover {
      background: var(--terracotta-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px -8px rgba(184, 92, 56, 0.45);
    }
    .btn-secondary {
      background: transparent;
      color: var(--ink);
      border-color: var(--ink);
    }
    .btn-secondary:hover {
      background: var(--ink);
      color: var(--cream);
    }
    .btn-sm {
      padding: 0.55rem 1.05rem;
      font-size: 0.8125rem;
    }
    .btn-lg {
      padding: 1.05rem 2rem;
      font-size: 1rem;
    }
    .btn .arrow {
      display: inline-block;
      transition: transform 0.2s ease;
    }
    .btn:hover .arrow { transform: translateX(3px); }

    .text-link {
      color: var(--terracotta-dark);
      font-weight: 500;
      border-bottom: 1px solid currentColor;
      padding-bottom: 1px;
      transition: color 0.2s ease;
    }
    .text-link:hover { color: var(--terracotta); }
    .text-link .arrow {
      display: inline-block;
      transition: transform 0.2s ease;
    }
    .text-link:hover .arrow { transform: translateX(3px); }

    /* Section base */
    .section {
      padding: 5rem 0;
      position: relative;
    }
    .section-tight { padding: 3.5rem 0; }
    .section-lg { padding: 7rem 0; }

    @media (max-width: 720px) {
      .section { padding: 3.5rem 0; }
      .section-lg { padding: 4.5rem 0; }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 1rem;
    }
    .eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--sage);
      opacity: 0.5;
    }

    /* HERO — dark green block (Deep Pine) */
    .hero {
      position: relative;
      padding: 5rem 0 5.5rem;
      overflow: hidden;
      background: var(--ink);
      color: var(--cream);
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -180px;
      right: -160px;
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(184, 92, 56, 0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -160px;
      left: -180px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(122, 132, 113, 0.10) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
      position: relative;
    }
    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 4rem;
      }
    }

    .hero .eyebrow {
      color: var(--terracotta-light);
    }
    .hero .eyebrow::before {
      background: var(--terracotta-light);
      opacity: 0.5;
    }

    .hero-title {
      font-size: clamp(2.25rem, 5.2vw, 4rem);
      line-height: 1.05;
      letter-spacing: -0.025em;
      font-weight: 500;
      margin-bottom: 1.5rem;
      color: var(--cream);
    }
    .hero-title .accent {
      color: var(--terracotta-light);
      font-style: italic;
      font-weight: 400;
    }
    .hero-sub {
      font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
      color: rgba(248, 244, 237, 0.78);
      max-width: 540px;
      margin-bottom: 2.25rem;
      line-height: 1.6;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }
    .hero-actions .text-link {
      color: var(--terracotta-light);
      border-bottom-color: rgba(232, 166, 114, 0.55);
    }
    .hero-actions .text-link:hover {
      color: var(--cream);
      border-bottom-color: var(--cream);
    }

    .hero-image-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4 / 5;
      box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(248, 244, 237, 0.1);
    }
    .hero-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-image-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(28, 43, 30, 0.32));
      pointer-events: none;
    }
    .hero-image-tag {
      position: absolute;
      bottom: 1.25rem;
      left: 1.25rem;
      background: rgba(248, 244, 237, 0.95);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 0.65rem 1rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }
    .hero-image-tag .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--terracotta);
    }
    @media (max-width: 720px) {
      .hero { padding: 4rem 0 5rem; }
      .hero-image-wrap { aspect-ratio: 4 / 3; }
    }

    /* Three Value Points */
    .values {
      background: var(--cream-warm);
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }
    .values-grid {
      display: grid;
      gap: 2.5rem;
    }
    @media (min-width: 720px) {
      .values-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
    }
    .value-item {
      text-align: center;
    }
    .value-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.25rem;
      border-radius: 50%;
      background: rgba(122, 132, 113, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sage-dark);
    }
    .value-icon svg { width: 26px; height: 26px; }
    .value-title {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.65rem;
    }
    .value-body {
      color: var(--ink-muted);
      font-size: 0.9375rem;
      line-height: 1.65;
      max-width: 320px;
      margin: 0 auto;
    }

    /* Founder */
    .founder {
      position: relative;
    }
    .founder-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    @media (min-width: 820px) {
      .founder-grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 4.5rem;
      }
    }
    .founder-avatar {
      width: 100%;
      max-width: 340px;
      aspect-ratio: 4 / 5;
      margin: 0 auto;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 60px -20px rgba(122, 132, 113, 0.5), 0 0 0 1px var(--rule);
      position: relative;
      background: var(--sage-light);
    }
    .founder-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .founder-avatar::after {
      content: '';
      position: absolute;
      bottom: -10px;
      right: -10px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--terracotta);
      box-shadow: 0 0 0 8px var(--cream);
      z-index: 1;
    }
    .founder-content h2 {
      font-size: clamp(1.85rem, 3.6vw, 2.5rem);
      margin-bottom: 1.5rem;
    }
    .founder-content p {
      color: var(--ink);
      font-size: 1.0625rem;
      line-height: 1.7;
      margin-bottom: 1.15rem;
    }
    .founder-content p:last-of-type {
      color: var(--sage-dark);
      font-style: italic;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.25rem;
      line-height: 1.45;
      margin-top: 1.5rem;
      margin-bottom: 2rem;
    }

    /* Scenes */
    .scenes {
      background: var(--bg);
      border-top: 1px solid var(--rule);
    }
    .scenes-intro {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;
    }
    .scenes-intro h2 {
      font-size: clamp(1.85rem, 3.6vw, 2.5rem);
    }
    .scenes-grid {
      display: grid;
      gap: 2rem;
      margin-bottom: 4rem;
    }
    @media (min-width: 720px) {
      .scenes-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    }
    .scene {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .scene:hover {
      transform: translateY(-4px);
      border-color: var(--sage-light);
      box-shadow: 0 20px 40px -16px rgba(122, 132, 113, 0.3);
    }
    .scene-number {
      position: absolute;
      top: 1.5rem;
      right: 1.75rem;
      font-family: 'Fraunces', serif;
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--sage-light);
      line-height: 1;
      font-style: italic;
    }
    .scene-title {
      font-family: 'Fraunces', serif;
      font-size: 1.375rem;
      font-weight: 500;
      line-height: 1.3;
      color: var(--ink);
      margin-bottom: 1rem;
      padding-right: 3rem;
    }
    .scene-body {
      color: var(--ink-muted);
      font-size: 0.9375rem;
      line-height: 1.65;
    }

    .scenes-close {
      max-width: 720px;
      margin: 0 auto;
      padding: 2.5rem 0 0;
      border-top: 1px solid var(--rule);
    }
    .scenes-close p {
      color: var(--ink);
      font-size: 1.0625rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .scenes-close .mic-drop {
      font-family: 'Fraunces', Georgia, serif;
      font-style: italic;
      font-size: clamp(1.25rem, 2vw, 1.5rem);
      line-height: 1.45;
      color: var(--sage-dark);
      text-align: center;
      padding: 2.5rem 1rem 0;
      margin: 0;
    }

    /* Services */
    .services-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 4rem;
    }
    .services-intro h2 {
      font-size: clamp(1.85rem, 3.6vw, 2.5rem);
    }
    .services-grid {
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 720px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
    }
    @media (min-width: 1024px) {
      .services-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    }
    .service-card {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .service-card:hover {
      transform: translateY(-4px);
      border-color: var(--terracotta-light);
      box-shadow: 0 20px 40px -16px rgba(184, 92, 56, 0.18);
    }
    .service-card-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .service-card-eyebrow::before {
      content: '';
      width: 16px;
      height: 1px;
      background: var(--sage);
    }
    .service-card h3 {
      font-size: 1.375rem;
      margin-bottom: 0.85rem;
      letter-spacing: -0.015em;
    }
    .service-card-body {
      color: var(--ink-muted);
      font-size: 0.9375rem;
      line-height: 1.65;
      margin-bottom: 1.5rem;
      flex: 1;
    }
    .service-card-price {
      font-family: 'Fraunces', serif;
      font-size: 1.0625rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.4rem;
    }
    .service-card-scale {
      font-size: 0.8125rem;
      color: var(--sage-dark);
      margin-bottom: 1.25rem;
    }
    .service-card-link {
      color: var(--terracotta-dark);
      font-weight: 500;
      font-size: 0.9375rem;
    }

    /* Schools / Organizations */
    .schools {
      background: var(--ink);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }
    .schools::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      height: 100%;
      background-image: url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?w=1600&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
    }
    .schools::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, var(--ink) 30%, rgba(28, 43, 30, 0.85) 45%, rgba(28, 43, 30, 0.25) 100%);
      pointer-events: none;
    }
    @media (max-width: 820px) {
      .schools::before {
        width: 100%;
        opacity: 0.35;
      }
      .schools::after {
        background: linear-gradient(180deg, rgba(28, 43, 30, 0.92) 0%, rgba(28, 43, 30, 0.88) 100%);
      }
    }
    .schools .container {
      position: relative;
      z-index: 1;
    }
    .schools-grid {
      display: grid;
      gap: 2.5rem;
      align-items: center;
    }
    @media (min-width: 820px) {
      .schools-grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
    }
    .schools h2 {
      color: var(--cream);
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      margin-bottom: 1.5rem;
    }
    .schools p {
      color: rgba(248, 244, 237, 0.82);
      font-size: 1.0625rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 540px;
    }
    .schools .eyebrow {
      color: var(--terracotta-light);
    }
    .schools .eyebrow::before {
      background: var(--terracotta-light);
    }
    .schools-link {
      color: var(--cream);
      font-weight: 500;
      font-size: 1rem;
      border-bottom: 1px solid var(--terracotta);
      padding-bottom: 2px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .schools-link:hover { color: var(--terracotta-light); }
    .schools-link .arrow { transition: transform 0.2s ease; }
    .schools-link:hover .arrow { transform: translateX(4px); }

    /* Recognition */
    .recognition {
      background: var(--cream-warm);
    }
    .recognition-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 4rem;
    }
    .recognition-intro h2 {
      font-size: clamp(1.85rem, 3.6vw, 2.5rem);
    }
    .recognition-grid {
      display: grid;
      gap: 1.25rem;
      max-width: 920px;
      margin: 0 auto;
    }
    @media (min-width: 720px) {
      .recognition-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    }
    .recognition-item {
      background: var(--cream);
      border-left: 3px solid var(--terracotta);
      padding: 1.5rem 1.75rem;
      border-radius: 4px 12px 12px 4px;
      font-family: 'Fraunces', Georgia, serif;
      font-style: italic;
      font-size: 1rem;
      line-height: 1.55;
      color: var(--ink);
      box-shadow: 0 1px 2px rgba(28, 43, 30, 0.05);
    }
    .recognition-item:first-child {
      grid-column: 1 / -1;
      border-left-color: var(--sage-dark);
      background: var(--ink);
      color: var(--cream);
      font-size: 1.125rem;
      font-style: normal;
    }
    .recognition-item:first-child strong {
      display: block;
      font-style: italic;
      font-size: 1.5rem;
      margin-bottom: 0.4rem;
      font-weight: 500;
    }
    .recognition-item .label {
      display: block;
      font-style: normal;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-top: 0.85rem;
    }
    .recognition-item:first-child .label {
      color: var(--terracotta-light);
    }

    /* Final CTA */
    .final-cta {
      text-align: center;
      padding: 7rem 0 8rem;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      max-width: 100vw;
      max-height: 100vw;
      background: radial-gradient(circle, rgba(184, 92, 56, 0.08) 0%, transparent 60%);
      border-radius: 50%;
      pointer-events: none;
    }
    .final-cta .container {
      position: relative;
      z-index: 1;
    }
    .final-cta h2 {
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      line-height: 1.05;
      max-width: 800px;
      margin: 0 auto 1.75rem;
    }
    .final-cta h2 .accent {
      color: var(--sage-dark);
      font-style: italic;
      font-weight: 400;
    }
    .final-cta p {
      font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
      color: var(--ink-muted);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      line-height: 1.65;
    }
    .final-cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    /* Footer */
    .footer {
      background: var(--ink);
      color: rgba(248, 244, 237, 0.7);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }
    @media (min-width: 720px) {
      .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
    }
    .footer-brand img {
      height: 44px;
      margin-bottom: 1.25rem;
      filter: invert(1) hue-rotate(180deg) brightness(1.1);
      opacity: 0.95;
    }
    .footer-brandline {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.125rem;
      color: rgba(248, 244, 237, 0.85);
      max-width: 320px;
      line-height: 1.45;
      margin-top: 0.5rem;
    }
    .footer-col h4 {
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .footer-col a {
      color: rgba(248, 244, 237, 0.7);
      font-size: 0.9375rem;
      transition: color 0.2s ease;
    }
    .footer-col a:hover { color: var(--terracotta-light); }
    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(248, 244, 237, 0.1);
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8125rem;
      color: rgba(248, 244, 237, 0.55);
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* Fade-up animation on scroll-into-view */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive tweaks */
    @media (max-width: 720px) {
      .preview-banner { font-size: 0.7rem; padding: 0.55rem 1rem; }
      .brand-logo { height: 36px; }
      .header-actions .btn { display: none; }
      .scene { padding: 1.5rem; }
      .scene-number { font-size: 1.85rem; top: 1.15rem; right: 1.25rem; }
      .service-card { padding: 1.5rem 1.35rem; }
    }
