/* ─────────────────────────────────────────────────────────────────
   TOKENS
─────────────────────────────────────────────────────────────────*/
/* ── Subpage hero (Brands / HSE) ── */
.subhero {
  position: relative;
  background: var(--bg);
  color: #F5F0EA;
  padding: clamp(120px, 16vw, 200px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 12% 0%, color-mix(in oklch, var(--accent) 22%, transparent), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  pointer-events: none;
}
.subhero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 82%;
  z-index: 0;
  background: url(assets/hero-skyline-clean.png?v=1) center bottom / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%);
  mask-image: linear-gradient(180deg, transparent, #000 60%);
}
.subhero .container { position: relative; z-index: 1; }
.subhero-about::after {
  top: 0;
  height: 100%;
  background: url(assets/map-turkmenistan.svg?v=4) no-repeat right center;
  background-size: auto 94%;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(180deg, #000 84%, transparent);
  mask-image: linear-gradient(180deg, #000 84%, transparent);
}
.subhero-brands { padding-bottom: clamp(90px, 11vw, 150px); }
.subhero-brands::before {
  background:
    radial-gradient(ellipse at 12% 0%, color-mix(in oklch, var(--accent) 22%, transparent), transparent 55%),
    radial-gradient(ellipse at 82% 118%, color-mix(in oklch, var(--accent) 16%, transparent), transparent 46%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.subhero-brands::after {
  top: 0;
  height: 100%;
  background: url(assets/globe-brands.svg?v=1) no-repeat right 4% center;
  background-size: auto 96%;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%);
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}
.subhero-careers::after {
  top: 0;
  height: 100%;
  background: url(assets/lineart-handshake.png?v=1) no-repeat right 5% center;
  background-size: auto 62%;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.subhero-hse::after {
  top: 0;
  height: 100%;
  background: url(assets/hse-motif.svg?v=1) no-repeat right 4% center;
  background-size: auto 82%;
  opacity: 0.4;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%);
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}
.subhero-projects::after {
  top: 0;
  left: auto;
  right: 0;
  width: 1320px;
  height: 100%;
  background:
    url(assets/lineart-ballvalve.png?v=1) no-repeat right 50% bottom 28% / auto 49%,
    url(assets/lineart-tower.png?v=2) no-repeat right 28% bottom 14% / auto 76%,
    url(assets/lineart-engine.png?v=1) no-repeat right -6% bottom 26% / auto 52%;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 52%);
  mask-image: linear-gradient(90deg, transparent, #000 52%);
}
.subhero-services::after {
  top: 0;
  height: 100%;
  background: url(assets/lineart-engineers.png?v=3) no-repeat right bottom;
  background-size: auto 96%;
  opacity: 0.2;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.projects-sec { position: relative; overflow: hidden; }
.projects-sec .container { position: relative; z-index: 1; }
.proj-bg {
  position: absolute;
  z-index: 0;
  opacity: 0.13;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.proj-bg-valve  { width: min(240px, 22vw); height: 360px; top: 1%;  left: -54px;  background-image: url(assets/lineart-valve2-ink.png?v=2); }
.proj-bg-engine { width: min(540px, 42vw); height: 460px; top: 36%; right: -130px; background-image: url(assets/lineart-engine-ink.png?v=1); }
.proj-bg-crane  { width: min(180px, 16vw); height: 520px; bottom: 0; left: 42%; background-image: url(assets/lineart-tower-ink.png?v=1); }
@media (max-width: 880px) { .proj-bg { display: none; } }
.subhero-kicker {
  display: inline-block;
  font-family: var(--mono-font, monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.subhero h1 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.subhero h1 em { font-style: normal; color: var(--accent); }
.subhero p {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(245,240,234,0.72);
}
.subpage-body {
  background: var(--paper);
  padding: clamp(56px, 8vw, 110px) 0;
}
.nav-links a.active { color: var(--accent); }
.subpage-note {
  color: var(--ink-3);
  font-size: 16px;
}

/* ── Careers: empty state ── */
.careers { background: var(--paper); padding: clamp(56px, 8vw, 120px) 0; }
.careers-empty {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
}
.careers-empty-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--accent) 12%, white);
  color: var(--accent);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.careers-empty-badge span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.careers-empty h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.careers-empty p {
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-3);
}
.careers-empty .btn { margin: 0 auto; }
.careers-empty-foot {
  margin-top: 26px;
  font-family: var(--mono-font);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}
.careers-empty-foot a { color: var(--accent); font-weight: 600; }

/* ── Careers: why join ── */
.careers-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.careers-why-head h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.careers-why-head h2 em { font-style: normal; color: var(--accent); }
.careers-why-head p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 520px;
}
.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display-font);
  font-weight: 600;
  font-size: clamp(16px, 1.7vw, 19px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.benefit-list li:first-child { padding-top: 0; }
.benefit-list li:last-child { border-bottom: none; padding-bottom: 0; }
.benefit-list li svg {
  flex: none;
  width: 26px; height: 26px;
  color: var(--accent);
  background: color-mix(in oklch, var(--accent) 13%, white);
  border-radius: 999px;
  padding: 5px;
}

/* ── Careers: talent pool ── */
.talent-pool {
  background:
    radial-gradient(ellipse at 82% 14%, color-mix(in oklch, var(--accent) 18%, transparent), transparent 52%),
    radial-gradient(ellipse at 12% 84%, rgba(0,183,255,0.10), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: clamp(56px, 8vw, 110px) 0;
}
.talent-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 60px);
}
.talent-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--accent) 20%, transparent);
  color: var(--accent);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.talent-badge::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.talent-card h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #fff;
}
.talent-card p {
  margin: 0 auto 16px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,240,234,0.74);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 480px;
  margin: 28px auto 24px;
  text-align: left;
  cursor: pointer;
}
.consent input {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent span {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245,240,234,0.66);
}
.consent a { color: var(--accent); }
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
}
.talent-foot {
  margin-top: 24px;
  font-family: var(--mono-font);
  font-size: 12.5px;
  color: rgba(245,240,234,0.5);
}
.talent-foot a { color: var(--accent); font-weight: 600; }
@media (max-width: 820px) { .careers-why { grid-template-columns: 1fr; } }

