/* ==========================================================================
   Sweet Communication — "Två världar"
   Nordiskt djup (djup marinblå) möter thailändskt ljus (varmt elfenben).
   Färger ur logo.svg (#0579A6→#4FBAB4, #E63354, #1D1D1B) harmoniserade med
   portalens palett: azur #0084CB → cyan #00B2E3, marinblå #004F89.
   ========================================================================== */

:root {
  /* Brand — logotyp + portal */
  --blue: #0084CB;
  --teal: #4FBAB4;
  --red: #E63354;
  --ink: #1D1D1B;

  /* Mörk värld (härledd ur portalens marinblå #004F89) */
  --petrol-950: #043158;
  --petrol-900: #053D6D;
  --petrol-800: #074C85;
  --petrol-700: #0A5E9F;
  --on-dark: #EAF4FB;
  --on-dark-muted: #B6D3E8;

  /* Ljus värld */
  --ivory: #F7F2E9;
  --ivory-deep: #EFE7D8;
  --on-light: var(--ink);
  --on-light-muted: #5C5F5C;

  /* Ljusare tinter för kontrast på mörk botten */
  --teal-bright: #63CDC6;
  --blue-bright: #00B2E3;
  /* Mörkare tinter för AA-kontrast på ljus botten */
  --blue-deep: #00629B;
  --teal-deep: #27837C;

  /* Ett typsnitt för hela sajten (senior designbeslut) — Noto Sans Thai
     täcker thailändska tecken som Schibsted Grotesk saknar */
  --font-display: "Schibsted Grotesk", "Noto Sans Thai", sans-serif;
  --font-body: "Schibsted Grotesk", "Noto Sans Thai", sans-serif;

  --nav-h: 76px;
  --radius: 20px;
  --container: 1200px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--on-light);
  background: var(--petrol-950);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; }

::selection { background: var(--teal); color: var(--petrol-950); }

:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 3px; }

[hidden] { display: none !important; }

/* ---------- Utilities ---------- */
.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute; z-index: 200; top: -100px; left: 1rem;
  padding: .75rem 1.25rem; border-radius: 0 0 12px 12px;
  background: #DC2B4C; color: #fff; font-weight: 500; text-decoration: none;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 0; }

.section { position: relative; padding-block: clamp(5rem, 10vw, 8.5rem); scroll-margin-top: var(--nav-h); }
.dark { background: var(--petrol-950); color: var(--on-dark); }
.light { background: var(--ivory); color: var(--on-light); }

/* Varm glöd i ljusa sektioner — thailändskt ljus */
.light { background-image: radial-gradient(60rem 30rem at 85% -5%, rgba(79, 186, 180, 0.10), transparent 60%); }

.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .8125rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
}
.dark .eyebrow { color: var(--teal-bright); }
.light .eyebrow { color: var(--blue-deep); }
.eyebrow::before {
  content: ""; width: 2rem; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.eyebrow-num { font-weight: 700; opacity: .55; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
  margin-top: 1.1rem; text-wrap: balance;
}
.section-intro {
  margin-top: 1.25rem; max-width: 34rem; font-size: 1.125rem;
}
.dark .section-intro { color: var(--on-dark-muted); }
.light .section-intro { color: var(--on-light-muted); }

.dot { color: var(--red); }
.dot-blue { color: var(--blue); }

:lang(th) .hero-title { line-height: 1.25; letter-spacing: 0; }
:lang(th) .section-title { line-height: 1.35; letter-spacing: 0; }
:lang(th) .value h3, :lang(th) .pillar h3, :lang(th) .svc-scene h3 { line-height: 1.4; }

/* ---------- Knappar ---------- */
.btn {
  display: inline-block; padding: .9rem 1.9rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  text-decoration: none; text-align: center; border: 2px solid transparent;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out),
              background-color .25s, border-color .25s, color .25s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: #DC2B4C; color: #fff; }
.btn-primary:hover {
  background: #C92747;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(230, 51, 84, 0.55);
}
.btn-ghost { border-color: rgba(232, 241, 242, .35); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--teal-bright); color: var(--teal-bright); transform: translateY(-2px); }

/* ---------- Bildplatshållare ----------
   Byt varje <figure class="ph"> mot en riktig <img> — se TODO-kommentarer i index.html */
