/* ════════════════════════════════════════════════════════════════
   MIRTA GLOBE — A Private Logistics House
   Editorial luxury × ink atelier. Paper by day, night for Privé.
   ════════════════════════════════════════════════════════════════ */

:root {
  /* paper & ink */
  --paper:        #F4EFE6;
  --paper-deep:   #ECE6D8;
  --ink:          #17130C;
  --ink-soft:     #4C4536;
  --ink-faint:    #8A8172;
  --line:         rgba(23, 19, 12, 0.16);
  --line-strong:  rgba(23, 19, 12, 0.34);

  /* bronze accent (light ground) */
  --bronze:       #8F6A2A;

  /* the night side (Privé, footer) */
  --night:        #12100B;
  --night-soft:   #1B1811;
  --night-line:   rgba(239, 232, 217, 0.14);
  --gold:         #C9A96A;
  --paper-night:  #EFE8D9;
  --paper-night-soft: rgba(239, 232, 217, 0.62);

  /* type */
  --serif:  "Fraunces", Georgia, serif;
  --text:   "Newsreader", Georgia, serif;
  --sans:   "Archivo", "Helvetica Neue", sans-serif;

  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --pad:    clamp(1.375rem, 5vw, 5rem);

  color-scheme: light;
}

/* ── reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
fieldset { border: 0; }
address { font-style: normal; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* roman numerals & small figures */
.rn { font-variant-numeric: normal; letter-spacing: 0.08em; }

em { font-style: italic; }

/* ── shared atoms ──────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 0.9em;
}
.eyebrow__num {
  color: var(--bronze);
  letter-spacing: 0.12em;
}
.eyebrow__num::after {
  content: "";
  display: inline-block;
  width: 2.2em;
  height: 1px;
  background: var(--line-strong);
  vertical-align: middle;
  margin-left: 0.9em;
}
.eyebrow--gold { color: var(--paper-night-soft); }
.eyebrow--gold .eyebrow__num { color: var(--gold); }
.eyebrow--gold .eyebrow__num::after { background: var(--night-line); }

.section { padding: clamp(5rem, 12vw, 9.5rem) var(--pad); }
.section--deep { background: var(--paper-deep); }

.section__head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.section__title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-top: 1.1em;
}
.section__title em {
  font-weight: 300;
  letter-spacing: 0;
}
.section__title--night { color: var(--paper-night); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  min-height: 3rem;
  padding: 0.9rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.71875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
              border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--bare {
  border-color: transparent;
  padding-inline: 0.25rem;
  letter-spacing: 0.18em;
}
.btn--bare .btn__arrow { transition: transform 0.45s var(--ease); }
.btn--bare:hover .btn__arrow { transform: translateY(4px); }
.btn--gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--gold:hover { background: var(--gold); color: var(--night); }

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

/* ── reveal on scroll ──────────────────────────────────────────── */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].in { opacity: 1; transform: none; }

/* ── navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease),
              padding 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 239, 230, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: 0.65rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.nav__mark {
  width: 2.35rem;
  height: 2.35rem;
}
.nav__wordmark {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  transform: translateX(0.1em); /* optical: offset the trailing tracking */
}
.nav__links {
  display: none;
  gap: 2.1rem;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.35s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: none; }

