/* Links & Tangentes — UI UX Pro Max: Swiss Modernism 2.0 + Editorial Grid
   Typography: Playfair Display + Inter | Palette: ink / paper / steel-cyan */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --ink: #0D1117;
  --ink-soft: #1C2430;
  --paper: #F5F3EF;
  --paper-dark: #EBE8E2;
  --white: #FFFFFF;
  --accent: #0E7490;
  --accent-light: #0891B2;
  --accent-muted: rgba(14, 116, 144, 0.12);
  --gold: #9A7B3C;
  --text: #0D1117;
  --text-muted: #4B5563;
  --text-light: #6B7280;
  --border: rgba(13, 17, 23, 0.1);
  --border-strong: rgba(13, 17, 23, 0.2);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --grid-cols: 12;
  --gap: 1.5rem;
  --max: 1280px;
  --nav-main-h: 80px;
  --nav-h: var(--nav-main-h);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body.is-loading { overflow: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

/* ── Navigation (editorial dual-layer) ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 1px 0 var(--border), 0 10px 40px rgba(13, 17, 23, 0.07);
}
.site-header.scrolled .nav-main {
  background: rgba(245, 243, 239, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Main nav row */
.nav-main {
  position: relative;
  height: var(--nav-main-h);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.55);
}
.nav-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) 32%,
    transparent 32%,
    transparent 68%,
    var(--accent-light) 68%,
    var(--accent-light) 100%
  );
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}
.site-header.on-hero .nav-main {
  background: rgba(245, 243, 239, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header:not(.on-hero) .nav-main {
  background: var(--paper);
}
.nav-main-grid {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: stretch;
  gap: 0;
}

/* Logo block */
.logo-block {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  align-self: center;
  padding-right: clamp(1.15rem, 2.2vw, 1.85rem);
  margin-right: clamp(1.15rem, 2.2vw, 1.85rem);
  border-right: 1px solid var(--border-strong);
}
.logo-block::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.5s var(--ease);
  opacity: 0.9;
}
.logo-block:hover::after {
  width: 100%;
}
.logo-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 235px;
  object-fit: contain;
  object-position: left center;
  transform-origin: left center;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}
.logo-block:hover .logo-img {
  animation: logo-hover 0.6s var(--ease) forwards;
}
@keyframes logo-hover {
  0%   { transform: scale(1) translateY(0);    filter: brightness(1); }
  40%  { transform: scale(1.045) translateY(-2px); filter: brightness(1.07); }
  100% { transform: scale(1.02) translateY(-1px);  filter: brightness(1.04); }
}
@media (min-width: 768px) {
  .logo-img {
    height: 62px;
    max-width: 280px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-block:hover .logo-img {
    animation: none;
    transform: none;
    filter: none;
  }
  .logo-block::after { display: none; }
}

/* Primary nav — numbered editorial links */
.nav-primary {
  display: none;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  align-self: center;
  justify-self: center;
}
@media (min-width: 1024px) {
  .nav-primary {
    display: flex;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.75),
      0 1px 0 rgba(13, 17, 23, 0.03);
  }
}
.nav-primary a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.25s, background 0.25s;
  cursor: pointer;
}
.nav-primary a { color: var(--text-muted); }
.nav-primary a:hover {
  color: var(--ink);
  background: rgba(14, 116, 144, 0.05);
}
.nav-primary a.active {
  color: var(--accent);
  background: var(--accent-muted);
}
.nav-index {
  font-family: var(--font-serif);
  font-size: 0.62rem;
  font-weight: 400;
  opacity: 0.45;
  transition: opacity 0.25s, transform 0.25s var(--ease), color 0.25s;
}
.nav-primary a:hover .nav-index,
.nav-primary a.active .nav-index {
  opacity: 1;
  color: var(--accent);
  transform: translateY(-1px);
}
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 0.3s var(--ease);
}
.nav-primary a:hover::after,
.nav-primary a.active::after { height: 55%; }
.nav-primary a + a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.15rem;
  background: var(--border-strong);
  opacity: 1;
}

/* Contact CTA — editorial arrow link */
.nav-contact {
  display: none;
  position: relative;
  align-items: center;
  gap: 0.75rem;
  align-self: center;
  margin-left: clamp(1rem, 2vw, 1.65rem);
  padding: 0.55rem 1rem 0.55rem 1.15rem;
  border: 1px solid var(--border-strong);
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
@media (min-width: 768px) { .nav-contact { display: flex; } }
.nav-contact::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(0.65rem, 1.2vw, 0.9rem) - 1px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.75rem;
  background: var(--border-strong);
}
.nav-contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-contact-label { color: var(--ink); }
.nav-contact-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.nav-contact-arrow {
  border-color: var(--border-strong);
  color: var(--ink);
}
.nav-contact:hover {
  border-color: var(--accent);
  background: var(--accent-muted);
  box-shadow: inset 0 0 0 1px rgba(14, 116, 144, 0.08);
}
.nav-contact:hover .nav-contact-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(-45deg);
}
.nav-contact:hover .nav-contact-label { color: var(--accent); }
.nav-contact.active {
  border-color: var(--accent);
  background: var(--accent-muted);
}
.nav-contact.active .nav-contact-label { color: var(--accent); }
.nav-contact.active .nav-contact-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Scroll progress line */
.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.1s linear;
  z-index: 2;
}