.ph {
  position: relative; width: 100%;
  aspect-ratio: var(--ph-ratio, 4/3);
  border-radius: var(--radius); overflow: hidden;
  background:
    linear-gradient(150deg, rgba(0, 132, 203, .55), rgba(79, 186, 180, .35) 55%, rgba(230, 51, 84, .18)),
    var(--petrol-800);
}
.ph::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px dashed rgba(255, 255, 255, .35); border-radius: calc(var(--radius) - 8px);
}
.ph::after {
  content: attr(data-ph-label);
  position: absolute; inset: 0; display: grid; place-content: center;
  color: rgba(255, 255, 255, .8);
  font-size: .8125rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; padding: 1rem;
}

/* ---------- Korn/noise på mörka sektioner ---------- */
.noise, .hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-nav.scrolled {
  background: rgba(4, 49, 88, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(232, 241, 242, .08);
}
.nav-inner {
  width: min(100% - 3rem, 1320px); margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo img { width: 164px; height: auto; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--on-dark-muted); text-decoration: none; font-size: .9375rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 1.25rem; }

.lang { display: flex; gap: .25rem; }
.lang-btn {
  padding: .35rem .55rem; border-radius: 8px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .05em;
  color: var(--on-dark-muted); transition: color .2s, background-color .2s;
}
.lang-btn:hover { color: #fff; }
.lang-btn { text-decoration: none; }
.lang-btn[aria-current="page"] {
  color: var(--petrol-950);
  background: linear-gradient(120deg, var(--teal-bright), var(--teal));
}
.btn-nav { padding: .6rem 1.4rem; font-size: .9375rem; }

.nav-burger {
  display: none; position: relative; z-index: 120;
  width: 44px; height: 44px; border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav-burger span {
  width: 22px; height: 2px; background: var(--on-dark); border-radius: 2px;
  transition: transform .3s var(--ease-out);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobilmeny */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: linear-gradient(160deg, var(--petrol-950), var(--petrol-800));
  display: flex; flex-direction: column; justify-content: center; gap: 3rem;
  padding: 6rem 2rem 3rem;
}
.mobile-menu-links { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu-links a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: .65rem 0; text-decoration: none;
  font-family: var(--font-display); font-size: clamp(1.6rem, 6vw, 2.2rem); font-weight: 700;
  color: var(--on-dark);
  opacity: 0; transform: translateY(16px);
}
.menu-open .mobile-menu-links a { animation: menu-in .5s var(--ease-out) forwards; }
.menu-open .mobile-menu-links a:nth-child(1) { animation-delay: .05s; }
.menu-open .mobile-menu-links a:nth-child(2) { animation-delay: .1s; }
.menu-open .mobile-menu-links a:nth-child(3) { animation-delay: .15s; }
.menu-open .mobile-menu-links a:nth-child(4) { animation-delay: .2s; }
.menu-open .mobile-menu-links a:nth-child(5) { animation-delay: .25s; }
.menu-open .mobile-menu-links a:nth-child(6) { animation-delay: .3s; }
.menu-open .mobile-menu-links a:nth-child(7) { animation-delay: .35s; }
@keyframes menu-in { to { opacity: 1; transform: none; } }
.mm-num { font-size: .9rem; font-weight: 500; color: var(--teal-bright); }
.mobile-menu-lang .lang-btn { font-size: 1rem; padding: .5rem .8rem; }
.mobile-menu[hidden] { display: none; }
.menu-open { overflow: hidden; }

/* ==========================================================================
   HERO — mörk värld med gradient-mesh
   ========================================================================== */
.hero {
  position: relative; overflow: clip;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(80rem 45rem at 75% -12%, rgba(0, 178, 227, .22), transparent 60%),
    var(--petrol-950);
  color: var(--on-dark);
  padding-block: calc(var(--nav-h) + 3rem) 0;
}


/* Bangkok-skylinen i duotone — anas bakom meshen, textytan hålls ren */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--petrol-950) 4%, rgba(4, 49, 88, .35) 30%, transparent 60%),
    linear-gradient(100deg, var(--petrol-950) 8%, rgba(4, 49, 88, .6) 45%, rgba(4, 49, 88, .08) 80%),
    url("../images/hero-bg-m.webp") center bottom / cover no-repeat;
  opacity: .45;
}
@media (min-width: 901px) {
  .hero-bg {
    background:
      linear-gradient(to top, var(--petrol-950) 4%, rgba(4, 49, 88, .35) 30%, transparent 60%),
      linear-gradient(100deg, var(--petrol-950) 8%, rgba(4, 49, 88, .6) 45%, rgba(4, 49, 88, .08) 80%),
      url("../images/hero-bg.webp") center bottom / cover no-repeat;
  }
}
@media (max-width: 900px) { .hero-bg { opacity: .22; } }

