@font-face {
      font-family: "Kramola";
      src:
        url("../fonts/Kramola.woff2") format("woff2"),
        url("../fonts/Kramola.ttf") format("truetype");
      font-display: swap;
      font-style: normal;
      font-weight: 400;
    }

    :root {
      --accent: #860044;
      --accent-2: #b91264;
      --ink: #252525;
      --pine: #26372f;
      --pine-soft: #4f685a;
      --cream: #f7f2ea;
      --paper: #fffdf9;
      --line: rgba(37, 37, 37, .13);
      --shadow: 0 24px 70px rgba(40, 25, 31, .14);
      --radius-xl: 42px;
      --radius-lg: 30px;
      --container: min(1180px, calc(100vw - 40px));
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 5%, rgba(134, 0, 68, .08), transparent 34rem),
        radial-gradient(circle at 90% 25%, rgba(38, 55, 47, .08), transparent 32rem),
        var(--cream);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    ::selection { background: rgba(134, 0, 68, .2); }

    .container { width: var(--container); margin-inline: auto; }
    .display {
      font-family: "Kramola", Georgia, serif;
      font-weight: 400;
      letter-spacing: -.02em;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      line-height: 1;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 760;
      color: var(--pine);
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--accent);
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 30;
      padding: 16px 0;
      transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
    }
    .site-header.scrolled {
      padding: 9px 0;
      background: rgba(255, 253, 249, .88);
      backdrop-filter: blur(18px);
      box-shadow: 0 8px 32px rgba(32, 25, 28, .08);
    }
    .nav {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .logo { width: clamp(230px, 28vw, 340px); }
    .logo img { width: 100%; height: auto; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 14px;
      font-weight: 650;
    }
    .nav-links a { position: relative; }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0; right: 100%; bottom: -7px;
      height: 2px;
      background: var(--accent);
      transition: right .25s ease;
    }
    .nav-links a:hover::after { right: 0; }
    .nav-cta,
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      padding: 14px 22px;
      font-weight: 760;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }
    .nav-cta {
      color: #fff;
      background: var(--accent);
      box-shadow: 0 14px 35px rgba(134, 0, 68, .24);
    }
    .nav-cta:hover,
    .button:hover { transform: translateY(-3px); }

    .menu-button {
      display: none;
      width: 48px; height: 48px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255,255,255,.65);
      align-items: center;
      justify-content: center;
    }
    .menu-button span,
    .menu-button span::before,
    .menu-button span::after {
      width: 20px;
      height: 2px;
      background: var(--ink);
      display: block;
      position: relative;
      transition: .25s ease;
    }
    .menu-button span::before,
    .menu-button span::after { content: ""; position: absolute; left: 0; }
    .menu-button span::before { top: -6px; }
    .menu-button span::after { top: 6px; }

    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: center;
      padding: 150px 0 96px;
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 440px;
      height: 440px;
      border: 1px solid rgba(134,0,68,.14);
      border-radius: 42% 58% 63% 37% / 44% 43% 57% 56%;
      right: -190px;
      top: 14%;
      animation: morph 10s ease-in-out infinite alternate;
      z-index: -1;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      align-items: center;
      gap: clamp(42px, 6vw, 90px);
    }
    .hero-copy { max-width: 720px; }
    .hero h1 {
      margin: 22px 0 24px;
      max-width: 760px;
      font-size: clamp(58px, 7.8vw, 112px);
      line-height: .88;
    }
    .hero h1 em {
      display: block;
      color: var(--accent);
      font-style: normal;
      transform: translateX(clamp(0px, 4vw, 68px));
    }
    .hero-lead {
      max-width: 610px;
      margin: 0;
      font-size: clamp(18px, 2vw, 23px);
      color: rgba(37,37,37,.76);
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
    .button-primary {
      color: #fff;
      background: var(--accent);
      box-shadow: 0 16px 40px rgba(134,0,68,.25);
    }
    .button-secondary {
      color: var(--ink);
      background: rgba(255,255,255,.58);
      border: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }
    .button svg { width: 18px; height: 18px; transition: transform .25s ease; }
    .button:hover svg { transform: translateX(4px); }

    .hero-visual {
      position: relative;
      min-height: 570px;
      display: grid;
      place-items: center;
    }
    .visual-blob {
      position: absolute;
      width: min(44vw, 510px);
      aspect-ratio: 1;
      border-radius: 49% 51% 38% 62% / 58% 38% 62% 42%;
      background:
        radial-gradient(circle at 38% 31%, rgba(255,255,255,.65) 0 5%, transparent 6%),
        radial-gradient(circle at 48% 42%, #ba1768 0 8%, transparent 8.5%),
        radial-gradient(circle at 66% 60%, #6f0038 0 10%, transparent 10.5%),
        radial-gradient(circle at 37% 70%, #9f0d55 0 7%, transparent 7.5%),
        linear-gradient(140deg, #95044e, #5b002f);
      box-shadow: var(--shadow);
      animation: morph 8s ease-in-out infinite alternate, float 6s ease-in-out infinite;
      overflow: hidden;
    }
    .visual-blob::before,
    .visual-blob::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.28);
    }
    .visual-blob::before { inset: 12%; }
    .visual-blob::after { inset: 24%; }
    .tree-lines {
      width: 78%;
      height: 78%;
      opacity: .88;
      filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
    }
    .tree-lines path {
      stroke-dasharray: 900;
      stroke-dashoffset: 900;
      animation: draw 2.3s .35s ease forwards;
    }
    .orbit {
      position: absolute;
      inset: 7%;
      border-radius: 50%;
      border: 1px dashed rgba(38,55,47,.28);
      animation: rotate 24s linear infinite;
    }
    .orbit::before,
    .orbit::after {
      content: "";
      position: absolute;
      width: 17px; height: 17px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 8px rgba(134,0,68,.10);
    }
    .orbit::before { top: 8%; left: 16%; }
    .orbit::after { right: 5%; bottom: 23%; width: 11px; height: 11px; }
    .visual-note {
      position: absolute;
      left: -4%; bottom: 7%;
      width: 220px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.7);
      border-radius: 28px 28px 28px 8px;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 45px rgba(39,28,32,.12);
      transform: rotate(-4deg);
    }
    .visual-note strong { display: block; font-size: 17px; }
    .visual-note span { color: rgba(37,37,37,.65); font-size: 13px; }

    .scroll-hint {
      position: absolute;
      left: max(20px, calc((100vw - 1180px)/2));
      bottom: 26px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(37,37,37,.55);
    }
    .scroll-hint i {
      width: 34px; height: 52px;
      border: 1px solid var(--line);
      border-radius: 999px;
      position: relative;
    }
    .scroll-hint i::before {
      content: "";
      position: absolute;
      width: 5px; height: 5px;
      background: var(--accent);
      border-radius: 50%;
      left: 50%; top: 11px;
      transform: translateX(-50%);
      animation: scrollDot 1.8s infinite;
    }

    .ticker-wrap {
      overflow: hidden;
      border-block: 1px solid var(--line);
      background: rgba(255,253,249,.55);
    }
    .ticker {
      display: flex;
      width: max-content;
      padding: 17px 0;
      animation: ticker 25s linear infinite;
    }
    .ticker span {
      display: inline-flex;
      align-items: center;
      gap: 26px;
      padding-right: 26px;
      font-family: "Kramola", Georgia, serif;
      font-size: 30px;
      white-space: nowrap;
      color: var(--pine);
    }
    .ticker b { color: var(--accent); font-size: 22px; }

    section { position: relative; }
    .section { padding: clamp(84px, 10vw, 140px) 0; }
    .section-heading {
      display: grid;
      grid-template-columns: .7fr 1.3fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 54px;
    }
    .section-heading h2 {
      margin: 0;
      font-size: clamp(48px, 6.3vw, 84px);
      line-height: .94;
    }
    .section-heading p {
      max-width: 580px;
      justify-self: end;
      margin: 0;
      font-size: 18px;
      color: rgba(37,37,37,.68);
    }

    .directions {
      display: grid;
      gap: 20px;
    }
    .direction {
      position: relative;
      min-height: 270px;
      display: grid;
      grid-template-columns: 90px minmax(230px, .8fr) 1.2fr 56px;
      align-items: center;
      gap: 30px;
      padding: 38px 42px;
      border: 1px solid var(--line);
      border-radius: 46px 14px 46px 14px;
      background: rgba(255,253,249,.62);
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
      backdrop-filter: blur(12px);
    }
    .direction:nth-child(even) { border-radius: 14px 46px 14px 46px; }
    .direction::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -150px;
      top: -120px;
      border-radius: 50%;
      background: var(--accent);
      opacity: .05;
      transition: transform .45s ease, opacity .45s ease;
    }
    .direction:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      background: rgba(255,255,255,.86);
    }
    .direction:hover::before { transform: scale(1.7); opacity: .09; }
    .direction-number {
      font-family: "Kramola", Georgia, serif;
      font-size: 38px;
      color: var(--accent);
    }
    .direction h3 {
      margin: 0;
      font-family: "Kramola", Georgia, serif;
      font-size: clamp(36px, 4vw, 58px);
      font-weight: 400;
      line-height: .95;
    }
    .direction p { margin: 0; color: rgba(37,37,37,.68); font-size: 17px; }
    .direction-icon {
      width: 54px; height: 54px;
      display: grid; place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--pine);
      transition: transform .35s ease, background .35s ease;
    }
    .direction:hover .direction-icon { transform: rotate(45deg); background: var(--accent); }
    .direction-icon svg { width: 22px; height: 22px; }

    .solutions {
      isolation: isolate;
      overflow: hidden;
    }
    .solutions::before {
      content: "";
      position: absolute;
      inset: 7% -12% 7% 22%;
      z-index: -1;
      border-radius: 180px 0 0 180px;
      background: var(--pine);
      transform: rotate(-2deg);
    }
    .solutions-inner {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: clamp(48px, 8vw, 110px);
      align-items: center;
      color: #fff;
    }
    .solutions-copy { padding-block: 100px; }
    .solutions .eyebrow { color: rgba(255,255,255,.75); }
    .solutions .eyebrow::before { background: #fff; }
    .solutions h2 {
      margin: 20px 0 24px;
      font-size: clamp(50px, 6.5vw, 88px);
      line-height: .91;
    }
    .solutions p { margin: 0; max-width: 530px; color: rgba(255,255,255,.73); font-size: 18px; }
    .solution-points { display: grid; gap: 14px; margin-top: 34px; }
    .solution-point {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255,255,255,.15);
    }
    .solution-point i {
      width: 30px; height: 30px;
      display: grid; place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: var(--pine);
      background: #fff;
      font-style: normal;
      font-weight: 800;
    }

    .solution-art {
      position: relative;
      min-height: 590px;
      display: grid;
      place-items: center;
    }
    .glass-card {
      position: absolute;
      width: min(360px, 72vw);
      padding: 30px;
      border: 1px solid rgba(255,255,255,.26);
      border-radius: 38px 12px 38px 12px;
      background: rgba(255,255,255,.11);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 70px rgba(0,0,0,.2);
    }
    .glass-card:nth-child(1) { transform: translate(-20px,-95px) rotate(-6deg); }
    .glass-card:nth-child(2) { transform: translate(62px,30px) rotate(5deg); background: rgba(134,0,68,.58); }
    .glass-card:nth-child(3) { transform: translate(-82px,155px) rotate(-2deg); }
    .glass-card small { text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); }
    .glass-card strong { display: block; margin-top: 8px; font-family: "Kramola", Georgia, serif; font-size: 38px; font-weight: 400; }
    .glass-card span { color: rgba(255,255,255,.72); }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .audience-card {
      position: relative;
      min-height: 430px;
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border-radius: 160px 160px 32px 32px;
      overflow: hidden;
      background: var(--paper);
      box-shadow: inset 0 0 0 1px var(--line);
      transition: transform .35s ease, box-shadow .35s ease;
    }
    .audience-card:nth-child(2) { border-radius: 32px 160px 32px 160px; }
    .audience-card:nth-child(3) { border-radius: 160px 32px 160px 32px; }
    .audience-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
    .audience-card::before {
      content: "";
      position: absolute;
      width: 280px; height: 280px;
      left: 50%; top: -90px;
      transform: translateX(-50%);
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.8), transparent 14%), var(--accent);
      opacity: .94;
      transition: transform .5s ease;
    }
    .audience-card:nth-child(2)::before { background: linear-gradient(145deg, #4f685a, #26372f); }
    .audience-card:nth-child(3)::before { background: linear-gradient(145deg, #bd8f58, #7e5638); }
    .audience-card:hover::before { transform: translateX(-50%) scale(1.06) rotate(7deg); }
    .audience-card h3 { position: relative; margin: 0 0 10px; font: 400 42px/1 "Kramola", Georgia, serif; }
    .audience-card p { position: relative; margin: 0; color: rgba(37,37,37,.66); }

    .cta {
      padding: 20px 0 clamp(90px, 10vw, 140px);
    }
    .cta-shell {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 60px;
      padding: clamp(38px, 6vw, 72px);
      border-radius: 24px 90px 24px 90px;
      background: var(--accent);
      color: #fff;
      box-shadow: 0 35px 90px rgba(134,0,68,.24);
    }
    .cta-shell::before {
      content: "";
      position: absolute;
      width: 430px; height: 430px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      left: -160px; bottom: -260px;
    }
    .cta h2 { margin: 18px 0 22px; font-size: clamp(50px, 6vw, 82px); line-height: .92; }
    .cta p { margin: 0; color: rgba(255,255,255,.72); font-size: 18px; }
    .cta .eyebrow { color: rgba(255,255,255,.7); }
    .cta .eyebrow::before { background: #fff; }

    .form {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
      padding: 25px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 32px 14px 32px 14px;
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(14px);
    }
    .field { display: grid; gap: 7px; }
    .field-full { grid-column: 1 / -1; }
    .field label { font-size: 12px; font-weight: 740; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.21);
      border-radius: 16px;
      outline: none;
      padding: 14px 15px;
      color: #fff;
      background: rgba(255,255,255,.08);
      transition: border .2s ease, background .2s ease;
    }
    .field textarea { min-height: 92px; resize: vertical; }
    .field input::placeholder,
    .field textarea::placeholder { color: rgba(255,255,255,.46); }
    .field input:focus,
    .field select:focus,
    .field textarea:focus { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.14); }
    .field select option { color: var(--ink); }
    .form button {
      grid-column: 1 / -1;
      min-height: 52px;
      border: 0;
      border-radius: 999px;
      color: var(--accent);
      background: #fff;
      font-weight: 800;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .form button:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,0,0,.16); }
    .form-note { grid-column: 1 / -1; margin: 0; font-size: 12px !important; color: rgba(255,255,255,.58) !important; }
    .form-status { display: none; grid-column: 1 / -1; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.14); font-size: 13px; }
    .form-status.show { display: block; }

    footer {
      padding: 0 0 34px;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
      color: rgba(37,37,37,.55);
      font-size: 13px;
    }
    .footer-logo { width: 240px; opacity: .76; }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: .08s; }
    .delay-2 { transition-delay: .16s; }
    .delay-3 { transition-delay: .24s; }

    @keyframes morph {
      0% { border-radius: 49% 51% 38% 62% / 58% 38% 62% 42%; transform: rotate(-2deg); }
      100% { border-radius: 37% 63% 58% 42% / 44% 59% 41% 56%; transform: rotate(3deg); }
    }
    @keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
    @keyframes rotate { to { transform: rotate(360deg); } }
    @keyframes draw { to { stroke-dashoffset: 0; } }
    @keyframes ticker { to { transform: translateX(-50%); } }
    @keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,22px); } }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .menu-button { display: inline-flex; }
      .nav.open .nav-links {
        display: flex;
        position: absolute;
        left: 20px; right: 20px; top: 88px;
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255,253,249,.96);
        box-shadow: var(--shadow);
      }
      .nav.open .nav-links .nav-cta { width: 100%; }
      .hero-grid, .solutions-inner, .cta-shell { grid-template-columns: 1fr; }
      .hero { padding-top: 130px; }
      .hero-visual { min-height: 480px; }
      .visual-blob { width: min(78vw, 500px); }
      .visual-note { left: 8%; }
      .section-heading { grid-template-columns: 1fr; }
      .section-heading p { justify-self: start; }
      .direction { grid-template-columns: 72px 1fr 52px; }
      .direction p { grid-column: 2 / 3; }
      .solutions::before { inset: 3% -10%; border-radius: 70px; transform: none; }
      .solutions-copy { padding: 80px 0 0; }
      .solution-art { min-height: 560px; }
      .audience-grid { grid-template-columns: 1fr; }
      .audience-card { min-height: 360px; }
    }

    @media (max-width: 640px) {
      :root { --container: min(100% - 28px, 1180px); }
      .site-header { padding-top: 9px; }
      .nav { min-height: 62px; }
      .logo { width: 225px; }
      .menu-button { width: 44px; height: 44px; }
      .hero { padding: 118px 0 78px; min-height: auto; }
      .hero h1 { font-size: clamp(52px, 17vw, 78px); }
      .hero h1 em { transform: none; }
      .hero-lead { font-size: 17px; }
      .hero-actions .button { width: 100%; }
      .hero-visual { min-height: 390px; }
      .visual-note { width: 185px; padding: 17px; left: 0; bottom: 1%; }
      .scroll-hint { display: none; }
      .ticker span { font-size: 25px; }
      .section { padding: 82px 0; }
      .section-heading { margin-bottom: 36px; }
      .section-heading h2 { font-size: 52px; }
      .direction {
        grid-template-columns: 1fr 48px;
        gap: 18px;
        min-height: auto;
        padding: 28px 24px;
        border-radius: 32px 10px 32px 10px;
      }
      .direction-number { grid-column: 1 / -1; font-size: 26px; }
      .direction h3 { font-size: 42px; }
      .direction p { grid-column: 1 / -1; }
      .direction-icon { grid-column: 2; grid-row: 2; }
      .solutions h2 { font-size: 53px; }
      .solution-art { min-height: 500px; }
      .glass-card { width: 270px; padding: 23px; }
      .glass-card strong { font-size: 31px; }
      .glass-card:nth-child(1) { transform: translate(-10px,-95px) rotate(-6deg); }
      .glass-card:nth-child(2) { transform: translate(20px,25px) rotate(5deg); }
      .glass-card:nth-child(3) { transform: translate(-25px,145px) rotate(-2deg); }
      .audience-card { min-height: 330px; }
      .cta-shell { padding: 34px 20px; border-radius: 20px 54px 20px 54px; gap: 34px; }
      .cta h2 { font-size: 52px; }
      .form { grid-template-columns: 1fr; padding: 18px; }
      .field-full, .form button, .form-note, .form-status { grid-column: 1; }
      .footer-inner { align-items: flex-start; flex-direction: column; }
      .footer-logo { width: 220px; }
    }

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