/* ── About: journey timeline ── */
.about-journey { background: var(--paper); padding: clamp(56px, 8vw, 110px) 0; }
.about-head { max-width: 760px; margin: 0 0 clamp(40px, 5vw, 64px); }
.about-head h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.about-head h2 em { font-style: normal; color: var(--accent); }
.about-head p { margin: 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--ink-3); }
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-left: 10px;
  counter-reset: tl;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 17px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, transparent, color-mix(in oklch, var(--accent) 55%, transparent) 6%, color-mix(in oklch, var(--accent) 55%, transparent) 94%, transparent);
}
.timeline-item {
  position: relative;
  counter-increment: tl;
  padding: 0 0 clamp(24px, 3vw, 40px) clamp(52px, 6vw, 70px);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2px; top: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/17px 17px no-repeat;
  box-shadow: 0 0 0 6px var(--paper);
  z-index: 1;
}
.timeline-step {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in oklch, var(--accent) 12%, white);
  padding: 5px 12px;
  border-radius: 999px;
}
.tl-body {
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 32px);
  box-shadow: 0 10px 34px rgba(11,15,18,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.timeline-item:hover .tl-body {
  transform: translateY(-3px);
  border-color: rgba(11,15,18,0.14);
  box-shadow: 0 22px 52px rgba(11,15,18,0.09);
}
.timeline-item h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.timeline-item p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-2); max-width: 760px; }
.timeline-item p + p { margin-top: 12px; }

/* ── About: values ── */
.about-values { background: radial-gradient(ellipse at 82% 0%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 55%), linear-gradient(180deg, var(--bg-2), var(--bg)); color: #F5F0EA; padding: clamp(56px, 8vw, 110px) 0; }
.about-values .about-head h2 { color: #fff; }
.about-values .about-head p { color: rgba(245,240,234,0.72); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px;
}
.value-card .v-n {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.value-card h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
  color: #fff;
}
.value-card p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(245,240,234,0.72); }

/* ── About: vision / mission / markets ── */
.about-vmm { background: var(--paper); padding: clamp(56px, 8vw, 110px) 0; }
.vmm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vmm-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  padding: 32px;
  border-top: 3px solid var(--accent);
}
.vmm-card h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.vmm-card p { margin: 0 0 12px; font-size: 15px; line-height: 1.62; color: var(--ink-2); }
.vmm-card p:last-child { margin-bottom: 0; }