.mesh { position: absolute; inset: 0; overflow: hidden; }
.mesh-blob {
  position: absolute; border-radius: 50%; filter: blur(90px);
  will-change: transform; opacity: .6;
}
.mesh-blob-1 {
  width: 55vw; height: 55vw; min-width: 480px; min-height: 480px;
  background: radial-gradient(circle at 30% 30%, var(--blue), transparent 65%);
  top: -18%; left: -12%;
  animation: drift-1 26s ease-in-out infinite alternate;
}
.mesh-blob-2 {
  width: 45vw; height: 45vw; min-width: 400px; min-height: 400px;
  background: radial-gradient(circle at 60% 40%, var(--teal), transparent 65%);
  bottom: -14%; right: -8%; opacity: .68;
  animation: drift-2 32s ease-in-out infinite alternate;
}
.mesh-blob-3 {
  width: 26vw; height: 26vw; min-width: 260px; min-height: 260px;
  background: radial-gradient(circle at 50% 50%, var(--red), transparent 68%);
  top: 12%; right: 24%; opacity: .22;
  animation: drift-3 38s ease-in-out infinite alternate;
}
@keyframes drift-1 { to { transform: translate(11vw, 8vh) scale(1.16); } }
@keyframes drift-2 { to { transform: translate(-9vw, -11vh) scale(1.1); } }
@keyframes drift-3 { 50% { opacity: .3; } to { transform: translate(-12vw, 12vh) scale(1.3); opacity: .26; } }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
  margin-block: auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.025em;
  margin-top: 1.4rem;
}
.hero-title .line { display: block; }
.line-warm {
  background: linear-gradient(100deg, var(--teal-bright) 10%, var(--blue-bright) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .dot { display: inline-block; }

.hero-lead {
  margin-top: 1.75rem; max-width: 33rem;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: var(--on-dark-muted);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.25rem);
  margin-top: 3.2rem; padding-top: 2rem;
  border-top: 1px solid rgba(232, 241, 242, .14);
}
.hero-stats dt {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; line-height: 1;
}
.hero-stats div:nth-child(4) dt { color: var(--teal-bright); }
.hero-stats dd {
  margin: .35rem 0 0; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* Roterande enkätsiffror under CTA — grid-stack, crossfade utan layouthopp */
.hero-rotator { display: grid; margin-top: 1.3rem; min-height: 1.6em; }
.hr-item {
  grid-area: 1 / 1;
  display: flex; align-items: center; gap: .6rem;
  opacity: 0;
  font-size: .9375rem; font-weight: 500; color: var(--on-dark-muted);
}
.hr-item::before {
  content: ""; width: 1.25rem; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.hr-item.is-active { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hr-item { transition: opacity .6s var(--ease-out); }
}

/* Hero-bild: bryter rastret nedåt */
.hero-visual { position: relative; }
.hero-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(1.5deg);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
  will-change: transform;
  isolation: isolate;
}
.hero-img { width: 100%; height: auto; display: block; }

@media (prefers-reduced-motion: no-preference) {
  .hero-img {
    transform-origin: 50% 30%;
    animation: hero-kenburns 25s ease-in-out infinite alternate;
  }
  @keyframes hero-kenburns {
    from { transform: scale(1.03); }
    to   { transform: scale(1.09) translate(-1.6%, 1.2%); }
  }
}
.hvc-dot {
  width: .55rem; height: .55rem; border-radius: 50%; flex: none;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 51, 84, .2);
}

/* Världsremsan — två världar i livedata längs herons nederkant */
.hero-world {
  position: relative; z-index: 2;
  margin-top: clamp(2.5rem, 5vh, 4rem);
  border-top: 1px solid rgba(232, 241, 242, .14);
}
.hero-world-grid { display: grid; grid-template-columns: 1fr 1fr; }
.hw-group { padding: .95rem 0 1.25rem; }
.hw-group:first-child { padding-right: clamp(1.25rem, 3vw, 2.5rem); }
.hw-group--asia {
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid transparent;
  border-image: linear-gradient(180deg, var(--blue-bright), var(--teal-bright)) 1;
}
.hw-cities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem 1.5rem; }
.hw-city { display: flex; align-items: center; gap: .7rem; white-space: nowrap; }
.hw-name {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--on-dark-muted);
}
.hw-live {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-variant-numeric: tabular-nums;
}
.hw-live time { font-size: 1.0625rem; font-weight: 700; line-height: 1; color: var(--on-dark); }
.hw-live [data-coords] { font-size: 1.0625rem; font-weight: 500; color: var(--on-dark-muted); min-width: 2.4ch; }

