:root {
      --black: #000000;
      --white: #ffffff;
      --lavender: #f7f7fd;
      --purple: #8088dd;
      --purple-dark: #656fc9;
      --line: #ddddea;
      --muted: #606060;
      --body: "Manrope", Arial, sans-serif;
      --display: "Outfit", Arial, sans-serif;
      --container: 1320px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { min-width: 320px; }
    body {
      min-height: 100svh;
      margin: 0;
      overflow-x: hidden;
      background: var(--white);
      color: var(--black);
      font-family: var(--body);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; }
    button, input, select, textarea { font: inherit; }
    ::selection { background: var(--purple); color: var(--white); }
    :focus-visible { outline: 3px solid var(--purple-dark); outline-offset: 4px; }

    .page { display: grid; min-height: 100svh; overflow-x: clip; grid-template-rows: auto auto 1fr auto; }
    .container { width: min(var(--container), calc(100% - 72px)); margin-inline: auto; }
    .site-header { border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .96); }
    .header-inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 32px; }
    .brand { display: block; width: 150px; height: 64px; overflow: hidden; }
    .brand img { width: 150px; height: 75px; object-fit: contain; transform: translateY(-5px); }
    .header-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
    .header-link { position: relative; padding-bottom: 4px; font-size: 13px; font-weight: 700; letter-spacing: -.01em; }
    .header-link::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--purple); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
    .header-link[aria-current="page"]::after, .header-link:hover::after { transform: scaleX(1); }

    .contact-shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
      gap: clamp(64px, 8vw, 130px);
      align-items: center;
      padding-block: clamp(54px, 7vw, 100px);
    }
    .contact-shell::before {
      position: absolute;
      z-index: 0;
      top: 8%;
      right: -18%;
      width: 560px;
      height: 560px;
      border: 1px solid rgba(128, 136, 221, .25);
      border-radius: 48% 52% 35% 65% / 58% 38% 62% 42%;
      content: "";
      pointer-events: none;
      transform: rotate(18deg);
    }
    .contact-intro, .form-card { position: relative; z-index: 1; }
    .eyebrow { margin-bottom: 20px; color: var(--purple-dark); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    h1 { margin: 0; font-family: var(--display); font-size: clamp(58px, 6.4vw, 96px); font-weight: 500; letter-spacing: -.06em; line-height: .88; }
    h1 span { display: block; color: var(--purple); }
    .intro-copy { max-width: 510px; margin: 32px 0 0; color: #434343; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7; }
    .contact-email { display: inline-block; margin-top: 26px; font-weight: 700; text-decoration: underline; text-decoration-color: var(--purple); text-decoration-thickness: 2px; text-underline-offset: 5px; }

    .form-card { border: 1px solid var(--line); border-radius: 28px; padding: clamp(28px, 4vw, 52px); background: var(--lavender); box-shadow: 0 24px 70px rgba(55, 56, 100, .08); }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 20px; }
    .field { display: grid; gap: 8px; }
    .field-wide { grid-column: 1 / -1; }
    .website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
    label { font-size: 12px; font-weight: 700; }
    .optional { color: #777777; font-weight: 500; }
    input, select, textarea {
      width: 100%;
      border: 1px solid #cfcfde;
      border-radius: 13px;
      padding: 14px 15px;
      background: var(--white);
      color: var(--black);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    input, select { min-height: 52px; }
    textarea { min-height: 136px; resize: vertical; line-height: 1.5; }
    input::placeholder, textarea::placeholder { color: #989898; }
    input:focus, select:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(128, 136, 221, .14); outline: none; }
    .submit-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 26px; }
    .submit-button { display: inline-flex; min-height: 58px; align-items: center; gap: 18px; border: 0; border-radius: 999px; padding: 7px 8px 7px 24px; background: var(--black); color: var(--white); cursor: pointer; font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
    .submit-button:hover { background: #171717; transform: translateY(-2px); }
    .submit-button:disabled { cursor: wait; opacity: .65; transform: none; }
    .submit-arrow { position: relative; display: block; width: 44px; height: 44px; border-radius: 50%; background: var(--purple); color: var(--black); }
    .submit-arrow::before { position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; background: currentColor; clip-path: polygon(44% 0, 100% 0, 100% 56%, 82% 56%, 82% 31%, 23% 90%, 10% 77%, 69% 18%, 44% 18%); content: ""; transform: translate(-50%, -50%); }
    .form-status { max-width: 250px; margin: 0; color: var(--purple-dark); font-size: 12px; font-weight: 700; line-height: 1.45; }
    .form-status[data-state="success"] { max-width: 360px; border: 1px solid rgba(128, 136, 221, .38); border-radius: 16px; padding: 16px 20px; background: rgba(128, 136, 221, .14); color: #343872; font-size: 18px; line-height: 1.35; box-shadow: 0 10px 28px rgba(73, 79, 153, .1); }

    .site-footer { border-top: 1px solid var(--line); }
    .footer-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; color: #6b6b6b; font-size: 12px; font-weight: 600; }
    .footer-inner span:last-child { font-family: var(--display); font-size: 16px; font-weight: 500; font-style: italic; letter-spacing: -.02em; }
    .footer-email { color: var(--black); text-decoration: underline; text-decoration-color: var(--purple); text-decoration-thickness: 2px; text-underline-offset: 4px; }

    @media (max-width: 940px) {
      .container { width: min(var(--container), calc(100% - 40px)); }
      .contact-shell { grid-template-columns: 1fr; gap: 46px; align-items: start; }
      .contact-intro { max-width: 720px; }
      .contact-shell::before { top: 34%; right: -260px; }
    }
    @media (max-width: 620px) {
      .container { width: calc(100% - 32px); }
      .header-inner { min-height: 70px; }
      .brand { width: 108px; height: 52px; }
      .brand img { width: 108px; height: 54px; transform: translateY(-1px); }
      .header-nav { gap: 12px; }
      .header-link { font-size: 10px; }
      .contact-shell { gap: 34px; padding-block: 42px 54px; }
      h1 { font-size: clamp(48px, 15vw, 68px); }
      .intro-copy { margin-top: 24px; font-size: 15px; }
      .form-card { border-radius: 22px; padding: 24px 18px; }
      .form-grid { grid-template-columns: 1fr; gap: 18px; }
      .field-wide { grid-column: auto; }
      .submit-row { align-items: flex-start; flex-direction: column; }
      .form-status { max-width: none; }
      .footer-inner { min-height: 68px; }
      .footer-inner span:last-child { font-size: 14px; }
    }
    @media (max-width: 380px) {
      .header-nav { gap: 8px; }
      .header-link { font-size: 9px; }
      .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; gap: 1px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
    }
    /* Official cropped wordmark: retain its ratio and center it at every breakpoint. */
    .site-header .brand { display: flex; align-items: center; }
    .site-header .brand img { width: 100%; height: auto; transform: none; }
