:root {
  --black: #0f0f0f;
  --black-2: #141414;
  --panel: #1a1a1a;
  --white: #f5f5f5;
  --text: #ffffff;
  --muted: #a3a3a3;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: #d4d4d4;
  --orange: #ff4d1c;
  --orange-2: #ff3300;
  --radius-soft: 16px;
  --radius-small: 10px;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  background: var(--black);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::-webkit-scrollbar { width: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 4vw, 48px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  backdrop-filter: blur(6px);
}
.menu-button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.menu-button span {
  width: 26px;
  height: 1.5px;
  background: #fff;
}
.menu-button:hover { color: var(--orange); }
.menu-button:hover span { background: var(--orange); }
.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-contact {
  display: none;
  align-items: center;
  gap: 8px;
}
.header-contact a {
  display: grid;
  gap: 2px;
  min-height: 44px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 7px 14px;
  color: #fff;
  background: rgba(15,15,15,.5);
  backdrop-filter: blur(10px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.header-contact a:hover {
  border-color: rgba(255,77,28,.75);
  background: rgba(255,77,28,.18);
  transform: translateY(-1px);
}
.header-contact span {
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}
.header-contact b {
  color: #fff;
  font-size: 12px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.language-select {
  min-height: 42px;
  min-width: 112px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 0 36px 0 16px;
  color: #fff;
  background-color: rgba(15,15,15,.64);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  font-weight: 800;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
}
.language-select option { color: #111; }
.pill-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}
.pill-cta:hover { transform: scale(1.05); background: var(--orange-2); }
.pill-secondary {
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: rgba(15,15,15,.52);
}
.pill-secondary:hover {
  background: rgba(255,255,255,.14);
}
.mobile-shortcut {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: rgba(15,15,15,.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.mobile-shortcut + .mobile-shortcut {
  display: none;
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.contact-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
}
.contact-modal__panel {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(540px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(15,15,15,.94);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.48);
  transform: translateY(18px) scale(.98);
  transition: transform .24s ease;
}
.contact-modal.open .contact-modal__panel {
  transform: translateY(0) scale(1);
}
.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.05);
}
.contact-modal h2 {
  max-width: 420px;
  margin: 4px 0 0;
  font-size: clamp(28px, 5vw, 46px);
  line-height: .96;
  text-transform: uppercase;
}
.contact-modal p {
  max-width: 430px;
  margin: 0;
  color: #aaa;
  line-height: 1.65;
}
.contact-modal__actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}
.contact-modal__actions a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  padding: 15px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-small);
  color: #fff;
  background: rgba(255,255,255,.05);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.contact-modal__actions a:hover {
  border-color: rgba(255,77,28,.7);
  background: rgba(255,77,28,.14);
  transform: translateY(-1px);
}
.contact-modal__actions i {
  grid-row: span 2;
  width: 20px;
  color: var(--orange);
}
.contact-modal__actions span {
  color: #999;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}
.contact-modal__actions b {
  min-width: 0;
  font-size: clamp(14px, 4vw, 17px);
  letter-spacing: .02em;
  white-space: nowrap;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: end;
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(28px, 5vw, 72px);
  max-height: 100svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #fff;
  background: rgba(15, 15, 15, .96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .3s ease, transform .3s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu-close {
  position: absolute;
  top: 28px;
  right: clamp(24px, 4vw, 48px);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #fff;
  background: transparent;
}
.menu-overlay nav {
  display: grid;
  gap: 12px;
}
.menu-overlay nav a {
  width: fit-content;
  color: #fff;
  font-size: clamp(34px, 6vw, 88px);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}
.menu-overlay nav a:hover {
  color: var(--orange);
  transform: translateX(10px);
}
.menu-contact {
  align-self: end;
  display: grid;
  gap: 10px;
  min-width: min(380px, 100%);
  padding-bottom: 8px;
}
.menu-contact > span,
.menu-contact > a,
.menu-downloads a,
.menu-phone-grid small {
  color: #888;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-contact strong {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
}
.menu-phone-grid,
.menu-downloads {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.menu-phone-grid a,
.menu-downloads a {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-small);
  background: rgba(255,255,255,.04);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.menu-phone-grid a:hover,
.menu-downloads a:hover {
  border-color: rgba(255,77,28,.65);
  background: rgba(255,77,28,.13);
}
.menu-phone-grid b {
  color: #fff;
  font-size: 17px;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 110px clamp(24px, 4vw, 48px) 84px;
}
.hero-media, .hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: brightness(.72);
}
.hero-overlay {
  background: linear-gradient(to top, var(--black), rgba(15,15,15,.42), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: min(1500px, 100%);
  margin: 0 auto;
}
.hero-copy { max-width: 880px; }
.hero-copy p:first-child,
.section-label,
.quote-inner > span {
  display: block;
  margin: 0 0 30px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 {
  max-width: 940px;
  font-size: clamp(52px, 8vw, 118px);
  line-height: .96;
}
h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
}
h3 {
  font-size: clamp(28px, 3.3vw, 52px);
  line-height: 1.04;
}
p {
  color: var(--muted);
  line-height: 1.7;
}
.hero-lead {
  max-width: 520px;
  margin: 22px 0 0;
  color: #d4d4d4;
  font-size: 16px;
  font-weight: 300;
}
.round-link {
  display: grid;
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  transition: transform .25s ease;
}
.round-link:hover { transform: scale(1.08) rotate(45deg); }
.round-link svg { width: 34px; height: 34px; stroke-width: 1.5; }
.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 36px;
  width: min(1500px, 100%);
  margin: 42px auto 0;
}
.hero-meta article {
  min-width: 150px;
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 18px;
}
.hero-meta span {
  color: #bdbdbd;
  font-size: 12px;
  text-transform: uppercase;
}
.hero-meta strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}
.quote-section,
.advantages-section,
.projects-section,
.faq-section,
.map-section {
  background: var(--white);
  color: var(--black);
}
.quote-section { padding: clamp(92px, 10vw, 140px) 24px; }
.quote-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}
.quote-inner h2 {
  font-size: clamp(30px, 4.2vw, 58px);
  letter-spacing: 0;
  text-transform: none;
}
.quote-inner p {
  max-width: 700px;
  margin: 28px auto 0;
  color: #555;
  font-size: 18px;
}
.agent-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}
.agent-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 800;
}
.agent-lockup strong { display: block; }
.agent-lockup small {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.advantages-section { padding: 0 clamp(24px, 4vw, 48px) clamp(92px, 10vw, 140px); }
.advantages-grid {
  display: grid;
  grid-template-columns: minmax(360px, .42fr) minmax(0, .58fr);
  gap: clamp(34px, 5vw, 74px);
  width: min(1500px, 100%);
  margin: 0 auto;
}
.advantage-list {
  min-width: 0;
  padding-top: 48px;
}
.advantage-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 76px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  color: #888;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: padding .25s ease, color .25s ease, background .25s ease;
}
.advantage-row:first-of-type { border-top: 1px solid var(--line-light); }
.advantage-row:hover { padding-left: 18px; color: #111; }
.advantage-row.active {
  margin-inline: -16px;
  padding-inline: 16px;
  border-radius: var(--radius-small);
  background: #fff;
  color: #111;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.advantage-row svg { color: var(--orange); width: 18px; }
.advantage-image {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: clamp(520px, 42vw, 620px);
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: #111;
  box-shadow: 0 34px 74px rgba(0,0,0,.18);
}
.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.82);
  transition: transform .7s ease, opacity .35s ease;
}
.advantage-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(0,0,0,.04), rgba(0,0,0,.18) 45%, rgba(0,0,0,.42));
}
.advantage-image:hover img { transform: scale(1.05); }
.advantage-image.is-switching img { opacity: .25; transform: scale(1.06); }
.advantage-image h3 {
  position: absolute;
  z-index: 1;
  top: clamp(26px, 3vw, 44px);
  right: clamp(24px, 3vw, 42px);
  max-width: min(390px, calc(100% - 72px));
  color: #fff;
  text-align: right;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: normal;
}
.advantage-image > span {
  position: absolute;
  z-index: 1;
  left: 44px;
  bottom: 44px;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.innovation-section {
  padding: clamp(92px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--black-2);
  border-top: 1px solid var(--line-dark);
}
.wide-wrap {
  width: min(1500px, 100%);
  margin: 0 auto;
}
.innovation-panels {
  display: flex;
  min-height: 720px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.innovation-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  padding: clamp(28px, 4vw, 48px);
  transition: opacity .35s ease, transform .35s ease;
}
.innovation-panel.is-switching { opacity: .82; transform: none; }
.innovation-panel h3 { color: #fff; }
.innovation-panel p { max-width: 520px; }
.innovation-panel img {
  width: min(100%, 1080px);
  height: clamp(360px, 34vw, 520px);
  margin: 30px 0;
  border-radius: var(--radius-soft);
  object-fit: cover;
  opacity: .82;
  transition: opacity .7s ease, filter .7s ease, transform .9s ease;
}
.innovation-panel:hover img { transform: scale(1.025); opacity: 1; }
.innovation-panel.is-switching img {
  opacity: 0;
  filter: blur(8px);
  transform: none;
}
.panel-foot {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}
.panel-foot span {
  color: rgba(255,255,255,.36);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.panel-foot ul {
  max-width: 300px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  text-align: right;
}
.strip {
  position: relative;
  flex: 0 0 66px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  color: rgba(255,255,255,.36);
  background: transparent;
  transition: background .25s ease, color .25s ease;
}
.strip:hover { color: #fff; background: rgba(255,255,255,.04); }
.strip.active {
  border-radius: var(--radius-small);
  color: #fff;
  background: rgba(255, 77, 28, .16);
}
.strip.active::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--orange);
}
.strip span {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.strip b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.strip.active-trigger { order: -1; }
.quality-inline {
  display: none;
}
.advantage-inline {
  display: none;
}

.projects-section { padding: clamp(92px, 10vw, 140px) clamp(24px, 4vw, 48px); }
.project-header {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: end;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 34px;
}
.project-header p { max-width: 380px; color: #666; text-align: right; }
.project-header > div {
  display: flex;
  gap: 22px;
  align-items: center;
}
.small-circle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  transition: background .25s ease, color .25s ease;
}
.small-circle:hover { color: #fff; background: var(--orange); border-color: var(--orange); }
.gallery-actions {
  display: flex;
  gap: 10px;
}
.project-gallery-viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 48px 0 92px;
  padding-bottom: 34px;
}
.project-gallery-viewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 52px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(245,245,245,0), rgba(245,245,245,.92));
}
.project-gallery {
  display: flex;
  gap: 34px;
  will-change: transform;
  width: max-content;
  transform: translate3d(0, 0, 0);
}
.project-gallery figure {
  position: relative;
  flex: 0 0 clamp(620px, 54vw, 980px);
  height: clamp(420px, 31vw, 560px);
  margin: 0;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: #111;
  opacity: 1;
  transform: none;
  box-shadow: 0 30px 70px rgba(0,0,0,.2), 0 10px 24px rgba(0,0,0,.12);
}
.project-gallery figure:nth-child(even) { margin-top: 64px; }
.project-gallery img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-gallery figure:hover img { transform: scale(1.08); }
.project-gallery span {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  mix-blend-mode: difference;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.project-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-light);
}
.project-list button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  padding: 34px 0;
  color: #999;
  background: transparent;
  text-align: left;
}
.project-list h3 {
  color: inherit;
  font-weight: 400;
  transition: color .25s ease;
}
.project-list button:hover h3 { color: #111; }
.project-list button.active h3 { color: #111; font-weight: 600; }
.mode-inline {
  display: none;
  width: 100%;
}
.mode-readout {
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  gap: 28px;
  margin-top: 44px;
  padding: 28px;
  border-radius: var(--radius-soft);
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
  transition: opacity .25s ease, transform .25s ease;
}
.mode-readout.is-switching { opacity: .35; transform: translateY(10px); }
.mode-readout h3 { font-size: 32px; }
.mode-readout p { margin: 0; color: #555; }
.mode-readout ul { margin: 0; color: #777; }

.map-section { padding: clamp(92px, 10vw, 140px) clamp(24px, 4vw, 48px); }
.map-section h2 {
  max-width: 980px;
  margin-bottom: 34px;
  word-spacing: .06em;
}
.map-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.map-tabs button {
  min-height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 0 20px;
  color: #111;
  background: transparent;
  font-weight: 800;
}
.map-tabs button.active,
.map-tabs button:hover {
  color: #fff;
  background: #111;
}
.map-shell {
  display: grid;
  grid-template-columns: 1fr 370px;
  min-height: 620px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: #eee;
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
}
.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(.15) saturate(.75);
}
.map-shell aside {
  padding: 36px;
  background: #ece4d8;
}
.map-shell aside span {
  color: #777;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.map-shell aside h3 {
  margin-top: 14px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.06;
  overflow-wrap: normal;
  word-spacing: .05em;
}
.map-shell aside p, .map-shell aside li { color: #6b6259; }
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.map-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(17,17,17,.14);
  border-radius: 999px;
  padding: 0 16px;
  color: #111;
  background: rgba(255,255,255,.34);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.map-actions a:hover {
  color: #fff;
  border-color: #111;
  background: #111;
}

.faq-section { padding: 0 clamp(24px, 4vw, 48px) clamp(92px, 10vw, 140px); }
.faq-wrap {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}
.faq-wrap h2 { margin-bottom: 42px; font-size: clamp(30px, 4vw, 50px); }
details {
  border-bottom: 1px solid var(--line-light);
  text-align: left;
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 22px 0;
  cursor: pointer;
  color: #222;
  font-size: 20px;
  font-weight: 300;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--orange); }
details p { margin: 0 0 22px; color: #666; }
details[open] summary svg { transform: rotate(180deg); }

.about-section {
  padding: clamp(96px, 10vw, 150px) clamp(24px, 4vw, 48px);
  color: #fff;
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 96px);
  width: min(1500px, 100%);
  margin: 0 auto;
  align-items: start;
}
.about-content {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
  min-width: 0;
}
.about-heading h2 {
  max-width: 760px;
  margin-top: 28px;
  color: #fff;
  font-size: clamp(44px, 5vw, 82px);
  line-height: .94;
  text-transform: uppercase;
}
.about-heading p {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255,255,255,.68);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.5;
}
.about-portrait {
  margin: 0;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: #d8d8d8;
  box-shadow: 0 30px 72px rgba(0,0,0,.28);
}
.about-portrait img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.92) contrast(1.02);
}
.about-copy {
  display: grid;
  gap: 26px;
  padding-top: 0;
  border-top: 1px solid var(--line-dark);
}
.about-copy > p:first-child { padding-top: 30px; }
.about-copy p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line-dark);
}
.about-stats article {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  background: #161616;
}
.about-stats strong {
  color: var(--orange);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}