/* Vi anställer-pillen — rekrytering är sajtens främsta syfte */
.hero-hiring {
  display: inline-flex; align-items: center; gap: .55rem;
  width: fit-content; margin-bottom: 1.5rem;
  padding: .5rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(232, 241, 242, .22);
  background: rgba(4, 49, 88, .4);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: .875rem; font-weight: 600; text-decoration: none; color: var(--on-dark);
  transition: border-color .25s;
}
.hero-hiring::after { content: "→"; color: var(--teal-bright); transition: transform .25s var(--ease-out); }
.hero-hiring:hover { border-color: var(--teal-bright); }
.hero-hiring:hover::after { transform: translateX(3px); }
.hh-dot {
  width: .5rem; height: .5rem; border-radius: 50%; background: var(--red); flex: none;
  animation: hh-pulse 2.2s infinite;
}
@keyframes hh-pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 51, 84, .45); }
  70% { box-shadow: 0 0 0 9px rgba(230, 51, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 51, 84, 0); }
}

/* Hero-entré */
.js .hero-el { opacity: 0; transform: translateY(26px); animation: rise .9s var(--ease-out) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ==========================================================================
   OM OSS — ljus värld
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.about-head { grid-column: 1 / -1; max-width: 46rem; }
.about-quote {
  margin-top: 1.6rem;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem); line-height: 1.35;
  color: var(--blue-deep);
  border-left: 3px solid var(--red); padding-left: 1.25rem;
}
.about-body { display: flex; flex-direction: column; gap: 1.4rem; }
.about-body > p { color: var(--on-light-muted); font-size: 1.125rem; }

.boi-card {
  margin-top: 1rem; padding: 2rem 2.2rem;
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--petrol-900), var(--petrol-700));
  color: var(--on-dark);
  box-shadow: 0 30px 60px -30px rgba(6, 40, 54, .55);
}
.boi-card-tag {
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-bright); font-weight: 500;
}
.boi-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  margin-top: .5rem;
}
.boi-card p:last-child { margin-top: .75rem; color: var(--on-dark-muted); font-size: 1rem; }

/* Värdegrunden — kompakt lista där bildytan låg */
.about-values { align-self: start; }
.values { list-style: none; margin-top: 1.1rem; }
.value { border-top: 1px solid rgba(29, 29, 27, .16); padding-block: 1.05rem; }
.value:last-child { border-bottom: 1px solid rgba(29, 29, 27, .16); }
.value h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 800; }
.value p { margin-top: .3rem; font-size: .9375rem; color: var(--on-light-muted); }
/* Logouppslaget — symbolens berättelse */
.brand-story {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(29, 29, 27, .16);
  display: grid; grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.bs-mark img { width: 100%; max-width: 320px; height: auto; }
.bs-copy h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.015em;
}
.bs-copy p { margin-top: .8rem; color: var(--on-light-muted); max-width: 42rem; }

/* ==========================================================================
   TJÄNSTER — mörk värld, VÄXELN
   ========================================================================== */
.services { background: linear-gradient(var(--petrol-950), var(--petrol-900) 50%, var(--petrol-950)); }
.services-head { max-width: 46rem; margin-bottom: clamp(3rem, 6vw, 5rem); }

/* VÄXELN — sex linjer in, en scen. Listan är menyn, scenen tar samtalet.
   Utan JS (eller på mobil) visas alla sex scenerna i följd. */
.svc-board {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.svc-hint {
  font-size: .8125rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-dark-muted); margin-bottom: 1.1rem;
}
.svc-index { list-style: none; }
.svc-idx-item {
  position: relative;
  display: flex; align-items: baseline; gap: 1rem;
  width: 100%; text-align: left;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(232, 241, 242, .12);
  color: var(--on-dark-muted);
  transition: color .25s;
  cursor: pointer;
}
.svc-index li:last-child .svc-idx-item { border-bottom: 1px solid rgba(232, 241, 242, .12); }
.si-num {
  font-family: var(--font-display); font-weight: 800; font-size: .8125rem;
  letter-spacing: .1em;
  color: color-mix(in srgb, var(--accent) 65%, var(--on-dark-muted));
}
.si-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.si-arrow {
  margin-left: auto; font-size: 1rem;
  color: var(--on-dark-muted); opacity: .55;
  transition: transform .25s var(--ease-out), color .25s, opacity .25s;
}
.svc-idx-item:hover .si-arrow, .svc-idx-item[aria-selected="true"] .si-arrow {
  color: var(--accent); opacity: 1; transform: translateX(4px);
}
.svc-idx-item:hover, .svc-idx-item[aria-selected="true"] { color: var(--on-dark); }
.svc-idx-item[aria-selected="true"] .si-num { color: var(--accent); }
.svc-idx-item::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 25%, transparent));
  transform: scaleX(0); transform-origin: left;
}
.svc-idx-item[aria-selected="true"]::after { transform: scaleX(1); }
@keyframes svc-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.svc-scene {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: center;
}
.svc-scene + .svc-scene { margin-top: 2.5rem; }
.js .svc-stage { display: grid; }
.js .svc-scene { grid-area: 1 / 1; opacity: 0; visibility: hidden; }
.js .svc-scene.active { opacity: 1; visibility: visible; }
.js .svc-scene + .svc-scene { margin-top: 0; }

