@font-face {
  font-family: "Suisse";
  src: url("_nuxt/suisse-medium.woff2") format("woff2"),
       url("_nuxt/suisse-medium.woff") format("woff");
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: "ABC Social";
  src: url("_nuxt/lausanne-300.CMiifVRe.woff2") format("woff2"),
       url("_nuxt/lausanne-300.DT1L7BNq.woff") format("woff");
  font-weight: 300 700;
  font-display: swap;
}


:root {
  --bg: #f0efe9;
  --ink: #0a0a0a;
  --muted: rgba(10, 10, 10, 0.55);
  --pad: clamp(1.2rem, 3vw, 2.4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Suisse, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: var(--pad);
  top: 0.75rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: #000;
  color: #fff;
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus {
  transform: none;
  outline: 2px solid #fff;
  outline-offset: 2px;
}


.faq {
  padding: clamp(4.5rem, 9vw, 7rem) var(--pad);
  background: var(--bg);
}
.faq__inner {
  display: grid;
  gap: 2.25rem;
  max-width: 72rem;
}
@media (min-width: 900px) {
  .faq__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
  }
  .faq__head {
    position: sticky;
    top: 5.5rem;
    padding-right: 1rem;
  }
}
.faq__head { margin-bottom: 0; }
.faq__head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 8ch;
}
.faq__lead {
  margin-top: 1rem;
  max-width: 22ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.4;
}
.faq__list {
  display: grid;
  gap: 0;
  counter-reset: faq;
  border-top: 1px solid rgba(10, 10, 10, 0.14);
}
.faq__item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.14);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) 2rem;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1.35rem 0;
  position: relative;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
  transition: opacity 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  counter-increment: faq;
  content: counter(faq, decimal-leading-zero);
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  color: rgba(10, 10, 10, 0.38);
  line-height: 1;
}
.faq__item summary::after {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  justify-self: end;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(#0a0a0a, #0a0a0a) center / 0.65rem 1px no-repeat,
    linear-gradient(#0a0a0a, #0a0a0a) center / 1px 0.65rem no-repeat;
  opacity: 0.55;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.faq__item[open] summary::after {
  opacity: 1;
  border-color: rgba(10, 10, 10, 0.55);
  background: linear-gradient(#0a0a0a, #0a0a0a) center / 0.65rem 1px no-repeat;
  transform: rotate(180deg);
}
.faq__item summary:hover {
  opacity: 0.72;
}
.faq__item[open] summary {
  opacity: 1;
}
.faq__item p {
  padding: 0 0 1.45rem 3.4rem;
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.55;
}
@media (max-width: 599px) {
  .faq__item summary {
    grid-template-columns: 2rem minmax(0, 1fr) 1.7rem;
    gap: 0.65rem;
    padding: 1.2rem 0;
  }
  .faq__item p {
    padding-left: 0;
    padding-bottom: 1.25rem;
  }
}
.label {
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-bottom: 0.7rem;
  opacity: 0.55;
}
.muted { opacity: 0.55; margin-top: 0.75rem; }
.btn {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.95rem 1.4rem;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

/* Preloader - sequenced via GSAP only (no CSS overlap) */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.preloader__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.preloader__lines {
  text-align: center;
  display: grid;
  gap: 0.15em;
}
.preloader__a,
.preloader__b {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}
.preloader__brand {
  font-family: "ABC Social", Suisse, sans-serif;
  font-size: clamp(3.5rem, 14vw, 9rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  will-change: transform, opacity;
  text-align: center;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem var(--pad);
  mix-blend-mode: difference;
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.header.is-on { opacity: 1; transform: none; }
.header__menu {
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.lang {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}
.lang__btn {
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  background: none;
  border: 0;
  color: inherit;
  opacity: 0.4;
  cursor: pointer;
  padding: 0.35rem 0.4rem;
  line-height: 1;
  transition: opacity 0.25s var(--ease);
}
.lang__btn:hover { opacity: 0.75; }
.lang__btn.is-active,
.lang__btn[aria-pressed="true"] { opacity: 1; }
.header__logo {
  font-family: "ABC Social", Suisse, sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* Menu - matches site header + contact language */
.menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.menu[hidden] { display: none !important; }
.menu__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem var(--pad);
  position: sticky;
  top: 0;
  background: #0a0a0a;
  z-index: 1;
}
.menu__close,
.menu__cta {
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.menu__close:hover,
.menu__cta:hover { opacity: 1; }
.menu__cta { justify-self: end; }
.menu__brand {
  font-family: "ABC Social", Suisse, sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.menu__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--pad) 3rem;
  gap: 0;
}
.menu__body > .label {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}
.menu__nav {
  display: grid;
  gap: 0.1rem;
}
.menu__link {
  display: block;
  font-family: "ABC Social", Suisse, sans-serif;
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
  padding: 0.12rem 0;
  transition: opacity 0.35s var(--ease);
}
.menu__link:hover { opacity: 0.45; }
.menu__foot {
  display: grid;
  gap: 0.35rem;
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 28rem;
}
.menu__foot a {
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}
.menu__foot a:hover { opacity: 1; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end stretch;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}
.hero__media img {
  transform: scale(1.06);
  animation: heroZoom 2.2s var(--ease) 1.4s forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__brand {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) 0.35em;
  opacity: 0;
}
.hero__title {
  font-family: "ABC Social", Suisse, sans-serif;
  font-size: clamp(4rem, 16vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.hero__sub {
  font-family: "ABC Social", Suisse, sans-serif;
  font-size: clamp(0.85rem, 2.2vw, 1.35rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.55em;
  padding-left: clamp(0.6rem, 2.5vw, 1.6rem);
  opacity: 0.72;
}
.hero__claim {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) 2rem;
  font-size: clamp(0.72rem, 2.35vw, 1.25rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
  max-width: none;
}

/* Categories */
.cats { padding: 4.5rem var(--pad); }
.cats__head { margin-bottom: 1.75rem; }
.cats__head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1;
}
.cats__lead {
  margin-top: 0.85rem;
  max-width: none;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.8vw, 1.05rem);
  line-height: 1.35;
  white-space: nowrap;
}
.cats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
@media (min-width: 900px) {
  .cats__grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
}
.cat {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #ddd;
  color: #fff;
}
.cat img {
  transition: transform 0.9s var(--ease);
}
.cat:hover img,
.cat:focus-visible img { transform: scale(1.05); }
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.68));
  transition: background 0.45s var(--ease);
}
.cat:hover::after,
.cat:focus-visible::after {
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.78));
}
.cat__meta {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}
.cat__title {
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  line-height: 1.15;
}
.cat__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  opacity: 0.7;
  transform: translateX(0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.cat__action svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.4s var(--ease);
}
.cat:hover .cat__action,
.cat:focus-visible .cat__action {
  opacity: 1;
}
.cat:hover .cat__action svg,
.cat:focus-visible .cat__action svg {
  transform: translateX(0.2rem);
}

/* Feature */
.feature {
  display: grid;
  gap: 0;
  background: #fff;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1.15fr; min-height: 85svh; }
}
.feature__copy {
  padding: 3.5rem var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature__copy h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: none;
}
.feature__copy p { max-width: 32rem; color: var(--muted); }
.feature__media { min-height: 50svh; }
@media (min-width: 900px) {
  .feature__media { min-height: 100%; }
}
@media (max-width: 899px) {
  .cat--extensions,
  .feature__media {
    display: none;
  }
}

/* Split */
.split {
  display: grid;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
}
.split__item {
  position: relative;
  min-height: 60svh;
  color: #fff;
  overflow: hidden;
}
.split__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65));
}
.split__item > div {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 1.75rem;
  z-index: 1;
}
.split__item h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: none;
}