/* Menu button */
.nav-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  align-self: center;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border-strong);
}
@media (min-width: 1024px) { .nav-menu-btn { display: none; } }

/* Mobile & tablet — no dividers, burger pinned right */
@media (max-width: 1023px) {
  .nav-main-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .logo-block {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    min-width: 0;
  }
  .nav-contact::before {
    display: none;
  }
  .nav-menu-btn {
    grid-column: -1;
    justify-self: end;
    border-left: none;
    margin-left: 0.75rem;
    padding-left: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-main-grid {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
  .nav-contact {
    margin-left: 0.75rem;
    justify-self: end;
  }
}

.nav-menu-btn span {
  display: block;
  height: 1.5px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.nav-menu-btn span { background: var(--ink); }
.nav-menu-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Fullscreen mobile menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.nav-overlay-meta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2.5rem;
}
.nav-overlay-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-overlay-links a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: padding-left 0.3s var(--ease);
}
.nav-overlay-links a:hover { padding-left: 0.75rem; }
.nav-overlay-links .nav-index {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--accent-light);
  opacity: 1;
}
.nav-overlay-links .nav-label {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.nav-overlay-links .nav-arrow {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s, transform 0.25s;
}
.nav-overlay-links a:hover .nav-arrow {
  color: var(--accent-light);
  transform: translateX(4px);
}
.nav-overlay-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.nav-overlay-footer a {
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-overlay-footer a:hover { color: var(--accent-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-fill {
  background: var(--ink);
  color: var(--paper);
}
.btn-fill:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-line:hover {
  border-color: var(--ink);
  background: var(--white);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.95) 0%,
    rgba(13, 17, 23, 0.6) 40%,
    rgba(13, 17, 23, 0.25) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0 5rem;
}
.hero-body .container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero-body .container {
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
    gap: var(--gap);
  }
}
.hero-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1rem;
}
.hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.hero-location {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.hero-title {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 14ch;
}
.hero-title i {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero-right {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero-title { grid-column: 1 / 8; }
  .hero-right {
    grid-column: 8 / 13;
    align-self: end;
  }
}
.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 420px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-actions .btn-line {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.hero-actions .btn-line:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}
@media (min-width: 768px) { .hero-scroll { display: flex; } }

/* ── Stats band ── */
.stats-band {
  background: var(--ink);
  color: var(--white);
  padding: 0;
  margin-top: -4rem;
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats-band .grid-12 { align-items: stretch; }
.stat-item {
  grid-column: span 6;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.stat-item:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
  .stat-item {
    grid-column: span 3;
    padding: 2.75rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .stat-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .stat-item:last-child { border-right: none; }
}
.stat-num.stat-static {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Section system ── */
section { padding: 6rem 0; }
.section-num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1;
  color: var(--paper-dark);
  user-select: none;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-lead {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
}
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}

/* ── About editorial ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(12, 1fr); }
  .about-text { grid-column: 1 / 6; }
  .about-image-wrap {
    grid-column: 7 / 13;
    position: relative;
  }
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-frame {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--border-strong);
  pointer-events: none;
  z-index: -1;
}
.about-pullquote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}
.about-points {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.about-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease);
  cursor: default;
}
.about-point:hover { padding-left: 0.5rem; }
.about-point-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.about-point h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.about-point p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Services editorial ── */
.services-section { background: var(--paper); }
.services-header {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .services-header { grid-template-columns: 1fr 1fr; align-items: end; }
}
.services-visual {
  position: relative;
  margin-bottom: 3rem;
  aspect-ratio: 21/9;
  overflow: hidden;
  border: 1px solid var(--border);
}
.services-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.services-visual-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(13,17,23,0.85), transparent);
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
}
.services-list {
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .services-list { grid-template-columns: repeat(2, 1fr); }
}
.service-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  transition: background 0.3s;
  cursor: pointer;
}
.service-row:hover { background: rgba(255,255,255,0.5); }
.service-row:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 768px) {
  .service-row:nth-child(odd) { padding: 2rem 2.5rem 2rem 0; border-right: 1px solid var(--border); }
  .service-row:nth-child(even) { padding: 2rem 0 2rem 2.5rem; }
}
.service-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--paper-dark);
  line-height: 1;
  transition: color 0.3s;
}
.service-row:hover .service-num { color: var(--accent); }
.service-row h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.service-row p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-tag {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Approach ── */
.approach-section { background: var(--ink); color: var(--white); }
.approach-section .section-num { color: rgba(255,255,255,0.06); }
.approach-section .section-label { color: var(--accent-light); }
.approach-section .section-title { color: var(--white); }
.approach-section .section-lead { color: rgba(255,255,255,0.55); }
.approach-grid {
  display: grid;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .approach-grid { grid-template-columns: repeat(4, 1fr); }
}
.approach-col {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
  cursor: default;
}
@media (min-width: 768px) {
  .approach-col {
    padding: 3rem 2rem;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .approach-col:last-child {
    border-right: none;
    padding-right: 0;
  }
  .approach-col:first-child {
    padding-left: 0;
  }
}
.approach-col:hover { background: rgba(255,255,255,0.03); }
.approach-col-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.approach-col h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.approach-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── Capabilities ── */
.cap-section { background: var(--white); }
.cap-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
}
.cap-cell {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: background 0.3s;
  cursor: default;
}
.cap-cell:hover { background: var(--paper); }
.cap-cell svg { color: var(--accent); margin-bottom: 1.25rem; }
.cap-cell h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.cap-cell p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Industries ── */
.ind-section { background: var(--paper-dark); }
.ind-cards {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .ind-cards { grid-template-columns: repeat(2, 1fr); } }
.ind-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: default;
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13,17,23,0.08);
}
.ind-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.ind-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.ind-card ul { margin-top: 1.25rem; }
.ind-card li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.ind-card li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Industries page ── */
.page-hero--editorial .page-hero-body .container {
  max-width: var(--max);
  text-align: left;
}
.page-hero--editorial .page-hero-title {
  max-width: 14ch;
}
.page-hero--editorial .page-hero-desc {
  margin: 0;
  max-width: 520px;
}
.ind-tiles-section {
  padding: 5rem 0 6rem;
  background: var(--paper);
}
.ind-tiles-head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.ind-tiles-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ind-tiles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .ind-tiles-grid { grid-template-columns: repeat(3, 1fr); }
}
.ind-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.ind-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13, 17, 23, 0.08);
}
.ind-tile-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ind-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.ind-tile:hover .ind-tile-media img { transform: scale(1.04); }
.ind-tile-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ind-tile-index {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 0.65rem;
}
.ind-tile-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.ind-tile-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ind-tile-body ul {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ind-tile-body li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 0.875rem;
  position: relative;
  line-height: 1.55;
}
.ind-tile-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.ind-method {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--white);
}
.ind-method .section-label { color: var(--accent-light); }
.ind-method .section-title { color: var(--white); }
.ind-method .section-lead { color: rgba(255, 255, 255, 0.55); max-width: 560px; }
.ind-method-grid {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .ind-method-grid { grid-template-columns: repeat(3, 1fr); }
}
.ind-method-col {
  padding: 2rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .ind-method-col {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .ind-method-col:last-child { border-right: none; }
}
.ind-method-col-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
}
.ind-method-col h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.ind-method-col p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ── Contact page ── */
section.contact-body,
section.contact-map {
  padding: 0;
}
.contact-body {
  padding: 0 0 4rem;
  background: var(--white);
}
@media (min-width: 768px) {
  .contact-body { padding-bottom: 5rem; }
}
.contact-wrap {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-wrap {
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
  }
}
.contact-aside {
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .contact-aside { padding: 2rem; }
}
.contact-aside-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.contact-details {
  margin: 0;
  padding: 0;
}
.contact-detail {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.contact-detail:first-of-type {
  padding-top: 0;
  border-top: none;
}
.contact-detail dt {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.contact-detail dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.contact-detail address {
  font-style: normal;
}
.contact-detail a {
  color: var(--accent);
  transition: color 0.2s;
  word-break: break-word;
}
.contact-detail a:hover { color: var(--accent-light); }
.contact-detail strong {
  font-weight: 600;
  color: var(--ink);
}
.contact-muted {
  font-size: 0.8125rem;
  color: var(--text-light);
}
.contact-aside-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-light);
}