/* ── About: results / KPIs ── */
.about-results { background: radial-gradient(ellipse at 82% 0%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 55%), linear-gradient(180deg, var(--bg-2), var(--bg)); color: #F5F0EA; padding: clamp(56px, 8vw, 110px) 0; }
.about-results .about-head h2 { color: #fff; }
.about-results .about-head p { color: rgba(245,240,234,0.72); }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kpi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 34px 30px;
}
.kpi-n {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.kpi-card p { margin: 16px 0 0; font-size: 16px; line-height: 1.55; color: rgba(245,240,234,0.8); }

@media (max-width: 880px) {
  .values-grid, .vmm-grid, .kpi-grid { grid-template-columns: 1fr; }
}

/* ── Projects: animated results (step by step) ── */
.stats-sec { background: radial-gradient(ellipse at 82% 0%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 55%), linear-gradient(180deg, var(--bg-2), var(--bg)); color: #F5F0EA; padding: clamp(52px, 7vw, 96px) 0; }
.stats-sec .about-head { margin-bottom: clamp(36px, 4vw, 56px); }
.stats-sec .about-head h2 { color: #fff; }
.stats-sec .about-head p { color: rgba(245,240,234,0.72); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: clamp(22px, 2.2vw, 30px) clamp(18px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}
.stat:hover {
  border-color: color-mix(in oklch, var(--accent) 40%, transparent);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}
.stat-ico {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.stat-ico svg { width: 34px; height: 34px; display: block; }
.stat-n {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.stat-n .suf { color: var(--accent); margin-left: 2px; }
.stat-line {
  width: 34px; height: 3px; border-radius: 2px;
  background: var(--accent);
  margin: 16px 0 14px;
}
.stat-l { display: block; font-size: 14.5px; line-height: 1.5; color: rgba(245,240,234,0.7); max-width: 200px; }
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ── Services: faint category icon watermark per card ── */
.service-card { position: relative; overflow: hidden; }
.service-card-bg {
  position: absolute;
  right: 20px; bottom: 20px;
  width: 72px; height: 72px;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.service-card-bg svg { width: 100%; height: 100%; display: block; }
.service-card > *:not(.service-card-bg) { position: relative; z-index: 1; }

/* ── About: sticky-left / scrolling-right split ── */
.about-split-section {
  background:
    radial-gradient(ellipse at 82% 12%, color-mix(in oklch, var(--accent) 18%, transparent), transparent 50%),
    radial-gradient(ellipse at 10% 82%, rgba(0,183,255,0.10), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  color: #F5F0EA;
  padding: clamp(56px, 8vw, 120px) 0;
}
.about-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
}
.about-split::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,183,255,0.45) 12%, rgba(0,183,255,0.45) 88%, transparent);
}
.about-split-left {
  align-self: start;
}
.about-split-left h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: #fff;
}
.about-split-left h2 em { font-style: normal; color: var(--accent); }
.split-block { margin-top: 30px; }
.split-block:first-of-type { margin-top: 0; }
.split-block h4 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #fff;
}
.split-block p { margin: 0; font-size: 16px; line-height: 1.7; letter-spacing: 0; color: rgba(245,240,234,0.72); }
.about-split-right { padding-top: clamp(96px, 12vw, 172px); }
.right-block { padding: 30px 0; }
.right-block:first-child { padding-top: 0; }
.right-block:last-child { padding-bottom: 0; }
.right-pill {
  display: inline-block;
  white-space: nowrap;
  background: var(--accent);
  color: #001218;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  padding: 8px 18px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.nowrap-name { white-space: nowrap; }
.right-block p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: rgba(245,240,234,0.72);
  max-width: 560px;
}
.right-block p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-split::before { display: none; }
  .about-split-left { position: static; }
  .right-block { padding: 28px 0; }
}

/* ── Projects list ── */
.projects-sec { background: var(--paper); padding: clamp(56px, 8vw, 110px) 0; }
.projects-list { margin-top: clamp(32px, 4vw, 56px); }
.project-row {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(34px, 4vw, 56px) 0;
  border-top: 1px solid var(--line-light);
}
.project-row:first-child { border-top: 0; padding-top: 0; }
.project-aside { align-self: center; }
.project-media { align-self: center; }
.project-media image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 1px solid var(--line-light);
  overflow: hidden;
  filter: brightness(1.18);
}
.project-idx {
  font-family: var(--mono-font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.project-row h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.project-body p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
.project-body p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .project-row { grid-template-columns: 1fr; gap: 16px; }
  .project-media image-slot { aspect-ratio: 16 / 9; }
}

:root {
  --accent: #00B7FF;
  --bg: #0A1724;
  --bg-2: #112436;
  --surface-light: #F5F0EA;
  --surface-light-2: #ECE5DC;
  --ink: #0A1724;
  --ink-2: #2A3A48;
  --ink-3: #6A7886;
  --paper: #F8F4EE;
  --line: rgba(255,255,255,0.08);
  --line-light: rgba(10,23,36,0.1);

  --display-font: 'Bai Jamjuree', sans-serif;
  --body-font: 'Montserrat', sans-serif;
  --mono-font: 'Montserrat', sans-serif;

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --rad: 20px;

  --s: 16px; /* density base */
}

:root[data-density="compact"]    { --s: 12px; }
:root[data-density="comfortable"] { --s: 16px; }
:root[data-density="spacious"]   { --s: 22px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.display {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
.display em {
  font-style: normal;
  font-family: var(--display-font);
  color: var(--accent);
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────
   BUTTONS
─────────────────────────────────────────────────────────────────*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 16px 24px; font-size: 15px; }
.btn-primary {
  background: var(--accent);
  color: #001218;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: color-mix(in oklch, var(--accent) 92%, white 8%);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}
.btn-light {
  background: var(--accent);
  color: #001218;
  border-color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────
   TOP UTILITY BAR
─────────────────────────────────────────────────────────────────*/
.topbar {
  background: #ffffff;
  color: #3A4750;
  font-size: 13px;
  border-bottom: none;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-contact {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-contact a, .topbar-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4A5860;
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.topbar-contact a:hover { color: var(--accent); }
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7A8893;
}
.status-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
  margin-right: 4px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(74,222,128,0.05); }
}
.lang-toggle {
  display: inline-flex;
  background: rgba(11,15,18,0.05);
  border-radius: 999px;
  padding: 2px;
  margin-left: 8px;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: #7A8893;
  font-family: var(--mono-font);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}
.lang-toggle .active { background: var(--accent); color: #ffffff; }

/* ─────────────────────────────────────────────────────────────────
   NAV
─────────────────────────────────────────────────────────────────*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(11,15,18,0.08);
  transition: padding 200ms ease, box-shadow 200ms ease;
}
.site-header .nav {
  position: relative;
  top: auto;
  z-index: 2;
}
.nav-scrolled {
  box-shadow: 0 10px 30px rgba(11,15,18,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
.nav-scrolled .nav-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.footer .logo-img { height: 70px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.logo-text span {
  font-family: var(--mono-font);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(11,15,18,0.5);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  white-space: nowrap;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(11,15,18,0.65);
  font-weight: 500;
  transition: color 160ms, background 160ms;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(11,15,18,0.05);
}
.nav-cta { padding: 10px 20px; }

.nav-lang.lang-toggle { margin-left: 4px; }

.mobile-menu .lang-toggle {
  align-self: center;
  margin: 6px 0 4px;
  background: rgba(11,15,18,0.06);
}
.mobile-menu .lang-toggle button {
  font-size: 13px;
  padding: 7px 18px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px var(--pad) 20px;
  background: #ffffff;
  border-top: 1px solid rgba(11,15,18,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 8px;
  color: rgba(11,15,18,0.75);
  font-weight: 500;
  font-size: 15px;
  border-radius: 10px;
}
.mobile-menu a.active { color: var(--accent); }
.mobile-menu a:hover { background: rgba(11,15,18,0.05); }
.mobile-menu-divider { height: 1px; background: rgba(11,15,18,0.08); margin: 10px 8px; }
.mobile-menu a.mobile-menu-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono-font);
  font-size: 13px;
  color: rgba(11,15,18,0.7);
}
.mobile-menu a.mobile-menu-cta {
  justify-content: center;
  margin: 10px 8px 0;
}

/* ─────────────────────────────────────────────────────────────────
   HERO
─────────────────────────────────────────────────────────────────*/
.hero {
  position: relative;
  background: var(--bg);
  color: #F5F0EA;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px);
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 90%;
  background: radial-gradient(closest-side, color-mix(in oklch, var(--accent) 35%, transparent), transparent 70%);
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

/* ── LAYERED PARALLAX SCENE ── */
.hero { padding-bottom: clamp(120px, 16vw, 260px); }
.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.scene-layer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 90%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
.scene-skyline {
  bottom: 0;
  height: 54%;
  opacity: 0.4;
  background-size: min(1200px, 96%) auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 89%, transparent 100%), linear-gradient(180deg, transparent 0, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 89%, transparent 100%), linear-gradient(180deg, transparent 0, #000 42%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.scene-gears {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scene-gears .gear { position: absolute; pointer-events: auto; }
.gear {
  display: block;
  opacity: 0.3;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  transition: opacity 200ms ease;
  cursor: pointer;
}
.gear:hover { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .gear { animation: none !important; }
}

.hero-inner { z-index: 2; }
.hero-glow { z-index: 1; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.72fr;
  gap: 56px;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-copy h1.display {
  font-size: clamp(30px, 3.8vw, 52px);
  margin-top: 8px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,240,234,0.72);
  max-width: 560px;
  margin: 0;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}
.hero-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-meta > div:not(.divider-v) {
  display: flex;
  flex-direction: column;
}
.hero-meta-k {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-meta-v {
  font-family: var(--mono-font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,240,234,0.5);
}
.divider-v {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* HERO ART */
.hero-art {
  position: relative;
  height: 432px;
}
.hero-card {
  position: absolute;
  background: rgba(20,26,32,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-card-main {
  inset: 0;
  padding: 16px;
  overflow: hidden;
}
.hero-card-frame {
  position: relative;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, color-mix(in oklch, var(--accent) 20%, transparent), transparent 50%),
    linear-gradient(160deg, #1A2129 0%, #0D1216 100%);
}
.hero-card-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8% 12%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
}
.hero-card-frame.photo {
  background: #0B0F12;
}
.hero-card-frame.photo img {
  object-fit: cover;
  object-position: center 72%;
  padding: 0;
  filter: none;
}
.hero-card-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-card-stat .num {
  display: block;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.hero-card-stat .lbl {
  display: block;
  font-family: var(--mono-font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,240,234,0.7);
  margin-top: 6px;
}
.hero-card-floating {
  bottom: -60px;
  right: -30px;
  left: auto;
  width: 232px;
  padding: 14px;
  transform: scale(0.84);
  transform-origin: bottom right;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #4ADE80;
  background: rgba(74,222,128,0.1);
  padding: 4px 8px;
  border-radius: 999px;
}
.hero-card-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse-sm 1.6s ease-in-out infinite;
}
@keyframes pulse-sm {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-card-title {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.hero-card-body { display: flex; flex-direction: column; gap: 6px; }
.bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), color-mix(in oklch, var(--accent) 60%, white));
  border-radius: 999px;
  animation: barload 1.6s ease-out;
}
@keyframes barload { from { width: 0; } }
.bar-lbl {
  font-family: var(--mono-font);
  font-size: 11px;
  color: rgba(245,240,234,0.5);
  letter-spacing: 0.04em;
}
.hero-card-mini {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.5);
}
.hero-card-callout {
  top: 32px;
  right: -24px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 240px;
}
.hero-card-callout strong {
  display: block;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.hero-card-callout span {
  display: block;
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.5);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: clamp(48px, 6vw, 88px);
  padding-top: 32px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-strip > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.02em;
  color: #fff;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-strip > div:last-child { border-right: 0; }
.hero-strip > div span {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.5);
  font-weight: 400;
}

/* ─────────────────────────────────────────────────────────────────
   MARQUEE TRUST STRIP
─────────────────────────────────────────────────────────────────*/
.marquee {
  background: var(--bg);
  color: #F5F0EA;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.marquee-head { padding-bottom: 16px; }
.marquee-label {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.4);
}
.marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: rgba(245,240,234,0.55);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────────
   SECTION HEAD
─────────────────────────────────────────────────────────────────*/
.section-head {
  max-width: 760px;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-title {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.05;
}
.section-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.section-head-light .section-title.light { color: #F5F0EA; }
.section-head-light .section-sub.light { color: rgba(245,240,234,0.65); }

/* ─────────────────────────────────────────────────────────────────
   SERVICES
─────────────────────────────────────────────────────────────────*/
.services {
  background: var(--paper);
  padding: clamp(72px, 9vw, 128px) 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--rad);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 350ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11,15,18,0.18);
  box-shadow: 0 24px 60px rgba(11,15,18,0.08);
}
.service-card:hover::after { transform: scaleX(1); }
.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.service-n {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  padding-top: 4px;
}
.service-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.14;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-desc {
  font-size: 15px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.6;
}
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.service-bullets li svg {
  color: var(--accent);
  background: color-mix(in oklch, var(--accent) 15%, white);
  border-radius: 999px;
  padding: 4px;
  width: 22px; height: 22px;
}
.service-foot {
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
  margin-top: auto;
}
.service-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: gap 200ms ease, color 200ms ease;
}
.service-foot a:hover {
  gap: 14px;
  color: var(--accent);
}
.service-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: gap 200ms ease, color 200ms ease;
}
.service-readmore:hover { gap: 14px; color: var(--accent); }
.service-readmore svg { transition: transform 200ms ease; }
.service-readmore:hover svg { transform: translateX(2px); }

/* ── Scope of services (landing 6-card grid) ── */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.scope-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--rad);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.scope-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11,15,18,0.18);
  box-shadow: 0 24px 60px rgba(11,15,18,0.08);
}
.scope-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.scope-ico {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: color-mix(in oklch, var(--accent) 12%, white);
  color: var(--accent);
}
.scope-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.scope-desc {
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 700px) {
  .scope-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────
   SERVICE MODAL
─────────────────────────────────────────────────────────────────*/
.svc-modal-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  visibility: hidden;
  pointer-events: none;
}
.svc-modal-root.open {
  visibility: visible;
  pointer-events: auto;
}
.svc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 12, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.svc-modal {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr;
  width: min(920px, 100%);
  max-height: 88vh;
  overflow: hidden;
  background: #fff;
  border-radius: calc(var(--rad) * 1.4);
  box-shadow: 0 60px 140px rgba(6, 9, 12, 0.5);
  transform: translateY(26px) scale(0.965);
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-modal-root.open .svc-modal {
  transform: translateY(0) scale(1);
}
.svc-modal-aside {
  position: relative;
  background: var(--bg);
  color: #F5F0EA;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.svc-modal-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, color-mix(in oklch, var(--accent) 30%, transparent), transparent 60%);
  pointer-events: none;
}
.svc-modal-n { display: none; }
.svc-modal-ico {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.svc-modal-ico img {
  width: min(132px, 62%);
  height: auto;
  display: block;
  opacity: 0.95;
}
.svc-modal-n-legacy {
  position: relative;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 240, 234, 0.5);
}
.svc-modal-aside-foot { position: relative; }
.svc-modal-tag {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-modal-main {
  padding: clamp(32px, 4vw, 48px);
  overflow-y: auto;
}
.svc-modal-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.svc-modal-lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.svc-modal-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.svc-modal-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.svc-modal-bullets li svg {
  color: var(--accent);
  background: color-mix(in oklch, var(--accent) 15%, white);
  border-radius: 999px;
  padding: 4px;
  width: 22px; height: 22px;
  flex: none;
}
.svc-modal-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.svc-modal-foot { margin-top: 26px; }
.svc-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, color 200ms ease;
}
.svc-modal-close:hover {
  background: var(--ink);
  color: #fff;
  transform: rotate(90deg);
}
@media (max-width: 720px) {
  .svc-modal { grid-template-columns: 1fr; max-height: 92vh; }
  .svc-modal-aside {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
  }
  .svc-modal-n { font-size: 56px; }
}

/* ─────────────────────────────────────────────────────────────────
   EQUIPMENT
─────────────────────────────────────────────────────────────────*/
.equipment {
  background: var(--bg);
  color: #F5F0EA;
  padding: clamp(72px, 9vw, 128px) 0;
  position: relative;
}
.equipment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, color-mix(in oklch, var(--accent) 22%, transparent), transparent 52%),
    radial-gradient(ellipse at 88% 70%, rgba(0,183,255,0.10), transparent 55%);
  pointer-events: none;
}
.eq-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 40px;
}
.eq-stack-item {
  position: sticky;
}
.eq-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background: #11181F;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(6,9,12,0.45);
}
.eq-panel-art {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 440px;
  background: #0B0F12;
}
.eq-panel-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  filter: saturate(1.02) contrast(1.02);
}
.eq-panel-art-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(11,15,18,0.85), rgba(11,15,18,0) 50%);
}
.eq-panel-art-n {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: auto;
}
.eq-panel-art-cat {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
}
.eq-panel-art-count {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}
.eq-panel-body {
  padding: 16px 12px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.eq-panel-blurb {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(245,240,234,0.7);
  margin: 0;
  max-width: 540px;
}
.eq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.eq-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.eq-list li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.eq-list-k {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.01em;
}
.eq-list-v {
  font-size: 14.5px;
  color: rgba(245,240,234,0.55);
}
.eq-panel-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.eq-foot-meta {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245,240,234,0.4);
  max-width: 320px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────
   PILLARS
─────────────────────────────────────────────────────────────────*/
.pillars {
  background: var(--paper);
  padding: clamp(72px, 9vw, 128px) 0;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--rad);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(var(--rise, 0px));
  opacity: var(--op, 1);
  transition: transform 200ms ease-out, box-shadow 260ms ease, border-color 200ms ease;
  will-change: transform, opacity;
}
.pillar-card:hover {
  transform: translateY(-12px) scale(1.05) !important;
  opacity: 1 !important;
  z-index: 5;
  border-color: rgba(11,15,18,0.2);
  box-shadow: 0 34px 80px rgba(11,15,18,0.16);
}
.pillar-n {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.pillar-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
}
.pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.45;
}
.pillar-card li svg { margin-top: 6px; flex: none; }
.pillar-doc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 200ms ease;
}
.pillar-doc:hover { gap: 13px; }
.pillar-doc svg { flex: none; }