.st-visual {
  position: relative;
  width: clamp(150px, 15vw, 190px); aspect-ratio: 1;
  display: grid; place-items: center;
}
.svc-scene .sp-ring { width: 100%; }
.svc-scene .sp-icon { width: clamp(48px, 4.5vw, 60px); }
.svc-scene h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.015em;
}
.st-tag {
  margin-top: .6rem; font-size: .8125rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 75%, #fff);
}
.st-desc { margin-top: 1rem; max-width: 30rem; color: var(--on-dark-muted); font-size: 1.0625rem; }
/* Logotypens geometri: hårlinjering med två punkter som vandrar 60° per panel */
.sp-ring {
  position: absolute; inset: 0; margin: auto;
  width: min(250px, 84%); aspect-ratio: 1;
  --rot: calc(-28deg + var(--i) * 60deg);
  transform: rotate(var(--rot));
}
.sp-ring-line {
  fill: color-mix(in srgb, var(--accent) 6%, transparent);
  stroke: color-mix(in srgb, var(--accent) 45%, transparent);
  stroke-width: 1; vector-effect: non-scaling-stroke;
}
.sp-dot { fill: var(--accent); }
.sp-dot--minor { opacity: .55; }

@media (prefers-reduced-motion: no-preference) {
  .svc-autoplay .svc-idx-item[aria-selected="true"]::after { animation: svc-progress 6s linear; }
  .svc-idx-item[aria-selected="true"]::after { transition: transform .4s var(--ease-out); }

  .js .svc-scene { transition: opacity .45s var(--ease-out), visibility 0s linear .45s; }
  .js .svc-scene.active { transition: opacity .55s var(--ease-out); }

  .js .svc-scene .st-text > * { opacity: 0; transform: translateY(12px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
  .js .svc-scene.active .st-text > :nth-child(1) { transition-delay: .08s; }
  .js .svc-scene.active .st-text > :nth-child(2) { transition-delay: .16s; }
  .js .svc-scene.active .st-text > :nth-child(3) { transition-delay: .24s; }
  .js .svc-scene.active .st-text > * { opacity: 1; transform: none; }

  .js .svc-scene .sp-ring { transform: rotate(calc(var(--rot) - 30deg));
    transition: transform .8s cubic-bezier(.22, .61, .36, 1) .1s; }
  .js .svc-scene.active .sp-ring { transform: rotate(var(--rot)); }

  /* Pulsen — ett pågående samtal på scenen */
  .st-visual::before {
    content: ""; position: absolute; inset: 14%; border-radius: 50%;
  }
  .js .svc-scene.active .st-visual::before { animation: svc-pulse 3.2s ease-out infinite; }
  @keyframes svc-pulse {
    0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 28%, transparent); }
    70%  { box-shadow: 0 0 0 24px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
  }
}
.sp-icon {
  position: relative; width: clamp(88px, 9vw, 124px); height: auto;
  color: color-mix(in srgb, var(--accent) 80%, #fff);
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ==========================================================================
   SÅ JOBBAR VI — ljus värld, vandrande pelare
   ========================================================================== */
.philosophy-head { max-width: 46rem; margin-bottom: clamp(3.5rem, 7vw, 6rem); }

.pillars {
  list-style: none;
  display: flex; flex-direction: column; gap: clamp(2.8rem, 6vw, 4.5rem);
  position: relative;
  max-width: 56rem; margin-inline: auto;
}
.pillars::before {
  content: ""; position: absolute; top: .5rem; bottom: .5rem; left: 1.05rem;
  width: 2px;
  background: linear-gradient(var(--blue), var(--teal) 60%, var(--red));
  opacity: .3;
}
.pillar {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.8rem); align-items: start;
  position: relative;
}
.pillar:nth-child(even) { transform: translateX(clamp(0rem, 6vw, 4.5rem)); }
.pillar-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue-deep);
  background: var(--ivory); position: relative; z-index: 1;
  padding-block: .25rem;
}
.pillar:nth-child(even) .pillar-num { -webkit-text-stroke-color: var(--teal-deep); }
.pillar:last-child .pillar-num { -webkit-text-stroke-color: var(--red); }
.pillar h3 {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800; letter-spacing: -0.01em;
}
.pillar p { margin-top: .7rem; max-width: 36rem; color: var(--on-light-muted); }