/* Brand ornament and supplied tree artwork */
body {
  position: relative;
  isolation: isolate;
}

.site-header,
main,
footer {
  position: relative;
  z-index: 2;
}

.ornament-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ornament-ribbon {
  --ornament-tile: 1420px;
  position: absolute;
  left: -35vw;
  width: 170vw;
  height: 124px;
  background-image: url("../media/ornament-pattern.png");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: var(--ornament-tile) auto;
  opacity: .046;
  transform: rotate(-12deg);
  transform-origin: center;
  animation: ornamentBackdrop 44s linear infinite;
  will-change: background-position;
}

.ornament-ribbon--one { top: 23vh; }
.ornament-ribbon--two {
  top: 76vh;
  opacity: .032;
  transform: rotate(-12deg) scale(1.18);
  animation-duration: 58s;
  animation-direction: reverse;
}

.hero {
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 4%;
  right: -6%;
  width: min(50vw, 680px);
  aspect-ratio: 1621 / 2048;
  background: url("../media/tree-pattern.png") center / contain no-repeat;
  opacity: .028;
  transform: rotate(7deg) scale(1.08);
  pointer-events: none;
}

.hero-visual {
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(44vw, 500px);
  aspect-ratio: 1;
  border-radius: 46% 54% 62% 38% / 42% 37% 63% 58%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.92), transparent 18%),
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(134,0,68,.08));
  box-shadow: 0 30px 90px rgba(40,25,31,.13);
  backdrop-filter: blur(5px);
  animation: morph 10s ease-in-out infinite alternate;
}