/* ── HSE: PDF document cards ── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.doc-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  transform: translateY(var(--rise, 0px));
  opacity: var(--op, 1);
  transition: transform 220ms ease-out;
  will-change: transform, opacity;
}
.doc-card:hover {
  transform: translateY(-8px) !important;
  opacity: 1 !important;
  z-index: 5;
}
.doc-card-static { cursor: default; }
.doc-preview {
  position: relative;
  aspect-ratio: 1 / 1.32;
  overflow: hidden;
}
.doc-preview iframe,
.doc-preview .doc-embed,
.doc-preview .doc-page {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 0;
  border-radius: 8px;
  pointer-events: none;
  background: #fff;
}
.doc-preview .doc-page {
  object-fit: cover;
  object-position: top center;
}
.doc-preview {
  position: relative;
  aspect-ratio: 1 / 1.414;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(11,15,18,0.08);
  border-radius: 16px;
  padding: 12px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 12px 34px rgba(11,15,18,0.05);
}
.doc-open {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #001218;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 220ms ease, transform 220ms ease;
}
.doc-card:hover .doc-open { opacity: 1; transform: scale(1); }
.doc-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 2px;
  flex: 1;
}
.doc-meta .pillar-n {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.doc-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.doc-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 980px) { .doc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .doc-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────
   MANUFACTURERS
─────────────────────────────────────────────────────────────────*/
.manufacturers {
  background: var(--bg);
  color: #F5F0EA;
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 0;
  scroll-margin-top: 96px;
}
.manufacturers::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 18%, color-mix(in oklch, var(--accent) 20%, transparent), transparent 52%),
    radial-gradient(ellipse at 12% 78%, rgba(0,183,255,0.09), transparent 55%);
  pointer-events: none;
}
.manufacturers > .container { position: relative; z-index: 1; }
.equipment > .container { position: relative; z-index: 1; }
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 20px;
}
.mfg-card {
  position: relative;
  min-height: 274px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.mfg-card.open {
  background: linear-gradient(165deg, rgba(0,183,255,0.07), rgba(255,255,255,0.02));
  border-color: rgba(0,183,255,0.22);
  box-shadow: 0 30px 70px rgba(4,12,20,0.5);
}
.mfg-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mfg-plate {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #F5F0EA;
  border-radius: 14px;
}
.mfg-plate-img {
  max-height: 62px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.mfg-plate-img[src*="flender"] { max-height: 42px; }
.mfg-plate-img[src*="pureaqua"] { max-height: 56px; }
.mfg-plate-name {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #101B24;
  text-align: center;
  line-height: 1.1;
}
.mfg-id { min-width: 0; }
.mfg-card h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: #fff;
}
.mfg-short {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,240,234,0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.95em;
}
.mfg-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 72px;
}
.mfg-country {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(245,240,234,0.06);
  border: 1px solid rgba(245,240,234,0.16);
  color: rgba(245,240,234,0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.mfg-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 100%;
  white-space: normal;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(0,183,255,0.12);
  border: 1px solid rgba(0,183,255,0.28);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mfg-badge-dot {
  flex: none;
  width: 7px; height: 7px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,183,255,0.18);
}
.mfg-detail-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 420ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 320ms ease, margin-top 420ms ease;
  margin-top: -18px;
}
.mfg-card.open .mfg-detail-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0;
}
.mfg-detail {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 2px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mfg-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,240,234,0.78);
}
.mfg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mfg-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,240,234,0.7);
}
.mfg-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}
.mfg-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  transition: gap 200ms;
}
.mfg-cta:hover { gap: 14px; }
.mfg-foot {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.mfg-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 8px 4px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: gap 200ms ease, color 200ms ease;
}
.mfg-more:hover { gap: 14px; color: var(--accent); }
.mfg-more svg { transition: transform 250ms ease; }
.mfg-card.open .mfg-more svg { transform: rotate(90deg); }

