:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-low: #f3efe9;
  --surface-dim: #e7e0d6;
  --line: #e6dfd4;
  --line-soft: #efe9df;
  --line-strong: rgba(58, 47, 36, 0.18);
  --text: #2b2622;
  --text-muted: #6b6258;
  --text-soft: #8a8074;
  --primary-deep: #2f2a24;
  --primary-dark: #23201b;
  --brown: #4a3f33;
  --green: #3d4a3a;
  --green-deep: #2c362a;
  --gold: #b08d57;
  --gold-deep: #8a6d3f;
  --gold-soft: #efe6d6;
  --accent-soft: #f3efe9;
  --shadow: 0 18px 44px rgba(47, 42, 36, 0.10);
  --shadow-soft: 0 12px 30px rgba(47, 42, 36, 0.07);
  --max: 1320px;
  --pad-x: clamp(20px, 3vw, 48px);
  --nav-h: 76px;
  --radius: 4px;
  --radius-card: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { min-height: 100%; }

body {
  margin: 0;
  padding-top: var(--nav-h);
  background:
    linear-gradient(180deg, rgba(243, 239, 233, 0.5), rgba(250, 248, 245, 0) 360px),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html:not(.lang-en) [data-hide-pl] { display: none !important; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(176, 141, 87, 0.22); color: var(--primary-deep); }

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary-deep);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.22s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--max), calc(100% - (var(--pad-x) * 2)));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 8vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.section--soft { background: linear-gradient(180deg, rgba(243, 239, 233, 0.7), rgba(250, 248, 245, 0.96)); }
.section--dark { background: var(--primary-deep); color: #fff; border-top-color: rgba(255, 255, 255, 0.10); }
.section--green { background: var(--green-deep); color: #fff; border-top-color: rgba(255, 255, 255, 0.10); }
.section--tight { padding: clamp(56px, 6vw, 88px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--gold::before { background: var(--gold); opacity: 1; }
.eyebrow--light { color: rgba(255, 255, 255, 0.62); }
.eyebrow--light::before { background: var(--gold); opacity: 0.8; }

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}
.section-title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.section-lead {
  margin: 0;
  max-width: 64ch;
  color: var(--text-muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
}
.section-lead--light { color: rgba(255, 255, 255, 0.74); }

.btn, .btn-outline, .btn-light, .form-submit, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 26px;
  border: 1px solid var(--primary-deep);
  border-radius: var(--radius);
  background: var(--primary-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover, .form-submit:hover, .nav-cta:hover {
  background: var(--brown);
  border-color: var(--brown);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-outline:hover {
  background: #fff;
  border-color: var(--gold);
  color: var(--text);
  transform: translateY(-1px);
}
.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--primary-deep);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.9); border-color: rgba(255, 255, 255, 0.9); }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}
.link:hover { color: var(--gold-deep); }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--nav-h);
  background: rgba(250, 248, 245, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - (var(--pad-x) * 2)));
  margin: 0 auto;
}
.brand-row {
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  min-width: max-content;
}
.brand span {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--text); background: rgba(176, 141, 87, 0.10); }
.nav-link.is-active { color: var(--gold-deep); }

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.nav-cta { min-height: 42px; padding: 11px 20px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}
.lang-btn {
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active { background: var(--primary-deep); color: #fff; }

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: none;
  place-items: center;
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  box-shadow: 0 -5px 0 var(--text), 0 5px 0 var(--text);
}

.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 99;
  padding: 24px var(--pad-x) 34px;
  background: var(--primary-deep);
  color: #fff;
  overflow: auto;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
body.nav-open { overflow: hidden; }
body.nav-open .mobile-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }

.mobile-group { padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.mobile-group-title {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mobile-link {
  display: block;
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
}
.mobile-link.is-active { color: var(--gold); }
.mobile-cta {
  display: inline-flex;
  margin-top: 12px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-lang {
  display: inline-flex;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.mobile-lang .lang-btn { color: rgba(255, 255, 255, 0.7); }
.mobile-lang .lang-btn.is-active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ---------- Hero ---------- */
.hero { padding: clamp(32px, 5vw, 64px) 0 0; }
.hero-grid { display: grid; gap: 28px; }
.hero-copy { padding: 18px 0 8px; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-title {
  margin: 0 0 22px;
  max-width: 16ch;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.04;
}
.hero-title.wide { max-width: 26ch; }
.hero-lead {
  margin: 0 0 28px;
  max-width: 46rem;
  color: var(--text-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 4px 18px; align-items: baseline; }
.meta-pill {
  display: inline-flex;
  align-items: baseline;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.meta-pill::before {
  content: "#";
  margin-right: 2px;
  color: var(--gold-deep);
  font-weight: 500;
}
.meta-pill--gold { color: var(--primary-deep); }

.hero-panel, .visual-frame {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #fff, var(--surface-low));
  box-shadow: var(--shadow-soft);
}
.visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.visual-frame--architects {
  height: clamp(540px, 42vw, 640px);
  min-height: 0;
}
.hero-panel::after, .visual-frame::after, .tile::before, .card-media::after,
.project-media::after, .placeholder-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(47, 42, 36, 0.28));
  pointer-events: none;
}
.hero-mosaic {
  position: absolute;
  inset: 16px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 1.08fr 0.92fr;
  gap: 10px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: center / cover no-repeat var(--surface-low);
}
.tile.big { grid-row: 1 / span 2; }
.tile-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tile-label--soft {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 8px rgba(47, 42, 36, 0.45);
}
.hero-stack {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: grid;
  gap: 8px;
}
.stack-chip {
  width: max-content;
  max-width: calc(100vw - 90px);
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(176, 141, 87, 0.22);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Strip ---------- */
.strip { display: grid; grid-template-columns: 1fr; gap: 12px; }
.strip-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.7);
}
.strip-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.strip-item strong { display: block; color: var(--text); font-size: 16px; font-weight: 500; line-height: 1.5; }

/* ---------- Audience / Who we work for (gallery tiles) ---------- */
.section-head--tight { margin-bottom: 24px; }
#dla-kogo .section-title { max-width: 22ch; font-size: clamp(26px, 2.8vw, 40px); line-height: 1.12; }
#dla-kogo .section-lead { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.7; }
#dla-kogo .audience-tile { min-height: 320px; }
@media (min-width: 1024px) {
  #dla-kogo .section-head--tight { margin-bottom: 32px; gap: 48px; }
}
.audience-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.audience-tile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  min-height: clamp(340px, 31vw, 430px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  isolation: isolate;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}
.audience-tile:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.audience-tile-media {
  grid-column: 1;
  grid-row: 1;
  min-height: 340px;
  background: center / cover no-repeat var(--surface-low);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.audience-tile:hover .audience-tile-media { transform: scale(1.03); }
.audience-tile-overlay {
  display: none;
}
.audience-tile-body {
  grid-column: 2;
  grid-row: 1;
  align-content: center;
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  gap: 12px;
  background: var(--surface);
}
.audience-tile:nth-child(even) .audience-tile-media { grid-column: 2; }
.audience-tile:nth-child(even) .audience-tile-body { grid-column: 1; }
@media (min-width: 760px) {
  .audience-tile:nth-child(even) {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  }
}
.audience-tile-label {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.audience-tile h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 350;
  line-height: 1.18;
  letter-spacing: -0.005em;
}
.audience-tile p {
  margin: 0;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Cards grids ---------- */
.cards-grid, .process-grid, .project-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.info-card, .process-card, .project-card, .contact-card, .form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}
a.info-card:hover, .project-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.info-card {
  min-height: 250px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gold);
  opacity: 0.55;
}
.card-tag {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.info-card h3, .process-card h3, .project-card h3, .contact-card h3, .form-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 350;
  line-height: 1.18;
}
.info-card p, .process-card p, .project-card p, .contact-card p, .form-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-soft);
  font-size: 12px;
}

/* ---------- Services — Part A: project-type cards ---------- */
.scope-label {
  display: block;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.project-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}
.project-type-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.project-type-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: center / cover no-repeat var(--surface-low);
  overflow: hidden;
}
.project-type-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(47,42,36,0.22));
  pointer-events: none;
}
.project-type-card:hover .project-type-media { }
.project-type-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-type-card:hover .project-type-media img { transform: scale(1.03); }

