/* ============================================================
   Montag Digital · alpine survey-map aesthetic
   Granite ink · warm paper · glacier blue · a touch of alpenglow
   ============================================================ */

:root {
  --ink:        #0d0f14;   /* page background */
  --ink-2:      #11141b;   /* alt sections */
  --surface:    #181c25;   /* cards */
  --surface-2:  #1f2430;   /* raised */
  --line:       #2a2f3b;   /* hairlines */

  --paper:      #f4f1ea;   /* primary text */
  --slate:      #a7adba;   /* muted text */
  --slate-dim:  #8b919e;   /* faint text (AA-safe on dark) */

  --accent:     #3f9bd6;   /* glacier blue */
  --accent-2:   #6db8e6;   /* lighter ice · hover / focus */
  --accent-dim: rgba(63, 155, 214, 0.16);
  --glow:       #d99c66;   /* alpenglow · summit moments only */

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --r: 18px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  /* one governed label system */
  --label-size: 0.72rem;
  --label-track: 0.13em;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Focus & skip link (a11y) ---------- */
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }
.skip {
  position: fixed; top: 0.6rem; left: 0.6rem; z-index: 10000;
  background: var(--accent); color: #04151f; font-weight: 700;
  padding: 0.6em 1em; border-radius: 8px;
  transform: translateY(-160%); transition: transform .2s;
}
.skip:focus { transform: translateY(0); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Map-sheet frame: graticule ticks on every edge ---------- */
.sheet { position: fixed; inset: 0; z-index: 9998; pointer-events: none; }
.sheet__edge { position: absolute; opacity: 0.5; }
.sheet__edge--t, .sheet__edge--b {
  left: 0; right: 0; height: 7px;
  background-image: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 56px);
}
.sheet__edge--t { top: 0; }
.sheet__edge--b { bottom: 0; }
.sheet__edge--l, .sheet__edge--r {
  top: 0; bottom: 0; width: 7px;
  background-image: repeating-linear-gradient(180deg, var(--line) 0 1px, transparent 1px 56px);
}
.sheet__edge--l { left: 0; }
.sheet__edge--r { right: 0; }
.sheet__coord {
  position: absolute;
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-dim); opacity: 0.75;
}
.sheet__coord--tl { top: 10px; left: 14px; }
.sheet__coord--tr { top: 10px; right: 14px; }
.sheet__coord--bl { bottom: 10px; left: 14px; }
.sheet__coord--br { bottom: 10px; right: 14px; }
@media (max-width: 880px) { .sheet { display: none; } .grain { display: none; } }

/* ---------- Shared bits ---------- */
.eyebrow, .label {
  font-family: var(--mono);
  font-size: var(--label-size);
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim);
}
.label { color: var(--accent); }

.btn {
  --bg: transparent; --fg: var(--paper);
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 600; font-size: 0.96rem;
  padding: 0.85em 1.4em; border-radius: 100px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--line);
  cursor: pointer; min-height: 44px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, border-color .25s, box-shadow .25s;
  will-change: transform;
}
.btn__arrow { transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  --bg: var(--accent); --fg: #04151f;
  border-color: transparent; font-weight: 700;
  box-shadow: 0 10px 30px -10px rgba(63,155,214,.55);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(63,155,214,.6); }
.btn--ghost:hover { border-color: var(--slate); transform: translateY(-2px); }
.btn--lg { font-size: 1.05rem; padding: 1.05em 1.7em; }

.section { padding-block: clamp(4.5rem, 10vw, 8rem); position: relative; }
.section--alt { background: var(--ink-2); border-block: 1px solid var(--line); }

.section__head { max-width: 46ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.4rem);
  line-height: 1.05; letter-spacing: -0.015em; margin-top: 0.9rem;
  text-wrap: balance;
}
.section__title em, .hero__title em, .contact__title em {
  font-style: italic; font-weight: 500; color: var(--accent-2);
}