/* ─────────────────────────────────────────────────────────────────
   CLIENTS
─────────────────────────────────────────────────────────────────*/
.clients {
  background: var(--paper);
  padding: clamp(72px, 9vw, 128px) 0;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.client-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
}
.client-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(11,15,18,0.08);
}
.client-logo {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 116px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 18px 22px;
  overflow: hidden;
}
.client-logo img {
  max-width: 100%;
  max-height: 78px;
  width: auto; height: auto;
  object-fit: contain;
  margin: auto;
}
.client-logo img[alt*="Turkmengaz"],
.client-logo img[alt*="Daewoo"],
.client-logo img[alt*="Ronesans"] {
  margin-top: 18px;
}
.client-card strong {
  display: block;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.client-card span {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────────
   CTA
─────────────────────────────────────────────────────────────────*/
.cta {
  position: relative;
  background: var(--bg);
  color: #F5F0EA;
  padding: clamp(72px, 9vw, 128px) 0;
  overflow: hidden;
  scroll-margin-top: 96px;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, color-mix(in oklch, var(--accent) 26%, transparent), transparent 52%),
    radial-gradient(ellipse at 85% 60%, rgba(0,183,255,0.10), transparent 55%),
    linear-gradient(180deg, transparent 35%, rgba(6,15,24,0.55) 72%, #060F18 100%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.cta-copy { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.cta-title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.025em;
}
.cta-sub {
  font-size: 18px;
  color: rgba(245,240,234,0.65);
  margin: 0;
  max-width: 460px;
  line-height: 1.55;
}
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta-contact > div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}
.cta-k {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.4);
}
.cta-contact a, .cta-contact div span:last-child {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.01em;
}
.cta-contact a:hover { color: var(--accent); }