.hero-tree-panel {
  position: relative;
  z-index: 2;
  width: min(38vw, 455px);
  aspect-ratio: 1621 / 2048;
  display: grid;
  place-items: center;
  animation: treeFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 28px 30px rgba(37,37,37,.12));
}

.hero-tree-glow {
  position: absolute;
  z-index: -1;
  inset: 12% 2% 4%;
  border-radius: 48% 52% 42% 58% / 57% 44% 56% 43%;
  background: radial-gradient(circle at 52% 44%, rgba(134,0,68,.16), transparent 65%);
  filter: blur(18px);
  animation: glowPulse 5.5s ease-in-out infinite;
}

.hero-tree-pattern {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(1.4deg);
}

.orbit {
  z-index: 0;
  inset: 5%;
}

.visual-note {
  z-index: 3;
  left: -8%;
  bottom: 3%;
}

#directions::before,
#audience::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  aspect-ratio: 1621 / 2048;
  background: url("../media/tree-pattern.png") center / contain no-repeat;
  opacity: .035;
  pointer-events: none;
}

#directions::before {
  right: -150px;
  bottom: -120px;
  transform: rotate(-7deg);
}

#audience::before {
  left: -175px;
  top: 5%;
  transform: rotate(8deg) scale(.92);
}

.ornament-divider {
  --divider-tile: 1024px;
  position: relative;
  z-index: 3;
  height: 88px;
  overflow: hidden;
  border-block: 1px solid rgba(134,0,68,.11);
  background-color: rgba(255,253,249,.72);
  background-image: url("../media/ornament-pattern.png");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: var(--divider-tile) auto;
  animation: ornamentDivider 24s linear infinite;
  will-change: background-position;
}

