:root {
  --ink: #090909;
  --ink-soft: #151515;
  --paper: #f2f2f0;
  --paper-muted: #c8c8c2;
  --purple: #8b3dff;
  --line-dark: rgba(242, 242, 240, 0.18);
  --line-light: rgba(9, 9, 9, 0.17);
  --shell: min(92vw, 1480px);
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

img, video {
  display: block;
  max-width: 100%;
}

a { color: inherit; }

::selection {
  background: var(--purple);
  color: #fff;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 4vw;
  background: rgba(9,9,9,.91);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242,242,240,.09);
}

.brand {
  width: clamp(118px, 10vw, 170px);
  height: 58px;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.25vw, 42px);
}

.site-nav a,
.menu-toggle {
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  background: transparent;
  border: 0;
  padding: 12px 0;
}

.menu-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}

.hero {
  padding-bottom: clamp(82px, 10vw, 170px);
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 84px);
  overflow: hidden;
  background: #000;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}



.hero-service-card {
  position: absolute;
  left: 4.5%;
  bottom: 11%;
  z-index: 4;
  width: min(54vw, 760px);
  padding: 14px 22px 14px 18px;
  background: linear-gradient(90deg,
    rgba(9, 9, 9, .58) 0%,
    rgba(9, 9, 9, .42) 55%,
    rgba(9, 9, 9, .18) 100%);
  border-left: 2px solid rgba(139, 61, 255, .92);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-service-kicker,
.hero-service-note {
  display: block;
  font-size: clamp(9px, .72vw, 11px);
  line-height: 1.3;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-service-kicker {
  margin-bottom: 8px;
  color: rgba(242,242,240,.70);
}

.hero-service-card strong {
  display: block;
  font-size: clamp(19px, 2.35vw, 34px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
}

.hero-service-card strong + strong {
  margin-top: 2px;
}

.hero-service-note {
  margin-top: 10px;
  color: rgba(242,242,240,.78);
  text-transform: none;
  letter-spacing: .02em;
}

.hero-copy-minimal h1 {
  max-width: 900px;
}


.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.30), rgba(0,0,0,.03) 45%, rgba(0,0,0,.10));
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 980px);
  transform: translate(-50%, -50%);
  opacity: .96;
  pointer-events: none;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,.14));
}

.hero-copy {
  padding-top: clamp(34px, 4vw, 70px);
  display: grid;
  grid-template-columns: 1.65fr .7fr;
  column-gap: 6vw;
  row-gap: 18px;
  align-items: end;
}

.hero-copy h1 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(44px, 6.4vw, 116px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.055em;
}

.hero-copy h1 span { color: var(--purple); }

.hero-copy p {
  margin: 0 0 8px;
  max-width: 330px;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.45;
}

.text-link {
  grid-column: 2;
  width: max-content;
  margin-top: 12px;
  color: var(--paper);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--purple);
  padding-bottom: 6px;
}

.section {
  padding: clamp(94px, 12vw, 190px) 0;
  border-top: 1px solid var(--line-dark);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
  border-top-color: var(--line-light);
}

.section-purple {
  background: var(--purple);
  color: var(--ink);
  border-top: 0;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) 1.65fr;
  gap: 7vw;
}

.eyebrow {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a6a6a1;
}

.section-light .eyebrow {
  color: rgba(9,9,9,.5);
}

.eyebrow-dark {
  color: rgba(9,9,9,.58);
}

.section-copy h2 {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(42px, 6vw, 100px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .94;
}

.lead {
  max-width: 760px;
  margin: clamp(34px, 4vw, 62px) 0 0;
  font-size: clamp(19px, 1.8vw, 30px);
  line-height: 1.42;
  letter-spacing: -.02em;
  color: var(--paper-muted);
}

.section-light .lead {
  color: rgba(9,9,9,.72);
}

.lead-dark {
  color: rgba(9,9,9,.80);
}

.quiet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 44px;
  max-width: 860px;
  color: #8f8f8a;
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.section-light .quiet-list { color: rgba(9,9,9,.55); }

.micro {
  margin-top: 34px;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .095em;
  text-transform: uppercase;
  color: rgba(9,9,9,.52);
}

.auto-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr;
  gap: 8vw;
  align-items: end;
}

.auto-title {
  margin: 34px 0 0;
  font-size: clamp(72px, 12vw, 190px);
  line-height: .73;
  letter-spacing: -.08em;
  font-weight: 700;
}

.auto-copy {
  padding-bottom: 4px;
}

.auto-copy > p:not(.lead) {
  max-width: 540px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.55;
}