.nav__burger {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-content: center;
  gap: 7px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.45s var(--ease);
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child  { transform: translateY(-4.25px) rotate(-45deg); }

/* mobile menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--pad) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu.open { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.35;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.menu.open .menu__links a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.06s * var(--i, 0) + 0.1s);
}
.menu__links em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--bronze);
}
.menu__foot {
  margin-top: 3rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.menu__foot a { text-decoration: none; display: block; margin-bottom: 0.4rem; }

/* ── hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7.5rem var(--pad) 2.4rem;
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  top: 50%;
  right: -12%;
  width: min(72vw, 620px);
  transform: translateY(-56%) rotate(6deg);
  opacity: 0.16;
  pointer-events: none;
}
.hero__inner { max-width: 62rem; }
.hero__eyebrow { margin-bottom: clamp(1.4rem, 3.5vh, 2.4rem); }
.hero__title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: clamp(2.9rem, 10.5vw, 7.25rem);
  line-height: 1.01;
  letter-spacing: -0.022em;
}
.hero__title em { letter-spacing: -0.012em; }
.hero__lede {
  max-width: 34rem;
  margin-top: clamp(1.5rem, 3.5vh, 2.4rem);
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--ink-soft);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2rem;
  margin-top: clamp(1.8rem, 4vh, 2.8rem);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: clamp(2.8rem, 7vh, 5rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.hero__route {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1 1 14rem;
  max-width: 26rem;
}
.hero__city {
  font-family: var(--sans);
  font-size: 0.65625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
}
.hero__routeline {
  position: relative;
  flex: 1;
  height: 1px;
  background-image: linear-gradient(90deg, var(--line-strong) 25%, transparent 25%);
  background-size: 8px 1px;
}
.hero__routeline i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze);
  transform: translate(-2px, -50%);
  animation: routeDot 7s var(--ease) infinite;
}
.hero__routeline--short { flex: 0.55; }
.hero__routeline--short i { animation-delay: 3.5s; }
@keyframes routeDot {
  0%   { left: 0;    opacity: 0; }
  8%   { opacity: 1; }
  46%  { left: 100%; opacity: 1; }
  54%  { left: 100%; opacity: 0; }
  100% { left: 100%; opacity: 0; }
}
.hero__meta-note {
  font-family: var(--sans);
  font-size: 0.65625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* hero entrance */
.js [data-hero] {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1.1s var(--ease) forwards;
}
.js [data-hero="1"] { animation-delay: 0.15s; }
.js [data-hero="2"] { animation-delay: 0.3s; }
.js [data-hero="3"] { animation-delay: 0.5s; }
.js [data-hero="4"] { animation-delay: 0.65s; }
.js [data-hero="5"] { animation-delay: 0.85s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ── marquee ───────────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 0.95rem 0;
  background: var(--paper);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.0625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── the house ─────────────────────────────────────────────────── */
.house__grid {
  display: grid;
  gap: 3.5rem;
}
.house__statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.75rem, 4.2vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 24em;
}
.house__body {
  margin-top: 2rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
}
.house__figure {
  justify-self: center;
  text-align: center;
  color: var(--ink);
}
.house__chair {
  width: min(58vw, 240px);
  opacity: 0.85;
}
.house__figcap {
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.house__principles {
  display: grid;
  gap: 0;
  margin-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--line);
}
.house__principles li {
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
}
.house__principles h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3125rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.55rem;
}
.house__principles p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 30rem;
}

/* ── services ──────────────────────────────────────────────────── */
.services__list { border-top: 1px solid var(--line); }
.services__row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.4rem;
  row-gap: 0.2rem;
  align-items: start;
  padding: 2.1rem 0.2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease);
}
.services__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--bronze);
  padding-top: 0.3rem;
  min-width: 2.1rem;
}
.services__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4375rem, 3vw, 2rem);
  letter-spacing: -0.005em;
  line-height: 1.15;
  transition: transform 0.5s var(--ease);
}
.services__body p {
  margin-top: 0.8rem;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
}
.services__arrow {
  display: none;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--ink-faint);
  transition: transform 0.5s var(--ease), color 0.5s var(--ease);
  align-self: center;
}
.services__row:hover .services__arrow {
  transform: translateX(10px);
  color: var(--bronze);
}
.services__row:hover .services__body h3 { transform: translateX(6px); }

/* ── the passage ───────────────────────────────────────────────── */
.passage__steps {
  display: grid;
  gap: 2.6rem;
  counter-reset: step;
  position: relative;
}
.passage__steps li {
  position: relative;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--line-strong);
}
.passage__numeral {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--bronze);
  display: block;
}
.passage__steps h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 1.1rem 0 0.7rem;
}
.passage__steps p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 30rem;
}

/* ── privé (the night chapter) ─────────────────────────────────── */
.prive {
  position: relative;
  background: var(--night);
  color: var(--paper-night);
  padding: clamp(6rem, 14vw, 11rem) var(--pad);
  overflow: hidden;
}
.prive::selection, .prive ::selection { background: var(--gold); color: var(--night); }
.prive__arc {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: min(62vh, 560px);
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
}
.prive__arcline { stroke: currentColor; }
.prive__dot { fill: currentColor; }
.prive__plane { color: var(--paper-night); }
.prive__stars circle { fill: var(--paper-night); opacity: 0.55; }

