/* ------------------------------------------------------------
   KM — Editorial digital system
   ------------------------------------------------------------ */

:root {
  --paper: #f4f0e7;
  --paper-deep: #e9e3d7;
  --ink: #172029;
  --ink-soft: #354048;
  --orange: #ed5b3f;
  --orange-dark: #c8422c;
  --sun: #e7c84c;
  --green: #174d43;
  --green-light: #b9cdbc;
  --white: #fffdf7;
  --line: rgba(23, 32, 41, 0.18);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --header-height: 92px;
  --shell: 1440px;
  --gutter: clamp(20px, 4vw, 72px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--sun);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(96px, 11vw, 168px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-index,
.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-index::before,
.eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 10px;
  vertical-align: 0.22em;
  background: currentColor;
  content: "";
}

.section-title {
  max-width: 1000px;
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.8vw, 7.4rem);
  font-stretch: condensed;
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.section-title em,
.contact__title em {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.section-title--compact {
  font-size: clamp(3.2rem, 5.7vw, 6.5rem);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 20px 15px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 320ms var(--ease-out),
    background-color 320ms var(--ease-out),
    border-color 320ms var(--ease-out),
    transform 320ms var(--ease-out);
}

.button::before {
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: var(--orange);
  content: "";
  transition: transform 420ms var(--ease-out);
}

.button > * {
  position: relative;
}

.button > span {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.95rem;
  transition: transform 320ms var(--ease-out);
}

.button--small {
  min-height: 46px;
  padding-block: 11px;
  font-size: 0.68rem;
}

.button--ink {
  background: var(--ink);
  color: var(--white);
}

.button--cream {
  background: var(--white);
  color: var(--ink);
}

.button--cream::before {
  background: var(--sun);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition:
    transform 320ms var(--ease-out),
    background-color 320ms var(--ease-out),
    color 320ms var(--ease-out);
}

.text-link--line {
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    height 300ms var(--ease-out),
    background-color 300ms ease,
    border-color 300ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-color: var(--line);
  background: var(--paper);
}

.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand__name {
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 320ms var(--ease-out);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--paper);
  background-position: center;
  background-size: clamp(72px, 7vw, 112px) clamp(72px, 7vw, 112px);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: -18vw;
  right: -16vw;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 32, 41, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(max(760px, 100svh) - var(--header-height) - 56px);
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: clamp(20px, 3vw, 60px);
  padding-top: 42px;
}

.hero__content {
  position: relative;
  z-index: 5;
  padding-block: 50px;
}

.hero__title {
  margin: 28px 0 30px;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 7vw, 8.1rem);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.82;
}

.hero__title em {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero__title em::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.02em;
  left: -0.04em;
  height: 0.17em;
  transform: rotate(-1.5deg);
  background: var(--sun);
  content: "";
}

.hero__intro {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero__visual {
  position: relative;
  min-height: min(680px, calc(100svh - 130px));
  align-self: end;
  isolation: isolate;
}

.hero__shape {
  position: absolute;
  z-index: -2;
}

.hero__shape--one {
  right: 4%;
  bottom: 7%;
  width: 73%;
  aspect-ratio: 0.92;
  transform: rotate(6deg);
  background: var(--orange);
  clip-path: polygon(12% 3%, 93% 0, 100% 84%, 79% 100%, 3% 92%, 0 17%);
}

.hero__shape--two {
  top: 16%;
  right: -11%;
  width: 43%;
  aspect-ratio: 1;
  border: 28px solid var(--sun);
  border-radius: 50%;
}

.hero__spark {
  position: absolute;
  z-index: 5;
  top: 12%;
  left: 19%;
  color: var(--orange);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1;
  animation: spin-spark 12s linear infinite;
}

.portrait {
  position: absolute;
  bottom: 0;
  transform: translate3d(var(--portrait-x, 0), var(--portrait-y, 0), 0);
  transition: transform 240ms ease-out;
}

.portrait picture,
.portrait img {
  width: 100%;
  height: 100%;
}

.portrait img {
  position: relative;
  z-index: 2;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 25px 22px rgba(23, 32, 41, 0.14));
}