/* ---------- Scroll reveal ---------- */
.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.85rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.is-stuck {
  background: rgba(13, 15, 20, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.nav__word {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600; letter-spacing: 0.01em;
}
.nav__word em { font-style: italic; font-weight: 400; color: var(--slate); }
.nav__links { display: flex; align-items: center; gap: 1.7rem; margin-left: auto; }
.nav__links a {
  font-size: 0.93rem; font-weight: 500; color: var(--slate);
  transition: color .2s;
}
.nav__links a:hover { color: var(--paper); }
.nav__cta {
  color: var(--paper) !important;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 0.5em 1.1em;
  transition: border-color .2s, background .2s;
}
.nav__cta:hover { border-color: var(--accent); background: var(--accent-dim); }
.nav__alt {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--slate-dim); min-width: 5.2ch; text-align: right;
  font-variant-numeric: tabular-nums;
}
.nav__toggle { display: none; }

@media (max-width: 880px) {
  .nav__alt { display: none; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; gap: 6px;
    margin-left: auto; padding: 12px 6px;
    background: none; border: 0; cursor: pointer;
  }
  .nav__toggle-bar {
    width: 26px; height: 2px; background: var(--paper);
    transition: transform .3s, opacity .3s;
  }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad) 1.25rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.85rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav__cta { border: 0; padding-inline: 0; border-bottom: 1px solid var(--line) !important; border-radius: 0; }
}

/* ============================================================
   Hero · the survey field
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(5rem, 13vh, 9rem) clamp(5rem, 12vh, 8rem);
  min-height: min(86vh, 56rem); display: flex; align-items: center;
}
.hero__field { position: absolute; inset: 0; pointer-events: none; }
.hero__field svg { width: 100%; height: 100%; }
.hero__grid { color: var(--line); opacity: 0.4; }
.hero__contours { color: var(--slate); opacity: 0.16; }
.hero__contours--index { opacity: 0.24; }
.hero__route { color: var(--accent); opacity: 0.5; }

/* contour lines draw themselves on load */
.js .hero__contours path {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: draw 2.6s cubic-bezier(.4,0,.2,1) forwards;
}
.js .hero__contours path:nth-child(2) { animation-delay: .12s; }
.js .hero__contours path:nth-child(3) { animation-delay: .24s; }
.js .hero__contours path:nth-child(4) { animation-delay: .36s; }
.js .hero__contours path:nth-child(5) { animation-delay: .48s; }
.js .hero__contours path:nth-child(6) { animation-delay: .6s; }
.js .hero__contours path:nth-child(7) { animation-delay: .72s; }
.js .hero__contours path:nth-child(8) { animation-delay: .84s; }
.js .hero__route { opacity: 0; animation: routein 1.4s ease 1.1s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes routein { to { opacity: 0.5; } }

.spot {
  position: absolute;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em;
  color: var(--slate-dim); opacity: 0.85;
}
.spot--warm { color: var(--glow); }

.hero__inner { position: relative; }
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.9rem, 1.6rem + 7vw, 6.4rem);
  line-height: 0.99; letter-spacing: -0.02em;
  margin-block: 1.4rem 1.6rem;
}
.hero__title span { display: block; }
.hero__lead { max-width: 46ch; color: var(--slate); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 7vh, 4.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  width: fit-content;
}
.hero__stats div { position: relative; padding-left: 1.1rem; }
.hero__stats div::before {
  content: "×"; position: absolute; left: 0; top: 0.05em;
  font-family: var(--mono); font-size: 0.75rem; color: var(--accent);
}
.hero__stats dt { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.hero__stats dd { color: var(--slate-dim); font-size: 0.88rem; margin-top: 0.15rem; }
@media (max-width: 700px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .hero { min-height: 0; }
}

/* ============================================================
   Work · field log plates
   ============================================================ */
.cases { display: grid; gap: clamp(3rem, 7vw, 5.5rem); }
.case {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.8rem, 5vw, 4rem); align-items: center;
}
.case--flip .case__plate { order: 2; }
@media (max-width: 880px) {
  .case { grid-template-columns: 1fr; }
  .case--flip .case__plate { order: 0; }
}