.project-type-badge {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-deep);
  border: 3px solid #fff;
  color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.project-type-badge svg { width: 22px; height: 22px; }

.project-type-body {
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.project-type-body h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 1.9vw, 25px);
  font-weight: 350;
  line-height: 1.18;
  letter-spacing: -0.005em;
}
.project-type-body .pt-short {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.project-type-details {
  border-top: 1px solid var(--line-soft);
  margin-top: 4px;
}
.pt-details-content {
  display: grid;
  grid-template-rows: 1fr;
}
.pt-details-content > div {
  min-height: 0;
}
.pt-details-inner {
  padding: 4px 0 8px;
  display: grid;
  gap: 14px;
}
.pt-details-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.pt-details-inner .scope-label { margin-top: 2px; }
.pt-details-inner .bullets { gap: 8px; margin: 0; }
.pt-details-inner .bullets li { font-size: 13.5px; line-height: 1.5; }

/* ---------- Services — Part B: scope of works tiles ---------- */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.scope-tile {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}
.scope-tile:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.scope-tile-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-deep);
  background: var(--accent-soft);
  margin-bottom: 4px;
}
.scope-tile-icon svg { width: 18px; height: 18px; }
.scope-tile-num {
  position: absolute;
  top: 18px; right: 22px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
}
.scope-tile h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.25;
}
.scope-tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ---------- Services — Part C: works grid (10 categories) ---------- */
.works-grid { gap: 14px; }
.works-grid .scope-tile { padding: 20px 18px 18px; }
.works-grid .scope-tile-icon { width: 34px; height: 34px; margin-bottom: 2px; }
.works-grid .scope-tile-icon svg { width: 17px; height: 17px; }
.works-grid .scope-tile h3 { font-size: 15.5px; }
.works-grid .scope-tile p { font-size: 13px; line-height: 1.6; }

/* Services subsection spacing */
.services-subsection {
  margin-top: clamp(64px, 7vw, 96px);
  padding-top: clamp(48px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

/* ---------- Process timeline ---------- */
.process-section { padding: 0; }

.process-inner {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(32px, 4.5vw, 52px);
  padding: clamp(48px, 6vw, 88px) 0;
}

.process-section .section-head { margin-bottom: 0; }

.process-timeline {
  --process-progress: 0;
}

.timeline-track {
  position: relative;
  height: 22px;
  margin-bottom: 26px;
}

.timeline-track-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line-strong);
  transform: translateY(-50%);
}

.timeline-track-progress {
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: calc(var(--process-progress, 0) * 100%);
  background: linear-gradient(90deg, rgba(199, 173, 122, 0.45), var(--gold), var(--gold-deep));
  transform: translateY(-50%);
  transition: width 0.12s linear;
}

.timeline-nodes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  pointer-events: none;
}

.timeline-node {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  justify-self: center;
  align-self: center;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.timeline-node.is-passed {
  background: var(--gold);
  border-color: var(--gold);
}
.timeline-node.is-active {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 5px rgba(176, 141, 87, 0.16);
  transform: scale(1.18);
}

.timeline-track-marker {
  position: absolute;
  top: 50%;
  left: calc(var(--process-progress, 0) * 100%);
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--gold-deep);
  box-shadow: 0 0 0 5px rgba(176, 141, 87, 0.14), 0 2px 6px rgba(47, 42, 36, 0.18);
  transition: left 0.12s linear;
  z-index: 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}