.contact-form-panel {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .contact-form-panel { padding: 2.25rem; }
}
.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.contact-form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.contact-req { color: var(--accent); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.contact-form-row {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr 1fr; }
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.contact-field select {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234B5563' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-light);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
  background: var(--white);
}
.contact-field input.is-invalid,
.contact-field select.is-invalid,
.contact-field textarea.is-invalid {
  border-color: #B91C1C;
}
.contact-field-error {
  font-size: 0.75rem;
  color: #B91C1C;
  min-height: 1rem;
}
.contact-field--check { gap: 0.3rem; }
.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}
.contact-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-check-ui {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 0.12rem;
  border: 1px solid var(--border-strong);
  background: var(--paper);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.contact-check input:checked + .contact-check-ui {
  background: var(--accent);
  border-color: var(--accent);
}
.contact-check input:checked + .contact-check-ui::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-check input:focus-visible + .contact-check-ui {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.contact-check a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form-actions {
  padding-top: 0.5rem;
}
.contact-form-actions .btn-fill {
  width: 100%;
}
@media (min-width: 480px) {
  .contact-form-actions .btn-fill { width: auto; }
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.contact-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(13, 17, 23, 0.18);
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-modal.is-open .contact-modal-card {
  transform: translateY(0) scale(1);
}
.contact-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-light);
  transition: color 0.2s;
  cursor: pointer;
}
.contact-modal-close:hover { color: var(--ink); }
.contact-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.15rem;
}
.contact-modal-icon--success {
  background: var(--accent-muted);
  color: var(--accent);
}
.contact-modal-icon--error {
  background: rgba(185, 28, 28, 0.1);
  color: #B91C1C;
}
.contact-modal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}
.contact-modal-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
  width: 100%;
}
.contact-modal-errors {
  width: 100%;
  text-align: left;
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(185, 28, 28, 0.06);
  border: 1px solid rgba(185, 28, 28, 0.15);
  list-style: none;
  align-self: stretch;
}
.contact-modal-errors li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #991B1B;
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}
.contact-modal-errors li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #B91C1C;
}
.contact-modal-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}
.contact-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact-modal-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.contact-modal-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.contact-map {
  padding: 0 0 4rem;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .contact-map { padding-bottom: 5rem; }
}
.contact-map-head {
  padding: 3rem 0 1.75rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-map-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.contact-map-embed {
  width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--paper-dark);
}
@media (min-width: 768px) {
  .contact-map-embed { height: 420px; }
}
.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .contact-map-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.contact-map-meta address {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.contact-map-meta address strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contact-map-meta a {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.2s;
}
.contact-map-meta a:hover { color: var(--accent-light); }

/* ── Services page ── */
section.sv-cards-section {
  padding: 0;
}

.sv-cards-section {
  padding: 0 0 5rem;
  background: var(--paper);
}
.sv-cards-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.sv-cards-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.sv-cards-head .divider {
  margin: 1.25rem auto;
}
.sv-cards-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .sv-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sv-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.sv-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.sv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13, 17, 23, 0.08);
}
.sv-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.sv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.sv-card:hover .sv-card-media img { transform: scale(1.04); }
.sv-card-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(13, 17, 23, 0.72);
  padding: 0.35rem 0.65rem;
  letter-spacing: 0.06em;
}
.sv-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.75rem;
}
.sv-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.sv-card-body p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}
.sv-card-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
}