.portrait__halo {
  position: absolute;
  z-index: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.portrait--mikael {
  z-index: 2;
  left: -10%;
  width: 67%;
  height: 72%;
}

.portrait--mikael .portrait__halo {
  top: 5%;
  right: 2%;
  width: 77%;
  aspect-ratio: 1;
  background: var(--sun);
}

.portrait--karina {
  z-index: 3;
  right: -7%;
  width: 66%;
  height: 80%;
}

.portrait--karina .portrait__halo {
  top: 3%;
  left: 8%;
  width: 85%;
  aspect-ratio: 0.92;
  border-radius: 45% 55% 46% 54% / 60% 42% 58% 40%;
  background: var(--green-light);
}

.portrait__tag {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 11px 14px;
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.portrait__tag strong {
  margin-bottom: 2px;
  font-size: 0.82rem;
}

.portrait__tag--dark {
  right: 57%;
  bottom: 17%;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--sun);
  color: var(--white);
}

.portrait__tag--light {
  right: 3%;
  bottom: 10%;
  background: var(--white);
}

.hero__note {
  position: absolute;
  z-index: 4;
  top: 28%;
  right: -2%;
  padding: 14px;
  transform: rotate(6deg);
  border: 1px solid var(--ink);
  background: var(--sun);
  font-family: var(--font-serif);
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.hero__footer {
  position: relative;
  z-index: 4;
  display: flex;
  height: 56px;
  align-items: center;
  gap: 18px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__line {
  width: 72px;
  height: 1px;
  background: var(--ink);
}

@keyframes spin-spark {
  to {
    transform: rotate(360deg);
  }
}

/* Ticker */

.ticker {
  position: relative;
  z-index: 8;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding-block: 19px;
}

.ticker span {
  padding-inline: 26px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.ticker i {
  color: var(--sun);
  font-size: 1.15rem;
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* Manifesto */

.manifesto {
  border-bottom: 1px solid var(--line);
}

.manifesto__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
}

.manifesto .section-title {
  max-width: 960px;
}

.manifesto__aside {
  padding-bottom: 8px;
}

.manifesto__aside p {
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

/* Services / carousel */

.services {
  overflow: hidden;
}

.services__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.services__lead {
  max-width: 390px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.6;
}

.carousel__viewport {
  overflow: hidden;
  border: 1px solid var(--ink);
}

.carousel__track {
  display: flex;
  touch-action: pan-y;
  transition: transform 750ms var(--ease-out);
}

.carousel.is-dragging .carousel__track {
  transition: none;
}

.service-slide {
  position: relative;
  display: grid;
  min-width: 100%;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  overflow: hidden;
}

.service-slide--web {
  background: var(--orange);
  color: var(--ink);
}

.service-slide--ai {
  background: var(--sun);
  color: var(--ink);
}

.service-slide--comms {
  background: var(--green);
  color: var(--white);
}

.service-slide__copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 88px);
}

.service-slide__number {
  position: absolute;
  top: 32px;
  left: clamp(42px, 6vw, 88px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-slide__kicker {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-slide h3 {
  max-width: 610px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 6.3rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.service-slide__copy > p:not(.service-slide__kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.service-slide ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.service-slide li {
  padding: 7px 10px;
  border: 1px solid currentColor;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-slide__art {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid currentColor;
}

/* browser artwork */

.service-slide__art--browser {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(23, 32, 41, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 41, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
}

.browser-card {
  position: absolute;
  width: min(78%, 590px);
  aspect-ratio: 1.13;
  border: 2px solid var(--ink);
}

.browser-card--back {
  display: flex;
  top: 17%;
  left: 8%;
  gap: 7px;
  padding: 17px;
  transform: rotate(-7deg);
  background: var(--sun);
}

.browser-card--back span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.browser-card--front {
  right: 5%;
  bottom: 12%;
  padding: 9% 8%;
  transform: rotate(4deg);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--ink);
}

.browser-card__top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 11%;
  align-items: center;
  gap: 6px;
  padding-inline: 14px;
  border-bottom: 1px solid var(--ink);
}

.browser-card__top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.browser-card__nav {
  width: 34%;
  height: 9px;
  margin: 8% 0 18%;
  background: var(--ink);
}

.browser-card__headline {
  width: 77%;
  height: 12%;
  margin-bottom: 8px;
  background: var(--ink);
}

.browser-card__headline--short {
  width: 55%;
}

.browser-card__button {
  width: 28%;
  height: 9%;
  margin-top: 13%;
  background: var(--orange);
}

.browser-card__stamp {
  position: absolute;
  right: -7%;
  bottom: -11%;
  display: grid;
  width: 104px;
  aspect-ratio: 1;
  place-items: center;
  transform: rotate(-10deg);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.82;
  text-align: center;
}

/* automation artwork */

.service-slide__art--flow {
  display: grid;
  place-items: center;
}

.service-slide__art--flow::before {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px dashed var(--ink);
  border-radius: 50%;
  content: "";
  animation: rotate-orbit 26s linear infinite;
}

.flow-orbit {
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.flow-orbit--one {
  width: 54%;
  aspect-ratio: 1;
}

.flow-orbit--two {
  width: 31%;
  aspect-ratio: 1;
}

.flow-orbit--two::before,
.flow-orbit--two::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 175%;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  content: "";
}

.flow-orbit--two::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.flow-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 72px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.flow-node--center {
  width: min(22vw, 210px);
  background: var(--orange);
  box-shadow: 12px 12px 0 var(--ink);
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.flow-node--one {
  top: 13%;
  left: 18%;
}

.flow-node--two {
  right: 12%;
  bottom: 21%;
}

.flow-node--three {
  bottom: 10%;
  left: 17%;
}

.flow-label {
  position: absolute;
  top: 8%;
  right: 7%;
  padding: 9px 12px;
  transform: rotate(3deg);
  border: 1px solid var(--ink);
  background: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes rotate-orbit {
  to {
    transform: rotate(360deg);
  }
}

/* communication artwork */

.service-slide__art--message {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255, 253, 247, 0.22) 1.5px, transparent 1.5px) 0 0 / 22px 22px,
    var(--green);
}

.message-poster {
  position: relative;
  width: min(70%, 500px);
  aspect-ratio: 0.78;
  padding: 16% 11%;
  transform: rotate(-4deg);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--orange);
  color: var(--ink);
}

.message-poster__quote {
  position: absolute;
  top: -0.2em;
  left: 0.09em;
  color: var(--orange);
  font-family: var(--font-serif);
  font-size: clamp(7rem, 13vw, 12rem);
  line-height: 1;
}

.message-poster p {
  position: relative;
  margin: 21% 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.76;
  text-transform: uppercase;
}

.message-poster p em {
  font-family: var(--font-serif);
  font-size: 0.84em;
  font-weight: 400;
  text-transform: none;
}

.message-poster__lines {
  display: grid;
  gap: 7px;
  margin-top: 14%;
}

.message-poster__lines i {
  width: 70%;
  height: 2px;
  background: var(--ink);
}

.message-poster__lines i:nth-child(2) {
  width: 88%;
}

.message-poster__lines i:nth-child(3) {
  width: 46%;
}

.message-sticker {
  position: absolute;
  right: 3%;
  bottom: 10%;
  display: grid;
  width: 125px;
  aspect-ratio: 1;
  place-items: center;
  transform: rotate(8deg);
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

/* carousel controls */

.carousel__controls {
  display: grid;
  min-height: 88px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--ink);
  border-top: 0;
}

.carousel__count {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-left: 28px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.carousel__count i {
  width: 48px;
  height: 1px;
  background: var(--ink);
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    width 300ms var(--ease-out),
    border-radius 300ms var(--ease-out),
    background-color 300ms ease;
}

.carousel__dot.is-active {
  width: 30px;
  border-radius: 99px;
  background: var(--ink);
}

.carousel__buttons {
  display: flex;
  height: 100%;
  justify-self: end;
}

.carousel__buttons button {
  display: grid;
  width: 72px;
  height: 100%;
  min-height: 70px;
  place-items: center;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 1.3rem;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.pause-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 15px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

[data-carousel-toggle][aria-pressed="true"] .pause-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 0;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.carousel__progress {
  height: 4px;
  overflow: hidden;
  background: var(--paper-deep);
}

.carousel__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
}

.carousel.is-playing .carousel__progress span {
  animation: carousel-progress 6s linear forwards;
}

@keyframes carousel-progress {
  to {
    transform: scaleX(1);
  }
}

/* Bridge */

.bridge {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.bridge::after {
  position: absolute;
  right: -10vw;
  bottom: -20vw;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 240, 231, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(244, 240, 231, 0.025),
    0 0 0 14vw rgba(244, 240, 231, 0.025);
  content: "";
}

.bridge__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.bridge__symbol {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  transform: rotate(-4deg);
  border: 1px solid var(--paper);
  background: var(--orange);
  box-shadow: 18px 18px 0 var(--sun);
  color: var(--ink);
  grid-template-columns: 1fr auto 1fr;
}

.bridge__symbol span {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 1;
}

.bridge__symbol i {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-style: italic;
}

.bridge__copy .section-title {
  max-width: 800px;
}

.bridge__copy > p:last-child {
  max-width: 610px;
  margin: 38px 0 0;
  color: rgba(244, 240, 231, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

/* Process */

.process__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(64px, 8vw, 110px);
}

.process__heading .section-title {
  margin-top: 0;
  text-align: right;
}

.process__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process__item {
  position: relative;
  display: grid;
  min-height: 160px;
  grid-template-columns: minmax(70px, 0.28fr) 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  transition:
    padding 380ms var(--ease-out),
    color 380ms var(--ease-out);
}

.process__item::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translateY(102%);
  background: var(--sun);
  content: "";
  transition: transform 440ms var(--ease-out);
}

.process__item > span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process__item h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.process__item p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
}

.process__item > i {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: normal;
}

/* Team */

.team {
  border-top: 1px solid var(--ink);
  background: var(--paper-deep);
}

.team__heading {
  margin-bottom: clamp(60px, 8vw, 110px);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.profile {
  min-width: 0;
}

.profile__image {
  position: relative;
  display: flex;
  aspect-ratio: 0.92;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.profile--mikael .profile__image {
  background: var(--sun);
}

.profile--karina .profile__image {
  background: var(--green-light);
}

.profile__image::before {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.profile__image picture,
.profile__image img {
  width: 100%;
  height: 100%;
}

.profile__image picture {
  position: relative;
  z-index: 2;
}

.profile__image img {
  object-fit: contain;
  object-position: center bottom;
  transition: transform 750ms var(--ease-out);
}

.profile__word {
  position: absolute;
  z-index: 1;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 10vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
  white-space: nowrap;
}

.profile__badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.profile__content {
  padding: 34px 2px 0;
}

.profile__role {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 5vw, 5.8rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.profile__title {
  min-height: 58px;
  max-width: 580px;
  margin: 22px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-style: italic;
  line-height: 1.3;
}

.profile__content > p:not(.profile__role, .profile__title) {
  max-width: 570px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Contact */

.contact {
  background: var(--orange);
}

.contact__title {
  margin: 28px 0 clamp(54px, 7vw, 92px);
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 9vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.79;
}

.contact__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--ink);
}

.contact-card {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(30px, 4vw, 60px);
  overflow: hidden;
  transition:
    background-color 420ms var(--ease-out),
    color 420ms var(--ease-out);
}

.contact-card + .contact-card {
  border-left: 1px solid var(--ink);
}

.contact-card--web {
  background: var(--paper);
}

.contact-card--comms {
  background: var(--sun);
}

.contact-card__index {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.contact-card__label {
  margin-top: auto;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  max-width: 560px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.contact-card__person {
  margin-top: 23px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card > i {
  position: absolute;
  top: 28px;
  right: 30px;
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.3rem;
  font-style: normal;
  transition: transform 420ms var(--ease-out);
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer__top {
  display: grid;
  min-height: 340px;
  grid-template-columns: 1fr 1fr 0.5fr;
  align-items: start;
  gap: 50px;
  padding-block: 76px;
}

.brand--footer .brand__mark {
  background: var(--paper);
  color: var(--ink);
}

.footer__top > p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  font-style: italic;
  line-height: 1.17;
}

.footer__top nav {
  display: grid;
  gap: 13px;
}

.footer__top nav a {
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(244, 240, 231, 0.2);
  color: rgba(244, 240, 231, 0.6);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__bottom a {
  color: var(--paper);
}

/* WhatsApp contact switcher */

.whatsapp {
  position: fixed;
  z-index: 90;
  right: clamp(16px, 2.2vw, 34px);
  bottom: clamp(16px, 2.2vw, 34px);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}

.whatsapp__launcher {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 10px 18px 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: #25d366;
  box-shadow: 5px 5px 0 var(--ink);
  color: #0c2916;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 300ms var(--ease-out),
    box-shadow 300ms var(--ease-out);
}

.whatsapp__launcher svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp__panel {
  width: min(355px, calc(100vw - 32px));
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--ink);
  transform-origin: right bottom;
}

.whatsapp__panel.is-opening {
  animation: panel-in 360ms var(--ease-out) both;
}

@keyframes panel-in {
  from {
    transform: translateY(12px) scale(0.96);
    opacity: 0;
  }
}

.whatsapp__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  border-bottom: 1px solid var(--ink);
  background: var(--green);
  color: var(--white);
}

.whatsapp__panel-head > div {
  display: flex;
  flex-direction: column;
}

.whatsapp__panel-head strong {
  font-size: 0.9rem;
}

.whatsapp__panel-head span {
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.7rem;
}

.whatsapp__panel-head button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 253, 247, 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
}

.whatsapp__panel > a {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  transition: background-color 220ms ease;
}

.whatsapp__panel > a + a {
  border-top: 1px solid var(--line);
}

.whatsapp__avatar {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  font-family: var(--font-display);
  font-weight: 900;
}

.whatsapp__avatar--karina {
  background: var(--orange);
}

.whatsapp__panel > a > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.whatsapp__panel > a strong {
  font-size: 0.78rem;
}

.whatsapp__panel > a small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.whatsapp__panel > a i {
  font-style: normal;
}

/* Reveal system */

.js .reveal {
  transform: translateY(26px);
  opacity: 0;
  transition:
    transform 850ms var(--ease-out),
    opacity 700ms ease;
}

.js .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Hover-only behavior */

@media (hover: hover) and (pointer: fine) {
  .button:hover::before {
    transform: translateX(0);
  }

  .button:hover > span {
    transform: rotate(45deg);
  }

  .button--ink:hover {
    color: var(--ink);
  }

  .button--cream:hover {
    color: var(--ink);
  }

  .text-link:hover span {
    transform: translateY(3px);
    background: var(--ink);
    color: var(--paper);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .carousel__buttons button:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .process__item:hover {
    padding-inline: 26px;
  }

  .process__item:hover::before {
    transform: translateY(0);
  }

  .profile:hover .profile__image img {
    transform: scale(1.035);
  }

  .contact-card:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .contact-card:hover > i {
    transform: rotate(45deg);
  }

  .footer__top nav a:hover {
    border-color: currentColor;
  }

  .whatsapp__launcher:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .whatsapp__panel > a:hover {
    background: var(--paper-deep);
  }
}

/* Tablet */

@media (max-width: 1120px) {
  :root {
    --header-height: 80px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .header__cta {
    display: none;
  }

  .hero__grid {
    min-height: calc(max(760px, 100svh) - var(--header-height) - 56px);
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .hero__visual {
    min-height: 610px;
  }

  .hero__title {
    font-size: clamp(4rem, 7.5vw, 6.2rem);
  }

  .portrait--mikael {
    left: -13%;
    width: 72%;
  }

  .portrait--karina {
    right: -13%;
    width: 71%;
  }

  .service-slide {
    min-height: 650px;
    grid-template-columns: 1fr 0.9fr;
  }

  .service-slide__copy {
    padding-inline: 48px;
  }

  .service-slide__number {
    left: 48px;
  }

  .service-slide h3 {
    font-size: clamp(3rem, 5.2vw, 5rem);
  }

  .browser-card {
    width: 82%;
  }

  .message-poster {
    width: 78%;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header__cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--paper);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--ink);
    transition: transform 280ms var(--ease-out);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--header-height) + 54px) var(--gutter) 46px;
    background: var(--sun);
  }

  .mobile-menu.is-opening {
    animation: mobile-menu-in 420ms var(--ease-out) both;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-block: 14px;
    border-bottom: 1px solid var(--ink);
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 8vw, 4.8rem);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .mobile-menu nav a span {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .mobile-menu > p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.15;
  }

  @keyframes mobile-menu-in {
    from {
      clip-path: inset(0 0 100% 0);
    }
    to {
      clip-path: inset(0);
    }
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .hero__content {
    padding-block: 42px 0;
  }

  .hero__title {
    font-size: clamp(4.4rem, 13vw, 7.6rem);
  }

  .hero__intro {
    max-width: 660px;
  }

  .hero__visual {
    width: min(100%, 720px);
    min-height: 640px;
    margin: 0 auto;
  }

  .portrait--mikael {
    left: -6%;
    width: 62%;
  }

  .portrait--karina {
    right: -6%;
    width: 62%;
  }

  .manifesto__body {
    grid-template-columns: 1fr;
  }

  .manifesto__aside {
    max-width: 560px;
  }

  .services__heading {
    align-items: start;
    flex-direction: column;
  }

  .service-slide {
    grid-template-columns: 1fr;
  }

  .service-slide__copy {
    min-height: 620px;
  }

  .service-slide__art {
    min-height: 540px;
    border-top: 1px solid currentColor;
    border-left: 0;
  }

  .service-slide h3 {
    font-size: clamp(3.6rem, 9vw, 6rem);
  }

  .flow-node--center {
    width: 190px;
  }

  .bridge__inner {
    grid-template-columns: 1fr;
  }

  .bridge__symbol {
    width: min(76vw, 520px);
  }

  .process__heading {
    align-items: start;
    flex-direction: column;
  }

  .process__heading .section-title {
    text-align: left;
  }

  .team__grid {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .profile {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) 1fr;
    align-items: center;
    gap: 36px;
  }

  .profile__image {
    aspect-ratio: 0.86;
  }

  .profile__content {
    padding: 0;
  }

  .profile__title {
    min-height: 0;
  }

  .contact__choices {
    grid-template-columns: 1fr;
  }

  .contact-card + .contact-card {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top nav {
    grid-column: 2;
  }
}

/* Mobile */

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
    --gutter: 20px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .section {
    padding-block: 88px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 0.56rem;
  }

  .site-header.is-scrolled {
    height: 66px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero__grid {
    padding-top: 36px;
  }

  .hero__content {
    padding-top: 34px;
  }

  .eyebrow,
  .section-index {
    font-size: 0.63rem;
  }

  .hero__title {
    margin-top: 24px;
    font-size: clamp(3.95rem, 19vw, 6.6rem);
    line-height: 0.83;
  }

  .hero__intro {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .hero__visual {
    width: calc(100% + 20px);
    min-height: 480px;
    margin-left: -10px;
  }

  .hero__shape--one {
    right: 0;
    bottom: 5%;
    width: 79%;
  }

  .hero__shape--two {
    top: 18%;
    right: -6%;
    width: 44%;
    border-width: 18px;
  }

  .hero__spark {
    top: 15%;
    left: 10%;
    font-size: 3.2rem;
  }

  .portrait--mikael {
    left: -10%;
    width: 67%;
    height: 70%;
  }

  .portrait--karina {
    right: -12%;
    width: 69%;
    height: 79%;
  }

  .portrait__tag {
    padding: 8px 9px;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 0.52rem;
  }

  .portrait__tag strong {
    font-size: 0.67rem;
  }

  .portrait__tag--dark {
    right: 47%;
    bottom: 9%;
  }

  .portrait__tag--light {
    right: 0;
    bottom: 4%;
  }

  .hero__note {
    display: none;
  }

  .hero__footer {
    height: 46px;
  }

  .hero__footer span:last-child,
  .hero__line {
    display: none;
  }

  .ticker__group {
    padding-block: 15px;
  }

  .ticker span {
    padding-inline: 18px;
  }

  .section-title,
  .section-title--compact {
    margin-top: 22px;
    font-size: clamp(3.15rem, 15vw, 5.2rem);
    line-height: 0.89;
  }

  .manifesto__body {
    gap: 35px;
  }

  .services__heading {
    gap: 26px;
    margin-bottom: 45px;
  }

  .services__lead {
    font-size: 0.97rem;
  }

  .carousel.shell {
    padding-inline: 0;
  }

  .carousel__viewport {
    border-right: 0;
    border-left: 0;
  }

  .service-slide__copy {
    min-height: 650px;
    padding: 72px 24px 42px;
  }

  .service-slide__number {
    top: 26px;
    left: 24px;
  }

  .service-slide h3 {
    font-size: clamp(3.45rem, 16vw, 5rem);
  }

  .service-slide__copy > p:not(.service-slide__kicker) {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .service-slide ul {
    margin-block: 22px 28px;
  }

  .service-slide li {
    font-size: 0.58rem;
  }

  .service-slide .button {
    width: 100%;
  }

  .service-slide__art {
    min-height: 420px;
  }

  .browser-card {
    width: 78%;
  }

  .browser-card__stamp {
    width: 78px;
    font-size: 0.82rem;
  }

  .flow-node--center {
    width: 150px;
    font-size: 4rem;
  }

  .flow-node:not(.flow-node--center) {
    width: 55px;
  }

  .flow-label {
    right: 4%;
    font-size: 0.55rem;
  }

  .message-poster {
    width: 68%;
  }

  .message-poster p {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .message-sticker {
    right: 1%;
    width: 94px;
    font-size: 0.55rem;
  }

  .carousel__controls {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    border-right: 0;
    border-left: 0;
  }

  .carousel__count {
    display: none;
  }

  .carousel__dots {
    padding-left: 20px;
  }

  .carousel__buttons button {
    width: 56px;
    min-height: 70px;
  }

  .bridge__inner {
    gap: 72px;
  }

  .bridge__symbol {
    width: calc(100% - 18px);
    box-shadow: 12px 12px 0 var(--sun);
  }

  .bridge__symbol span {
    font-size: clamp(5rem, 26vw, 8rem);
  }

  .bridge__copy > p:last-child {
    margin-top: 26px;
    font-size: 1rem;
  }

  .process__heading {
    gap: 28px;
    margin-bottom: 54px;
  }

  .process__item {
    min-height: 150px;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
  }

  .process__item h3 {
    font-size: 2.4rem;
  }

  .process__item p {
    padding-right: 8px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .process__item > i {
    font-size: 1.25rem;
  }

  .team__heading {
    margin-bottom: 52px;
  }

  .team__grid {
    gap: 76px;
  }

  .profile {
    display: block;
  }

  .profile__image {
    aspect-ratio: 0.92;
  }

  .profile__content {
    padding-top: 28px;
  }

  .profile__content h3 {
    font-size: 4rem;
  }

  .profile__title {
    margin-top: 18px;
  }

  .profile__content .button {
    width: 100%;
  }

  .contact__title {
    margin-block: 25px 50px;
    font-size: clamp(4rem, 20vw, 7rem);
    line-height: 0.8;
  }

  .contact-card {
    min-height: 345px;
    padding: 26px 24px;
  }

  .contact-card > i {
    top: 21px;
    right: 21px;
    width: 44px;
  }

  .contact-card strong {
    padding-right: 10px;
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .footer__top {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 64px;
  }

  .footer__top nav {
    grid-column: auto;
  }

  .footer__bottom {
    min-height: 128px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .whatsapp__launcher {
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 10px;
  }

  .whatsapp__launcher span {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero__title {
    font-size: 3.65rem;
  }

  .hero__visual {
    min-height: 420px;
  }

  .portrait__tag {
    transform: scale(0.9);
  }

  .service-slide__copy {
    min-height: 700px;
  }

  .carousel__buttons button {
    width: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ticker__track {
    transform: translateX(0);
  }

  .portrait {
    transform: none !important;
  }
}

@media print {
  .site-header,
  .whatsapp,
  .carousel__controls,
  .carousel__progress,
  .ticker {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .carousel__track {
    display: block;
    transform: none !important;
  }

  .service-slide {
    break-inside: avoid;
  }
}