/* ==========================================================================
   FÖRTROENDE — smalt mörkt band
   ========================================================================== */
.proof {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: linear-gradient(135deg, var(--petrol-800), var(--petrol-950));
  border-block: 1px solid rgba(232, 241, 242, .08);
}
.proof-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.3; letter-spacing: -.01em;
  text-align: center; max-width: 54rem; margin-inline: auto; text-wrap: balance;
}

/* ==========================================================================
   VÅRT TEAM — ljus värld
   ========================================================================== */
.team-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
/* Alla lika stora — en för alla, alla för en; ordningen bär orienteringen */
.team-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2.2rem 1.4rem;
}
.team-grid .member { width: min(196px, 42vw); }
.member { text-align: center; }
.member .ph { border-radius: 14px; }
.member img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 14px; display: block;
}
.member h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; margin-top: .8rem; }
.member p { font-size: .8125rem; color: var(--on-light-muted); margin-top: .1rem; }

/* ==========================================================================
   KONTOR — mörk värld
   ========================================================================== */
.offices-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  align-items: end; gap: 1rem 3rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.offices-head .eyebrow { grid-column: 1 / -1; }
.offices-head .section-intro { margin-top: 0; }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.office {
  border-radius: var(--radius); overflow: hidden;
  background: var(--petrol-900);
  border: 1px solid rgba(232, 241, 242, .1);
  transition: transform .35s var(--ease-out), border-color .35s;
}
.office:hover { transform: translateY(-6px); border-color: rgba(99, 205, 198, .4); }
.office .ph { border-radius: 0; }
.office > img {
  width: 100%; height: auto; aspect-ratio: 16 / 10;
  object-fit: cover; display: block;
}
.office .ph::before { inset: 0; border: 0; }
.office-body { padding: 1.8rem 2rem 2.2rem; }
.office-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.office-tag {
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-bright); font-weight: 500;
}
.office-live {
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-size: .875rem; font-weight: 500;
  font-variant-numeric: tabular-nums; color: var(--on-dark-muted);
}
.ol-ico { display: flex; width: 13px; }
.office h3 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  margin-top: .4rem;
}
.office-body > p:not(.office-tag) { margin-top: .8rem; color: var(--on-dark-muted); }

.office--soon { background: transparent; border-style: dashed; border-color: rgba(232, 241, 242, .28); }
.office--soon:hover { border-color: rgba(99, 205, 198, .5); }
.office-tag--soon { color: #FF8DA3; }
.office-soon-link {
  display: inline-block; margin-top: 1.1rem;
  font-family: var(--font-display); font-weight: 700; font-size: .9375rem;
  color: var(--teal-bright); text-decoration: none;
  border-bottom: 2px solid transparent; transition: border-color .25s;
}
.office-soon-link::after { content: " →"; }
.office-soon-link:hover { border-color: var(--teal-bright); }

/* ==========================================================================
   JOBBA HOS OSS — ljus värld
   ========================================================================== */
.careers { background-color: var(--ivory-deep); }
.careers-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }

/* Livsstilscollage — sex foton i varierade storlekar, inte jobb jobb jobb */
.careers-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 16vw, 210px);
  gap: clamp(.8rem, 1.5vw, 1.2rem);
}
.careers-gallery .ph { height: 100%; aspect-ratio: auto; }
.careers-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); display: block;
}
.cg-a { grid-column: span 2; grid-row: span 2; }
.careers-gallery-cta { text-align: center; }
.cg-w { grid-column: span 2; }
.careers-copy { max-width: 40rem; }
.careers-copy > p { margin-top: 1.25rem; color: var(--on-light-muted); font-size: 1.125rem; }
.careers-copy .btn { margin-top: 2rem; }