.sv-modal {
  position: fixed;
  inset: 0;
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.sv-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.sv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.sv-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(13, 17, 23, 0.2);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.4s var(--ease);
}
.sv-modal.is-open .sv-modal-card {
  transform: translateY(0) scale(1);
}
.sv-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-light);
  background: rgba(245, 243, 239, 0.92);
  transition: color 0.2s;
}
.sv-modal-close:hover { color: var(--ink); }
.sv-modal-layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .sv-modal-layout { grid-template-columns: 42% 1fr; }
}
.sv-modal-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
@media (min-width: 640px) {
  .sv-modal-media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}
.sv-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-modal-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(13, 17, 23, 0.72);
  padding: 0.35rem 0.65rem;
  letter-spacing: 0.06em;
}
.sv-modal-content {
  padding: 1.75rem 1.5rem 1.75rem;
}
@media (min-width: 640px) {
  .sv-modal-content { padding: 2rem 2rem 2rem 1.75rem; }
}
.sv-modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
  padding-right: 2rem;
}
.sv-modal-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.sv-modal-body p {
  margin-bottom: 0.85rem;
}
.sv-modal-body p:last-child { margin-bottom: 0; }
.sv-modal-body ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.15rem;
  list-style: none;
}
.sv-modal-body li {
  position: relative;
  padding: 0.2rem 0 0.2rem 0.85rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.sv-modal-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.sv-modal-cta {
  margin-top: 1.5rem;
  width: 100%;
}
@media (min-width: 480px) {
  .sv-modal-cta { width: auto; }
}

/* ── About page ── */
.ab-split-hero {
  display: grid;
  min-height: 85vh;
  padding-top: var(--nav-h);
}
@media (min-width: 1024px) {
  .ab-split-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 78vh;
  }
}
.ab-split-panel--dark {
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  padding: 3rem 0;
}
.ab-split-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .ab-split-inner { padding: 0 2.5rem; }
}
@media (min-width: 1024px) {
  .ab-split-panel--dark .ab-split-inner {
    margin-left: auto;
    margin-right: 0;
    padding-right: 3rem;
    max-width: calc(var(--max) / 2 + 2rem);
  }
}
.ab-split-index {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.ab-split-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}
.ab-split-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  max-width: 46ch;
}
.ab-split-panel--media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.ab-split-panel--media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ab-profile {
  padding: 0;
  background: var(--accent);
  color: var(--white);
}
.ab-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .ab-profile-grid { grid-template-columns: repeat(4, 1fr); }
}
.ab-profile-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .ab-profile-item { border-bottom: none; }
  .ab-profile-item:last-child { border-right: none; }
}
@media (max-width: 767px) {
  .ab-profile-item:nth-child(2n) { border-right: none; }
  .ab-profile-item:nth-last-child(-n+2) { border-bottom: none; }
}
.ab-profile-key {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.ab-profile-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.ab-profile-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.ab-letter {
  padding: 5rem 0 6rem;
  background: var(--paper);
}
.ab-letter-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ab-letter-grid {
    grid-template-columns: 1fr 340px;
    gap: var(--gap);
  }
}
.ab-letter-opening {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.ab-letter-cap {
  float: left;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 0.85;
  color: var(--accent);
  margin: 0.1rem 0.75rem 0 0;
}
.ab-letter-cols {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .ab-letter-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.ab-letter-cols p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.ab-letter-cols em {
  font-style: italic;
  color: var(--ink);
}
.ab-letter-figure {
  margin: 0;
}
.ab-letter-figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ab-letter-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.55;
}

.ab-stripes {
  padding: 0;
}
.ab-stripe {
  padding: 2.75rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ab-stripe--alt { background: var(--paper-dark); }
.ab-stripe-inner {
  display: grid;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 768px) {
  .ab-stripe-inner {
    grid-template-columns: 64px 1fr;
    gap: 2rem;
    align-items: center;
  }
}
.ab-stripe-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
}
.ab-stripe-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.ab-stripe-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
}