.ornament-divider--reverse {
  animation-name: ornamentDividerReverse;
  animation-duration: 29s;
}

.solutions::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% -8%;
  background: url("../media/ornament-pattern.png") center / 1280px auto repeat-x;
  opacity: .075;
  transform: rotate(-8deg);
  pointer-events: none;
}

.cta-shell::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -40px;
  bottom: -200px;
  width: 340px;
  aspect-ratio: 1621 / 2048;
  background: url("../media/tree-pattern.png") center / contain no-repeat;
  opacity: .1;
  filter: brightness(0) invert(1);
  transform: rotate(5deg);
  pointer-events: none;
}

.cta-shell > * {
  position: relative;
  z-index: 1;
}

@keyframes ornamentBackdrop {
  to { background-position-x: calc(-1 * var(--ornament-tile)); }
}

@keyframes ornamentDivider {
  to { background-position-x: calc(-1 * var(--divider-tile)); }
}

@keyframes ornamentDividerReverse {
  from { background-position-x: calc(-1 * var(--divider-tile)); }
  to { background-position-x: 0; }
}

@keyframes treeFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(1.2deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: .72; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.06); }
}

@media (max-width: 980px) {
  .ornament-ribbon {
    --ornament-tile: 1120px;
    height: 98px;
    opacity: .038;
  }
  .hero-tree-panel { width: min(66vw, 430px); }
  .hero-visual::before { width: min(76vw, 490px); }
  .visual-note { left: 6%; }
  .hero::after { width: min(76vw, 620px); right: -22%; }
}

