    /* ===========================================================
       Carta Guard · coming soon
       =========================================================== */

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

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      font-size: 16px;
      line-height: 1.55;
      color: var(--ink);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("/assets/images/playmat.jpg?v=v2");
      background-size: cover;
      background-position: center;
      filter: grayscale(1);
      opacity: 0.1;
      z-index: -1;
      pointer-events: none;
    }
    a { color: inherit; text-decoration: none; }
    h1, h2, h3 {
      font-family: var(--display);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin: 0;
    }
    p { margin: 0; }
    button { font: inherit; }

    /* ---------- LAYOUT ---------- */
    main {
      flex: 1;
      max-width: var(--max);
      margin: 0 auto;
      padding: clamp(1.5rem, 3vw, 2rem) var(--pad);
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .wordmark {
      font-family: var(--display);
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
    }
    .wordmark span { font-weight: 400; color: var(--brand); }
    .hero-text .wordmark { display: block; margin-bottom: 1.4rem; }

    /* ---------- HERO ---------- */
    .hero {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }
    .hero-text { }
    .eyebrow {
      font-family: var(--display);
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.4rem;
    }
    .hero h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.6rem);
      font-weight: 600;
      margin-bottom: 1.4rem;
      white-space: nowrap;
    }
    .hero-lead {
      font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
      color: var(--muted);
      max-width: 42ch;
      margin-bottom: 2rem;
    }

    /* typewriter cycler */
    .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; } }

    /* ---------- HERO VISUAL (stack mock) ---------- */
    .hero-visual {
      display: flex;
      justify-content: center;
    }
    .single-stack {
      position: relative;
      width: min(260px, 60vw);
      aspect-ratio: 5 / 7;
    }
    .single-card {
      position: absolute;
      inset: 0;
      background: var(--bg-soft);
      border: 1px solid var(--line-strong);
      border-radius: 14px;
      transition: transform 0.4s ease;
      box-shadow: 0 1px 0 var(--line-strong);
    }
    .single-card.c3 { transform: rotate(8deg) translate(14px, 6px); opacity: 0.55; }
    .single-card.c2 { transform: rotate(-5deg) translate(-10px, 2px); opacity: 0.8; }
    .single-card.c1 {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.5rem 1.3rem;
    }
    .hero-visual:hover .single-card.c3 { transform: rotate(14deg) translate(22px, 12px); }
    .hero-visual:hover .single-card.c2 { transform: rotate(-10deg) translate(-18px, 6px); }
    .hero-visual:hover .single-card.c1 { transform: rotate(0deg); }

    .card-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-family: var(--display);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .card-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.7rem;
    }
    .card-mark {
      color: var(--line-strong);
      font-size: 2rem;
      line-height: 1;
    }
    .card-word {
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.15rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--ink);
    }
    .card-tagline {
      font-family: var(--display);
      font-weight: 500;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .card-foot {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-family: var(--display);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ---------- FOOTER-BRAND (now inside hero-text) ---------- */
    .footer-brand {
      max-width: 38ch;
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.9rem;
      position: relative;
    }
    .footer-brand p {
      color: var(--muted);
      font-size: 0.88rem;
      margin-top: 0.6rem;
      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;
      position: absolute;
      top: calc(100% + 0.7rem);
      left: 0;
      right: 0;
    }
    .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);
    }
    .footer-mail {
      color: var(--ink);
      border-bottom: 1px solid var(--ink);
      padding-bottom: 2px;
      transition: opacity 0.2s;
    }
    .footer-mail:hover { opacity: 0.6; }

        .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; }
    ::selection { background: var(--brand); color: var(--bg); }
    :focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

    /* ---------- ENTRANCE (CSS-only) ---------- */
    .fade {
      opacity: 0;
      transform: translateY(8px);
      animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
      animation-delay: calc(var(--d, 0) * 100ms);
    }
    @keyframes rise {
      to { opacity: 1; transform: none; }
    }

    /* ---------- RESPONSIVE (single breakpoint @ 880) ---------- */
    @media (max-width: 880px) {
      .hero {
        grid-template-columns: 1fr;
      }
      .hero-visual { display: none; }
    }

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

.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; }