.ab-studio {
  padding: 5rem 0 6rem;
  background: var(--white);
}
.ab-studio-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .ab-studio-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
  }
}
.ab-studio-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ab-studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.ab-studio-media:hover img { transform: scale(1.03); }
.ab-studio-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1rem;
}
.ab-studio-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ab-studio-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.ab-studio-list li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 0.55rem;
  background: var(--accent);
  border-radius: 50%;
}

.ab-root {
  padding: 5rem 0 6rem;
  background: var(--paper-dark);
}
.ab-root-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .ab-root-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
  }
}
.ab-root-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1rem;
}
.ab-root-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--accent);
}
.ab-root-address strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.ab-root-address a {
  color: var(--accent);
  transition: color 0.2s;
}
.ab-root-address a:hover { color: var(--accent-light); }
.ab-root-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ab-root-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Approach page ── */
.ap-intro {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ap-intro { padding: calc(var(--nav-h) + 5rem) 0 5rem; }
}
.ap-intro-inner {
  position: relative;
  max-width: 720px;
}
.ap-intro-watermark {
  position: absolute;
  top: -2.5rem;
  right: -0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.ap-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.ap-intro-lead {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 58ch;
}

.ap-visual {
  padding: 0;
  background: var(--ink);
}
.ap-visual-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 21/9;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ap-visual-frame { aspect-ratio: 16/11; }
}
.ap-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.ap-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.88) 0%, rgba(13, 17, 23, 0.15) 55%, transparent 100%);
}
.ap-visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
@media (min-width: 768px) {
  .ap-visual-caption {
    flex-direction: row;
    align-items: baseline;
    gap: 2rem;
    padding: 2.5rem 2.5rem;
  }
}
.ap-visual-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.ap-spine {
  padding: 4.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ap-spine-head {
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.ap-spine-track {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: spine;
}
@media (min-width: 768px) {
  .ap-spine-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .ap-spine-track::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border-strong);
    z-index: 0;
  }
}
.ap-spine-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0 0 0 1.75rem;
  border-left: 2px solid var(--border-strong);
}
@media (min-width: 768px) {
  .ap-spine-node {
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    border-left: none;
  }
}
.ap-spine-dot {
  position: absolute;
  left: -5px;
  top: 0.15rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-muted);
}
@media (min-width: 768px) {
  .ap-spine-dot {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 0.75rem;
    z-index: 1;
  }
}
.ap-spine-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ap-spine-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.ap-chapters {
  padding: 0;
  background: var(--paper);
}
.ap-chapter {
  display: grid;
  gap: 2rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .ap-chapter {
    grid-template-columns: 72px 1fr 1fr;
    gap: var(--gap);
    align-items: start;
    padding: 5rem 0;
  }
}
.ap-chapter--alt {
  background: var(--white);
}
.ap-chapter-rail {
  display: none;
}
@media (min-width: 1024px) {
  .ap-chapter-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.5rem;
  }
}
.ap-chapter-phase {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.ap-chapter-line {
  flex: 1;
  width: 1px;
  min-height: 120px;
  margin-top: 1rem;
  background: linear-gradient(to bottom, var(--border-strong), transparent);
}
.ap-chapter:last-child .ap-chapter-line {
  background: none;
  min-height: 0;
}
.ap-chapter-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1rem;
}
.ap-chapter-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ap-chapter-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.ap-chapter-list li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 0.55rem;
  background: var(--accent);
  border-radius: 50%;
}
.ap-chapter-deliverable {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--accent-muted);
  background: var(--accent-muted);
}
.ap-chapter-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ap-chapter:nth-child(even) .ap-chapter-content { order: 2; }
  .ap-chapter:nth-child(even) .ap-chapter-media { order: 1; }
}
.ap-chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.ap-chapter-media:hover img { transform: scale(1.03); }