/* About / Contact */
.about, .contact {
  padding: 5rem var(--pad);
}
.about h2 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.about p { max-width: 40rem; color: var(--muted); font-size: 1.05rem; }
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 10% 0%, rgba(255,255,255,0.07), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(180,160,120,0.12), transparent 50%),
    #0a0a0a;
  color: #fff;
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
}
.contact__glow {
  position: absolute;
  inset: auto -10% -30% auto;
  width: min(55vw, 34rem);
  height: min(55vw, 34rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 68%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
  }
}
.contact__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
}
.contact__intro .label {
  color: rgba(255,255,255,0.45);
  opacity: 1;
  margin-bottom: 0.85rem;
}
.contact__intro h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 0;
  width: max-content;
  max-width: 100%;
}
.contact__serving {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  max-width: 28ch;
  line-height: 1.4;
}
.contact__channels {
  display: grid;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}
@media (min-width: 600px) {
  .contact__row { grid-template-columns: 6.5rem 1fr auto; gap: 1.1rem; }
}
.contact__row:hover,
.contact__row:focus-visible {
  padding-left: 0.55rem;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), transparent 70%);
}
.contact__kind {
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
}
.contact__value {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  word-break: break-word;
}
.contact__go {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  opacity: 0.7;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.contact__go svg { width: 0.95rem; height: 0.95rem; }
.contact__row:hover .contact__go,
.contact__row:focus-visible .contact__go {
  opacity: 1;
  border-color: rgba(255,255,255,0.55);
  transform: translateX(0.15rem);
}

.footer {
  padding: 2.5rem var(--pad);
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
@media (min-width: 800px) {
  .footer { grid-template-columns: 1fr 2fr; }
  .footer__copy { grid-column: 1 / -1; }
}
.footer strong,
.footer__brand {
  display: block;
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.footer p { color: var(--muted); font-size: 0.92rem; }
.footer__contact {
  margin-top: 0.65rem;
  font-size: 0.88rem !important;
}
.footer__contact a:hover { opacity: 0.55; }
.footer nav { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }
.footer nav a:hover { opacity: 0.5; }
.footer__copy {
  font-size: 0.78rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Cookie consent */
.cookies {
  position: fixed;
  left: 50%;
  bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  width: min(34rem, calc(100vw - 2 * var(--pad)));
  transform: translateX(-50%);
  pointer-events: none;
}
.cookies[hidden] { display: none !important; }
.cookies__card {
  pointer-events: auto;
  padding: 1.15rem 1.25rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), transparent 48%),
    rgba(10, 10, 10, 0.94);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  animation: cookiesIn 0.55s var(--ease) both;
}
.cookies__label {
  margin: 0 0 0.55rem;
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}
.cookies__row {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.cookies__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.8);
}
.cookies__text a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.cookies__text a:hover {
  border-bottom-color: #fff;
}
.cookies__ok {
  flex: 0 0 auto;
  min-width: 3.75rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cookies__ok:hover,
.cookies__ok:focus-visible {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
@keyframes cookiesIn {
  from {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 520px) {
  .cookies {
    left: var(--pad);
    right: var(--pad);
    width: auto;
    transform: none;
    max-width: calc(100vw - 5.25rem);
  }
  .cookies__row {
    align-items: flex-end;
    gap: 0.85rem;
  }
  .cookies__ok {
    padding: 0.65rem 1rem;
  }
}

/* Privacy / legal page */
.legal {
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
}
.legal__article {
  padding: 1.5rem var(--pad) 0;
  max-width: 42rem;
}
.legal__article h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.legal__updated {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.legal__article > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.legal__article h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  letter-spacing: -0.02em;
  margin: 2rem 0 0.65rem;
}
.page .wa { bottom: 1rem; }

/* Fixed WhatsApp */
.wa {
  position: fixed;
  right: var(--pad);
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  background: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  transition: transform 0.45s var(--ease), background 0.35s var(--ease);
}
.wa svg {
  width: 1.35rem;
  height: 1.35rem;
}
.wa:hover {
  transform: scale(1.06);
  background: #000;
}

/* Service pages */
.page .header {
  opacity: 1;
  transform: none;
}
.svc-hero {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.svc-hero__media {
  position: absolute;
  inset: 0;
}
.svc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 100%);
}
.svc-hero__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5.5rem var(--pad) 2.4rem;
  max-width: none;
}
.svc-hero__copy .label {
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
}
.svc-hero__copy h1 {
  font-family: "ABC Social", Suisse, sans-serif;
  font-size: clamp(1.35rem, 6.2vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: none;
}

.svc-body {
  padding: 3.5rem var(--pad) 1.5rem;
}
.svc-body__lead {
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.4;
  max-width: 38rem;
  margin-bottom: 2.75rem;
  color: var(--ink);
}
.svc-body__grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .svc-body__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}
.svc-body__list .label {
  margin-bottom: 1rem;
}
.svc-body__list ul {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 0;
}
.svc-body__list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.svc-body__media {
  position: relative;
  min-height: 42svh;
  overflow: hidden;
  background: #ddd;
}
.svc-body__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 900px) {
  .svc-body__media {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
}

.svc-related {
  padding: 3rem var(--pad) 4.5rem;
}

.svc-compare {
  padding: 1rem var(--pad) 3.5rem;
}
.svc-compare__head {
  margin-bottom: 1.5rem;
}
.svc-compare__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: min(48rem, 100%);
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
}
.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__img--before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 2px;
  margin-left: -1px;
  background: #fff;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.ba-slider__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.6rem;
  height: 2.6rem;
  margin: -1.3rem 0 0 -1.3rem;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}