/* Livsstilspunkter — redaktionella rader, inte kort */
.careers-perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(1.8rem, 4vw, 3rem);
}
.careers-perks li {
  border-top: 1px solid rgba(29, 29, 27, .18);
  padding-top: 1.3rem;
}
.careers-perks h3 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800; letter-spacing: -0.01em; width: fit-content;
  background: linear-gradient(100deg, var(--blue-deep), var(--teal-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.careers-perks p { margin-top: .55rem; font-size: .9375rem; color: var(--on-light-muted); }

/* Statsband — medarbetarenkäten, samma formspråk som .hero-stats fast på ljus fond */
.careers-stats {
  border-top: 1px solid rgba(29, 29, 27, .18);
  padding-top: 1.6rem;
}
.cs-kicker {
  font-size: .8125rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-deep);
}
.cs-grid {
  display: flex; flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  margin-top: 1.5rem;
}
.cs-grid dt {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--petrol-950);
}
.cs-grid dd {
  margin: .35rem 0 0;
  font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-light-muted);
}
.cs-source { margin-top: 1.4rem; font-size: .8125rem; color: var(--on-light-muted); }

/* Tre medarbetarcitat — accentprogression blå -> teal -> röd */
.careers-quotes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.8rem, 4vw, 3rem);
}
.cq blockquote p {
  border-left: 3px solid var(--blue-deep);
  padding-left: 1.1rem;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.0625rem; line-height: 1.5;
  color: var(--petrol-950);
}
.cq:nth-child(2) blockquote p { border-color: var(--teal-deep); }
.cq:nth-child(3) blockquote p { border-color: var(--red); }
.cq figcaption {
  margin-top: .8rem; padding-left: calc(1.1rem + 3px);
  font-size: .875rem;
}
.cq-name { font-weight: 700; }
.cq-role { color: var(--on-light-muted); }
.cq-role::before { content: " · "; }

/* Vårt löfte — checklista i tvåspalt, sista argumentet före CTA */
.careers-promise {
  border-top: 1px solid rgba(29, 29, 27, .18);
  padding-top: clamp(1.8rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.careers-promise h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800; letter-spacing: -0.01em;
}
.cp-list { list-style: none; display: grid; gap: .9rem; }
.cp-list li { display: flex; gap: .8rem; align-items: flex-start; }
.cp-check {
  flex: none; width: 1.1rem; height: 1.1rem; margin-top: .3rem;
  fill: none; stroke: var(--teal-deep);
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 900px) {
  .careers-promise { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
}

/* ==========================================================================
   KONTAKT — mörk värld
   ========================================================================== */
.contact { background: linear-gradient(var(--petrol-950), var(--petrol-900)); }
.contact-grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 5.5rem); align-items: start;
}
.contact .section-title { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.contact-jobs {
  margin-top: 2rem; padding: 1.1rem 1.4rem; border-radius: 14px;
  border: 1px dashed rgba(232, 241, 242, .28);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem 1.1rem;
}
.contact-jobs p { font-family: var(--font-display); font-weight: 700; }
.contact-jobs-link {
  color: var(--teal-bright); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid transparent; transition: border-color .25s;
}
.contact-jobs-link::after { content: " →"; }
.contact-jobs-link:hover { border-color: var(--teal-bright); }
.contact-direct { margin-top: 2.5rem; }
.contact-direct-label {
  font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-dark-muted); font-weight: 500;
}
.contact-email {
  display: inline-block; margin-top: .5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--teal-bright); text-decoration: none;
  border-bottom: 2px solid transparent; transition: border-color .25s;
  overflow-wrap: anywhere;
}
.contact-email:hover { border-color: var(--teal-bright); }
.contact-address { margin-top: 2.5rem; }
.contact-address-link {
  display: inline-block; margin-top: .5rem; line-height: 1.7;
  color: var(--on-dark-muted); text-decoration: none;
  transition: color .25s;
}
.contact-address-link:hover { color: var(--teal-bright); }
.footer-address {
  display: block; line-height: 1.7; text-decoration: none;
  transition: color .2s;
}
.footer-address:hover { color: var(--teal-bright); }