.process-step {
  position: relative;
  padding: clamp(20px, 1.8vw, 26px);
  min-height: 196px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 244, 237, 0.42));
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
}
.process-step.is-passed { border-color: rgba(176, 141, 87, 0.32); }
.process-step.is-active {
  transform: translateY(-4px);
  border-color: rgba(150, 105, 48, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 230, 214, 0.6));
  box-shadow: 0 18px 44px rgba(47, 42, 36, 0.10);
}

.step-num {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.18em;
  transition: color 0.4s ease;
}
.process-step.is-active .step-num { color: var(--gold-deep); }
.process-step.is-passed .step-num { color: var(--gold); }

.step-label {
  color: var(--text-soft);
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.4s ease;
}
.process-step.is-active .step-label { color: var(--gold-deep); }
.process-step.is-passed .step-label { color: var(--gold); }

.step-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: color 0.4s ease;
}
.process-step.is-active .step-title { color: var(--primary-deep); }

.step-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
  transition: color 0.4s ease;
}
.process-step.is-active .step-desc { color: var(--text); }

@media (min-width: 1024px) {
  .process-section { min-height: 165vh; }
}

@media (max-width: 1023px) {
  .process-section { min-height: 0; }
  .process-inner {
    position: static;
    min-height: 0;
    padding: clamp(40px, 6vw, 64px) 0;
    gap: 28px;
  }
  .process-timeline {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .timeline-track { min-width: 880px; }
  .process-steps { min-width: 880px; }
  .process-step { scroll-snap-align: start; }
}

@media (max-width: 560px) {
  .timeline-track { min-width: 720px; }
  .process-steps { min-width: 720px; }
  .process-step { min-height: 180px; }
}

@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .process-section { min-height: 0; }
  .process-inner { position: static; min-height: 0; }
}

/* ---------- Process / generated interior background ---------- */
.process-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: #211d19;
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.1);
}

.process-section::before,
.process-section::after {
  display: none;
}

.process-section .process-inner {
  isolation: isolate;
  z-index: 2;
}

.process-section .process-inner::before,
.process-section .process-inner::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.process-section .process-inner::before {
  z-index: -2;
  background: url("assets/process-background-v1.png") center / cover no-repeat;
  filter: brightness(1.18) saturate(0.94);
}

.process-section .process-inner::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 21, 18, 0.16) 0%, rgba(24, 21, 18, 0.07) 54%, rgba(24, 21, 18, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 16, 14, 0.04), rgba(18, 16, 14, 0.16));
}

.process-section .section-title,
.process-section .step-title {
  color: #fff;
}

.process-section .section-lead,
.process-section .step-desc {
  color: rgba(255, 255, 255, 0.72);
}

.process-section .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.process-section .eyebrow::before {
  background: var(--gold);
  opacity: 0.9;
}

.process-section .timeline-track-line {
  background: rgba(255, 255, 255, 0.24);
}

.process-section .timeline-node {
  background: rgba(35, 31, 27, 0.9);
  border-color: rgba(255, 255, 255, 0.38);
}