/* the framed "plate": survey-style border with corner ticks */
.case__plate {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--r);
  background:
    radial-gradient(120% 100% at 20% 0%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 60%),
    var(--surface);
  padding: clamp(2rem, 5vw, 3.2rem);
  display: grid; place-items: center;
  min-height: 320px;
  overflow: hidden;
}
.case__plate::before, .case__plate::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--slate-dim); opacity: 0.6;
}
.case__plate::before { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.case__plate::after { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }
.case__chip {
  position: absolute; top: 1rem; right: 1.1rem;
  font-family: var(--mono); font-size: 0.64rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate); border: 1px solid var(--line);
  border-radius: 100px; padding: 0.35em 0.9em;
  background: rgba(13,15,20,0.5);
}
.case__plateno {
  position: absolute; bottom: 0.9rem; left: 1.2rem;
  font-family: var(--mono); font-size: 0.64rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-dim);
}

/* mock site card inside the plate */
.case__mock {
  width: min(78%, 330px);
  background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 1.1rem 1.2rem 1.3rem;
  display: grid; gap: 0.7rem;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,0.55);
  transform: rotate(-1.2deg);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.case:hover .case__mock { transform: rotate(0deg) translateY(-4px); }
.case__mockbar {
  height: 6px; width: 38%; border-radius: 100px;
  background: var(--brand);
}
.case__mock strong {
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.15;
  letter-spacing: 0.01em;
}
.case__mockline { height: 7px; border-radius: 100px; background: var(--line); }
.case__mockline--short { width: 62%; }
.case__mockcta {
  justify-self: start;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
  color: #fff; background: var(--brand);
  padding: 0.45em 1em; border-radius: 100px; margin-top: 0.2rem;
}

.case__kicker {
  font-family: var(--mono); font-size: var(--label-size);
  letter-spacing: var(--label-track); text-transform: uppercase;
  color: var(--slate);
}
.case__name {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
  line-height: 1.1; margin-block: 0.7rem 1rem;
}
.case__copy { color: var(--slate); max-width: 52ch; }
.case__outcome {
  margin-top: 1rem; padding: 0.85rem 1.1rem;
  border-left: 2px solid var(--brand);
  background: color-mix(in srgb, var(--brand) 7%, transparent);
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem; max-width: 52ch;
}
.case__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin-top: 1.2rem; }
.case__tags li {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate); border: 1px solid var(--line);
  border-radius: 100px; padding: 0.4em 0.95em;
}

/* ============================================================
   Services
   ============================================================ */
.services {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
@media (max-width: 700px) { .services { grid-template-columns: 1fr; } }
.service {
  position: relative; background: var(--ink-2);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  transition: background .3s;
  overflow: hidden;
}
.service:hover { background: var(--surface); }
.service::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  border: 1px solid var(--accent); opacity: 0;
  box-shadow: 0 0 0 18px var(--ink-2), 0 0 0 19px var(--accent-dim), 0 0 0 40px var(--ink-2), 0 0 0 41px var(--accent-dim);
  transition: opacity .4s;
  pointer-events: none;
}
.service:hover::after { opacity: 0.5; }
.service__num {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.12em; color: var(--accent);
}
.service h3 {
  font-family: var(--serif); font-weight: 600; font-size: 1.45rem;
  margin-block: 0.8rem 0.6rem;
}
.service p { color: var(--slate); font-size: 0.97rem; max-width: 44ch; position: relative; }

/* ============================================================
   Process · the route (basecamp to summit)
   ============================================================ */
.route {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  position: relative;
  counter-reset: step;
}
@media (max-width: 880px) { .route { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .route { grid-template-columns: 1fr; } }

.route__step { position: relative; padding-top: 1.9rem; }
/* the climbing line: a dotted leg with a waypoint circle */
.route__step::before {
  content: ""; position: absolute; top: 0.45rem; left: 1.4rem; right: 0;
  border-top: 2px dotted var(--line);
}
.route__step:last-child::before { right: 35%; }
.route__step::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid var(--accent); background: var(--ink);
}
.route__step--summit::after {
  border-radius: 0; border: 0; background: transparent;
  width: 0; height: 0;
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 14px solid var(--glow);
}
@media (max-width: 560px) {
  .route__step::before { display: none; }
}