.contact-form {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius);
  background: rgba(10, 52, 68, .5);
  border: 1px solid rgba(232, 241, 242, .12);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.botcheck { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { margin-bottom: 1.4rem; }
.field label {
  display: block; margin-bottom: .45rem;
  font-size: .8125rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-dark-muted);
}
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; padding: .85rem 1rem;
  background: rgba(4, 49, 88, .55);
  border: 1px solid rgba(232, 241, 242, .16); border-radius: 12px;
  color: var(--on-dark); font: inherit;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(99, 205, 198, .18);
}
.field-consent {
  display: flex; gap: .8rem; align-items: flex-start;
  margin-top: .4rem;
}
.field-consent input {
  flex: none; width: 1.15rem; height: 1.15rem; margin-top: .2rem;
  accent-color: var(--red);
}
.field-consent label {
  margin: 0; text-transform: none; letter-spacing: 0;
  font-size: .875rem; line-height: 1.55; color: var(--on-dark-muted);
}
.btn-submit { width: 100%; margin-top: .6rem; }
.btn-submit[disabled] { opacity: .6; cursor: wait; transform: none; }
.form-status { margin-top: 1rem; font-size: .9375rem; min-height: 1.5em; }
.form-status.ok { color: var(--teal-bright); }
.form-status.err { color: #FF7A93; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #032747; color: var(--on-dark-muted);
  padding-block: clamp(3.5rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(232, 241, 242, .07);
}
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
.footer-brand img { width: 180px; height: auto; }
.footer-brand p { margin-top: 1.2rem; max-width: 20rem; font-size: .9375rem; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a {
  text-decoration: none; font-size: .9375rem; width: fit-content;
  transition: color .2s;
}
.footer-links a:hover { color: var(--teal-bright); }
.footer-meta { display: flex; flex-direction: column; gap: .9rem; font-size: .875rem; }
.footer-bottom {
  padding-block: 1.6rem;
  border-top: 1px solid rgba(232, 241, 242, .07);
  font-size: .8125rem;
}

/* ==========================================================================
   Scroll-reveals
   ========================================================================== */
.js .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js .reveal.in-view { opacity: 1; transform: none; }
.pillar.reveal:nth-child(even) { transform: translateX(clamp(0rem, 6vw, 4.5rem)) translateY(28px); }
.pillar.reveal.in-view:nth-child(even) { transform: translateX(clamp(0rem, 6vw, 4.5rem)); }

/* ==========================================================================
   Responsivt
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 26rem; margin-inline: auto; }
  .hw-city { flex-direction: column; align-items: flex-start; gap: .35rem; }
  .about-grid { grid-template-columns: 1fr; }
  .brand-story { grid-template-columns: 1fr; }
  .bs-mark img { max-width: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .offices-head { display: block; max-width: 46rem; }
  .offices-head .section-intro { margin-top: 1.25rem; }
  .pillar:nth-child(even) { transform: none; }
  .pillar.reveal:nth-child(even) { transform: translateY(28px); }
  .pillar.reveal.in-view:nth-child(even) { transform: none; }
}

@media (max-width: 860px) {
  .svc-board { grid-template-columns: 1fr; }
  .svc-menu { display: none; }
  .js .svc-stage { display: block; }
  .js .svc-scene { opacity: 1; visibility: visible; }
  .js .svc-scene + .svc-scene { margin-top: 2.6rem; }
  .js .svc-scene .st-text > * { opacity: 1; transform: none; }
  .svc-scene { align-items: start; }
  .st-visual { width: 64px; }
  .svc-scene .sp-ring { display: none; }
  .svc-scene .sp-icon { width: 34px; }
  .svc-scene h3 { font-size: 1.35rem; }
  .st-visual::before { display: none; }
}

@media (max-width: 640px) {
  .btn-nav { display: none; }
  .site-nav .lang { display: none; }
  .nav-logo img { width: 138px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .careers-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(110px, 28vw, 180px); }
  .hero-stats div:nth-child(2) { display: none; }
  .hero-world-grid { grid-template-columns: 1fr; }
  .hw-group:first-child { padding-right: 0; padding-bottom: .9rem; }
  .hw-group--asia {
    border-left: 0; border-image: none; padding-left: 0;
    border-top: 1px solid rgba(232, 241, 242, .12);
  }
  .team-grid .member { width: calc(50% - .7rem); }
  .contact-offices { flex-direction: column; gap: .8rem; }
}

@media (min-width: 1081px) {
  .nav-burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ==========================================================================
   Reduced motion — allt väsentligt syns direkt, inget rör sig
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mesh-blob { animation: none; }
  .hh-dot { animation: none; }
  .js .hero-el { animation: none; opacity: 1; transform: none; }
  .js .reveal { transition: none; opacity: 1; transform: none; }
  .pillar.reveal:nth-child(even) { transform: translateX(clamp(0rem, 6vw, 4.5rem)); }
  .menu-open .mobile-menu-links a { animation: none; opacity: 1; transform: none; }
  .btn, .office { transition: none; }
}

@media (prefers-reduced-motion: reduce) and (max-width: 900px) {
  .pillar.reveal:nth-child(even) { transform: none; }
}