.process-section .process-step {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(34, 30, 26, 0.46);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.process-section .step-num,
.process-section .step-label {
  color: rgba(255, 255, 255, 0.58);
}

.process-section .process-step.is-passed {
  border-color: rgba(176, 141, 87, 0.45);
}

.process-section .process-step.is-active {
  border-color: rgba(199, 164, 108, 0.72);
  background: rgba(63, 52, 42, 0.68);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.process-section .process-step.is-active .step-title,
.process-section .process-step.is-active .step-desc {
  color: #fff;
}

/* ---------- Split / two-column prose ---------- */
.split-grid { display: grid; gap: 28px; }
.split-copy { display: grid; gap: 18px; }
.split-copy p { margin: 0; color: var(--text-muted); font-size: 16px; line-height: 1.8; }

/* Why Form & Finish: dark editorial block with an image that always fills its frame. */
.section--why {
  background: var(--primary-deep);
  color: #fff;
}
.section--why .section-title { color: #fff; }
.section--why .split-copy p { color: rgba(255, 255, 255, 0.72); }
.section--why .visual-frame {
  height: clamp(400px, 33vw, 520px);
  min-height: 0;
  background: #312a23;
  border-color: rgba(255, 255, 255, 0.14);
}
.section--why .visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1023px) {
  .section--why .visual-frame { height: 360px; }
}
@media (max-width: 767px) {
  .section--why .visual-frame { height: 300px; }
}

/* ---------- Bullets ---------- */
.bullets {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}
.bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 11px;
  height: 1px;
  background: var(--gold);
}
.bullets--light li { color: rgba(255, 255, 255, 0.8); }
.bullets--light li::before { background: var(--gold); }

/* ---------- Projects ---------- */
.project-card { display: flex; flex-direction: column; background: var(--surface); }
.project-media, .placeholder-media {
  position: relative;
  min-height: 230px;
  background: center / cover no-repeat var(--surface-low);
}
.placeholder-media {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(176, 141, 87, 0.10), rgba(74, 63, 51, 0.16)),
    var(--surface-low);
}
.placeholder-media .ph-label {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--brown);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.project-body { display: flex; flex: 1; flex-direction: column; gap: 12px; padding: 22px 24px; }
.project-kicker {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.filter-chip {
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.filter-chip:hover, .filter-chip.is-active {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: rgba(239, 230, 214, 0.5);
}

/* ---------- Quality / standard storytelling ---------- */
.quality-section { padding: 0; }
.quality-inner {
  position: sticky;
  top: 14vh;
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 4vw, 60px) 0;
}
.quality-copy { align-self: center; max-width: 46ch; }
.quality-title { color: #fff; max-width: 15ch; }
.quality-counter {
  margin-top: 38px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.quality-current { color: var(--gold); font-size: 14px; }
.quality-progress {
  margin-top: 16px;
  width: min(220px, 70%);
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  overflow: hidden;
}
.quality-progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(var(--quality-progress, 0));
  transform-origin: left center;
  transition: transform 0.12s linear;
}
.quality-stage {
  position: relative;
  height: clamp(310px, 44vh, 430px);
}
.quality-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 220, 200, 0.16);
  border-radius: var(--radius-card);
  background-color: rgba(255, 255, 255, 0.04);
  background-image: var(--card-grad);
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(38px) scale(0.97);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
  filter: saturate(0.92);
}
.quality-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.86);
}
.quality-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 3;
  filter: saturate(1);
}
.quality-card.is-before {
  opacity: 0;
  transform: translateY(-32px) scale(0.97);
  z-index: 1;
}
.quality-card.is-after {
  opacity: 0;
  transform: translateY(42px) scale(0.97);
  z-index: 2;
}
.quality-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 34px);
  z-index: 1;
  pointer-events: none;
}
.quality-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 33, 22, 0.88) 0%, rgba(26, 33, 22, 0.5) 42%, rgba(26, 33, 22, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.42) 100%);
  z-index: 2;
}
.quality-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.4vw, 36px);
  max-width: 540px;
}
.quality-card-index {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.quality-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.quality-card p {
  margin: 12px 0 0;
  max-width: 46ch;
  color: rgba(245, 242, 235, 0.82);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.65;
}

@media (min-width: 1024px) {
  .quality-inner {
    grid-template-columns: minmax(280px, 0.5fr) minmax(0, 0.4fr);
    justify-content: space-between;
    gap: clamp(32px, 4vw, 64px);
  }
  .quality-section { min-height: 260vh; }
}

@media (max-width: 1023px) {
  .quality-inner { position: static; min-height: 0; }
  .quality-counter,
  .quality-progress { display: none; }
  .quality-stage {
    position: static;
    height: auto;
    display: grid;
    gap: 18px;
  }
  .quality-card {
    position: relative;
    inset: auto;
    height: clamp(300px, 62vw, 380px);
    opacity: 1;
    transform: none;
    filter: none;
  }
  .quality-card.is-before,
  .quality-card.is-after { opacity: 1; transform: none; }
}

@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .quality-section { min-height: 0; }
  .quality-inner { position: static; min-height: 0; }
  .quality-counter,
  .quality-progress { display: none; }
  .quality-stage { position: static; height: auto; display: grid; gap: 18px; }
  .quality-card {
    position: relative;
    inset: auto;
    height: clamp(320px, 40vh, 390px);
    opacity: 1;
    transform: none;
    filter: none;
  }
  .quality-card.is-before,
  .quality-card.is-after { opacity: 1; transform: none; }
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(70px, 8vw, 116px) 0;
  background: var(--primary-deep);
  color: #fff;
}
.cta-band--green { background: var(--green-deep); }
.cta-band .container { display: grid; gap: 26px; align-items: end; }
.cta-band h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.08;
}
.cta-band p {
  max-width: 58ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
}
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-top { display: grid; gap: 36px; }
.footer-brand p {
  max-width: 40rem;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.footer-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.footer-col { display: grid; gap: 8px; }
.footer-col h4 {
  margin: 0 0 8px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--gold-deep); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12px;
}
.footer-bottom a { color: var(--text-soft); }
.footer-bottom a:hover { color: var(--gold-deep); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--text); color: #fff; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Contact / form ---------- */
.contact-card, .form-card { padding: 28px 26px; box-shadow: var(--shadow-soft); }
.contact-row {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-row span:first-child {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-row a, .contact-row span:last-child { color: var(--text); font-weight: 500; }
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; margin-top: 14px; }
.field label { color: var(--text-muted); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: #fff; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.form-note { margin-top: 16px; color: var(--text-soft); font-size: 13px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 760px) {
  .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid, .process-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-gallery { grid-template-columns: 1fr; gap: 32px; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .scope-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .works-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .works-grid .scope-tile:last-child { grid-column: span 2; }
}
@media (min-width: 1160px) {
  .works-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .works-grid .scope-tile:last-child { grid-column: auto; }
}
@media (max-width: 759px) {
  .audience-tile {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .audience-tile-media,
  .audience-tile:nth-child(even) .audience-tile-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 260px;
  }
  .audience-tile-body,
  .audience-tile:nth-child(even) .audience-tile-body {
    grid-column: 1;
    grid-row: 2;
    padding: 28px;
  }
}
@media (min-width: 1024px) {
  .section-head {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 46px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    align-items: stretch;
    gap: 48px;
  }
  .cards-grid.three, .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .split-grid { grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.84fr); align-items: start; gap: 46px; }
  .cta-band .container, .footer-top { grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr); }
  .contact-grid { grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr); }
}
@media (max-width: 1023px) {
  .nav-links, .nav-cta, .lang-switch { display: none; }
  .nav-toggle { display: grid; }
  .brand-row { grid-template-columns: auto 1fr auto; }
  .hero-panel, .visual-frame { min-height: 360px; }
  .visual-frame--architects { height: 360px; }
}
@media (max-width: 767px) {
  .hero { padding-top: 28px; }
  .hero-title { font-size: clamp(34px, 9vw, 48px); }
  .hero-panel, .visual-frame { min-height: 300px; }
  .visual-frame--architects { height: 300px; }
  .hero-mosaic { inset: 12px; gap: 8px; }
  .footer-columns { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 30px; }
}

