    /* ===========================================================
       Carta International · minimal premium, monocromo
       =========================================================== */

    :root {
      --bg: #ffffff;
      --bg-soft: #fafafa;
      --ink: #18181b;
      --muted: #5e5e66;
      --line: #e4e4e7;
      --line-strong: #d4d4d8;
      --card: #ffffff;
      --accent: #fcd00a;
      --brand: #0f4594;
      --accent-soft: #fef3c7;
      --danger: #f87171;
      --danger-soft: #fef2f2;
      --max: 1120px;
      --pad: clamp(1.25rem, 5vw, 4rem);
      --display: "Schibsted Grotesk", system-ui, sans-serif;
      --body: "Inter", system-ui, -apple-system, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--body);
      font-size: 1.0625rem;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    h1, h2, h3 {
      font-family: var(--display);
      font-weight: 600;
      line-height: 1.04;
      letter-spacing: -0.025em;
    }

    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    .label {
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
    }

    /* ---------- NAV ---------- */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--bg);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 0.9rem var(--pad);
    }

    .wordmark {
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: -0.03em;
    }
    .wordmark span { font-weight: 400; color: var(--brand); }

    .nav-links { display: flex; gap: 2rem; margin-left: auto; }
    .nav-links a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
    .nav-links a:hover { color: var(--ink); }

    /* mobile nav (hidden on desktop) */
    .nav-toggle, .nav-mobile { display: none; }

    /* ---------- BUTTONS / LINKS ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: var(--ink);
      font-family: var(--body);
      font-size: 0.88rem;
      font-weight: 500;
      padding: 0.7rem 1.4rem;
      border: 1px solid var(--accent);
      border-radius: 10px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }
    .btn:hover { opacity: 0.82; transform: translateY(-1px); }
    .btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.9rem;
      font-weight: 500;
    }
    .link-arrow span { transition: transform 0.2s; color: var(--brand); }
    .link-arrow:hover span { transform: translateX(4px); }

    /* ---------- HERO ---------- */
    .hero {
      padding: clamp(2.5rem, 6vw, 5rem) 0;
      background: var(--bg-soft);
    }
    .hero-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }
    .eyebrow {
      font-size: 0.72rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 1.1rem;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 4.8vw, 3.2rem);
      font-weight: 600;
      margin-bottom: 1.2rem;
    }
    .hero-lead {
      font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
      color: var(--muted);
      max-width: 44ch;
      margin-bottom: 1.8rem;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      flex-wrap: wrap;
      margin-bottom: 2.2rem;
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      column-gap: 1.2rem;
      row-gap: 0.25rem;
      font-size: 0.85rem;
      color: var(--muted);
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .hero-meta li {
      display: inline-flex;
      align-items: center;
      gap: 1.2rem;
    }
    .hero-meta li:not(:last-child)::after {
      content: "";
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--line-strong);
      flex-shrink: 0;
    }
    @media (max-width: 480px) {
      .hero-meta { flex-direction: column; align-items: flex-start; row-gap: 0.3rem; }
      .hero-meta li { gap: 0; }
      .hero-meta li::after { display: none; }
    }

    /* hero visual · fanned card outlines */
    .hero-visual { display: flex; justify-content: center; }
    .stack {
      position: relative;
      width: min(210px, 52vw);
      aspect-ratio: 5 / 7;
    }
    .stack-card {
      position: absolute;
      inset: 0;
      border-radius: 12px;
      background: var(--card);
      border: 1px solid var(--line-strong);
    }
    .stack-card.c3 { transform: rotate(8deg) translate(14px, 6px); opacity: 0.55; }
    .stack-card.c2 { transform: rotate(-5deg) translate(-10px, 2px); opacity: 0.8; }
    .stack-card.c1 {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.2rem;
      box-shadow: 0 12px 28px -16px rgba(24, 24, 27, 0.16);
      transform: rotate(1deg);
    }
    .card-head,
    .card-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--display);
      font-weight: 500;
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .card-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.35rem;
    }
    .stack-mark { font-family: var(--display); font-size: 1.5rem; color: var(--line-strong); line-height: 1; }
    .stack-word {
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.15rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .card-tagline {
      font-family: var(--display);
      font-weight: 500;
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.3rem;
    }

    /* ---------- SECTIONS ---------- */
    .section {
      padding: clamp(2.6rem, 6vw, 5rem) 0;
    }
    .section-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
    }
    .section-line { border-top: 1px solid var(--line); }
    .section-head { margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); max-width: 60ch; }
    .section-head .label { display: block; margin-bottom: 0.8rem; }
    .section-head h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); }

    /* grids */
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .item {
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: clamp(1.4rem, 3vw, 2.1rem);
    }
    .item .label { display: block; margin-bottom: 0.7rem; font-size: 0.62rem; letter-spacing: 0.14em; color: var(--muted); }
    .item h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
    .item p { color: var(--muted); max-width: 44ch; font-size: 0.96rem; }
    a.item {
      display: block;
      text-decoration: none;
      color: inherit;
      position: relative;
    }
    .item-external-icon {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      color: var(--muted);
      transition: color 0.2s, transform 0.2s;
    }
    .item-external-icon svg { width: 18px; height: 18px; display: block; }
    a.item:hover .item-external-icon { color: var(--brand); transform: translate(2px, -2px); }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.5rem, 3vw, 2.6rem);
    }
    .feature h3, .step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
    .feature p { color: var(--muted); font-size: 0.96rem; }
    .step p { color: var(--muted); font-size: 0.88rem; }
    .feature-icon { display: block; width: 28px; height: 28px; color: var(--brand); margin-bottom: 0.85rem; }

    .step {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 1.1rem;
      row-gap: 0.4rem;
      align-items: baseline;
    }
    .step h3, .step p { grid-column: 2; }
    .step-num {
      grid-row: 1;
      align-self: baseline;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2.1rem;
      padding: 0.3rem 0.6rem;
      background: color-mix(in srgb, var(--line) 45%, var(--bg));
      border-radius: 8px;
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.1rem;
      line-height: 1;
      letter-spacing: -0.025em;
      color: var(--brand);
      font-variant-numeric: tabular-nums;
    }

    /* ---------- CONTACT / FORM ---------- */
    .contact { border-top: 1px solid var(--line); }
    .contact-sub { color: var(--muted); margin-top: 1rem; max-width: 46ch; font-size: 0.92rem; }

    .form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem 1.2rem;
      max-width: 40rem;
    }
    .field { display: flex; flex-direction: column; gap: 0.45rem; }
    .field-full { grid-column: 1 / -1; }
    .field label {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--muted);
    }
    .field .opt { font-weight: 400; }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      background-color: var(--bg-soft);
      border: 1px solid var(--line-strong);
      border-radius: 10px;
      padding: 0.78rem 0.95rem;
      font-family: var(--body);
      font-size: 1rem;
      color: var(--ink);
      transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus { background-color: var(--card); }
    .field textarea { resize: vertical; min-height: 5rem; line-height: 1.5; }
    .field select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%236c6a66' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.4rem;
      cursor: pointer;
    }
    .field input::placeholder,
    .field textarea::placeholder {
      color: color-mix(in srgb, var(--muted) 65%, transparent);
    }
    .field input:hover,
    .field textarea:hover,
    .field select:hover { border-color: var(--muted); }
    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      outline: none;
      border-color: var(--brand);
      box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
    }
    .field input:focus-visible,
    .field textarea:focus-visible,
    .field select:focus-visible { outline: none; }

    .form-foot {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      margin-top: 0.6rem;
    }
    .form-foot .btn { padding: 0.85rem 1.6rem; font-size: 0.92rem; }
    .form-note { font-size: 0.82rem; color: var(--muted); }

    /* ---------- FOOTER ---------- */
    .footer {
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
    }
    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: clamp(2rem, 3.5vw, 3rem) var(--pad);
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: clamp(1.6rem, 4vw, 3rem);
    }
    .footer-brand { max-width: 34ch; }
    .footer-brand .wordmark { display: inline-block; margin-bottom: 1.1rem; }
    .footer-brand p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.2rem; }
    .footer-location { margin-bottom: 1.2rem; }
    .footer-location-toggle {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font: inherit;
      color: var(--muted);
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.2s;
    }
    .footer-location-toggle:hover { color: var(--ink); }
    .footer-location-chevron {
      width: 12px;
      height: 12px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.2s;
    }
    .footer-location-toggle[aria-expanded="true"] .footer-location-chevron {
      transform: rotate(180deg);
    }
    .footer-contact-content {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin-top: 0.7rem;
    }
    .footer-contact-content[hidden] { display: none; }
    .footer-brand .footer-contact-content > * {
      margin: 0;
      font-size: 0.85rem;
      line-height: 1.5;
    }
    .footer-legal-name { color: var(--muted); }
    .footer-contact-content .footer-mail { align-self: flex-start; }
    .footer-address {
      font-style: normal;
      color: var(--muted);
      font-size: 0.85rem;
      line-height: 1.5;
      margin: 0;
    }
    .footer-mail {
      font-size: 0.9rem;
      border-bottom: 1px solid var(--ink);
      padding-bottom: 2px;
      transition: opacity 0.2s;
    }
    .footer-mail:hover { opacity: 0.6; }

    .footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col-title {
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }
    .footer-col a { font-size: 0.88rem; color: var(--muted); width: fit-content; transition: color 0.2s; }
    .footer-col a:hover { color: var(--ink); }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid var(--line);
      font-size: 0.75rem;
      color: var(--muted);
    }
    .footer-bottom-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad) 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
    .footer-top-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .footer-top-link span { transition: transform 0.2s; }
    .footer-top-link:hover { color: var(--ink); }
    .footer-top-link:hover span { transform: translateY(-3px); }
    .footer-legal { display: inline-flex; gap: 0.45rem; }
    .footer-legal a { text-decoration: none; }
    .footer-legal a:hover { color: var(--ink); }

    /* ---------- ENTRANCE (CSS-only, fail-safe) ---------- */
    @keyframes rise {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: none; }
    }
    .fade {
      animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
      animation-delay: calc(var(--d, 0) * 90ms);
    }

    /* ---------- POLISH ---------- */
    .reg {
      font-size: 0.55em;
      color: var(--line-strong);
      vertical-align: super;
      font-weight: 400;
      margin-left: 0.25em;
      line-height: 0;
    }
    .brand-tail { color: var(--brand); font-weight: 400; }
    .ext-icon {
      width: 10px;
      height: 10px;
      margin-left: 0.35em;
      stroke: currentColor;
      stroke-width: 1.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0.45;
      vertical-align: baseline;
      transition: opacity 0.2s, transform 0.2s;
    }
    .footer-col a:hover .ext-icon { opacity: 1; transform: translate(2px, -2px); }
    ::selection { background: var(--brand); color: var(--bg); }

    :focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
    .btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--ink); }
    a:focus-visible { outline-offset: 4px; }

    html { scroll-padding-top: 5rem; }
    h1, h2 { text-wrap: balance; }
    .step-num { font-variant-numeric: tabular-nums; }

    /* wordmark: brand cohesion on hover */
    .wordmark span { transition: color 0.25s; }
    .wordmark:hover span { color: var(--ink); }

    /* card "noticed" state · subtle attention, no fake interactivity */
    .item { transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s; }
    .item:hover {
      border-color: var(--line-strong);
      background: var(--card);
      box-shadow: 0 8px 22px -12px rgba(24, 24, 27, 0.14);
    }

    /* form: label snaps to ink while field is focused */
    .field label { transition: color 0.2s; }
    .field:focus-within label { color: var(--ink); }

    /* hero stack: subtle fan on hover */
    .stack-card { transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1); }
    .hero-visual:hover .stack-card.c3 { transform: rotate(12deg) translate(20px, 10px); }
    .hero-visual:hover .stack-card.c2 { transform: rotate(-8deg) translate(-16px, 4px); }
    .hero-visual:hover .stack-card.c1 { transform: rotate(0deg); }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 880px) {
      /* nav → mobile menu */
      .nav-inner { gap: 1rem; }
      .nav-links, .nav-cta { display: none; }
      .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        background: none;
        border: 0;
        cursor: pointer;
        padding: 8px;
        margin-left: auto;
        width: 40px;
        height: 40px;
      }
      .nav-toggle span {
        display: block;
        width: 20px;
        height: 1.5px;
        background: var(--ink);
        transition: transform 0.25s;
      }
      .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(3.5px) rotate(45deg);
      }
      .nav-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
      }
      .nav-mobile {
        display: flex;
        flex-direction: column;
        padding: 0 var(--pad);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
      }
      .nav-mobile.open {
        max-height: 80vh;
        padding: 0.2rem var(--pad) 1.4rem;
        overflow-y: auto;
      }
      .nav-mobile > a {
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.05rem;
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--line);
        color: var(--muted);
        transition: color 0.2s;
      }
      .nav-mobile > a:hover { color: var(--ink); }
      .nav-mobile > a.btn {
        background: transparent;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        padding: 0.85rem 0;
        margin: 0;
        align-self: stretch;
        justify-content: flex-start;
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.05rem;
        color: var(--muted);
      }
      .nav-mobile > a.btn:hover {
        transform: none;
        opacity: 1;
        color: var(--ink);
      }
      .nav-mobile > a:last-child { border-bottom: 0; }
      /* hero → single column, visual hidden */
      .hero-inner { grid-template-columns: 1fr; }
      .hero {
        padding-top: clamp(2.4rem, 6vw, 4.5rem);
        padding-bottom: clamp(2rem, 5vw, 4rem);
      }
      .hero-visual { display: none; }
      /* grids → single column */
      .grid-2 { grid-template-columns: 1fr; }
      .grid-3 { grid-template-columns: 1fr; }
      /* footer */
      .footer-inner { grid-template-columns: 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      /* form */
      .form { grid-template-columns: 1fr; }
      .field input, .field textarea, .field select { padding: 0.85rem 1rem; font-size: 1rem; }
      .btn { padding: 0.85rem 1.5rem; }
      .form-foot .btn { width: 100%; justify-content: center; }
    }

    /* accent underline (e.g. "all we do") */
    .accent-underline {
      background-image: linear-gradient(to top, var(--accent-soft) 38%, transparent 38%);
      padding: 0 0.1em;
    }

    /* typewriter cycler (hero verb: eat/sleep/breathe) */
    .cycler {
      display: inline-block;
      position: relative;
      color: var(--brand);
    }
    .cycler::after {
      content: "";
      display: inline-block;
      width: 2px;
      height: 0.85em;
      background: currentColor;
      margin-left: 3px;
      vertical-align: middle;
      animation: caret-blink 0.75s steps(1, end) infinite;
    }
    @keyframes caret-blink {
      50% { opacity: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade { animation: none; }
      html { scroll-behavior: auto; }
      .stack-card,
      .hero-visual:hover .stack-card { transition: none; transform: none; }
      .cycler::after { animation: none; }
    }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }


.cf-turnstile { display: none; }

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
  background-color: var(--danger-soft);
}
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus,
.field select[aria-invalid="true"]:focus {
  outline-color: var(--danger);
  background-color: var(--card);
}
.field input[aria-invalid="true"] + .field-error,
.field-error { color: var(--danger); font-size: 0.78rem; }

@media (max-width: 880px) {
  .hero h1 { min-height: 2lh; }
}