.ap-principles {
  padding: 5rem 0 6rem;
  background: var(--paper-dark);
}
.ap-principles-head {
  max-width: 580px;
  margin-bottom: 3rem;
}
.ap-principles-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .ap-principles-grid { grid-template-columns: repeat(2, 1fr); }
}
.ap-principle {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: background 0.3s;
}
.ap-principle:hover { background: var(--paper); }
.ap-principle-index {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 0.75rem;
}
.ap-principle h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.ap-principle p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.ap-manifesto {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.ap-manifesto-inner {
  max-width: 720px;
}
.ap-manifesto-quote {
  margin: 0;
  padding: 0;
  border: none;
}
.ap-manifesto-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.01em;
}
.ap-manifesto-cite {
  display: block;
  margin-top: 1.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* ── CTA ── */
.cta-section { padding: 0; }
.cta-block {
  background: var(--accent);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.03) 80px,
    rgba(255,255,255,0.03) 81px
  );
}
.cta-inner { position: relative; z-index: 1; }
.cta-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 1rem;
  line-height: 1.15;
}
.cta-block p {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
}
.cta-block .btn-fill {
  background: var(--white);
  color: var(--accent);
}
.cta-block .btn-fill:hover {
  background: var(--ink);
  color: var(--white);
}

/* ── Footer ── */
.site-footer {
  position: relative;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 0 0 1.75rem;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) 32%,
    transparent 32%,
    transparent 68%,
    var(--accent-light) 68%,
    var(--accent-light) 100%
  );
  opacity: 0.9;
  z-index: 1;
}
.site-footer::after {
  content: 'L&T';
  position: absolute;
  right: -1%;
  top: 42%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  padding: 3.25rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 0;
    align-items: start;
  }
  .footer-brand {
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-nav {
    padding: 0 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-aside {
    padding-left: 2.5rem;
  }
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-identity {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
  cursor: pointer;
  transition: opacity 0.25s;
}
.footer-identity:hover { opacity: 0.88; }
.footer-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent-light);
  line-height: 1;
  border: 1px solid rgba(8, 145, 178, 0.35);
  background: rgba(8, 145, 178, 0.08);
  flex-shrink: 0;
}
.footer-mark span { font-style: italic; font-weight: 400; opacity: 0.75; }
.footer-name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.2;
}
.footer-name strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-name em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 26rem;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s var(--ease);
  cursor: pointer;
}
.footer-cta span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.footer-cta:hover {
  border-color: var(--accent-light);
  background: rgba(8, 145, 178, 0.14);
  color: var(--accent-light);
  transform: translateY(-1px);
}
.footer-cta:hover span { transform: translateX(3px); }

/* Navigation column */
.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.footer-nav-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-nav-list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s, background 0.2s, padding-left 0.25s var(--ease);
  cursor: pointer;
}
.footer-nav-list a:hover {
  color: var(--white);
  background: rgba(14, 116, 144, 0.12);
  padding-left: 1.05rem;
}
.footer-nav-list a.active {
  color: var(--accent-light);
  background: rgba(14, 116, 144, 0.14);
}
.footer-nav-list a.active .footer-nav-index { opacity: 1; }
.footer-nav-index {
  font-family: var(--font-serif);
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--accent-light);
  opacity: 0.75;
  min-width: 1.1rem;
}

