:root {
        --ink: #1b1e1a;
        --muted: #626760;
        --paper: #fbfaf4;
        --paper-warm: #f4ecd8;
        --paper-cool: #eef4ef;
        --white: #fffefb;
        --line: #d9d6c9;
        --blue: #173746;
        --green: #3f6654;
        --green-dark: #2b4e40;
        --copper: #a85f3d;
        --lemon: #f3cc5f;
        --shadow: 0 20px 64px rgba(28, 34, 28, 0.12);
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        background: var(--paper);
        color: var(--ink);
        font-family:
          Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", sans-serif;
        line-height: 1.55;
      }

      a {
        color: inherit;
      }

      .hero {
        min-height: 92svh;
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(380px, 50vw);
        grid-template-rows: auto 1fr;
        overflow: hidden;
        color: var(--ink);
        background:
          linear-gradient(90deg, rgba(251, 250, 244, 0.98) 0%, rgba(251, 250, 244, 0.94) 44%, rgba(251, 250, 244, 0.62) 64%, rgba(251, 250, 244, 0.16) 100%),
          linear-gradient(180deg, #fbfaf4 0%, #f4ecd8 100%);
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(180deg, rgba(63, 102, 84, 0.08), rgba(63, 102, 84, 0) 44%),
          linear-gradient(90deg, rgba(23, 55, 70, 0.08), rgba(23, 55, 70, 0) 36%);
        z-index: 1;
      }

      .hero img {
        position: relative;
        grid-column: 2;
        grid-row: 1 / 3;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 52% 42%;
        filter: saturate(0.94) contrast(0.98);
      }

      .nav,
      .hero-content {
        position: relative;
        z-index: 2;
      }

      .nav {
        grid-column: 1 / -1;
        grid-row: 1;
        width: min(1120px, calc(100% - 40px));
        margin: 0 auto;
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }

      .brand {
        font-weight: 780;
        letter-spacing: 0;
        font-size: 1rem;
        color: var(--green-dark);
      }

      .nav-actions {
        display: flex;
        align-items: center;
        gap: 22px;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 18px;
        font-size: 0.93rem;
      }

      .language-switcher {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--muted);
        font-size: 0.9rem;
        font-weight: 760;
      }

      .nav-links a,
      .language-switcher a {
        color: rgba(255, 254, 251, 0.82);
        text-decoration: none;
        text-shadow: 0 1px 12px rgba(18, 21, 18, 0.34);
      }

      .nav-links a:hover,
      .language-switcher a:hover {
        color: var(--white);
      }

      .language-switcher [aria-current="page"] {
        color: var(--white);
      }

      .hero-content {
        grid-column: 1;
        grid-row: 2;
        width: min(520px, calc(100% - 40px));
        margin-left: max(20px, calc((100vw - 1120px) / 2));
        margin-right: 0;
        padding: 7svh 0 6svh;
      }

      .availability {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
        font-size: 0.88rem;
        color: var(--green-dark);
        font-weight: 680;
      }

      .availability::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--lemon);
        box-shadow: 0 0 0 5px rgba(243, 204, 95, 0.24);
      }

      h1 {
        max-width: 520px;
        margin: 0;
        font-family: Charter, "Iowan Old Style", Georgia, serif;
        font-size: clamp(3.35rem, 4.75vw, 5.15rem);
        line-height: 0.94;
        letter-spacing: 0;
        font-weight: 700;
      }

      .hero-text {
        max-width: 500px;
        margin: 24px 0 0;
        color: #41483f;
        font-size: clamp(1.08rem, 1.7vw, 1.35rem);
      }

      .hero-proof {
        width: min(540px, 100%);
        margin-top: 40px;
        padding-top: 22px;
        border-top: 1px solid rgba(63, 102, 84, 0.3);
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .hero-proof span {
        display: block;
        margin-bottom: 5px;
        color: var(--copper);
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
      }

      .hero-proof strong {
        display: block;
        color: var(--ink);
        font-size: 0.98rem;
        line-height: 1.3;
      }

      .hero-actions {
        margin-top: 32px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
      }

      .button {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 13px 18px;
        border-radius: 8px;
        border: 1px solid transparent;
        text-decoration: none;
        font-weight: 720;
        font-size: 0.98rem;
        transition:
          transform 160ms ease,
          background 160ms ease,
          border-color 160ms ease;
      }

      .button:hover {
        transform: translateY(-1px);
      }

      .button-primary {
        color: var(--ink);
        background: var(--lemon);
        border-color: #e0b84d;
      }

      .button-secondary {
        color: var(--green-dark);
        border-color: rgba(63, 102, 84, 0.36);
        background: rgba(255, 254, 251, 0.68);
      }

      .section {
        padding: 88px 0;
      }

      .wrap {
        width: min(1120px, calc(100% - 40px));
        margin: 0 auto;
      }

      .intro-band {
        background: var(--white);
        border-bottom: 1px solid var(--line);
        border-top: 1px solid rgba(63, 102, 84, 0.16);
      }

      .two-col {
        display: grid;
        grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
        gap: clamp(34px, 7vw, 82px);
        align-items: start;
      }

      .section-label {
        margin: 0 0 14px;
        color: var(--copper);
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0;
        text-transform: uppercase;
      }

      h2 {
        margin: 0;
        max-width: 780px;
        font-family: Charter, "Iowan Old Style", Georgia, serif;
        font-size: clamp(2.25rem, 4.9vw, 4.6rem);
        line-height: 0.96;
        letter-spacing: 0;
      }

      h3 {
        margin: 0;
        font-size: 1.2rem;
        line-height: 1.2;
        letter-spacing: 0;
      }

      .lead {
        margin: 22px 0 0;
        max-width: 750px;
        color: var(--muted);
        font-size: clamp(1.05rem, 1.8vw, 1.24rem);
      }

      .editorial-note {
        margin: 0;
        padding: 22px 0 0 22px;
        border-left: 3px solid var(--green);
        color: #343a34;
      }

      .editorial-note strong {
        display: block;
        margin-bottom: 10px;
        color: var(--ink);
        font-size: 1.08rem;
      }

      .editorial-note p {
        margin: 0;
      }

      .problem-list {
        margin: 34px 0 0;
        padding: 0;
        display: grid;
        list-style: none;
        border-top: 1px solid var(--line);
      }

      .problem-list li {
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
        color: #2a2f2b;
        font-weight: 650;
      }

      .process {
        background:
          linear-gradient(90deg, rgba(244, 236, 216, 0.82), rgba(238, 244, 239, 0.9)),
          var(--paper-cool);
        border-bottom: 1px solid var(--line);
      }

      .process-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        margin-top: 38px;
        border-top: 1px solid rgba(63, 102, 84, 0.32);
        border-bottom: 1px solid rgba(63, 102, 84, 0.32);
      }

      .process-step {
        min-height: 220px;
        padding: 28px 28px 30px;
        border-right: 1px solid rgba(63, 102, 84, 0.24);
      }

      .process-step:last-child {
        border-right: 0;
      }

      .process-step span {
        display: block;
        margin-bottom: 36px;
        color: var(--copper);
        font-weight: 800;
      }

      .process-step p {
        margin: 12px 0 0;
        color: var(--muted);
      }

      .offer {
        background: var(--white);
        border-bottom: 1px solid var(--line);
      }

      .offer-panel {
        display: grid;
        grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.62fr);
        gap: clamp(30px, 5vw, 62px);
        align-items: start;
      }

      .price {
        width: 100%;
        border-radius: 8px;
        background: var(--paper);
        color: var(--ink);
        border: 1px solid var(--line);
        padding: clamp(22px, 4vw, 34px);
        box-shadow: none;
      }

      .price strong {
        display: block;
        font-family: Charter, "Iowan Old Style", Georgia, serif;
        font-size: clamp(2.6rem, 5vw, 4.6rem);
        line-height: 0.95;
        margin-bottom: 10px;
      }

      .price p {
        margin: 0;
        color: var(--muted);
      }

      .price small {
        display: block;
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
        color: var(--green-dark);
        font-weight: 760;
      }

      .deliverables {
        margin: 30px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 13px;
      }

      .deliverables li {
        display: grid;
        grid-template-columns: 16px 1fr;
        gap: 12px;
        align-items: start;
        color: #2e342f;
      }

      .deliverables li::before {
        content: "";
        width: 9px;
        height: 9px;
        margin-top: 8px;
        border-radius: 50%;
        background: var(--green);
      }

      .risk {
        margin-top: 28px;
        padding-left: 18px;
        border-left: 4px solid var(--copper);
        color: #333832;
        font-weight: 680;
      }

      .projects {
        background: var(--paper);
      }

      .project-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        margin-top: 38px;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .project-card {
        min-height: 260px;
        border-right: 1px solid var(--line);
        background: transparent;
        padding: 28px 26px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .project-card:last-child {
        border-right: 0;
      }

      .project-card p {
        color: var(--muted);
        margin: 16px 0 26px;
      }

      .project-card span {
        color: var(--green);
        font-weight: 780;
      }

      .testimonials {
        background: var(--paper-warm);
        border-top: 1px solid #e1d6bd;
        border-bottom: 1px solid #e1d6bd;
      }

      .testimonial-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
        gap: clamp(28px, 5vw, 58px);
        margin-top: 38px;
        align-items: start;
      }

      .quote-card {
        margin: 0;
        padding: 0;
      }

      .quote-card blockquote {
        margin: 0;
        color: #252a25;
        font-family: Charter, "Iowan Old Style", Georgia, serif;
        font-size: clamp(2rem, 3.4vw, 3.4rem);
        line-height: 1.02;
        font-weight: 690;
      }

      .quote-card figcaption {
        margin-top: 28px;
        color: var(--muted);
        font-size: 0.94rem;
      }

      .quote-card figcaption strong {
        display: block;
        color: var(--ink);
      }

      .supporting-quotes {
        display: grid;
        gap: 0;
        border-top: 1px solid #dbcdb1;
      }

      .supporting-quotes figure {
        margin: 0;
        padding: 22px 0;
        border-bottom: 1px solid #dbcdb1;
      }

      .supporting-quotes blockquote {
        margin: 0;
        color: #252a25;
        font-weight: 760;
        line-height: 1.36;
      }

      .supporting-quotes figcaption {
        margin-top: 14px;
        color: var(--muted);
        font-size: 0.9rem;
      }

      .supporting-quotes strong {
        display: block;
        color: var(--ink);
      }

      .proof {
        background: var(--white);
        border-top: 1px solid var(--line);
      }

      .proof-line {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
        margin-top: 36px;
      }

      .proof-item {
        border-top: 4px solid var(--green);
        padding-top: 18px;
      }

      .proof-item strong {
        display: block;
        font-size: 1.04rem;
      }

      .proof-item p {
        margin: 8px 0 0;
        color: var(--muted);
      }

      .cta {
        background:
          linear-gradient(90deg, rgba(27, 30, 26, 0.96), rgba(23, 55, 70, 0.98)),
          var(--ink);
        color: var(--white);
      }

      .cta .lead {
        color: rgba(255, 255, 255, 0.76);
      }

      .cta-row {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
      }

      .email-link {
        color: var(--lemon);
        font-weight: 740;
        text-decoration: none;
      }

      .footer {
        padding: 28px 0;
        background: #121512;
        color: rgba(255, 255, 255, 0.62);
        font-size: 0.92rem;
      }

      @media (max-width: 1100px) {
        .nav {
          align-items: flex-start;
          order: 0;
        }

        .nav-links {
          display: none;
        }

        .language-switcher a,
        .language-switcher [aria-current="page"] {
          color: var(--green-dark);
          text-shadow: none;
        }

        .hero {
          display: flex;
          flex-direction: column;
          min-height: auto;
        }

        .hero img {
          position: relative;
          z-index: 1;
          width: 100%;
          height: 360px;
          order: 1;
          object-position: 50% 28%;
        }

        .hero-content {
          order: 2;
          width: min(100% - 40px, 1120px);
          margin: 0 auto;
          padding: 34px 0 42px;
        }

        .hero-proof {
          grid-template-columns: 1fr;
          gap: 14px;
          margin-top: 30px;
        }

        .two-col,
        .offer-panel,
        .process-grid,
        .project-grid,
        .testimonial-grid,
        .proof-line {
          grid-template-columns: 1fr;
        }

        .section {
          padding: 68px 0;
        }

        .process-grid,
        .project-grid {
          border-bottom: 0;
        }

        .process-step,
        .project-card {
          min-height: auto;
          border-right: 0;
          border-bottom: 1px solid var(--line);
        }
      }

      @media (max-width: 540px) {
        .nav,
        .hero-content,
        .wrap {
          width: min(100% - 28px, 1120px);
        }

        h1 {
          font-size: clamp(2.7rem, 12.5vw, 4rem);
        }

        .hero-text {
          font-size: 1rem;
        }

        .button {
          width: 100%;
        }

        .availability {
          max-width: 280px;
        }

        .hero img {
          height: 310px;
        }

        .process-step,
        .project-card {
          padding-left: 0;
          padding-right: 0;
        }
      }
