:root {
  --ink: #121212;
  --ink-2: #1c1c1c;
  --paper: #f5f4f1;
  --paper-2: #edebe6;
  --white: #ffffff;
  --gray: #6e6c68;
  --gray-2: #9a968f;
  --line: #e2e0db;
  --line-dark: rgba(255, 255, 255, 0.14);
  --display: "Montserrat", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --radius: 16px;
  --radius-small: 9px;
  --max-width: 1180px;
  --shadow: 0 24px 60px rgba(18, 18, 18, 0.13);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.wrap { width: min(100%, var(--max-width)); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
p { color: var(--gray); font-size: clamp(15px, 1.05vw, 16.5px); }
strong { color: var(--ink); }

.h-xl {
  font-size: clamp(42px, 6.15vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
}
.h-l {
  font-size: clamp(31px, 4.4vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
}
.h-m {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before { content: ""; width: 27px; height: 2px; background: currentColor; }
.kicker { font-family: var(--display); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--radius-small);
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn .arrow { transition: transform .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #000; box-shadow: 0 12px 26px rgba(18, 18, 18, .18); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { box-shadow: 0 12px 26px rgba(0, 0, 0, .18); }
.btn-outline { border: 1.5px solid var(--ink); background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.55); background: transparent; color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(245, 244, 241, .96);
  box-shadow: 0 1px 0 var(--line);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.solid {
  background: rgba(245, 244, 241, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.site-nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 31px; }
.nav-links a {
  position: relative;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  opacity: .7;
  transition: opacity .2s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--ink);
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang { font-family: var(--display); font-size: 11.5px; font-weight: 700; color: var(--gray); }
.lang b { color: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.mobile-nav.open { transform: none; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav__top img { height: 28px; }
.menu-close { border: 0; background: none; color: var(--white); cursor: pointer; }
.mobile-nav__links { margin: auto 0; display: flex; flex-direction: column; gap: 8px; }
.mobile-nav__links a { font-family: var(--display); font-size: clamp(30px, 8vw, 42px); font-weight: 900; text-transform: uppercase; color: var(--white); }
.mobile-nav__foot { display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.58); font-family: var(--display); font-size: 12px; font-weight: 700; }

/* Hero */
.hero { padding-top: 74px; background: var(--ink); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: calc(100vh - 74px); }
.hero-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 88px);
  color: var(--white);
  background: var(--ink);
}
.hero-copy .eyebrow { color: var(--white); margin-bottom: 24px; position: relative; z-index: 2; }
.hero-copy h1 { position: relative; z-index: 2; color: var(--white); margin-bottom: 24px; }
.hero-copy h1 .outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.hero-copy > p { position: relative; z-index: 2; max-width: 540px; margin-bottom: 34px; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.25vw, 18px); }
.hero-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 13px; }
.hero-mark {
  position: absolute;
  right: -4%;
  bottom: -8%;
  color: rgba(255,255,255,.045);
  font-family: var(--display);
  font-size: clamp(210px, 30vw, 390px);
  font-weight: 900;
  line-height: .7;
  pointer-events: none;
}
.hero-visual { position: relative; min-height: 580px; overflow: hidden; background: var(--paper-2); }
.hero-visual__main { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% 42%; filter: saturate(.8) contrast(1.03); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,18,18,.05), rgba(18,18,18,.30)); pointer-events: none; }
.hero-badge {
  position: absolute;
  z-index: 3;
  left: 26px;
  top: 26px;
  max-width: 240px;
  padding: 17px 19px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 12px;
  color: var(--white);
  background: rgba(18,18,18,.72);
  backdrop-filter: blur(10px);
}
.hero-badge small { display: block; margin-bottom: 4px; font-family: var(--display); font-size: 10.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.hero-badge strong { color: var(--white); font-family: var(--display); font-size: 15px; line-height: 1.35; }
.hero-inset {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  width: min(42%, 230px);
  aspect-ratio: 4 / 5;
  border: 6px solid var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-inset img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: grayscale(1) contrast(1.05); }
.hero-inset span {
  position: absolute;
  inset: auto 0 0;
  padding: 20px 14px 12px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* Inner hero */
.page-hero { position: relative; overflow: hidden; padding: 136px 0 72px; color: var(--white); background: var(--ink); }
.page-hero .hero-mark { right: 2%; bottom: -24%; }
.page-hero .eyebrow { color: var(--white); margin-bottom: 20px; }
.page-hero h1 { position: relative; z-index: 2; color: var(--white); }
.page-hero p { position: relative; z-index: 2; max-width: 690px; margin-top: 22px; color: rgba(255,255,255,.78); font-size: 17px; }

/* Common sections */
.section { padding: clamp(74px, 9vw, 120px) 0; }
.section-white { background: var(--white); }
.section-muted { background: var(--paper-2); }
.section-dark { background: var(--ink); color: var(--white); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 66px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { max-width: 680px; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-dark .eyebrow, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.72); }

/* Trust strip */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 15px; padding: 34px 24px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; padding-right: 0; }
.trust-icon { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--paper-2); }
.trust-item b { display: block; font-family: var(--display); font-size: 14px; font-weight: 800; }
.trust-item small { color: var(--gray); font-size: 12.5px; }

/* Pillars */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar-card {
  position: relative;
  min-height: 305px;
  padding: 31px 28px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .28s ease, background .28s ease, color .28s ease;
}
.pillar-card:hover { transform: translateY(-6px); background: var(--ink); color: var(--white); }
.pillar-card__num { display: block; margin-bottom: 52px; font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--gray); }
.pillar-card h3 { margin-bottom: 13px; font-size: 25px; font-weight: 900; text-transform: uppercase; }
.pillar-card p { transition: color .28s ease; }
.pillar-card:hover p { color: rgba(255,255,255,.76); }
.pillar-card__word { position: absolute; right: -12px; bottom: -34px; font-family: var(--display); font-size: 100px; font-weight: 900; line-height: 1; color: rgba(18,18,18,.04); text-transform: uppercase; pointer-events: none; }
.pillar-card:hover .pillar-card__word { color: rgba(255,255,255,.04); }

/* Splits */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 6vw, 70px); align-items: center; }
.split.reverse .split-copy { order: 1; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media__frame { aspect-ratio: 5 / 4; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.split-media__frame.tall { aspect-ratio: 4 / 5; }
.split-media__frame img { width: 100%; height: 100%; object-fit: cover; }
.split-media__frame img.portrait { object-position: center 24%; }
.split-media__caption {
  position: absolute;
  right: -18px;
  bottom: 22px;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.split-media__caption b { display: block; color: var(--white); font-family: var(--display); font-size: 13px; text-transform: uppercase; }
.split-media__caption small { color: rgba(255,255,255,.64); }
.split-copy .eyebrow { margin-bottom: 17px; }
.split-copy h2 { margin-bottom: 21px; }
.split-copy > p + p { margin-top: 14px; }
.check-list { list-style: none; margin: 25px 0 31px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 600; }
.check-list svg { flex: 0 0 20px; margin-top: 3px; }
.quote-line {
  margin-top: 26px;
  padding: 20px 0 20px 22px;
  border-left: 3px solid var(--ink);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  line-height: 1.35;
}

/* Level statement */
.level-band { padding: 0 0 clamp(74px, 9vw, 120px); }
.level-panel { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border-radius: var(--radius); background: var(--ink); }
.level-title { position: relative; overflow: hidden; padding: clamp(40px, 5vw, 66px); color: var(--white); }
.level-title h2 { position: relative; z-index: 2; color: var(--white); }
.level-title .hero-mark { right: -16%; bottom: -18%; }
.level-copy { padding: clamp(40px, 5vw, 66px); background: var(--white); }
.level-copy > p { margin-bottom: 28px; }
.level-list { display: grid; gap: 0; }
.level-row { display: grid; grid-template-columns: 130px 1fr; gap: 22px; padding: 18px 0; border-top: 1px solid var(--line); }
.level-row:last-child { border-bottom: 1px solid var(--line); }
.level-row b { font-family: var(--display); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.level-row span { color: var(--gray); font-size: 14px; }

/* Story facts */
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.fact { padding: 24px 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.fact strong { display: block; margin-bottom: 6px; font-family: var(--display); font-size: clamp(24px, 3vw, 38px); font-weight: 900; line-height: 1; }
.fact span { color: var(--gray); font-size: 13px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { position: relative; min-height: 275px; padding: 30px 25px 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.process-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--ink); }
.process-card__num { display: block; margin-bottom: 43px; font-family: var(--display); font-size: 37px; font-weight: 900; line-height: 1; color: transparent; -webkit-text-stroke: 1.3px var(--ink); }
.process-card small { display: block; margin-bottom: 10px; color: var(--gray); font-family: var(--display); font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.process-card h3 { margin-bottom: 11px; font-size: 18px; font-weight: 800; text-transform: uppercase; }
.process-card p { font-size: 14px; }

/* Formats */
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.format-card { display: flex; flex-direction: column; min-height: 350px; padding: 30px 27px; border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.format-card.featured { background: var(--ink); color: var(--white); }
.format-card__tag { align-self: flex-start; margin-bottom: 55px; padding: 6px 10px; border-radius: 999px; background: var(--paper-2); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.format-card.featured .format-card__tag { background: rgba(255,255,255,.12); }
.format-card h3 { margin-bottom: 14px; font-size: 22px; font-weight: 900; text-transform: uppercase; }
.format-card p { margin-bottom: 24px; }
.format-card.featured p { color: rgba(255,255,255,.74); }
.format-card .text-link { margin-top: auto; }

/* Client experience */
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.experience-card { padding: 29px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.experience-card .icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 12px; background: var(--ink); color: var(--white); }
.experience-card h3 { margin-bottom: 10px; font-size: 17px; font-weight: 800; text-transform: uppercase; }
.experience-card p { font-size: 14px; }

/* Gallery */
.gallery-teaser { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 12px; }
.gallery-teaser a { position: relative; overflow: hidden; border-radius: 11px; background: var(--paper-2); }
.gallery-teaser a.large { grid-column: span 2; grid-row: span 2; }
.gallery-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-teaser a:hover img { transform: scale(1.055); }
.gallery-teaser span { position: absolute; inset: auto 0 0; padding: 35px 15px 14px; color: var(--white); background: linear-gradient(transparent, rgba(0,0,0,.72)); font-family: var(--display); font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-actions { margin-top: 28px; text-align: center; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 40px; }
.gallery-filters button { padding: 10px 19px; border: 1.5px solid var(--line); border-radius: 999px; background: transparent; font-family: var(--display); font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.gallery-filters button:hover { border-color: var(--ink); }
.gallery-filters button.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-grid figure { position: relative; overflow: hidden; break-inside: avoid; margin: 0 0 16px; border-radius: 12px; background: var(--paper-2); cursor: pointer; }
.gallery-grid figure.hidden { display: none; }
.gallery-grid img { width: 100%; transition: transform .45s ease; }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: rgba(18,18,18,.28); opacity: 0; transition: opacity .3s ease; }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figcaption { position: absolute; z-index: 2; left: 15px; bottom: 13px; color: var(--white); font-family: var(--display); font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(5px); transition: .3s ease; }
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(8,8,8,.95); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; }
.lightbox button { position: absolute; border: 0; background: rgba(255,255,255,.1); color: var(--white); cursor: pointer; }
.lightbox__close { top: 22px; right: 24px; width: 44px; height: 44px; border-radius: 50%; font-size: 28px; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 26px; }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* Services detail */
.goal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.goal-card { padding: 30px 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.goal-card .num { display: block; margin-bottom: 36px; color: var(--gray); font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.goal-card h3 { margin-bottom: 12px; font-size: 21px; font-weight: 900; text-transform: uppercase; }
.detail-list { display: grid; gap: 22px; }
.detail-item { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: clamp(45px, 6vw, 76px) 0; border-bottom: 1px solid var(--line); }
.detail-item:last-child { border-bottom: 0; }
.detail-item.reverse .detail-copy { order: 2; }
.detail-media { overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--radius); background: var(--paper-2); }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-copy .eyebrow { margin-bottom: 15px; }
.detail-copy h2 { margin-bottom: 17px; }
.detail-copy .tag { display: inline-block; margin: 0 0 18px; padding: 6px 10px; border-radius: 6px; background: var(--paper-2); font-family: var(--display); font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.detail-copy .check-list { margin-bottom: 0; }

/* FAQ */
.faq { max-width: 850px; margin: 0 auto; }
.faq details { padding: 23px 0; border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; list-style: none; font-family: var(--display); font-size: 16px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { flex: 0 0 auto; font-size: 24px; font-weight: 400; transition: transform .25s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { margin-top: 14px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 46px; align-items: start; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.form-intro { margin-bottom: 28px; }
.form-intro h2 { margin-bottom: 11px; font-size: 25px; font-weight: 900; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-family: var(--display); font-size: 10.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-small); padding: 13px 14px; color: var(--ink); background: var(--paper); transition: border .2s ease, background .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); background: var(--white); }
.field textarea { min-height: 145px; resize: vertical; }
.form-note { margin-top: 10px; font-size: 12.5px; }
.contact-side { display: grid; gap: 18px; }
.contact-card { padding: 34px; border-radius: var(--radius); color: var(--white); background: var(--ink); }
.contact-card h2 { margin-bottom: 12px; color: var(--white); font-size: 24px; font-weight: 900; text-transform: uppercase; }
.contact-card > p { margin-bottom: 27px; color: rgba(255,255,255,.7); }
.contact-row { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 19px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row__icon { flex: 0 0 40px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.1); }
.contact-row small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.5); font-family: var(--display); font-size: 9.5px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-row a, .contact-row span { color: var(--white); font-size: 14.5px; }
.contact-promise { padding: 28px 30px; border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--paper); }
.contact-promise .eyebrow { margin-bottom: 14px; }
.contact-promise h3 { margin-bottom: 11px; font-size: 19px; font-weight: 900; text-transform: uppercase; }

/* CTA */
.final-cta { position: relative; overflow: hidden; text-align: center; background: var(--ink); color: var(--white); }
.final-cta__inner { position: relative; z-index: 2; }
.final-cta .eyebrow { color: var(--white); }
.final-cta h2 { max-width: 870px; margin: 18px auto 17px; color: var(--white); }
.final-cta p { max-width: 610px; margin: 0 auto 31px; color: rgba(255,255,255,.76); }
.final-cta .hero-mark { left: 50%; right: auto; bottom: -18%; transform: translateX(-50%); }
.final-cta__note { margin-top: 17px; color: rgba(255,255,255,.55); font-size: 12.5px; }

/* Footer */
.site-footer { padding: 68px 0 31px; border-top: 1px solid var(--line-dark); color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 38px; margin-bottom: 48px; }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.55); font-size: 14px; }
.site-footer h5 { margin-bottom: 16px; color: rgba(255,255,255,.48); font-size: 10.5px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.site-footer a, .site-footer .footer-line { display: block; margin-bottom: 9px; color: rgba(255,255,255,.78); font-size: 13.5px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.42); font-size: 11.5px; }

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .nav-links, .nav-actions > .lang, .nav-actions > .btn { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding: 54px 40px; }
  .pillar-grid, .format-grid, .goal-grid { gap: 15px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 590px; padding: 66px 28px; }
  .hero-visual { min-height: 650px; }
  .trust-grid { grid-template-columns: 1fr; padding: 14px 0; }
  .trust-item, .trust-item:first-child, .trust-item:last-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .pillar-grid, .format-grid, .goal-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 260px; }
  .split, .detail-item { grid-template-columns: 1fr; }
  .split.reverse .split-copy, .detail-item.reverse .detail-copy { order: initial; }
  .split.reverse .split-media { order: initial; }
  .split-media__caption { right: 16px; }
  .level-panel { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .gallery-teaser { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .site-nav { height: 68px; }
  .hero { padding-top: 68px; }
  .hero-copy { min-height: 570px; padding: 55px 20px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 560px; }
  .hero-badge { left: 18px; top: 18px; }
  .hero-inset { right: 18px; bottom: 18px; width: 42%; }
  .page-hero { padding: 120px 0 62px; }
  .process-grid, .experience-grid { grid-template-columns: 1fr; }
  .level-row { grid-template-columns: 1fr; gap: 4px; }
  .gallery-teaser { grid-auto-rows: 145px; }
  .gallery-grid { columns: 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 27px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

/* Contrast fix: light format cards inside the dark section */
.section-dark .format-card:not(.featured) {
  color: var(--ink);
}
.section-dark .format-card:not(.featured) h3,
.section-dark .format-card:not(.featured) .text-link {
  color: var(--ink);
}
.section-dark .format-card:not(.featured) p {
  color: var(--gray);
}
