:root {
  --bg: #eceef1;
  --bg-2: #e2e5ea;
  --paper: #f7f8fa;
  --ink: #10141a;
  --ink-2: #2c3540;
  --muted: #5c6774;
  --line: rgba(16, 20, 26, 0.14);
  --line-strong: rgba(16, 20, 26, 0.28);
  --accent: #1c4f66;
  --accent-soft: #d7e4ea;
  --warn: #8f3d1e;
  --header-h: 4.25rem;
  --topbar-h: 2.35rem;
  --pad: clamp(1.1rem, 3.2vw, 2.75rem);
  --max: 72rem;
  --font-ui: "Archivo", system-ui, sans-serif;
  --font-display: "Archivo Narrow", "Archivo", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(var(--pad) - 1px), rgba(16, 20, 26, 0.045) calc(var(--pad) - 1px), rgba(16, 20, 26, 0.045) var(--pad)),
    var(--bg);
  background-attachment: fixed;
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.label__bar {
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  animation: barGrow 0.8s var(--ease) both;
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Topbar */
.topbar {
  min-height: var(--topbar-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.45rem var(--pad);
  background: var(--ink);
  color: rgba(247, 248, 250, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.topbar__id {
  font-weight: 600;
  color: #fff;
}

.topbar__offer {
  justify-self: center;
  text-align: center;
}

.topbar__links {
  display: flex;
  gap: 1.1rem;
}

.topbar__links a:hover {
  color: #fff;
}

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.55rem var(--pad);
  }

  .topbar__offer,
  .topbar__id {
    display: none;
  }

  .topbar__links {
    justify-content: space-between;
    width: 100%;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0 var(--pad);
  background: rgba(236, 238, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 250, 0.96);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo__mark {
  width: 0.7rem;
  height: 1.35rem;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateY(-100%);
  animation: markShine 3.5s ease-in-out infinite;
}

@keyframes markShine {
  0%, 60% { transform: translateY(-100%); }
  80% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  color: var(--ink-2);
  padding: 0.25rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  background: var(--ink);
  color: #fff;
  transition: background 0.25s;
}

.header-cta:hover {
  background: var(--accent);
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
}

/* Hero */
.hero {
  padding: clamp(1.5rem, 3.5vw, 2.5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.hero__mast {
  max-width: var(--max);
  margin: 0 auto 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.hero__kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  max-width: 11rem;
  line-height: 1.35;
  padding-bottom: 0.45rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  justify-self: end;
  text-align: right;
}

.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "copy photo"
    "rail photo";
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.hero__copy { grid-area: copy; }
.hero__figure { grid-area: photo; }
.hero__rail { grid-area: rail; }

.hero__sub {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink-2);
  max-width: 20em;
}

.hero__lead {
  margin-top: 1.15rem;
  max-width: 32em;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn--ink {
  background: var(--ink);
  color: #fff;
}

.btn--ink:hover {
  background: var(--accent);
}

.btn--line {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.btn--line:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.hero__meta {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.hero__meta dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.hero__meta dd {
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink-2);
}

.hero__figure {
  position: relative;
  background: var(--bg-2);
  margin-top: -0.35rem;
}

.hero__figure img,
.hero__img-wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 6;
  max-height: 70vh;
  filter: contrast(1.04) saturate(0.88);
}

.hero__rail span:nth-child(2) {
  font-weight: 600;
  color: var(--ink-2);
}

.hero__figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__rail {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 0.25rem;
}

@media (max-width: 960px) {
  .hero__mast {
    grid-template-columns: 1fr;
  }

  .hero__brand {
    justify-self: start;
    text-align: left;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "rail";
  }

  .hero__figure img,
  .hero__img-wrap img {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}

/* Strip */
.strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.strip__list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip__list a,
.strip__btn {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  width: 100%;
  padding: 1.05rem 1.1rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: background 0.3s, transform 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.strip__list a::before,
.strip__btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}

.strip__list a:hover::before,
.strip__list a:focus-visible::before,
.strip__btn:hover::before,
.strip__btn:focus-visible::before {
  transform: scaleY(1);
  transform-origin: top;
}

.strip__list li:last-child a,
.strip__list li:last-child .strip__btn {
  border-right: 0;
}

.strip__list strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
}

.strip__list a:hover,
.strip__btn:hover {
  background: var(--accent-soft);
}

.strip__hint {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.1rem 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .strip__list {
    grid-template-columns: 1fr 1fr;
  }

  .strip__list a {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .strip__list {
    grid-template-columns: 1fr;
  }
}

/* Shared heads */
.block-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.block-head h2,
.scope__intro h2,
.process__left h2,
.contact__intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.block-head__text,
.scope__intro > p:last-child,
.process__lead,
.contact__intro > p:last-child {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 34em;
}

@media (max-width: 800px) {
  .block-head {
    grid-template-columns: 1fr;
  }
}

/* Services */
.services {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
}

.services__layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.svc {
  background: var(--paper);
  display: grid;
  grid-template-rows: auto 1fr;
}

.svc--feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  grid-template-rows: auto;
}

.svc:not(.svc--feature) {
  grid-column: span 4;
}

.svc__media {
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4 / 3;
  position: relative;
}

.svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: contrast(1.03) saturate(0.9);
  clip-path: inset(8% 8% 8% 8%);
}

.svc.is-in .svc__media img,
.svc:hover .svc__media img {
  clip-path: inset(0 0 0 0);
}

.svc:hover .svc__media img {
  transform: scale(1.05);
  filter: contrast(1.06) saturate(1);
}

.svc__swatch {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 2.4rem;
  height: 2.4rem;
  background: #1c4f66;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(16, 20, 26, 0.2);
  transform: rotate(8deg) scale(0.6);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s;
  z-index: 2;
}

.svc__swatch--2 { background: #3d6b5a; }
.svc__swatch--3 { background: #8f3d1e; }
.svc__swatch--4 { background: #6b5a3e; }

.svc.is-in .svc__swatch {
  opacity: 1;
  transform: rotate(8deg) scale(1);
}

.svc__body {
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
}

.svc__code {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.svc__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.7rem;
  line-height: 1.15;
}

.svc__body > p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.svc__points {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.svc__points li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.svc__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
}

.text-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.15rem;
  width: fit-content;
  transition: border-color 0.25s, color 0.25s;
}

.text-cta::after {
  content: "→";
}

.text-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 980px) {
  .svc--feature {
    grid-template-columns: 1fr;
  }

  .svc:not(.svc--feature) {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .svc:not(.svc--feature) {
    grid-column: 1 / -1;
  }
}

/* Scope table */
.scope {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background: var(--ink);
  color: #f0f2f4;
}

.scope__intro {
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.scope .label {
  color: rgba(240, 242, 244, 0.5);
}

.scope .label__bar {
  background: #7eb6cc;
}

.scope__intro > p:last-child {
  color: rgba(240, 242, 244, 0.72);
  margin-top: 0.9rem;
}

.scope__table {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(240, 242, 244, 0.18);
}

.svc--feature .svc__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.scope__row {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(240, 242, 244, 0.14);
  font-size: 0.98rem;
  line-height: 1.5;
  transition: background 0.3s, padding-left 0.35s var(--ease);
}

.scope__row:not(.scope__row--head):hover {
  padding-left: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
}

.scope__row--head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 242, 244, 0.45);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.scope__row strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

@media (max-width: 760px) {
  .scope__row,
  .scope__row--head {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .scope__row--head {
    display: none;
  }
}

/* Process */
.process {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.process__lead {
  margin: 0.9rem 0 1.5rem;
}

.process__photo {
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.process__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.9);
}

.protocol {
  border-top: 1px solid var(--line);
}

.protocol__item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.protocol__index span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.protocol__index strong {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.protocol__item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.protocol__item p {
  color: var(--ink-2);
  max-width: 36em;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr;
  }
}

/* Notes */
.notes {
  padding: 0 var(--pad) clamp(3.5rem, 8vw, 6rem);
}

.notes__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.note {
  background: var(--bg);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
}

.note h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.note p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .notes__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .notes__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact */
.contact {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background:
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--line);
}

.contact__frame {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact__intro {
  grid-column: 1 / -1;
  max-width: 40rem;
}

.contact__cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact__card {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 1.4rem;
  background: var(--paper);
  transition: background 0.25s, color 0.25s;
}

.contact__card:hover {
  background: var(--ink);
  color: #f0f2f4;
}

.contact__kind {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.contact__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  word-break: break-word;
}

.contact__hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact__card:hover .contact__hint {
  color: rgba(240, 242, 244, 0.65);
}

.contact__aside {
  padding: 1.35rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact__aside h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.contact__aside li {
  position: relative;
  padding-left: 0.95rem;
  margin-bottom: 0.45rem;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.contact__aside li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (max-width: 800px) {
  .contact__frame {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  padding: 2.5rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.site-footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.site-footer__brand span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.site-footer__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer__copy {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-link {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-link:hover {
  color: var(--accent);
}

.svc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: auto;
}

.text-cta--btn {
  font: inherit;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 0 0 0.15rem;
  cursor: pointer;
}

/* About */
.about {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.about__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.about__copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.about__lead,
.about__copy > p {
  font-family: var(--font-serif);
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38em;
  margin-bottom: 1rem;
}

.about__facts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about__facts li {
  background: var(--bg);
  padding: 1.1rem 1.2rem;
}

.about__facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.about__facts span {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

/* Prepare */
.prepare {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.prepare__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.prepare h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.prepare__lead {
  margin-top: 0.9rem;
  font-family: var(--font-serif);
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 30em;
}

.prepare__list {
  counter-reset: prep;
  border-top: 1px solid var(--line);
}

.prepare__list li {
  counter-increment: prep;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.prepare__list li::before {
  content: counter(prep, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.prepare__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.prepare__list p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
  grid-column: 2;
}

.prepare__list strong {
  grid-column: 2;
}

@media (max-width: 860px) {
  .prepare__inner {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  border-top: 1px solid var(--line);
}

.faq__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  position: relative;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.1rem;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  padding: 0 0 1.2rem;
  color: var(--ink-2);
  max-width: 42em;
  font-size: 1rem;
  line-height: 1.65;
}

/* Modal + cookies */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 26, 0.55);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.25s ease both;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 40rem);
  max-height: min(88vh, 52rem);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.35rem, 3vw, 2rem);
  animation: modalIn 0.35s var(--ease) both;
}

.modal__dialog--wide {
  width: min(100%, 48rem);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.modal__code {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.modal__dialog h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  padding-right: 2rem;
}

.modal__lead {
  font-family: var(--font-serif);
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.modal__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.modal__cols h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.modal__cols li,
.modal__prose li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal__cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
}

.modal__prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1.15rem 0 0.45rem;
}

.modal__prose p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0.55rem;
}

.modal__prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.cookie-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
}

.cookie-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
}

.cookie-list strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.cookie-list span {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.5;
}

.btn--small {
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding: 0.85rem var(--pad) 1rem;
  background: var(--ink);
  color: rgba(247, 248, 250, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: modalIn 0.35s var(--ease) both;
}

.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  max-width: 42em;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner .footer-link {
  color: #9fd0e2;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner .btn--line {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cookie-banner .btn--line:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .modal__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Page graphics */
.page-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(16, 20, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 26, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 80;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #3d7a92);
  transform-origin: left;
}

main, .topbar, .site-header, .site-footer {
  position: relative;
  z-index: 1;
}

/* Frame corner marks */
.frame-marks {
  position: absolute;
  inset: 0.55rem;
  z-index: 3;
  pointer-events: none;
}

.frame-marks span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(247, 248, 250, 0.85);
  border-style: solid;
  border-width: 0;
}

.frame-marks span:nth-child(1) { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; }
.frame-marks span:nth-child(2) { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; }
.frame-marks span:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.frame-marks span:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.process__photo,
.hero__figure {
  position: relative;
}

.process__photo {
  overflow: hidden;
}

.process__photo .frame-marks span {
  border-color: rgba(16, 20, 26, 0.35);
}

.process__photo img {
  transition: transform 1s var(--ease);
}

.process__photo:hover img {
  transform: scale(1.04);
}

/* Hero decorations & motion */
.hero {
  position: relative;
  overflow: clip;
}

.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__stroke {
  position: absolute;
  top: 18%;
  right: 8%;
  width: min(38vw, 420px);
  height: 36px;
  color: var(--accent);
  opacity: 0.35;
  transform: rotate(-8deg);
}

.hero__stroke path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: strokeDraw 1.6s var(--ease) 0.5s forwards;
}

@keyframes strokeDraw {
  to { stroke-dashoffset: 0; }
}

.hero__cross {
  position: absolute;
  width: 18px;
  height: 18px;
  opacity: 0.35;
}

.hero__cross::before,
.hero__cross::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.hero__cross::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.hero__cross::after {
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-50%);
}

.hero__cross--1 { top: 12%; left: 42%; animation: crossIn 0.6s var(--ease) 0.8s both; }
.hero__cross--2 { bottom: 22%; left: 8%; animation: crossIn 0.6s var(--ease) 1s both; }

@keyframes crossIn {
  from { opacity: 0; transform: scale(0.4) rotate(-20deg); }
  to { opacity: 0.35; transform: none; }
}

.hero__mast,
.hero__grid {
  position: relative;
  z-index: 1;
}

.hero__kicker span {
  display: inline-block;
  animation: fadeUp 0.7s var(--ease) 0.15s both;
}

.hero__brand .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: charIn 0.7s var(--ease) forwards;
}

@keyframes charIn {
  to { opacity: 1; transform: none; }
}

.hero__copy {
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}

.hero__figure {
  animation: fadeUp 0.9s var(--ease) 0.25s both;
}

.hero__img-wrap {
  overflow: hidden;
  line-height: 0;
}

.hero__img-wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 6;
  max-height: 70vh;
  filter: contrast(1.04) saturate(0.88);
  will-change: transform;
  transition: filter 0.5s;
}

.hero__figure:hover .hero__img-wrap img {
  filter: contrast(1.08) saturate(0.98);
}

.hero__rail-line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 0.55rem;
  transform-origin: left;
  animation: barGrow 0.7s var(--ease) 0.9s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Buttons micro motion */
.btn {
  position: relative;
  overflow: hidden;
}

.btn--ink::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn--ink:hover::after {
  transform: translateX(120%);
}

.btn--line:hover {
  transform: translateY(-1px);
}

.header-cta {
  transition: background 0.25s, transform 0.25s;
}

.header-cta:hover {
  transform: translateY(-1px);
}

/* Protocol motion */
.protocol__item.is-in .protocol__index strong {
  animation: indexPop 0.55s var(--ease);
}

@keyframes indexPop {
  0% { transform: scale(0.7); opacity: 0.3; }
  100% { transform: none; opacity: 1; }
}

.note {
  position: relative;
  overflow: hidden;
}

.note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.note.is-in::before,
.note:hover::before {
  transform: scaleX(1);
}

.contact__card {
  position: relative;
  overflow: hidden;
}

.contact__card::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 8rem;
  height: 8rem;
  border: 1px solid currentColor;
  opacity: 0.08;
  border-radius: 50%;
  transition: transform 0.5s var(--ease), opacity 0.5s;
}

.contact__card:hover::after {
  transform: scale(1.25);
  opacity: 0.18;
}

.text-cta {
  transition: border-color 0.25s, color 0.25s, gap 0.25s;
}

.text-cta:hover {
  gap: 0.7rem;
}

body.is-loading .hero__brand .char,
body.is-loading .hero__copy,
body.is-loading .hero__figure {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero__copy,
  .hero__figure,
  .hero__kicker span,
  .hero__brand .char {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .reveal { transition: none; }
  .svc__media img {
    clip-path: none !important;
    transition: none;
  }
  .hero__stroke path,
  .label__bar,
  .hero__rail-line,
  .logo__mark::after {
    animation: none !important;
  }
  .hero__stroke path { stroke-dashoffset: 0; }
  .page-grid,
  .scroll-progress { display: none; }
}
