
    @font-face {
      font-family: "Poppins";
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url("../fonts/poppins-400.woff2") format("woff2");
    }
    @font-face {
      font-family: "Poppins";
      font-style: normal;
      font-weight: 500;
      font-display: swap;
      src: url("../fonts/poppins-500.woff2") format("woff2");
    }
    @font-face {
      font-family: "Poppins";
      font-style: normal;
      font-weight: 600;
      font-display: swap;
      src: url("../fonts/poppins-600.woff2") format("woff2");
    }
    @font-face {
      font-family: "Poppins";
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url("../fonts/poppins-700.woff2") format("woff2");
    }

    :root {
      --ink: #101512;
      --ink-2: #18201c;
      --ink-3: #25302a;
      --paper: #f4f6f2;
      --paper-2: #e9eee8;
      --white: #ffffff;
      --text: #202823;
      --muted: #647068;
      --line: #d7ded7;
      --green: #41af3b;
      --green-dark: #20721d;
      --green-light: #dff2dc;
      --amber: #e7b24a;
      --radius: 12px;
      --radius-sm: 7px;
      --shadow: 0 16px 46px rgba(16, 21, 18, 0.08);
      --container: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 94px;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--paper);
      font-family: "Poppins", "Aptos", "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.65;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open { overflow: hidden; }

    img, svg { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, textarea, select { font: inherit; }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 9999;
      padding: 12px 18px;
      border-radius: 8px;
      color: var(--white);
      background: var(--ink);
      transform: translateY(-150%);
      transition: transform .2s ease;
    }
    .skip-link:focus { transform: translateY(0); }

    .visually-hidden {
      position: absolute !important;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    :focus-visible {
      outline: 3px solid var(--amber);
      outline-offset: 4px;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .section { padding: 112px 0; }
    .section--white { background: var(--white); }
    .section--dark { color: var(--white); background: var(--ink); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 20px;
      color: var(--green-dark);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .13em;
      line-height: 1.3;
      text-transform: uppercase;
    }
    .eyebrow::before {
      width: 24px;
      height: 3px;
      background: currentColor;
      content: "";
      transform: skewX(-34deg);
    }
    .eyebrow--light { color: #9ee599; }

    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { color: inherit; line-height: 1.12; letter-spacing: -.035em; }
    h1 { max-width: 780px; margin-bottom: 26px; font-size: clamp(2.75rem, 6vw, 5.6rem); font-weight: 700; }
    h2 { margin-bottom: 24px; font-size: clamp(2.15rem, 4vw, 4rem); font-weight: 700; }
    h3 { margin-bottom: 14px; font-size: 1.35rem; font-weight: 600; }

    .lead {
      max-width: 720px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: clamp(1.05rem, 1.6vw, 1.25rem);
      line-height: 1.7;
    }
    .lead--light { color: #bac5bd; }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 450px);
      gap: 70px;
      align-items: end;
      margin-bottom: 58px;
    }
    .section-head h2 { margin-bottom: 0; }
    .section-head .lead { justify-self: end; }

    .button {
      display: inline-flex;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border: 1px solid transparent;
      border-radius: 6px;
      text-decoration: none;
      font-size: .94rem;
      font-weight: 600;
      line-height: 1.2;
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }
    .button:hover { transform: none; }
    .button svg { width: 18px; height: 18px; }
    .button--primary { color: var(--ink); background: #6cdf65; }
    .button--primary:hover { background: #85e57f; }
    .button--secondary { color: var(--white); border-color: #445048; background: rgba(255,255,255,.04); }
    .button--secondary:hover { border-color: #77847b; background: rgba(255,255,255,.08); }
    .button--dark { color: var(--white); background: var(--ink); }
    .button--dark:hover { background: var(--ink-3); }

    .site-header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,.08);
      color: var(--white);
      background: rgba(16,21,18,.87);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }
    .header-inner {
      display: flex;
      min-height: 76px;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      color: var(--white);
      text-decoration: none;
      white-space: nowrap;
    }
    .brand-mark { width: 35px; height: 35px; flex: 0 0 auto; }
    .brand-name { font-size: 1.12rem; font-weight: 600; letter-spacing: -.02em; }

    .nav-wrap { display: flex; align-items: center; gap: 28px; }
    .site-nav ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
    .site-nav a {
      position: relative;
      color: #d5ddd7;
      text-decoration: none;
      font-size: .88rem;
      font-weight: 500;
    }
    .site-nav a::after {
      position: absolute;
      right: 0;
      bottom: -7px;
      left: 0;
      height: 2px;
      background: var(--green);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .22s ease;
    }
    .site-nav a:hover { color: var(--white); }
    .site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

    .header-cta {
      min-height: 44px;
      padding: 11px 17px;
      color: var(--ink);
      background: var(--green);
    }

    .menu-button {
      display: none;
      width: 46px;
      height: 46px;
      padding: 0;
      border: 1px solid #455049;
      border-radius: 5px;
      color: var(--white);
      background: transparent;
      cursor: pointer;
    }
    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      display: block;
      width: 20px;
      height: 2px;
      margin: 4px auto;
      border-radius: 2px;
      background: currentColor;
      content: "";
      transition: transform .2s ease, opacity .2s ease;
    }
    .menu-button[aria-expanded="true"] span { opacity: 0; }
    .menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
    .menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

    .hero {
      position: relative;
      min-height: 860px;
      overflow: hidden;
      color: var(--white);
      background: linear-gradient(118deg, #101512 0%, #17201b 68%, #111713 100%);
    }
    .hero::before {
      position: absolute;
      top: -280px;
      right: 4%;
      width: 155px;
      height: 1250px;
      opacity: .32;
      background: linear-gradient(180deg, transparent 8%, rgba(65,175,59,.8) 46%, transparent 86%);
      content: "";
      transform: rotate(39deg);
    }
    .hero::after {
      position: absolute;
      top: -150px;
      right: 20%;
      width: 1px;
      height: 1120px;
      background: rgba(255,255,255,.13);
      content: "";
      transform: rotate(39deg);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
      gap: 78px;
      align-items: center;
      padding-top: 186px;
      padding-bottom: 110px;
    }
    .hero-copy h1 { max-width: 880px; }
    .hero-copy h1 span { color: #79df72; }
    .hero-copy .lead { max-width: 710px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      margin: 42px 0 0;
      padding: 0;
      color: #aebbb1;
      font-size: .82rem;
      list-style: none;
    }
    .hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
    .hero-meta li::before { width: 6px; height: 6px; border-radius: 50%; background: var(--green); content: ""; }

    .diagnostic-card {
      position: relative;
      padding: 32px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 9px;
      background: rgba(22,30,25,.92);
      box-shadow: 0 22px 70px rgba(0,0,0,.2);
    }
    .diagnostic-card::before {
      position: absolute;
      top: 19px;
      right: 20px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
      content: "";
      box-shadow: 0 0 0 7px rgba(65,175,59,.13);
    }
    .diagnostic-kicker { margin: 0 0 12px; color: #93a198; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
    .diagnostic-card h2 { max-width: 360px; margin-bottom: 26px; font-size: 1.75rem; letter-spacing: -.025em; }
    .diagnostic-list { display: grid; gap: 12px; }
    .diagnostic-item {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 13px;
      align-items: center;
      padding: 15px 0;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .diagnostic-number { color: #84df7e; font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
    .diagnostic-title { color: #f4f7f4; font-size: .91rem; font-weight: 500; }
    .diagnostic-status { color: #839087; font-size: .68rem; text-transform: uppercase; }
    .diagnostic-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 22px;
      padding: 17px 18px;
      border-radius: 5px;
      color: #c5d0c7;
      background: rgba(0,0,0,.17);
      font-size: .78rem;
    }
    .diagnostic-foot strong { color: var(--white); }

    .problem-grid { display: grid; border-top: 1px solid var(--line); }
    .problem-card {
      display: grid;
      grid-template-columns: 170px minmax(260px, .82fr) minmax(320px, 1.18fr);
      gap: 38px;
      align-items: start;
      min-height: 0;
      padding: 32px 0;
      border: 0;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
    }
    .problem-card:hover { transform: none; background: transparent; box-shadow: none; }
    .problem-index { display: block; margin: 4px 0 0; color: var(--green-dark); font-size: .76rem; font-weight: 700; }
    .problem-card h3 { margin: 0; }
    .problem-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .service-card {
      display: flex;
      min-height: 490px;
      flex-direction: column;
      padding: 38px 38px 36px;
      border: 0;
      border-right: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
    }
    .service-card:last-child { border-right: 0; }
    .service-card:hover { transform: none; border-color: var(--line); box-shadow: none; }
    .service-icon {
      display: grid;
      width: 34px;
      height: 34px;
      margin-bottom: 44px;
      place-items: center;
      border-radius: 0;
      color: var(--green-dark);
      background: transparent;
    }
    .service-icon svg { width: 30px; height: 30px; }
    .service-card > p { color: var(--muted); font-size: .93rem; }
    .service-list { display: grid; gap: 10px; margin: 20px 0 30px; padding: 0; list-style: none; }
    .service-list li { position: relative; padding-left: 21px; color: #3e4942; font-size: .86rem; }
    .service-list li::before { position: absolute; top: .65em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--green); content: ""; }
    .service-result { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
    .service-result span { display: block; margin-bottom: 6px; color: var(--green-dark); font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
    .service-result strong { color: var(--ink); font-size: .88rem; font-weight: 600; }
    .service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--green-dark); font-size: .82rem; font-weight: 700; text-decoration: none; }
    .service-link:hover { text-decoration: underline; text-underline-offset: 4px; }
    .studio-bridge { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 56px; align-items: end; margin-top: 34px; padding: 44px 48px; border-radius: 8px; color: var(--white); background: radial-gradient(circle at 100% 0, rgba(65,175,59,.22), transparent 34%), var(--ink); }
    .studio-bridge .eyebrow { margin-bottom: 16px; }
    .studio-bridge h3 { max-width: 760px; margin-bottom: 16px; font-size: clamp(1.55rem,2.8vw,2.35rem); }
    .studio-bridge p:not(.eyebrow) { max-width: 820px; margin-bottom: 0; color: #b9c4bc; font-size: .92rem; }
    .studio-bridge-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
    .studio-bridge-meta li { padding: 7px 10px; border: 1px solid #465149; border-radius: 4px; color: #d7dfd9; font-size: .72rem; }
    .studio-bridge-actions { display: grid; gap: 10px; min-width: 230px; }
    .about-copy > p a { color: var(--green-dark); font-weight: 600; }

    .approach-layout {
      display: grid;
      grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
      gap: 90px;
      align-items: start;
    }
    .approach-intro { position: sticky; top: 120px; }
    .approach-intro h2 { max-width: 480px; }
    .approach-intro .lead { max-width: 470px; }
    .approach-steps { display: grid; }
    .approach-step {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 24px;
      padding: 34px 0;
      border-top: 1px solid #364038;
    }
    .approach-step:last-child { border-bottom: 1px solid #364038; }
    .approach-step-number { color: #75d76f; font-size: .76rem; font-weight: 700; letter-spacing: .08em; }
    .approach-step h3 { color: var(--white); font-size: 1.28rem; }
    .approach-step p { margin: 0; color: #aeb9b0; font-size: .91rem; }

    .offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .offer-card {
      position: relative;
      display: flex;
      min-height: 470px;
      flex-direction: column;
      padding: 32px;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: var(--white);
    }
    .offer-card--featured { color: var(--white); border-color: var(--ink); background: var(--ink); box-shadow: 0 16px 42px rgba(16,21,18,.12); }
    .offer-badge {
      align-self: flex-start;
      margin-bottom: 42px;
      padding: 7px 10px;
      border-radius: 3px;
      color: var(--green-dark);
      background: var(--green-light);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .offer-card--featured .offer-badge { color: var(--ink); background: #79df72; }
    .offer-card h3 { font-size: 1.45rem; }
    .offer-card > p { color: var(--muted); font-size: .9rem; }
    .offer-card--featured > p { color: #b7c3ba; }
    .offer-list { display: grid; gap: 9px; margin: 22px 0 28px; padding: 0; list-style: none; }
    .offer-list li { position: relative; padding-left: 23px; font-size: .84rem; }
    .offer-list li::before { position: absolute; top: .55em; left: 0; width: 9px; height: 5px; border-bottom: 2px solid var(--green); border-left: 2px solid var(--green); content: ""; transform: rotate(-45deg); }
    .offer-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
    .offer-card--featured .offer-foot { border-color: #354039; }
    .offer-price { display: block; margin-bottom: 4px; color: var(--ink); font-size: 1.08rem; font-weight: 700; }
    .offer-card--featured .offer-price { color: var(--white); }
    .offer-note { color: var(--muted); font-size: .73rem; }
    .offer-card--featured .offer-note { color: #97a49b; }

    .case-layout {
      display: grid;
      grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
      gap: 28px;
    }
    .case-title-card {
      display: flex;
      min-height: 580px;
      flex-direction: column;
      justify-content: space-between;
      padding: 38px;
      border-radius: 9px;
      color: var(--white);
      background:
        linear-gradient(180deg, rgba(65,175,59,.04), rgba(65,175,59,.18)),
        var(--ink);
    }
    .case-label { color: #85df7f; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
    .case-title-card h3 { max-width: 380px; margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3rem); }
    .case-title-card p { margin-bottom: 0; color: #b7c2ba; font-size: .91rem; }
    .case-status { display: inline-flex; align-self: flex-start; align-items: center; gap: 9px; color: #ced6d0; font-size: .74rem; }
    .case-status::before { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); content: ""; }
    .case-domain { display: inline-flex; margin-top: 24px; color: #8be084; font-size: .78rem; font-weight: 600; text-decoration: none; }
    .case-domain:hover { color: var(--white); text-decoration: underline; }
    .case-detail-card {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: var(--line);
    }
    .case-detail { min-height: 289px; padding: 36px; background: var(--white); }
    .case-detail-number { display: block; margin-bottom: 48px; color: var(--green-dark); font-size: .7rem; font-weight: 700; }
    .case-detail h3 { font-size: 1.08rem; }
    .case-detail p { margin: 0; color: var(--muted); font-size: .86rem; }
    .case-placeholder {
      grid-column: 1 / -1;
      display: flex;
      min-height: 92px;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 36px;
      background: #edf4ec;
    }
    .case-placeholder strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: .85rem; }
    .case-placeholder span { color: var(--muted); font-size: .75rem; }
    .case-placeholder-tag { flex: 0 0 auto; padding: 7px 10px; border: 1px solid #b9c9b7; border-radius: 3px; color: var(--green-dark) !important; font-weight: 700; text-transform: uppercase; }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
      gap: 90px;
      align-items: center;
    }
    .portrait-wrap {
      position: relative;
      overflow: hidden;
      min-height: 650px;
      border-radius: 10px;
      background: #dbe0dc;
      box-shadow: 0 14px 38px rgba(16,21,18,.09);
    }
    .portrait-wrap img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: 50% 32%; }
    .portrait-tag {
      position: absolute;
      right: 20px;
      bottom: 20px;
      left: 20px;
      padding: 20px 22px;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 6px;
      color: var(--white);
      background: rgba(16,21,18,.78);
      backdrop-filter: blur(12px);
    }
    .portrait-tag strong { display: block; margin-bottom: 2px; font-size: .92rem; }
    .portrait-tag span { color: #bdc8c0; font-size: .76rem; }
    .about-copy h2 { max-width: 650px; }
    .about-copy > p { max-width: 650px; color: var(--muted); }
    .expertise-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin: 30px 0 35px; padding: 0; list-style: none; }
    .expertise-list li { padding: 13px 15px; border: 1px solid var(--line); border-radius: 4px; color: #3b463e; background: var(--white); font-size: .78rem; font-weight: 500; }
    .about-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
    .about-fact span { display: block; margin-bottom: 5px; color: var(--green-dark); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .about-fact strong { color: var(--ink); font-size: .84rem; font-weight: 600; }

    .faq-list { border-top: 1px solid var(--line); }
    .faq-list details { border-bottom: 1px solid var(--line); }
    .faq-list summary {
      display: flex;
      min-height: 88px;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 24px 0;
      color: var(--ink);
      font-size: 1.04rem;
      font-weight: 600;
      list-style: none;
      cursor: pointer;
    }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after { flex: 0 0 auto; color: var(--green-dark); font-size: 1.5rem; font-weight: 400; content: "+"; transition: transform .2s ease; }
    .faq-list details[open] summary::after { transform: rotate(45deg); }
    .faq-answer { max-width: 850px; padding: 0 0 28px; color: var(--muted); font-size: .92rem; }
    .faq-answer p { margin-bottom: 0; }

    .cta-section { padding: 38px 0 0; background: var(--paper); }
    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 74px;
      border-radius: 10px;
      color: var(--white);
      background:
        radial-gradient(circle at 100% 0, rgba(65,175,59,.28), transparent 36%),
        var(--ink);
    }
    .cta-panel::after {
      position: absolute;
      right: 12%;
      bottom: -350px;
      width: 92px;
      height: 950px;
      background: linear-gradient(180deg, transparent, rgba(65,175,59,.38), transparent);
      content: "";
      transform: rotate(39deg);
    }
    .cta-content { position: relative; z-index: 1; max-width: 850px; }
    .cta-content h2 { margin-bottom: 22px; }
    .cta-content .lead { max-width: 690px; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .cta-contact { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 32px; color: #aebbb1; font-size: .8rem; }
    .cta-contact a { color: #dce4de; text-decoration: none; }
    .cta-contact a:hover { color: var(--white); text-decoration: underline; }

    .site-footer { padding: 62px 0 30px; color: #a8b3ab; background: var(--ink); }
    .footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 60px; padding-bottom: 42px; }
    .footer-brand .brand { margin-bottom: 18px; }
    .footer-brand p { max-width: 340px; margin: 0; font-size: .8rem; }
    .footer-column h2 { margin-bottom: 16px; color: var(--white); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
    .footer-column ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
    .footer-column li, .footer-column a { color: #a8b3ab; text-decoration: none; font-size: .78rem; }
    .footer-column a:hover { color: var(--white); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid #303932; color: #78847b; font-size: .7rem; }

    [data-reveal] { opacity: 1; transform: none; }

    @media (max-width: 1050px) {
      .hero-inner { grid-template-columns: 1fr; gap: 52px; padding-top: 165px; }
      .hero { min-height: auto; }
      .diagnostic-card { max-width: 650px; }
      .offers-grid { grid-template-columns: 1fr 1fr; }
      .offer-card:last-child { grid-column: 1 / -1; min-height: auto; }
      .approach-layout, .about-layout { gap: 58px; }
      .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
      .footer-column:last-child { grid-column: 2; }
    }

    @media (max-width: 1050px) {
      .section { padding: 88px 0; }
      .section-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 44px; }
      .section-head .lead { justify-self: start; }
      .header-cta { display: none; }
      .menu-button { display: block; }
      .site-nav {
        position: fixed;
        top: 76px;
        right: 0;
        left: 0;
        height: calc(100vh - 76px);
        padding: 28px 20px 40px;
        visibility: hidden;
        opacity: 0;
        background: rgba(16,21,18,.98);
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
      }
      .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
      .site-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
      .site-nav li { border-bottom: 1px solid #303a33; }
      .site-nav a { display: block; padding: 19px 4px; color: var(--white); font-size: 1.08rem; }
      .site-nav a::after { display: none; }
      .problem-card { grid-template-columns: 125px 1fr; gap: 22px 34px; min-height: auto; }
      .problem-card p { grid-column: 2; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
      .service-card:last-child { border-bottom: 0; }
      .approach-layout { grid-template-columns: 1fr; gap: 50px; }
      .approach-intro { position: static; }
      .case-layout, .about-layout { grid-template-columns: 1fr; }
      .case-title-card { min-height: auto; }
      .case-status { margin-top: 38px; }
      .portrait-wrap, .portrait-wrap img { min-height: 580px; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-brand { grid-column: 1 / -1; }
      .footer-column:last-child { grid-column: auto; }
    }

    @media (max-width: 680px) {
      .container { width: min(calc(100% - 30px), var(--container)); }
      .section { padding: 74px 0; }
      .header-inner { min-height: 70px; }
      .site-nav { top: 70px; height: calc(100vh - 70px); }
      .brand-mark { width: 31px; height: 31px; }
      .brand-name { font-size: .98rem; }
      .hero-inner { padding-top: 137px; padding-bottom: 100px; }
      .hero-actions, .cta-actions { flex-direction: column; }
      .hero-actions .button, .cta-actions .button { width: 100%; }
      .diagnostic-card { padding: 25px 22px; border-radius: 7px; }
      .diagnostic-item { grid-template-columns: 34px 1fr; }
      .diagnostic-status { display: none; }
      .diagnostic-foot { align-items: flex-start; flex-direction: column; }
      .problem-card { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
      .problem-card p { grid-column: auto; }
      .problem-index { margin-bottom: 5px; }
      .offers-grid { grid-template-columns: 1fr; }
      .service-card, .offer-card { min-height: auto; padding: 28px 24px; }
      .service-card:last-child, .offer-card:last-child { grid-column: auto; }
      .service-icon { margin-bottom: 34px; }
      .approach-step { grid-template-columns: 48px 1fr; gap: 14px; }
      .case-detail-card { grid-template-columns: 1fr; }
      .case-detail { min-height: auto; padding: 30px 24px; }
      .case-detail-number { margin-bottom: 28px; }
      .case-placeholder { grid-column: auto; align-items: flex-start; flex-direction: column; }
      .portrait-wrap, .portrait-wrap img { min-height: 510px; }
      .expertise-list, .about-facts { grid-template-columns: 1fr; }
      .cta-panel { padding: 52px 24px; border-radius: 7px; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-brand, .footer-column:last-child { grid-column: auto; }
      .footer-bottom { flex-direction: column; }
    }

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

/* V4 release additions: bilingual navigation and first-party enquiry form */
.language-switch { display: inline-flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid #455049; border-radius: 5px; }
.language-switch a, .language-switch span { display: grid; min-width: 31px; height: 30px; place-items: center; border-radius: 3px; color: #d5ddd7; font-size: .72rem; font-weight: 700; text-decoration: none; }
.language-switch [aria-current="page"] { color: var(--ink); background: #79df72; }
.language-switch a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.cta-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); gap: 62px; align-items: start; }
.contact-form { position: relative; z-index: 1; display: grid; gap: 17px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; color: var(--ink); background: #f7f8f5; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.contact-form h3 { margin: 0; font-size: 1.35rem; }
.contact-form > p { margin: -8px 0 2px; color: var(--muted); font-size: .82rem; }
.contact-form label { display: block; color: #38413b; font-size: .78rem; font-weight: 600; }
.form-field { display: grid; gap: 7px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #cbd4cc; border-radius: 4px; color: var(--ink); background: var(--white); }
.contact-form input { height: 46px; min-height: 46px; padding: 9px 11px; }
.contact-form textarea { min-height: 126px; padding: 11px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-dark); outline: 3px solid rgba(65,175,59,.18); outline-offset: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.reference-placeholder { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: end; padding: 48px; border-radius: 8px; color: var(--white); background: var(--ink); }
.reference-label { display: inline-block; margin-bottom: 22px; color: #91e38b; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.reference-placeholder h3 { max-width: 760px; margin-bottom: 18px; font-size: clamp(1.65rem, 3vw, 2.5rem); }
.reference-placeholder p { max-width: 780px; margin-bottom: 0; color: #b9c4bc; }
.reference-placeholder .button { white-space: nowrap; }
.privacy-check { display: flex !important; grid-template-columns: none; align-items: flex-start; gap: 10px !important; color: var(--muted) !important; font-size: .7rem !important; font-weight: 400 !important; }
.privacy-check input { flex: 0 0 auto; width: 17px; height: 17px; min-height: 17px; margin-top: 2px; padding: 0; accent-color: var(--green-dark); }
.privacy-check a { color: var(--green-dark); }
.contact-form .button { width: 100%; border: 0; cursor: pointer; }
.website-field[hidden] { display: none !important; }
@media (max-width: 1050px) {
  .nav-wrap { gap: 14px; }
  .cta-panel { grid-template-columns: 1fr; gap: 44px; }
  .cta-content { max-width: 760px; }
  .contact-form { max-width: 760px; }
  .reference-placeholder { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .reference-placeholder .button { justify-self: start; }
}
@media (max-width: 680px) {
  .header-inner { gap: 10px; }
  .nav-wrap { gap: 9px; }
  .language-switch a, .language-switch span { min-width: 28px; height: 28px; }
  .cta-panel { padding: 42px 20px; }
  .contact-form { padding: 23px 19px; }
  .form-row { grid-template-columns: 1fr; }
  .reference-placeholder { padding: 32px 24px; }
}
@media (max-width: 390px) { .brand-name { display: none; } }

/* V5: search landing pages, legal pages and utility states */
.page-hero { padding: 154px 0 84px; color: var(--white); background: radial-gradient(circle at 82% 10%, rgba(65,175,59,.2), transparent 32%), var(--ink); }
.page-hero .container { display: grid; gap: 24px; }
.page-hero h1 { max-width: 920px; margin-bottom: 0; font-size: clamp(2.55rem, 5.7vw, 5rem); }
.page-hero .lead { max-width: 800px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.breadcrumbs { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; color: #aab7ae; font-size: .76rem; }
.breadcrumbs li:not(:last-child)::after { margin-left: 8px; color: #657169; content: "/"; }
.breadcrumbs a { color: #cdd6cf; text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); text-decoration: underline; }
.detail-section { padding: 92px 0; }
.detail-section--white { background: var(--white); }
.detail-intro { display: grid; grid-template-columns: minmax(250px,.72fr) minmax(0,1.28fr); gap: 78px; align-items: start; }
.detail-intro h2 { font-size: clamp(2rem,3.7vw,3.5rem); }
.detail-copy { color: var(--muted); }
.detail-copy p:last-child { margin-bottom: 0; }
.detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 54px; background: var(--line); border: 1px solid var(--line); }
.detail-card { min-height: 260px; padding: 32px; background: var(--white); }
.detail-card h3 { font-size: 1.15rem; }
.detail-card p { color: var(--muted); font-size: .9rem; }
.detail-card ul { display: grid; gap: 9px; margin: 18px 0 0; padding-left: 18px; color: #465149; font-size: .86rem; }
.process-list { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 48px; border-top: 1px solid #39433c; }
.process-item { padding: 30px 30px 10px 0; border-right: 1px solid #39433c; }
.process-item + .process-item { padding-left: 30px; }
.process-item:last-child { border-right: 0; }
.process-number { display: block; margin-bottom: 42px; color: #91e38b; font-size: .72rem; font-weight: 700; }
.process-item h3 { font-size: 1.15rem; }
.process-item p { margin-bottom: 0; color: #aebbb1; font-size: .88rem; }
.scope-note { margin-top: 42px; padding: 26px 30px; border-left: 4px solid var(--green); background: var(--green-light); }
.scope-note strong { color: var(--ink); }
.scope-note p { margin: 7px 0 0; color: #425047; }
.scope-note a { color: var(--green-dark); font-weight: 700; }
.inner-cta { padding: 82px 0; color: var(--white); background: var(--ink-2); }
.inner-cta-grid { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 60px; align-items: center; }
.inner-cta h2 { max-width: 820px; margin-bottom: 12px; }
.inner-cta p { max-width: 720px; margin-bottom: 0; color: #aebbb1; }
.legal-layout { display: grid; grid-template-columns: minmax(180px,250px) minmax(0,760px); gap: 78px; align-items: start; }
.legal-nav { position: sticky; top: 110px; display: grid; gap: 8px; padding: 0; list-style: none; }
.legal-nav a { color: var(--muted); font-size: .82rem; text-decoration: none; }
.legal-nav a:hover { color: var(--green-dark); }
.legal-content h2 { margin-top: 54px; margin-bottom: 14px; font-size: clamp(1.45rem,2.5vw,2.15rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 28px; font-size: 1.05rem; letter-spacing: -.015em; }
.legal-content p, .legal-content li { color: #4f5b53; font-size: .91rem; }
.legal-content a { color: var(--green-dark); }
.legal-content address { font-style: normal; }
.legal-meta { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.not-found { min-height: 100vh; display: grid; place-items: center; padding: 80px 0; color: var(--white); background: var(--ink); }
.not-found-card { max-width: 760px; }
.not-found-code { color: #91e38b; font-size: .78rem; font-weight: 700; letter-spacing: .12em; }

@media (max-width: 900px) {
  .studio-bridge { grid-template-columns: 1fr; gap: 30px; }
  .studio-bridge-actions { justify-self: start; }
  .detail-intro, .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .detail-grid, .process-list { grid-template-columns: 1fr; }
  .detail-card { min-height: auto; }
  .process-item, .process-item + .process-item { padding: 28px 0; border-right: 0; border-bottom: 1px solid #39433c; }
  .process-item:last-child { border-bottom: 0; }
  .process-number { margin-bottom: 20px; }
  .legal-nav { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .inner-cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .inner-cta .button { justify-self: start; }
}
@media (max-width: 680px) {
  .studio-bridge { padding: 32px 24px; }
  .studio-bridge-actions { width: 100%; }
  .studio-bridge-actions .button { width: 100%; }
  .page-hero { padding: 126px 0 66px; }
  .detail-section, .inner-cta { padding: 68px 0; }
  .detail-grid { margin-top: 38px; }
  .detail-card { padding: 26px 22px; }
  .legal-nav { grid-template-columns: 1fr; }
}