/* Aside column */
.footer-aside {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.footer-block-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.footer-label-num {
  font-family: var(--font-serif);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
}
.footer-block--contact,
.footer-block--hours {
  padding: 1.15rem 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.footer-block--contact .footer-block-label,
.footer-block--hours .footer-block-label {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.875rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-hours {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
}
.footer-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.footer-hours-day {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
}
.footer-hours-time {
  color: rgba(255, 255, 255, 0.72);
  font-variant-numeric: tabular-nums;
}
.footer-hours li.is-closed .footer-hours-time {
  color: rgba(255, 255, 255, 0.32);
}

/* Bottom bar */
.footer-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bar-start {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.35rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
@media (max-width: 767px) {
  .footer-badge { align-self: center; }
}
.footer-copy-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-legal a:hover { color: var(--accent-light); }
.footer-legal-divider {
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
}

/* ── Preloader ── */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1);
}
.site-preloader.is-exiting {
  transform: translateY(-100%);
  pointer-events: none;
}
.preloader-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) 32%,
    transparent 32%,
    transparent 68%,
    var(--accent-light) 68%,
    var(--accent-light) 100%
  );
  z-index: 2;
}
.preloader-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 17, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 17, 23, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, black 20%, transparent 85%);
  pointer-events: none;
}
.preloader-panel {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100vw - 2.5rem));
  background: var(--white);
  border: 1px solid var(--border-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 28px 72px rgba(13, 17, 23, 0.1);
  animation: preloaderPanelIn 0.65s var(--ease) 0.05s both;
  transition: opacity 0.35s ease, transform 0.45s var(--ease);
}
.site-preloader.is-exiting .preloader-panel {
  opacity: 0;
  transform: translateY(-8px);
}
.preloader-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(245, 243, 239, 0.65);
}
.preloader-index {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.preloader-head-rule {
  width: 1px;
  height: 1rem;
  background: var(--border-strong);
  flex-shrink: 0;
}
.preloader-status {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
}
.preloader-status.is-changing {
  opacity: 0;
  transform: translateY(4px);
}
.preloader-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.preloader-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.35rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
  border: 1px solid rgba(14, 116, 144, 0.28);
  background: var(--accent-muted);
  animation: preloaderMarkIn 0.6s var(--ease) 0.15s both;
}
.preloader-mark span {
  font-style: italic;
  font-weight: 400;
  opacity: 0.75;
}
.preloader-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(240px, 72vw);
  object-fit: contain;
  margin-bottom: 0.85rem;
  animation: preloaderLogoIn 0.7s var(--ease) 0.25s both;
}
@media (min-width: 480px) {
  .preloader-logo { height: 58px; }
}
.preloader-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: preloaderTagIn 0.6s var(--ease) 0.4s both;
}
.preloader-foot {
  padding: 1rem 1.25rem 1.15rem;
  background: rgba(245, 243, 239, 0.45);
}
.preloader-progress-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}
.preloader-progress-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.preloader-pct {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.preloader-progress-rail {
  position: relative;
  height: 2px;
  background: var(--border);
  overflow: hidden;
}
.preloader-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.18s linear;
}