.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(20px);
  min-width: 0;
}
.cta-form h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 4px;
  color: #fff;
}
.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.cta-form span {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.5);
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--body-font);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 160ms, background 160ms;
  width: 100%;
  min-width: 0;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(245,240,234,0.3);
}
.cta-form select { color: #fff; }
.cta-form select option { background: var(--bg); color: #fff; }
.cta-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}
.cta-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  margin-top: 2px;
}
.cta-consent input {
  flex: none;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 1px 0 0;
  background: transparent;
  border-radius: 4px;
  accent-color: var(--accent);
  cursor: pointer;
}
.cta-consent span {
  font-family: var(--body-font) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 12.5px !important;
  line-height: 1.5;
  color: rgba(245,240,234,0.55);
}
.cta-form button[type="submit"] {
  margin-top: 8px;
  justify-content: center;
}
.cta-form-foot {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(245,240,234,0.4);
  margin: 4px 0 0;
  line-height: 1.5;
}
.cta-thanks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 24px 0;
}
.cta-thanks h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  color: #fff;
}
.cta-thanks p {
  margin: 0;
  color: rgba(245,240,234,0.6);
  font-size: 15px;
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────────────────*/
.footer {
  background: #060F18;
  color: rgba(245,240,234,0.6);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social svg { flex: none; opacity: 0.7; transition: opacity 160ms; }
.footer-social a:hover svg { opacity: 1; }
.footer-cols h4 {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.4);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-cols a {
  display: block;
  font-size: 14.5px;
  color: rgba(245,240,234,0.75);
  padding: 6px 0;
  transition: color 160ms;
}
.footer-cols a:hover { color: var(--accent); }
.footer-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.4);
  padding: 24px 0;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────────────────*/
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { height: 480px; max-width: 600px; }
  .hero-strip { grid-template-columns: repeat(3, 1fr); }
  .hero-strip > div:nth-child(n+4) { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .eq-panel { grid-template-columns: 1fr; }
  .eq-panel-art { min-height: 280px; }
  .eq-stack-item { position: relative; top: 0 !important; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .mfg-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-lang { display: none; }
  .topbar { display: none; }
  .nav-burger { display: flex; }
  .pillar-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .eq-list li { grid-template-columns: 1fr; gap: 4px; }
  .hero-card-floating { right: 0; left: auto; width: 240px; }
  .hero-card-callout { right: 0; width: 200px; }
  .cta-form-row { grid-template-columns: 1fr; }
  .footer-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nowrap-name { white-space: normal; }
  .subhero-projects::after {
    width: 100%;
    background: url(assets/lineart-ballvalve.png?v=1) no-repeat right 4% bottom 6% / auto 55%;
    opacity: 0.28;
  }
}
@media (max-width: 560px) {
  .cta-form { padding: 24px; }
  .cta-contact > div { grid-template-columns: 1fr; gap: 4px; align-items: start; }
  .footer-cols { grid-template-columns: 1fr; row-gap: 28px; }
  .mfg-top { flex-wrap: wrap; }
}