@media (max-width: 640px) {
  .ornament-ribbon {
    --ornament-tile: 760px;
    left: -60vw;
    width: 220vw;
    height: 67px;
    opacity: .032;
    transform: rotate(-15deg);
  }
  .ornament-ribbon--one { top: 28vh; }
  .ornament-ribbon--two { top: 74vh; transform: rotate(-15deg) scale(1.14); }
  .hero-tree-panel { width: min(79vw, 365px); }
  .hero-visual::before { width: min(88vw, 410px); }
  .hero::after { width: 105vw; right: -45%; opacity: .022; }
  .ornament-divider {
    --divider-tile: 720px;
    height: 63px;
  }
  #directions::before,
  #audience::before { width: 300px; opacity: .025; }
}

@media (prefers-reduced-motion: reduce) {
  .ornament-ribbon,
  .ornament-divider,
  .hero-tree-panel,
  .hero-tree-glow { animation: none !important; }
}

/* Editorial photography layer */
.site-header:not(.scrolled) .nav {
  padding: 8px 12px 8px 18px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 999px;
  background: rgba(255,253,249,.88);
  box-shadow: 0 18px 55px rgba(17,24,21,.16);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header.scrolled .nav {
  padding-inline: 0;
}

.hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19,28,24,.94) 0%, rgba(19,28,24,.82) 39%, rgba(19,28,24,.28) 70%, rgba(19,28,24,.44) 100%),
    url("../media/photo-hero.webp") center 48% / cover no-repeat;
  box-shadow: inset 0 -1px rgba(255,255,255,.13);
}

.hero::before {
  inset: 0;
  width: auto;
  height: auto;
  right: auto;
  top: auto;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(134,0,68,.34), transparent 24rem),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.3));
  animation: none;
  z-index: -1;
}