@keyframes preloaderPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderMarkIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes preloaderLogoIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderTagIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-panel,
  .preloader-mark,
  .preloader-logo,
  .preloader-tagline {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .site-preloader { transition-duration: 0.01ms; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
  pointer-events: none;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.65s var(--ease), opacity 0.45s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-card {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border);
  box-shadow: 0 -4px 40px rgba(13, 17, 23, 0.08), 0 24px 64px rgba(13, 17, 23, 0.12);
  overflow: hidden;
}
.cookie-banner-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-light), var(--accent));
}
.cookie-banner-main {
  display: grid;
  gap: 1.5rem;
  padding: 1.35rem 1.35rem 1.35rem 1.65rem;
}
@media (min-width: 768px) {
  .cookie-banner-main {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 1.75rem 1.5rem 2rem;
  }
}
.cookie-banner-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.cookie-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.cookie-banner-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
}
.cookie-banner-desc a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  cursor: pointer;
}
.cookie-banner-desc a:hover { color: var(--accent-light); }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .cookie-banner-actions {
    flex-direction: column;
  }
  .cookie-banner-actions .cookie-btn { width: 100%; justify-content: center; }
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.cookie-btn--fill {
  background: var(--ink);
  color: var(--paper);
}
.cookie-btn--fill:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.cookie-btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.cookie-btn--outline:hover {
  border-color: var(--ink);
  background: var(--white);
}
.cookie-btn--ghost {
  background: transparent;
  color: var(--text-muted);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.cookie-btn--ghost:hover { color: var(--accent); }
.cookie-btn--wide { width: 100%; }
.cookie-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.cookie-panel {
  padding: 0 1.35rem 1.35rem 1.65rem;
  border-top: 1px solid var(--border);
  animation: cookiePanelIn 0.4s var(--ease);
}
@media (min-width: 768px) {
  .cookie-panel { padding: 0 1.75rem 1.5rem 2rem; }
}
.cookie-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  margin-bottom: 1rem;
}
.cookie-panel-back {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: pointer;
}
.cookie-panel-back:hover { color: var(--accent); }
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cookie-option:first-child { padding-top: 0; }
.cookie-option-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.cookie-option-info p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.cookie-locked {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.35rem 0.65rem;
  background: var(--paper-dark);
  border-radius: 999px;
}
.cookie-switch {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  cursor: pointer;
}
.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-ui {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--paper-dark);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s;
}
.cookie-switch-ui::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(13, 17, 23, 0.15);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.cookie-switch input:checked + .cookie-switch-ui {
  background: var(--accent-muted);
  border-color: var(--accent);
}
.cookie-switch input:checked + .cookie-switch-ui::after {
  transform: translateX(20px);
  background: var(--accent);
}
.cookie-switch input:focus-visible + .cookie-switch-ui {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@keyframes cookiePanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  z-index: 9985;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(245, 243, 239, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(13, 17, 23, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.88);
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s,
    transform 0.35s var(--ease),
    bottom 0.45s var(--ease),
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top.is-raised {
  bottom: calc(10.5rem + env(safe-area-inset-bottom));
}
@media (min-width: 768px) {
  .scroll-top { right: 1.75rem; bottom: calc(1.75rem + env(safe-area-inset-bottom)); }
  .scroll-top.is-raised { bottom: calc(9rem + env(safe-area-inset-bottom)); }
}
.scroll-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(14, 116, 144, 0.28);
  transform: translateY(-3px) scale(1);
}
.scroll-top.is-visible:hover { transform: translateY(-3px) scale(1); }
.scroll-top:active { transform: translateY(-1px) scale(0.96); }
.scroll-top.is-visible:active { transform: translateY(-1px) scale(0.96); }
.scroll-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.scroll-top-icon {
  transition: transform 0.3s var(--ease);
}
.scroll-top:hover .scroll-top-icon { transform: translateY(-2px); }

/* ── Inner page hero ── */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { min-height: 58vh; } }
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.96) 0%,
    rgba(13, 17, 23, 0.55) 45%,
    rgba(13, 17, 23, 0.3) 100%
  );
}
.page-hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.5rem 0 4rem;
}
.page-hero-body .container {
  max-width: 820px;
  text-align: center;
}
.page-hero-index {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.page-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Capabilities page ── */
.cap-intro {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}
.cap-intro .container { max-width: 720px; }
.cap-intro .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.cap-intro .divider { margin: 2rem auto; }
.cap-feature {
  padding: 5rem 0;
  background: var(--white);
}
.cap-feature.cap-feature--alt { background: var(--paper); }
.cap-feature-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .cap-feature-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap);
  }
  .cap-feature-text { grid-column: 1 / 6; }
  .cap-feature-visual { grid-column: 7 / 13; }
  .cap-feature--reverse .cap-feature-text { grid-column: 8 / 13; order: 2; }
  .cap-feature--reverse .cap-feature-visual { grid-column: 1 / 7; order: 1; }
}
.cap-feature-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--paper-dark);
  margin-bottom: 0.75rem;
}
.cap-feature-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.25rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--accent-muted);
  background: var(--accent-muted);
}
.cap-feature-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1rem;
}
.cap-feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cap-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cap-feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 0.55rem;
  background: var(--accent);
  border-radius: 50%;
}
.cap-feature-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cap-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.cap-feature-visual:hover img { transform: scale(1.04); }
.cap-feature-frame {
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 1px solid var(--border-strong);
  pointer-events: none;
  z-index: -1;
}
.cap-metrics {
  padding: 4rem 0;
  background: var(--ink);
  color: var(--white);
}
.cap-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cap-metrics-grid { grid-template-columns: repeat(4, 1fr); }
}
.cap-metric-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cap-metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.cap-pillars-section {
  padding: 6rem 0;
  background: var(--paper-dark);
}
.cap-pillars-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .cap-pillars-grid { grid-template-columns: repeat(3, 1fr); }
}
.cap-pillar {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: background 0.3s;
}
.cap-pillar:hover { background: var(--paper); }
.cap-pillar-index {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.cap-pillar h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.cap-pillar p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Legal pages ── */
.legal-page { padding-top: var(--nav-h); }
.legal-hero {
  padding: 3rem 0 2.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
@media (min-width: 768px) {
  .legal-hero { padding: 3.5rem 0 3rem; }
}
.legal-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-hero .section-lead {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.legal-hero .section-lead a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  cursor: pointer;
}
.legal-hero .section-lead a:hover { color: var(--accent-light); }
.legal-body {
  padding: 2.5rem 0 4rem;
  background: var(--white);
}
@media (min-width: 768px) {
  .legal-body { padding: 3rem 0 5rem; }
}
.legal-body .container {
  display: flex;
  justify-content: center;
}
.legal-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
section.legal-block {
  padding: 0;
}
.legal-block + .legal-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.legal-block p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.legal-block li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding-left: 0.25rem;
}
.legal-block li strong { color: var(--ink); font-weight: 600; }
.legal-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  cursor: pointer;
}
.legal-block a:hover { color: var(--accent-light); }
.legal-address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-muted);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.25rem;
  background: var(--paper);
  border-left: 3px solid var(--accent);
}
.legal-address strong { color: var(--ink); }
.legal-address a { color: var(--accent); }
.legal-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.legal-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.legal-table th,
.legal-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--border);
  line-height: 1.6;
}
.legal-table th {
  background: var(--paper);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.legal-table td { color: var(--text-muted); }
.legal-table td:first-child { color: var(--ink); font-weight: 500; }
.footer-legal a[aria-current="page"] {
  color: var(--accent-light);
  pointer-events: none;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