/* ========================================================================== */
/* Form & Finish communication redesign — July 2026                              */
/* Keeps the established Form & Finish palette while simplifying the sales path. */
/* ========================================================================== */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 4px;
}

.site-nav {
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-nav.is-scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: 0 8px 24px rgba(47, 42, 36, 0.06);
}

.hero {
  padding-bottom: clamp(56px, 6vw, 88px);
}

.hero-copy {
  align-self: start;
  padding-top: clamp(28px, 4vw, 52px);
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero-process-link {
  align-self: center;
  margin-left: 4px;
}

.hero-note {
  max-width: 42rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.65;
}

.hero-panel--editorial {
  min-height: clamp(500px, 44vw, 600px);
  background: var(--primary-deep);
}

.hero-title.wide {
  max-width: 19ch;
  font-size: clamp(40px, 4.1vw, 56px);
  line-height: 1.06;
}

.hero-panel--editorial::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(47, 42, 36, 0.02) 45%, rgba(31, 28, 24, 0.68) 100%);
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-panel--editorial:hover .hero-main-image {
  transform: scale(1.02);
}

.hero-visual-caption {
  position: absolute;
  left: clamp(22px, 3vw, 40px);
  right: clamp(22px, 3vw, 40px);
  bottom: clamp(22px, 3vw, 38px);
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fff;
}