.hero::after { display: none; }
.hero .eyebrow { color: rgba(255,255,255,.8); }
.hero .eyebrow::before { background: #f29ac7; }
.hero h1 { text-shadow: 0 12px 40px rgba(0,0,0,.28); }
.hero h1 em { color: #f29ac7; }
.hero-lead { color: rgba(255,255,255,.78); }
.hero .button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
}
.hero .button-secondary:hover { background: rgba(255,255,255,.18); }
.hero .scroll-hint { color: rgba(255,255,255,.68); }
.hero .scroll-hint i { border-color: rgba(255,255,255,.36); }
.hero .scroll-hint i::before { background: #f29ac7; }

.hero-visual::before {
  width: min(42vw, 490px);
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,253,249,.78);
  box-shadow: 0 34px 100px rgba(0,0,0,.28);
  backdrop-filter: blur(15px) saturate(1.12);
}
.hero-tree-panel {
  width: min(35vw, 420px);
  filter: drop-shadow(0 28px 35px rgba(0,0,0,.2));
}
.hero-tree-glow {
  background: radial-gradient(circle at 52% 44%, rgba(134,0,68,.22), transparent 65%);
}
.hero .orbit { border-color: rgba(255,255,255,.4); }
.hero .orbit::before,
.hero .orbit::after { background: #f29ac7; box-shadow: 0 0 0 8px rgba(242,154,199,.12); }
.hero .visual-note {
  color: var(--ink);
  border-color: rgba(255,255,255,.75);
  background: rgba(255,253,249,.86);
}

.direction {
  grid-template-columns: 72px minmax(0, 1fr) minmax(190px, 255px) 56px;
  min-height: 260px;
}
.direction-copy { display: grid; gap: 15px; }
.direction-copy p { max-width: 650px; }
.direction-photo {
  position: relative;
  height: 188px;
  margin: 0;
  overflow: hidden;
  border-radius: 84px 18px 84px 18px;
  transform: rotate(-2deg);
  box-shadow: 0 18px 38px rgba(37,37,37,.15);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.direction:nth-child(even) .direction-photo {
  border-radius: 18px 84px 18px 84px;
  transform: rotate(2deg);
}
.direction-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 48%, rgba(134,0,68,.2));
  pointer-events: none;
}
.direction-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.direction:hover .direction-photo {
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 26px 50px rgba(37,37,37,.2);
}
.direction:hover .direction-photo img { transform: scale(1.08); }

.solution-art { min-height: 650px; }
.solution-photo {
  position: absolute;
  width: min(330px, 68vw);
  height: 410px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 120px 24px 120px 24px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 34px 80px rgba(0,0,0,.3);
  transform-origin: center;
  transition: z-index 0s, transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s ease;
}
.solution-photo:nth-child(1) { transform: translate(-92px,-92px) rotate(-7deg); }
.solution-photo:nth-child(2) { transform: translate(82px,18px) rotate(6deg); z-index: 2; }
.solution-photo:nth-child(3) { transform: translate(-64px,142px) rotate(-3deg); }
.solution-photo:hover {
  z-index: 5;
  transform: translate(0,0) rotate(0) scale(1.04);
  box-shadow: 0 44px 100px rgba(0,0,0,.38);
}
.solution-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.solution-photo:hover img { transform: scale(1.07); }
.solution-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 58px 28px 28px;
  color: #fff;
  background: linear-gradient(transparent, rgba(18,24,21,.92));
}
.solution-photo small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
}
.solution-photo strong {
  display: block;
  margin-top: 7px;
  font-family: "Kramola", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}
.solution-photo span { color: rgba(255,255,255,.76); }

.audience-card {
  min-height: 500px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  background: rgba(255,253,249,.82);
}
.audience-card::before { display: none; }
.audience-photo {
  position: relative;
  height: 275px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: inherit;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 18px;
}
.audience-card:nth-child(2) .audience-photo {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 90px;
}
.audience-card:nth-child(3) .audience-photo {
  border-bottom-left-radius: 95px;
  border-bottom-right-radius: 28px;
}
.audience-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(25,31,28,.34));
}
.audience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.audience-card:nth-child(2) .audience-photo img { object-position: center 38%; }
.audience-card:hover .audience-photo img { transform: scale(1.07); }
.audience-content { padding: 30px 32px 34px; }
.audience-card h3 {
  position: static;
  margin: 0 0 12px;
  font-size: clamp(34px, 3.2vw, 44px);
}
.audience-card p { position: static; }

@media (max-width: 980px) {
  .site-header:not(.scrolled) .nav { border-radius: 26px; }
  .hero {
    background-position: 60% center;
  }
  .hero-grid { gap: 28px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 440px; }
  .hero-tree-panel { width: min(62vw, 410px); }
  .hero-visual::before { width: min(70vw, 470px); }
  .direction {
    grid-template-columns: 62px minmax(0,1fr) 190px 52px;
    gap: 22px;
  }
  .direction-photo { height: 170px; }
  .solution-art { min-height: 600px; }
  .audience-card { min-height: 460px; }
}