.route__camp {
  display: block;
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-dim);
  font-variant-numeric: tabular-nums;
}
.route__step--summit .route__camp { color: var(--glow); }
.route__step h3 {
  font-family: var(--serif); font-weight: 600; font-size: 1.4rem;
  margin-block: 0.55rem 0.5rem;
}
.route__step p { color: var(--slate); font-size: 0.95rem; }

/* ============================================================
   Studio
   ============================================================ */
.studio {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
@media (max-width: 880px) { .studio { grid-template-columns: 1fr; } }

.studio__card {
  position: relative;
  display: grid; justify-items: center; gap: 1rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background:
    radial-gradient(110% 90% at 50% 0%, var(--accent-dim), transparent 65%),
    var(--surface);
  padding: clamp(2.5rem, 6vw, 3.5rem) 2rem;
  text-align: center;
}
.studio__compass {
  position: absolute; top: 1.1rem; right: 1.1rem;
  color: var(--slate-dim); font-family: var(--mono);
  animation: settle 3s cubic-bezier(.3,1.6,.4,1) both;
  transform-origin: 50% 50%;
}
@keyframes settle {
  0% { transform: rotate(-32deg); }
  60% { transform: rotate(7deg); }
  100% { transform: rotate(0deg); }
}
.studio__cardword { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.studio__cardword em { font-style: italic; font-weight: 400; color: var(--slate); }
.studio__cardloc {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.1em; color: var(--slate-dim); line-height: 1.7;
}
.studio__lead {
  font-family: var(--serif); font-size: 1.35rem; font-style: italic; font-weight: 400;
  color: var(--paper); margin-block: 1.2rem 1rem;
}
.studio__text p + p { margin-top: 0.9rem; }
.studio__text p { color: var(--slate); max-width: 56ch; }
.studio__text .studio__lead { color: var(--paper); }

/* ============================================================
   Contact · the summit
   ============================================================ */
.section--contact {
  text-align: center; overflow: hidden;
  padding-block: clamp(6rem, 14vw, 10rem);
}
.contact { position: relative; }
.contact__topo {
  position: absolute; inset: -40% -20%; pointer-events: none;
  color: var(--slate); opacity: 0.12;
}
.contact__summit {
  color: var(--glow); font-size: 1.1rem; margin-bottom: 0.9rem;
  text-shadow: 0 0 24px color-mix(in srgb, var(--glow) 60%, transparent);
}
.contact__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.4rem, 1.4rem + 5vw, 4.6rem);
  line-height: 1.03; letter-spacing: -0.02em;
  margin-block: 1rem 1.2rem;
}
.contact__lead { color: var(--slate); max-width: 48ch; margin-inline: auto; font-size: 1.08rem; }
.contact__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 2.4rem;
}
.contact__details { margin-top: 2.2rem; font-size: 1rem; }
.contact__detail { color: var(--slate); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.contact__detail:hover { color: var(--accent-2); border-color: var(--accent-2); }
.contact__sep { color: var(--slate-dim); margin-inline: 0.8rem; }
.contact__note {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2.4rem;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-dim);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #58c97e; box-shadow: 0 0 0 4px rgba(88, 201, 126, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(88, 201, 126, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(88, 201, 126, 0.07); }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: 2.2rem 2.6rem; }
.footer__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem;
}
.footer__meta {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-dim); margin-left: auto;
}
.footer__copy { width: 100%; color: var(--slate-dim); font-size: 0.85rem; }
@media (max-width: 700px) {
  .footer__meta { margin-left: 0; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero__contours path { animation: none; stroke-dashoffset: 0; }
  .js .hero__route { animation: none; opacity: 0.5; }
  .studio__compass { animation: none; }
  .status-dot { animation: none; }
  .btn, .case__mock { transition: none; }
}
