:root {
      --ink: #171717;
      --muted: #66645f;
      --paper: #f7f6f2;
      --surface: #ffffff;
      --line: #ded8ce;
      --green: #294d33;
      --orange: #f5a900;
      --soft: #f1eee8;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(1180px, calc(100vw - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      padding: 18px 0 10px;
      background: rgba(247, 246, 242, 0.92);
      backdrop-filter: blur(14px);
    }

    .nav-shell {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 8px 10px 8px 14px;
      color: #fff;
      background: var(--green);
      border-radius: 999px;
      box-shadow: 0 12px 30px rgba(41, 77, 51, 0.16);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-weight: 900;
    }

    .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: transparent;
  background: #f7f6f2 url("/apple-touch-icon.png") center / 82% auto no-repeat;
  border: 1px solid rgba(41, 77, 51, 0.18);
  border-radius: 8px;
  font-size: 0;
  overflow: hidden;
}

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(12px, 3vw, 34px);
      color: rgba(255,255,255,0.78);
      font-size: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 44px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 13px;
      font-weight: 800;
    }

    .btn-primary { color: #fff; background: var(--green); }
    .btn-orange { color: var(--ink); background: var(--orange); }
    .nav-cta { color: var(--green); background: #fff; min-height: 36px; }
    .script {
      color: var(--orange);
      font-family: "Playfair Display", Georgia, serif;
      font-style: italic;
      font-weight: 500;
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 10px;
      color: var(--green);
      font-size: 12px;
      font-weight: 700;
    }

    .eyebrow::before {
      content: "";
      width: 16px;
      height: 2px;
      background: var(--orange);
    }

    .hero {
      padding: 86px 0 62px;
      text-align: center;
    }

    .hero h1 {
      max-width: 900px;
      margin: 0 auto;
      font-size: clamp(42px, 7vw, 84px);
      line-height: 0.98;
      letter-spacing: 0;
      overflow-wrap: anywhere;
    }

    .hero p {
      max-width: 720px;
      margin: 24px auto 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
    }

    .ticker {
      border-top: 3px solid var(--green);
      border-bottom: 3px solid var(--green);
      background: var(--orange);
      overflow: hidden;
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 24s linear infinite;
    }

    .ticker span {
      display: inline-flex;
      align-items: center;
      gap: 26px;
      padding: 16px 28px;
      font-weight: 900;
      white-space: nowrap;
    }

    .ticker span::after {
      content: "*";
      font-size: 28px;
      font-weight: 400;
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .section { padding: 86px 0; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.05;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-rows: auto auto auto 1fr auto;
      isolation: isolate;
      min-height: 250px;
      min-width: 0;
      padding: 28px 26px 24px;
      background: var(--surface);
      border: 1px solid #ebe7df;
      border-radius: 8px;
      box-shadow: 0 18px 42px rgba(41, 77, 51, 0.06);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 88% 12%, rgba(245, 169, 0, 0.22) 0 44px, transparent 45px),
        linear-gradient(135deg, rgba(41, 77, 51, 0.04), transparent 46%);
      opacity: 0;
      transition: opacity 180ms ease;
    }

    .service-card::after {
      content: attr(data-icon);
      position: absolute;
      top: 22px;
      right: 22px;
      z-index: -1;
      color: rgba(41, 77, 51, 0.07);
      font-size: 74px;
      font-weight: 900;
      line-height: 1;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(245, 169, 0, 0.7);
      box-shadow: 0 26px 58px rgba(41, 77, 51, 0.12);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      margin-bottom: 28px;
      color: var(--green);
      background: linear-gradient(135deg, var(--orange), #ffd36a);
      border-radius: 16px;
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(245, 169, 0, 0.22);
    }

    .service-card h2 {
      margin: 0 0 10px;
      font-size: 21px;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
    }

    .service-card ul {
      display: grid;
      gap: 9px;
      margin: 18px 0 0;
      padding: 0;
      color: var(--muted);
      list-style: none;
      font-size: 13px;
    }

    .service-card li::before {
      content: "+";
      margin-right: 8px;
      color: var(--orange);
      font-weight: 900;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      color: var(--green);
      font-size: 13px;
      font-weight: 900;
    }

    .service-link::after {
      content: "";
      width: 22px;
      height: 22px;
      background: var(--orange);
      border-radius: 999px;
      clip-path: polygon(45% 28%, 62% 28%, 62% 45%, 79% 45%, 79% 62%, 62% 62%, 62% 79%, 45% 79%, 45% 62%, 28% 62%, 28% 45%, 45% 45%);
    }

    .dark {
      color: #fff;
      background: var(--green);
    }

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

    .process-card {
      padding: 22px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
    }

    .process-card strong {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: 18px;
      color: var(--green);
      background: var(--orange);
      border-radius: 999px;
    }

    .process-card h3 { margin: 0 0 8px; }
    .process-card p {
      margin: 0;
      color: rgba(255,255,255,0.76);
      line-height: 1.6;
      font-size: 14px;
    }

    .cta {
      padding: 70px 0;
      text-align: center;
    }

    .cta h2 {
      max-width: 760px;
      margin: 0 auto 22px;
      font-size: clamp(32px, 5vw, 60px);
      line-height: 1.05;
    }

    footer {
      padding: 34px 0;
      background: #fff;
      color: var(--muted);
      font-size: 14px;
    }

    .footer {
      padding: 70px 0 34px;
      color: var(--ink);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr repeat(3, 1fr);
      gap: 28px;
    }

    .footer h3 {
      margin: 0 0 12px;
      font-size: 16px;
    }

    .footer p,
    .footer a {
      color: var(--muted);
      line-height: 1.7;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 46px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
    }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .service-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }
      .section-head {
        flex-direction: column;
        align-items: start;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
      }
      .hero {
        text-align: left;
      }
      .hero h1,
      .hero p {
        margin-left: 0;
      }
    }

    @media (max-width: 640px) {
      .container { width: calc(100% - 28px); max-width: 1180px; }
      .nav-shell { max-width: 100%; overflow: hidden; }
      .nav-cta { display: none; }
      .hero h1 { max-width: 100%; font-size: 30px; line-height: 1.14; }
      .hero h1 * { overflow-wrap: anywhere; word-break: break-word; }
      .section-title { font-size: 26px; line-height: 1.16; overflow-wrap: anywhere; }
      .script { overflow-wrap: anywhere; }
      .hero p,
      .service-card p,
      .service-card li,
      .process-card p { overflow-wrap: break-word; }
      .service-card,
      .process-card,
      .cta h2 { max-width: 100%; }
      .service-card,
      .process-card { padding: 20px; }
    }