.hero-visual-caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual-caption strong {
  max-width: 22ch;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 350;
  line-height: 1.2;
}

/* Operating commitments */

.commitments-section {
  background: var(--surface);
}

.commitments-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.commitment-item {
  min-height: 150px;
  padding: 26px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.commitment-item + .commitment-item {
  border-top: 1px solid var(--line);
}

.commitment-item strong {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

/* Client problem and contrast */

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contrast-card {
  min-height: 340px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.contrast-card--muted {
  background: rgba(255, 255, 255, 0.54);
}

.contrast-card--active {
  border-color: rgba(176, 141, 87, 0.42);
  background: var(--primary-deep);
  color: #fff;
}

.contrast-label {
  display: block;
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contrast-card--active .contrast-label {
  color: var(--gold);
}

.contrast-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contrast-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
}

.contrast-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-soft);
}

.contrast-card--active .contrast-list li {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.contrast-card--active .contrast-list li::before {
  content: "✓";
  color: var(--gold);
}

/* Three value pillars */

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.pillar-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(30px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}

.pillar-index {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.pillar-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 350;
  line-height: 1.2;
}

.pillar-card p {
  max-width: 60ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Tangible process evidence */

.evidence-title {
  color: #fff;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.evidence-card {
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.045);
}

.evidence-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.evidence-card-head span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.evidence-card-head strong {
  color: #fff;
  font-size: 16px;
  font-weight: 450;
}

.evidence-card > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.document-preview {
  min-height: 108px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
}

.schedule-preview {
  display: grid;
  gap: 10px;
}

.schedule-preview div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}

.schedule-preview i {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.schedule-preview b {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.report-preview {
  display: grid;
  align-content: center;
  gap: 8px;
}

.status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
}

.status::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.status--done { color: #b9c7b3; }
.status--decision { color: #d7bb8d; }
.status--next { color: rgba(255, 255, 255, 0.45); }

.change-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}

.change-preview i {
  color: var(--gold);
  font-style: normal;
}

.checklist-preview {
  display: grid;
  align-content: center;
  gap: 11px;
  font-size: 11px;
}

.checklist-preview span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-preview i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(176, 141, 87, 0.52);
  color: var(--gold);
  font-style: normal;
}

/* Simplified offer */

.service-scenarios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.scenario-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.scenario-card:hover {
  transform: translateY(-3px);
  border-color: rgba(176, 141, 87, 0.62);
  box-shadow: var(--shadow-soft);
}

.scenario-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-low);
}

.scenario-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(47, 42, 36, 0.68));
}

.scenario-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.scenario-card:hover .scenario-media img {
  transform: scale(1.025);
}

.scenario-media > span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scenario-body {
  padding: clamp(24px, 3vw, 34px);
}

.scenario-body h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 350;
  line-height: 1.22;
}

.scenario-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.scenario-body ul {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.scenario-body li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.scenario-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.mid-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line);
}

.mid-cta p {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 350;
  line-height: 1.3;
}