@media (max-width: 720px) {
  .hero {
    background-position: 66% center;
    background-image:
      linear-gradient(180deg, rgba(19,28,24,.9) 0%, rgba(19,28,24,.76) 55%, rgba(19,28,24,.55) 100%),
      url("../media/photo-hero.webp");
  }
  .direction {
    grid-template-columns: 1fr 48px;
    gap: 18px;
  }
  .direction-number { grid-column: 1 / -1; }
  .direction-copy { grid-column: 1 / -1; }
  .direction-photo {
    grid-column: 1 / -1;
    height: 230px;
    border-radius: 78px 16px 78px 16px;
  }
  .direction:nth-child(even) .direction-photo { border-radius: 16px 78px 16px 78px; }
  .direction-icon { grid-column: 2; grid-row: 2; align-self: start; }
  .solution-photo { width: min(280px, 72vw); height: 360px; }
  .solution-photo:nth-child(1) { transform: translate(-48px,-90px) rotate(-7deg); }
  .solution-photo:nth-child(2) { transform: translate(44px,20px) rotate(6deg); }
  .solution-photo:nth-child(3) { transform: translate(-32px,132px) rotate(-3deg); }
}

@media (max-width: 640px) {
  .site-header:not(.scrolled) .nav { padding: 7px 8px 7px 12px; }
  .hero h1 { text-shadow: 0 8px 30px rgba(0,0,0,.32); }
  .hero-visual { min-height: 360px; }
  .hero-tree-panel { width: min(73vw, 335px); }
  .hero-visual::before { width: min(82vw, 380px); }
  .direction-photo { height: 205px; }
  .solution-art { min-height: 525px; }
  .solution-photo { width: 245px; height: 320px; }
  .solution-photo strong { font-size: 32px; }
  .solution-photo:nth-child(1) { transform: translate(-34px,-82px) rotate(-6deg); }
  .solution-photo:nth-child(2) { transform: translate(28px,18px) rotate(5deg); }
  .solution-photo:nth-child(3) { transform: translate(-18px,118px) rotate(-3deg); }
  .audience-card { min-height: 440px; }
  .audience-photo { height: 235px; }
  .audience-content { padding: 26px 24px 30px; }
}

/* Header is physically placed inside the hero and floats over its photograph. */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-top: 156px;
  background-image:
    linear-gradient(90deg, rgba(17, 25, 22, .94) 0%, rgba(17, 25, 22, .80) 42%, rgba(17, 25, 22, .26) 72%, rgba(17, 25, 22, .42) 100%),
    url("../media/photo-hero.webp");
  background-position: center 48%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero > .site-header,
.hero > .site-header.scrolled {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  padding: 18px 0 0;
  background: transparent;
  box-shadow: none;
}

.hero > .site-header .nav,
.hero > .site-header:not(.scrolled) .nav,
.hero > .site-header.scrolled .nav {
  position: relative;
  min-height: 70px;
  padding: 8px 12px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 18px 55px rgba(7, 15, 12, .22);
}

.hero > .site-header .nav-links { color: #202722; }
.hero > .site-header .logo img {
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.4));
}
.hero > .site-header .menu-button {
  border-color: rgba(32,39,34,.16);
  background: rgba(255,255,255,.58);
}

@media (max-width: 980px) {
  .hero { padding-top: 132px; background-position: 60% center; }
  .hero > .site-header .nav,
  .hero > .site-header:not(.scrolled) .nav,
  .hero > .site-header.scrolled .nav { border-radius: 27px; }

  .hero > .site-header .nav.open .nav-links {
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    border: 1px solid rgba(255,255,255,.72);
    background: rgba(255,255,255,.88);
    -webkit-backdrop-filter: blur(24px) saturate(1.18);
    backdrop-filter: blur(24px) saturate(1.18);
    box-shadow: 0 24px 60px rgba(11,19,16,.24);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 116px;
    background-image:
      linear-gradient(180deg, rgba(17,25,22,.91) 0%, rgba(17,25,22,.77) 57%, rgba(17,25,22,.56) 100%),
      url("../media/photo-hero.webp");
    background-position: 66% center;
  }
}

@media (max-width: 640px) {
  .hero > .site-header,
  .hero > .site-header.scrolled { padding-top: 10px; }
  .hero > .site-header .nav,
  .hero > .site-header:not(.scrolled) .nav,
  .hero > .site-header.scrolled .nav {
    min-height: 60px;
    padding: 6px 7px 6px 12px;
    border-radius: 22px;
    background: rgba(255,255,255,.72);
  }
  .hero > .site-header .logo { width: min(62vw, 225px); }
}

/* Responsive containment, solution panel and legal pages */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body { overflow-x: clip; }
}

#directions,
#audience {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  #directions,
  #audience { overflow-x: clip; }
}

.solutions {
  overflow: visible;
}

.solutions::before {
  display: none;
}

.solutions-inner {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  padding: clamp(52px, 7vw, 92px);
  border-radius: 32px 120px 32px 120px;
  background: var(--pine);
  box-shadow: 0 34px 90px rgba(38, 55, 47, .22);
}

.solutions-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8% -18%;
  background: url("../media/ornament-pattern.png") center / 1280px auto repeat-x;
  opacity: .075;
  transform: rotate(-8deg);
  pointer-events: none;
}

.solutions::after {
  display: none;
}

.solutions-copy,
.solution-art {
  min-width: 0;
}

.solutions-copy {
  padding-block: 0;
}

.solutions h2,
.solution-point span {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.solutions h2 {
  text-wrap: balance;
}

.consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #fff;
}