.prive__inner { position: relative; }
.prive__lede {
  max-width: 36rem;
  font-size: clamp(1.125rem, 1.8vw, 1.3125rem);
  line-height: 1.65;
  color: var(--paper-night-soft);
}
.prive__list {
  display: grid;
  gap: 0;
  margin-top: clamp(2.8rem, 6vw, 4.5rem);
  border-top: 1px solid var(--night-line);
}
.prive__list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.6rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--night-line);
}
.prive__li-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--gold);
}
.prive__list h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
.prive__list p {
  color: var(--paper-night-soft);
  font-size: 1rem;
  max-width: 34rem;
}
.prive__cta {
  margin-top: clamp(2.6rem, 6vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2.2rem;
}
.prive__note {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-night-soft);
  max-width: 22rem;
  line-height: 1.8;
}

/* ── quote & figures ───────────────────────────────────────────── */
.quote { text-align: center; }
.quote__block p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 26em;
  margin: 0 auto;
}
.quote__block cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.6rem 1.5rem;
  margin-top: clamp(4rem, 9vw, 6.5rem);
  padding-top: clamp(2.6rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
}
.figures dt {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.figures dt::after { content: ""; }
.figures dd {
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-size: 0.65625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── enquiries ─────────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  gap: 3.5rem;
}
.contact__copy {
  margin-top: 1.8rem;
  max-width: 26rem;
  color: var(--ink-soft);
}
.contact__details {
  margin-top: 2.4rem;
  display: grid;
  gap: 0.5rem;
  font-size: 1.0625rem;
}
.contact__details a {
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
  padding-bottom: 1px;
}
.contact__details a:hover { color: var(--bronze); border-color: var(--bronze); }
.contact__details p {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.contact__map {
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: clamp(220px, 30vh, 300px);
  border: 0;
  filter: grayscale(1) sepia(0.14) contrast(0.92) brightness(1.03);
  opacity: 0.92;
}

.contact__form { display: grid; gap: 1.9rem; align-content: start; }
.field { display: grid; gap: 0.45rem; }
.field label, .field legend {
  font-family: var(--sans);
  font-size: 0.65625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field legend { margin-bottom: 0.8rem; }
.field input[type="text"],
.field input[type="email"],
.field textarea {
  font-family: var(--text);
  font-size: 1.0625rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.55rem 0.1rem;
  border-radius: 0;
  transition: border-color 0.35s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 6.5rem; }

.pills { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.pill { position: relative; }
.pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.pill span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
}
.pill input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.pill input:focus-visible + span {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}
.contact__submit { justify-self: start; padding-inline: 2.6rem; }
.contact__formnote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--bronze);
  min-height: 1.5em;
}

/* ── footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--night);
  color: var(--paper-night);
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad) 2rem;
  overflow: hidden;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.8rem;
}
.footer__mark {
  width: 3.4rem;
  height: 3.4rem;
  filter: invert(0.94);
  opacity: 0.92;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2rem;
}
.footer__links a {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper-night-soft);
  transition: color 0.35s var(--ease);
}
.footer__links a:hover { color: var(--gold); }
.footer__wordmark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 11vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  color: var(--paper-night);
  opacity: 0.14;
  user-select: none;
  margin: 0 -0.05em;
}
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--night-line);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-night-soft);
}

/* ════════════════════════════════════════════════════════════════
   BREAKPOINTS — mobile first
   ════════════════════════════════════════════════════════════════ */

@media (min-width: 760px) {
  .services__row {
    grid-template-columns: 3.4rem 1fr auto;
    padding: 2.6rem 0.4rem;
  }
  .services__arrow { display: block; }

  .passage__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 3rem;
  }

  .house__grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 4rem;
  }
  .house__principles { grid-template-columns: repeat(3, 1fr); gap: 0 2.5rem; }
  .house__principles li { padding: 2.2rem 0; }

  .prive__list { grid-template-columns: repeat(2, 1fr); border-top: 0; margin-top: clamp(3rem, 7vw, 5rem); }
  .prive__list li {
    border-top: 1px solid var(--night-line);
    padding-right: 2rem;
  }

  .figures { grid-template-columns: repeat(4, 1fr); }

  .contact__grid { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .menu { display: none; }

  .passage__steps { grid-template-columns: repeat(4, 1fr); gap: 3rem 2.4rem; }

  .hero__watermark { right: -4%; width: min(44vw, 640px); }
}

/* ── reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal], .js [data-hero] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__routeline i { animation: none; opacity: 1; left: 40%; }
}