.ba-slider__knob svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
.ba-slider__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
}
.ba-slider__tag {
  position: absolute;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.55rem;
  background: rgba(10, 10, 10, 0.55);
  color: #fff;
  font-family: "ABC Social", Suisse, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-slider__tag--before { left: 0.85rem; }
.ba-slider__tag--after { right: 0.85rem; }
.ba-slider--wide {
  aspect-ratio: 16 / 9;
  max-width: min(56rem, 100%);
}
.ba-slider--tall {
  aspect-ratio: 3 / 4;
  max-width: min(28rem, 100%);
}

/* Service gallery - marquee strip + lightbox */
.svc-gallery {
  padding: 3rem 0 2.5rem;
}
.svc-gallery__head {
  margin-bottom: 1.5rem;
  padding: 0 var(--pad);
}
.svc-gallery__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.svc-gallery__viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.svc-gallery__viewport:active {
  cursor: grabbing;
}
.svc-gallery__track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  will-change: transform;
  padding: 0 var(--pad);
  touch-action: pan-y;
}
.svc-gallery__item {
  flex: 0 0 auto;
  width: min(70vw, 20rem);
  aspect-ratio: 3 / 4;
  margin: 0;
  padding: 0;
  border: 0;
  background: #ddd;
  overflow: hidden;
  cursor: zoom-in;
}
.svc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.7s var(--ease);
}
.svc-gallery__item:hover img {
  transform: scale(1.04);
}
.svc-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.5));
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  opacity: 0.9;
}
.svc-gallery__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.svc-gallery__arrow--prev { left: clamp(0.5rem, 1.8vw, 1.25rem); }
.svc-gallery__arrow--next { right: clamp(0.5rem, 1.8vw, 1.25rem); }
.svc-gallery__arrow:hover { opacity: 1; }
.svc-gallery__arrow--prev:hover { transform: translateX(-2px); }
.svc-gallery__arrow--next:hover { transform: translateX(2px); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.94);
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1rem var(--pad) 1.5rem;
  opacity: 1;
  visibility: visible;
}
.lightbox[hidden] { display: none !important; }
.lightbox__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.lightbox__count,
.lightbox__close {
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  opacity: 0.7;
}
.lightbox__close {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}
.lightbox__img {
  max-width: min(100%, 920px);
  max-height: calc(100svh - 8rem);
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  padding: 0 0.25rem;
}
.lightbox__prev,
.lightbox__next {
  pointer-events: auto;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox__cap {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.92rem;
  opacity: 0.55;
  letter-spacing: -0.01em;
}
.svc-related__head {
  margin-bottom: 1.5rem;
}
.svc-related__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.svc-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .svc-related__grid { grid-template-columns: repeat(3, 1fr); }
}
.svc-related__item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  color: #fff;
  background: #ddd;
}
.svc-related__item img {
  transition: transform 0.9s var(--ease);
}
.svc-related__item:hover img { transform: scale(1.05); }
.svc-related__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.62));
}
.svc-related__item span {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  font-family: "ABC Social", Suisse, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
}