/* Secondary audiences */

.compact-head .section-title {
  max-width: 20ch;
  font-size: clamp(28px, 3vw, 44px);
}

.secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.secondary-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.secondary-item > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.secondary-item h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.secondary-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Personal responsibility */

.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 72px);
}

.responsibility-copy {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 22px;
}

.responsibility-copy .section-title {
  color: #fff;
}

.responsibility-positioning {
  max-width: 56ch;
  margin: 0;
  padding: 20px 0 20px 24px;
  border-left: 1px solid var(--gold);
  color: #fff;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 350;
  line-height: 1.55;
}

.responsibility-panel {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.055);
}

.responsibility-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(176, 141, 87, 0.7);
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}

.responsibility-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.responsibility-panel h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 350;
  line-height: 1.25;
}

.responsibility-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.responsibility-roles {
  display: grid;
  gap: 0;
  margin: 0;
}

.responsibility-roles div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.responsibility-roles dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.responsibility-roles dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 6vw, 72px);
}

.faq-intro {
  display: grid;
  align-content: start;
  gap: 18px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--text);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  background: var(--gold-deep);
  transition: transform 0.22s ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 66ch;
  margin: -2px 48px 24px 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Conversion-focused contact */

.contact-intro {
  display: grid;
  gap: 18px;
  max-width: 850px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.contact-intro .section-title {
  max-width: 20ch;
}

.contact-grid--redesigned {
  align-items: start;
}

.contact-card--calm {
  display: grid;
  gap: 18px;
  box-shadow: none;
  background: var(--surface-low);
}

.contact-card--calm .contact-list {
  margin-top: 4px;
}

.w-form {
  min-width: 0;
}

.w-form .form-card {
  box-shadow: var(--shadow-soft);
}

.form-intro {
  margin-top: 10px !important;
}

.field label span {
  color: var(--text-soft);
  font-weight: 400;
}

.w-form-done,
.w-form-fail {
  display: none;
}

.form-status {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.form-status strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
  font-weight: 450;
}

.form-status p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.form-status--success {
  border-color: rgba(61, 74, 58, 0.35);
}

.form-status--error {
  border-color: rgba(180, 62, 52, 0.32);
}

.form-status a {
  border-bottom: 1px solid currentColor;
}

.footer-col > span {
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive refinements */

@media (min-width: 640px) {
  .mid-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .contrast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .secondary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .secondary-item {
    padding: 30px 26px;
    border-right: 1px solid var(--line);
  }

  .secondary-item:first-child {
    padding-left: 0;
  }

  .secondary-item:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (min-width: 1024px) {
  .commitment-item + .commitment-item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pillar-card {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 40px 30px;
    border-right: 1px solid var(--line);
  }

  .pillar-card:first-child {
    padding-left: 0;
  }

  .pillar-card:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .service-scenarios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .responsibility-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
    align-items: start;
  }

  .faq-layout {
    grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
    align-items: start;
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
  }
}

@media (max-width: 1023px) {
  .hero-panel--editorial {
    min-height: 440px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-bottom: 52px;
  }

  .hero-actions {
    display: grid;
    justify-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-process-link {
    justify-self: start;
    margin: 4px 0 0;
  }

  .hero-panel--editorial {
    min-height: 360px;
  }

  .contrast-card {
    min-height: 0;
  }

  .change-preview {
    font-size: 10px;
  }

  .responsibility-roles div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-columns {
    gap: 30px;
  }
}

/* Final restoration overrides: the production page uses the visual state from the icon session. */
.hero {
  padding: clamp(32px, 5vw, 64px) 0 0;
}
.hero-copy {
  align-self: auto;
  padding: 18px 0 8px;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-title.wide {
  max-width: 26ch;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.04;
}
.hero-actions { display: flex; justify-items: initial; }

@media (max-width: 767px) {
  .hero { padding-bottom: 0; }
  .hero-actions .btn { width: auto; }
}