.consent a,
.footer-links a,
.legal-text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.consent a:hover,
.footer-links a:hover,
.legal-text-link:hover {
  text-decoration-thickness: 2px;
}

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

.legal-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(134, 0, 68, .09), transparent 30rem),
    radial-gradient(circle at 88% 28%, rgba(38, 55, 47, .1), transparent 32rem),
    var(--cream);
}

.legal-header {
  position: relative;
  z-index: 3;
  padding: 18px 0;
}

.legal-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 12px 8px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(255,253,249,.8);
  box-shadow: 0 18px 55px rgba(32,25,28,.1);
  backdrop-filter: blur(18px);
}

.legal-main {
  padding: clamp(48px, 7vw, 94px) 0 clamp(80px, 10vw, 130px);
}

.legal-document {
  max-width: 940px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 28px 88px 28px 88px;
  background: rgba(255,253,249,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.legal-document h1 {
  max-width: 820px;
  margin: 22px 0 12px;
  font-size: clamp(54px, 8vw, 92px);
  line-height: .92;
  overflow-wrap: anywhere;
}

.legal-updated {
  margin: 0 0 34px;
  color: rgba(37,37,37,.58);
  font-size: 14px;
}

.legal-intro {
  margin-bottom: 42px;
  padding: 24px 26px;
  border-left: 4px solid var(--accent);
  border-radius: 0 22px 22px 0;
  background: rgba(134,0,68,.055);
}

.legal-document section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 14px;
  font: 400 clamp(31px, 4.5vw, 44px)/1.02 "Kramola", Georgia, serif;
}

.legal-document p {
  margin: 0 0 13px;
  color: rgba(37,37,37,.76);
  font-size: 16px;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .solutions-inner {
    padding: clamp(48px, 7vw, 70px);
    border-radius: 28px 84px 28px 84px;
  }
}

@media (max-width: 640px) {
  .solutions-inner {
    padding: 44px 20px 50px;
    border-radius: 22px 54px 22px 54px;
  }

  .solutions h2 {
    font-size: clamp(43px, 14vw, 53px);
    line-height: .94;
  }

  .solution-art {
    min-height: 500px;
  }

  .solution-photo {
    width: min(232px, 92%);
    height: 310px;
  }

  .solution-photo:nth-child(1) { transform: translate(-14px,-76px) rotate(-5deg); }
  .solution-photo:nth-child(2) { transform: translate(14px,16px) rotate(4deg); }
  .solution-photo:nth-child(3) { transform: translate(-8px,108px) rotate(-2deg); }

  .footer-links {
    gap: 8px;
  }

  .legal-header {
    padding: 10px 0;
  }

  .legal-nav {
    min-height: 60px;
    padding: 6px 7px 6px 12px;
    border-radius: 22px;
  }

  .legal-nav .logo {
    width: min(58vw, 210px);
  }

  .legal-back {
    width: 44px;
    height: 44px;
    overflow: hidden;
    padding: 0;
    color: transparent;
    flex: 0 0 auto;
  }

  .legal-back::before {
    content: "←";
    color: var(--ink);
    font-size: 22px;
  }

  .legal-main {
    padding-top: 34px;
  }

  .legal-document {
    padding: 30px 20px 38px;
    border-radius: 22px 54px 22px 54px;
  }

  .legal-document h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .legal-intro {
    padding: 20px 18px;
  }
}

@media (max-width: 640px) {
  .legal-back::before {
    content: "";
    width: 11px;
    height: 11px;
    border-left: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: rotate(45deg) translate(-1px, 1px);
  }
}

.legal-back svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .legal-back {
    color: var(--ink);
  }

  .legal-back span {
    display: none;
  }

  .legal-back::before {
    display: none;
  }
}

/* === July 2026 refinement: hero figure transparency + solutions text offset === */
.hero-visual::before {
  border-color: rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.28), transparent 18%),
    linear-gradient(145deg, rgba(255,255,255,.20), rgba(134,0,68,.02));
  box-shadow: 0 22px 64px rgba(0,0,0,.10);
}

.solutions-copy {
  padding-inline-start: clamp(24px, 3.4vw, 48px);
}

@media (max-width: 980px) {
  .solutions-copy {
    padding-inline-start: clamp(16px, 2.8vw, 30px);
  }
}

@media (max-width: 640px) {
  .solutions-copy {
    padding-inline-start: 12px;
  }
}


/* === July 2026 refinement: clean headline wrapping + white hero trees === */
.display,
.direction h3,
.audience-card h3,
.solution-photo strong,
.glass-card strong {
  -webkit-hyphens: none;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.display {
  text-wrap: balance;
}

.solutions h2 {
  -webkit-hyphens: none;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 640px) {
  .section-heading h2,
  .cta h2 {
    font-size: clamp(43px, 13vw, 52px);
    line-height: .96;
  }

  .solutions-inner {
    padding: 44px 32px 52px;
  }

  .solutions h2 {
    font-size: clamp(42px, 13vw, 50px);
    line-height: .96;
  }
}

/* Server-connected lead form */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.form-status.success {
  background: rgba(209, 255, 224, .16);
  border: 1px solid rgba(209, 255, 224, .34);
}

.form-status.error {
  background: rgba(255, 209, 219, .15);
  border: 1px solid rgba(255, 209, 219, .34);
}