.about-stats span {
  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-section {
  padding: clamp(92px, 10vw, 140px) clamp(24px, 4vw, 48px);
  background: var(--black-2);
  border-top: 1px solid var(--line-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(54px, 8vw, 110px);
  width: min(1500px, 100%);
  margin: 0 auto;
}
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
.contact-info h2 { color: #fff; }
.contact-info h2::after { content: "."; color: var(--orange); }
.contact-info p { max-width: 520px; }
.contact-agent {
  display: grid;
  gap: 5px;
  max-width: 360px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-agent span,
.contact-agent small {
  color: #777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-agent strong {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
}
.contact-lines {
  display: grid;
  gap: 18px;
}
.contact-lines a {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #fff;
}
.contact-lines a span {
  display: grid;
  gap: 3px;
}
.contact-lines a b {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-lines a small {
  color: #aaa;
  font-size: 14px;
  letter-spacing: .02em;
}
.contact-lines i,
.contact-lines svg {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--orange);
}
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.lead-form label {
  display: grid;
  gap: 9px;
  color: #777;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lead-form .full,
.lead-form button { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-small);
  padding: 14px 16px;
  color: #fff;
  background: #141414;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
select option { color: #111; }
textarea { resize: vertical; }
.lead-form button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-small);
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lead-form button:hover { background: var(--orange-2); }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  padding: 64px clamp(24px, 4vw, 48px) 32px;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}
.site-footer p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.site-footer small { color: #666; font-size: 10px; text-transform: uppercase; }

@media (max-width: 1200px) {
  .site-header {
    padding: 20px clamp(18px, 3vw, 32px);
  }
  .brand {
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: .16em;
  }
  .header-contact {
    display: none;
  }
  .mobile-shortcut {
    min-height: 42px;
    padding: 0 16px;
    font-size: 11px;
  }
  .header-actions > .mobile-shortcut + .mobile-shortcut {
    display: none;
  }
  .header-actions > .pill-secondary {
    display: none;
  }
  .pill-cta {
    min-height: 42px;
    padding: 0 18px;
    font-size: 11px;
  }
  .language-select {
    min-height: 42px;
    min-width: 94px;
    padding-left: 14px;
  }
}

@media (max-width: 1040px) {
  .advantages-grid,
  .about-grid,
  .contact-grid,
  .map-shell,
  .mode-readout {
    grid-template-columns: 1fr;
  }
  .about-portrait { max-width: 420px; }
  .innovation-panels { flex-direction: column; min-height: auto; }
  .innovation-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .innovation-panel img {
    height: clamp(320px, 56vw, 520px);
  }
  .strip {
    flex-basis: auto;
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .strip span, .strip b {
    position: static;
    transform: none;
  }
  .strip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 0 24px;
  }
  .project-gallery figure { flex-basis: 86vw; }
  .project-gallery figure:nth-child(even) { margin-top: 0; }
}

@media (max-width: 700px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 18px;
  }
  .brand {
    position: static;
    transform: none;
    justify-self: end;
    font-size: 16px;
    letter-spacing: .16em;
  }
  .header-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 88px;
    gap: 10px;
  }
  .header-contact,
  .header-actions > .pill-cta {
    display: none;
  }
  .language-select {
    order: 3;
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 28px 0 10px;
    background-position: right 10px center;
    background-size: 12px 12px;
    font-size: 11px;
  }
  .mobile-shortcut {
    order: 1;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 0 12px;
    color: #fff;
    background: rgba(15,15,15,.58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }
  .mobile-shortcut + .mobile-shortcut {
    order: 2;
    display: inline-flex;
  }
  .menu-overlay {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 28px;
    min-height: 100svh;
    padding: 74px 20px max(28px, env(safe-area-inset-bottom));
  }
  .menu-overlay nav {
    gap: 8px;
  }
  .menu-overlay nav a {
    font-size: clamp(32px, 12vw, 54px);
    line-height: .98;
  }
  .menu-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
  .menu-overlay > div { align-self: start; }
  .menu-contact {
    min-width: 0;
    padding-bottom: 0;
  }
  .menu-phone-grid,
  .menu-downloads {
    margin-top: 8px;
  }
  .menu-phone-grid a,
  .menu-downloads a {
    padding: 12px;
  }
  .menu-phone-grid b {
    font-size: 15px;
  }
  .contact-modal {
    padding: 10px;
  }
  .contact-modal__panel {
    gap: 14px;
    padding: 24px 20px;
  }
  .contact-modal h2 {
    max-width: 220px;
    font-size: 24px;
    line-height: 1;
  }
  .contact-modal p {
    font-size: 13px;
    line-height: 1.55;
  }
  .contact-modal__actions {
    gap: 8px;
  }
  .contact-modal__actions a {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 10px;
    padding: 12px;
  }
  .contact-modal__actions span {
    font-size: 9px;
    letter-spacing: .12em;
  }
  .contact-modal__actions b {
    font-size: 13px;
  }
  .hero-section { padding: 140px 20px 76px; }
  .hero-content { align-items: start; flex-direction: column; }
  .round-link { width: 72px; height: 72px; }
  .hero-meta { flex-direction: column; gap: 16px; }
  .innovation-panel { display: none; }
  .strip {
    min-height: auto;
    padding: 24px;
  }
  .strip.active {
    padding-bottom: 30px;
  }
  .quality-inline {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: rgba(255,255,255,.64);
    transition: max-height .35s ease, opacity .25s ease;
  }
  .strip.active .quality-inline {
    max-height: 860px;
    opacity: 1;
  }
  .quality-inline img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-top: 8px;
    box-shadow: 0 24px 34px rgba(0,0,0,.24);
  }
  .quality-inline strong {
    color: #fff;
    font-size: 22px;
    line-height: 1.12;
    text-transform: uppercase;
  }
  .quality-inline p {
    margin: 0;
    color: rgba(255,255,255,.64);
  }
  .quality-inline ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,.64);
  }
  .advantage-image { display: none; }
  .advantage-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    min-height: auto;
    padding: 24px 0;
  }
  .advantage-row.active {
    margin-inline: 0;
    padding: 24px 16px 28px;
  }
  .advantage-inline {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
  }
  .advantage-row.active .advantage-inline {
    max-height: 720px;
    opacity: 1;
  }
  .advantage-inline img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 24px 34px rgba(0,0,0,.12);
  }
  .advantage-inline strong {
    color: #111;
    font-size: 22px;
    line-height: 1.12;
    text-transform: uppercase;
  }
  .project-header, .project-header > div, .site-footer {
    align-items: start;
    flex-direction: column;
  }
  .project-header p { text-align: left; }
  .project-gallery figure {
    flex-basis: 86vw;
    height: 360px;
  }
  .project-list button {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 28px 0;
  }
  .project-list button.active {
    padding-bottom: 34px;
  }
  .mode-inline {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: #555;
    transition: max-height .35s ease, opacity .25s ease;
  }
  .project-list button.active .mode-inline {
    max-height: 420px;
    opacity: 1;
  }
  .mode-inline strong {
    color: #111;
    font-size: 22px;
    line-height: 1.1;
    text-transform: uppercase;
  }
  .mode-inline p {
    margin: 0;
    color: #555;
  }
  .mode-inline ul {
    margin: 0;
    padding-left: 18px;
    color: #777;
  }
  .mode-readout { display: none; }
  .about-portrait { max-width: 100%; }
  .about-copy > p:first-child { padding-top: 24px; }
  .about-stats { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
}