.text-link-dark {
  color: var(--ink);
  border-bottom-color: rgba(9,9,9,.48);
}

.contact {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(110px, 14vw, 220px) 0 clamp(90px, 10vw, 150px);
}

.contact .eyebrow { color: rgba(9,9,9,.48); }

.contact h2 {
  margin: clamp(26px, 4vw, 58px) 0 clamp(46px, 6vw, 82px);
  font-size: clamp(62px, 10vw, 170px);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 500;
}

.mail-link {
  display: inline-block;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 34px);
  text-decoration: none;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 8px;
}

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  color: #8f8f89;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-inner img {
  width: 110px;
  opacity: .78;
}

/* Gentle reveal only. No decorative choreography. */
@media (prefers-reduced-motion: no-preference) {
  .section-copy,
  .auto-copy,
  .contact-inner {
    animation: fade-up .7s var(--ease) both;
    animation-timeline: view();
    animation-range: entry 8% cover 28%;
  }

  @keyframes fade-up {
    from { opacity: .25; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 820px) {
  :root { --shell: 90vw; }

  .site-header {
    height: 70px;
    padding-inline: 5vw;
  }

  .brand {
    width: 112px;
    height: 50px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    background: rgba(9,9,9,.98);
    border-top: 1px solid var(--line-dark);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s var(--ease), opacity .3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 20px 5vw;
    border-bottom: 1px solid var(--line-dark);
    font-size: 13px;
  }

  .site-nav a::after { display: none; }

  .hero {
    padding-bottom: 86px;
  }

  .hero-media {
    max-height: none;
    aspect-ratio: 16 / 9;
  }


  .hero-service-card {
    left: 4%;
    bottom: 9%;
    width: 66%;
    padding: 10px 14px 10px 14px;
    border-left-width: 2px;
    background: linear-gradient(90deg,
      rgba(9, 9, 9, .52) 0%,
      rgba(9, 9, 9, .34) 62%,
      rgba(9, 9, 9, .14) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .hero-service-kicker {
    margin-bottom: 5px;
    font-size: 7px;
  }

  .hero-service-card strong {
    font-size: clamp(13px, 4vw, 19px);
    letter-spacing: -.03em;
  }

  .hero-service-note {
    margin-top: 6px;
    font-size: 7px;
  }

  .hero-logo {
    width: 74vw;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 13vw, 72px);
  }

  .hero-copy p {
    margin-top: 8px;
    max-width: 290px;
  }

  .text-link {
    grid-column: 1;
    margin-top: 14px;
  }

  .section {
    padding: 92px 0;
  }

  .split,
  .auto-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-copy h2 {
    font-size: clamp(44px, 13vw, 72px);
  }

  .lead {
    margin-top: 30px;
    font-size: 20px;
  }

  .auto-title {
    margin-top: 24px;
    font-size: clamp(82px, 25vw, 134px);
  }

  .contact h2 {
    font-size: clamp(64px, 18vw, 112px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 80vw;
  }

  .hero-copy h1 {
    letter-spacing: -.06em;
  }
}


.contact-signoff {
  margin-top: clamp(60px, 8vw, 120px);
  padding-top: clamp(26px, 4vw, 46px);
  border-top: 1px solid rgba(9,9,9,.10);
}

.contact-signoff img {
  width: min(100%, 560px);
  opacity: .98;
}

@media (max-width: 820px) {
  .contact-signoff {
    margin-top: 48px;
    padding-top: 24px;
  }

  .contact-signoff img {
    width: min(100%, 360px);
  }
}


.hero-play {
  position: absolute;
  right: 4.5%;
  bottom: 6%;
  z-index: 6;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(242,242,240,.30);
  border-radius: 999px;
  background: rgba(9,9,9,.55);
  color: var(--paper);
  font: inherit;
  font-size: 10px;
  letter-spacing: .10em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.hero-play.is-visible {
  display: inline-flex;
}

.hero-play-icon {
  font-size: 9px;
  color: var(--purple);
}

@media (max-width: 820px) {
  .hero-play {
    right: 4%;
    bottom: 5%;
    padding: 8px 11px;
    font-size: 8px;
  }
}


.hero-copy-minimal p {
  max-width: 520px;
}


.collabs {
  border-top: 1px solid var(--line-light);
}

.collabs-head {
  margin-bottom: 28px;
}

.collabs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collab-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(9,9,9,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.collab-card-dark {
  background: #090909;
}

.collab-card-warm {
  background: #ece9e2;
}

.collab-card-light {
  background: #f5f3ee;
}

@media (max-width: 820px) {
  .collabs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .collab-card {
    min-height: 160px;
    padding: 18px;
  }
}


/* --- V12: cleaner hero, no box, clearer overlay message --- */
.hero {
  padding-bottom: 0;
}

.hero-media {
  isolation: isolate;
  background: #000;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .60) 0%,
      rgba(0, 0, 0, .34) 34%,
      rgba(0, 0, 0, .14) 60%,
      rgba(0, 0, 0, .22) 100%),
    linear-gradient(to top,
      rgba(0, 0, 0, .24) 0%,
      rgba(0, 0, 0, .08) 45%,
      rgba(0, 0, 0, .18) 100%);
}

.hero-media video {
  opacity: .66;
}

.hero-overlay-copy {
  position: absolute;
  left: 4.5%;
  bottom: 10.5%;
  z-index: 3;
  width: min(62vw, 780px);
}

.hero-eyebrow {
  margin-bottom: 14px;
  color: rgba(242, 242, 240, .70);
}

.hero-overlay-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(52px, 6.5vw, 116px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 500;
  color: var(--paper);
  text-wrap: balance;
}

.hero-overlay-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(242,242,240,.84);
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.42;
  letter-spacing: -.02em;
}

.hero-link {
  display: inline-block;
  grid-column: auto;
  margin-top: 22px;
}

.hero-copy,
.hero-copy-minimal,
.hero-service-card {
  display: none !important;
}

/* --- V12: logo-only collaboration board --- */
.collabs-board {
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(84px, 10vw, 140px);
}

.collabs-head-minimal {
  margin-bottom: clamp(34px, 5vw, 54px);
}

.stamp-board {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 28px 36px;
  align-items: end;
}

.stamp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stamp img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.stamp-alti {
  align-self: start;
  padding-top: 22px;
}

.stamp-alti img {
  max-width: 250px;
}

.stamp-svartvik img {
  max-width: 760px;
}

.stamp-wallebo {
  align-self: start;
  padding-top: 48px;
}

.stamp-wallebo img {
  max-width: 320px;
}

.collabs,
.collabs-grid,
.collab-card,
.collab-card-dark,
.collab-card-warm,
.collab-card-light {
  all: unset;
}

@media (max-width: 820px) {
  .hero-overlay-copy {
    left: 4.5%;
    right: 4.5%;
    bottom: 9%;
    width: auto;
  }

  .hero-overlay-copy h1 {
    font-size: clamp(42px, 13vw, 72px);
  }

  .hero-overlay-copy p {
    max-width: 320px;
    margin-top: 14px;
    font-size: 16px;
  }

  .hero-link {
    margin-top: 16px;
  }

  .stamp-board {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .stamp,
  .stamp-alti,
  .stamp-wallebo {
    padding-top: 0;
    align-self: auto;
  }

  .stamp-alti img {
    max-width: 180px;
  }

  .stamp-svartvik img {
    max-width: 100%;
  }

  .stamp-wallebo img {
    max-width: 210px;
  }
}


/* --- V13: small collaboration logos, three side by side --- */
.stamp-board {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: center !important;
  justify-items: center !important;
}

.stamp,
.stamp-alti,
.stamp-svartvik,
.stamp-wallebo {
  padding-top: 0 !important;
  align-self: center !important;
  width: 100%;
  min-height: 90px;
}

.stamp img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 84px !important;
  object-fit: contain !important;
}

.stamp-alti img {
  max-width: 92px !important;
  max-height: 84px !important;
}

.stamp-svartvik img {
  max-width: 230px !important;
  max-height: 72px !important;
}

.stamp-wallebo img {
  max-width: 96px !important;
  max-height: 84px !important;
}

.collabs-head-minimal {
  margin-bottom: 22px !important;
}

@media (max-width: 820px) {
  .stamp-board {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .stamp,
  .stamp-alti,
  .stamp-svartvik,
  .stamp-wallebo {
    min-height: 64px;
  }

  .stamp img {
    max-height: 54px !important;
  }

  .stamp-alti img {
    max-width: 58px !important;
  }

  .stamp-svartvik img {
    max-width: 112px !important;
    max-height: 38px !important;
  }

  .stamp-wallebo img {
    max-width: 58px !important;
  }
}


/* --- V14: cleanup requested --- */
.hero-eyebrow {
  margin-left: 14px !important;
}

.contact-signoff {
  display: none !important;
}

.footer-inner img {
  display: none !important;
}

.footer-inner-minimal {
  justify-content: space-between;
}

@media (max-width: 820px) {
  .hero-eyebrow {
    margin-left: 10px !important;
  }

  .footer-inner-minimal {
    gap: 8px;
    justify-content: flex-start;
  }
}
