/* ============================================================
   Wilhelm Handke GmbH — Shared Stylesheet
   Used by: index.html, impressum.html, inquiry_sent.html
   ============================================================ */

/* ---------- FONTS (lokal) ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('fonts/Archivo-VariableFont_wdth,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('fonts/Archivo-Italic-VariableFont_wdth,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- VARIABLES ---------- */
:root {
  --navy-950: #050a18;
  --navy-900: #0b1430;
  --navy-800: #131d44;
  --navy-700: #1d2a5c;
  --navy-500: #2f4287;
  --navy-300: #7d8eb8;
  --ink: #0b1430;
  --bone: #ffffff;
  --bone-2: #f4f4f4;
  --paper: #ffffff;
  --line: rgba(11, 20, 48, 0.14);
  --line-soft: rgba(11, 20, 48, 0.08);
  --accent: #1d2a5c;

  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

/* ---------- HEADER ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  background: var(--navy-900);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .3s ease, border-color .3s ease;
  color: var(--bone);
}

.topbar.scrolled {
  background: var(--navy-950);
}

.topbar-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bone);
}

.brand-mark {
  display: flex;
  align-items: center;
}

.brand-mark span {
  display: block;
  transform: translateY(-1px);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name b {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--display);
}

.brand-name small {
  font-size: 10px;
  color: var(--navy-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: var(--sans);
  font-weight: 500;
}

nav.primary {
  display: flex;
  gap: 36px;
  justify-self: end;
}

nav.primary a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bone);
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
}

nav.primary a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--bone);
  transition: right .35s ease;
}

nav.primary a:hover::after {
  right: 0;
}

.topbar-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.lang {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang button {
  background: none;
  border: none;
  color: var(--navy-300);
  font: inherit;
  padding: 4px 2px;
  letter-spacing: 0.16em;
}

.lang button.active {
  color: var(--bone);
}

.lang .sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.menu-btn {
  display: none;
  margin-right: -20px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--bone);
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--bone);
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 84px;
  background: var(--navy-900);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px var(--pad) 0;
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px);
  gap: 72px;
  align-items: end;
  min-height: calc(100vh - 84px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-300);
  margin-bottom: 56px;
}

.breadcrumb .sl {
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.breadcrumb b {
  color: var(--bone);
  font-weight: 600;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy-300);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow::before,
.eyebrow::after {
  content: "[";
  color: var(--bone);
  font-weight: 400;
}

.eyebrow::after {
  content: "]";
}

.h-display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 8vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 36px;
}

.h-display em {
  font-style: normal;
  font-weight: 700;
  color: var(--bone);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero p.lede {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: rgba(243, 239, 231, 0.78);
  max-width: 540px;
  margin: 0 0 56px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 96px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  padding: 18px 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--bone);
  color: var(--bone);
  background: transparent;
  transition: background .25s ease, color .25s ease;
}

.btn:hover {
  background: var(--bone);
  color: var(--navy-900);
}

.btn.dark {
  border-color: var(--ink);
  color: var(--ink);
}

.btn.dark:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn .arr {
  width: 0;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .3s ease;
  flex-shrink: 0;
}

.btn .arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity .2s ease .1s;
}

.btn-arrow .arr {
  width: 16px;
  margin-left: 12px;
}

.btn-arrow .arr::after {
  opacity: 1;
}

.btn-ghost {
  border-color: rgba(243,239,231,0.3);
  color: rgba(243,239,231,0.7);
}

.btn-ghost:hover {
  background: rgba(243,239,231,0.1);
  color: var(--bone);
  border-color: rgba(243,239,231,0.5);
}

.hero-image {
  position: relative;
  height: clamp(420px, 70vh, 720px);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}


/* placeholder blocks */
.ph {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.0)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 14px),
    var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.45);
}

.ph .ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(243, 239, 231, 0.18);
  transform: translate(-50%, -50%);
}

.ph .ring.r2 {
  width: 380px;
  height: 380px;
  border-style: dashed;
  opacity: .6;
}

.ph .ring.r3 {
  width: 540px;
  height: 540px;
  opacity: .35;
}

.ph .center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.02em;
}

.ph .corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(243, 239, 231, 0.4);
}

.ph .corner.tl {
  top: 14px;
  left: 14px;
  border-right: none;
  border-bottom: none;
}

.ph .corner.tr {
  top: 14px;
  right: 14px;
  border-left: none;
  border-bottom: none;
}

.ph .corner.bl {
  bottom: 14px;
  left: 14px;
  border-right: none;
  border-top: none;
}

.ph .corner.br {
  bottom: 14px;
  right: 14px;
  border-left: none;
  border-top: none;
}

/* hero scroll indicator */
.scroll-ind {
  position: absolute;
  left: var(--pad);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.55);
}

.scroll-ind .l {
  width: 32px;
  height: 1px;
  background: currentColor;
}

/* ---------- SECTION SCAFFOLD ---------- */
section {
  padding: clamp(80px, 12vw, 160px) var(--pad);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.sect-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-weight: 600;
}

.sect-eyebrow::before,
.sect-eyebrow::after {
  content: "[";
  color: var(--navy-500);
}

.sect-eyebrow::after {
  content: "]";
}

.sect-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 32px;
  max-width: 16ch;
}

.sect-h em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* ---------- LEGACY ---------- */
.legacy {
  background: #ffffff;
}

.legacy .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.legacy .body {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(10, 24, 48, 0.78);
  max-width: 520px;
}

.legacy .body p+p {
  margin-top: 18px;
}

.legacy .stats {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 6.4vw, 96px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.stat .num sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--ink);
  margin-left: 4px;
  font-weight: 500;
}

.stat .lbl {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-500);
  max-width: 200px;
  line-height: 1.5;
  font-weight: 500;
}

/* ---------- APPROACH ---------- */
.approach {
  background: var(--bone);
}

.approach .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach .images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 560px;
}

.approach .images .ph {
  height: 100%;
}

.approach .copy p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(10, 24, 48, 0.78);
  max-width: 520px;
  margin: 0 0 18px;
}

.approach .copy .btn {
  margin-top: 24px;
}

.approach .ph {
  background: linear-gradient(135deg, rgba(10, 24, 48, 0.04), rgba(10, 24, 48, 0)), repeating-linear-gradient(45deg, rgba(10, 24, 48, 0.05) 0 2px, transparent 2px 14px), var(--bone-2);
  border: 1px solid rgba(10, 24, 48, 0.1);
}

.approach .ph .ring {
  border-color: rgba(10, 24, 48, 0.15);
}

.approach .ph .center {
  color: rgba(10, 24, 48, 0.25);
}

.approach .ph .corner {
  border-color: rgba(10, 24, 48, 0.3);
}

.approach .ph::after {
  color: rgba(10, 24, 48, 0.45);
}

/* ---------- MISSION / VISION ---------- */
.mv {
  background: var(--paper);
}

.mv-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.mv-block:last-child {
  border-bottom: 1px solid var(--line);
}

.mv-block.reverse .ph-wrap {
  order: 2;
}

.mv-block .ph-wrap {
  height: 480px;
}

.mv-block .ph {
  background: linear-gradient(135deg, rgba(10, 24, 48, 0.04), rgba(10, 24, 48, 0)), repeating-linear-gradient(45deg, rgba(10, 24, 48, 0.05) 0 2px, transparent 2px 14px), var(--bone-2);
  border: 1px solid rgba(10, 24, 48, 0.1);
}

.mv-block .ph .ring {
  border-color: rgba(10, 24, 48, 0.15);
}

.mv-block .ph .center {
  color: rgba(10, 24, 48, 0.25);
}

.mv-block .ph .corner {
  border-color: rgba(10, 24, 48, 0.3);
}

.mv-block .ph::after {
  color: rgba(10, 24, 48, 0.45);
}

.mv .label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy-500);
  font-weight: 600;
  margin-bottom: 12px;
}

.mv .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy-500);
  margin-bottom: 24px;
  letter-spacing: 0.18em;
}

.mv h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.mv p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(10, 24, 48, 0.78);
  margin: 0;
  max-width: 480px;
}

/* ---------- PRODUCTS ---------- */
.products {
  background: var(--navy-950);
  color: var(--bone);
}

.products .sect-eyebrow {
  color: var(--navy-300);
}

.products .sect-h {
  color: var(--bone);
}

.products .sect-h em {
  color: var(--bone);
}

.products .lede {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(243, 239, 231, 0.7);
  max-width: 620px;
  margin: 0 0 72px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product {
  border: 1px solid rgba(243, 239, 231, 0.12);
  padding: 40px;
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  flex-direction: column;
  transition: background .3s ease, border-color .3s ease;
}

.product:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(243, 239, 231, 0.24);
}

.product .ph {
  height: 280px;
  margin-bottom: 32px;
}

.product .kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy-300);
  font-weight: 600;
  margin-bottom: 16px;
}

.product h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.product p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 239, 231, 0.7);
  margin: 0 0 28px;
}

.specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(243, 239, 231, 0.12);
  flex-grow: 1;
}
.spec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(243, 239, 231, 0.08);
  align-items: center;
}

.spec dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-300);
  font-weight: 600;
}

.spec dd {
  margin: 0;
  font-size: 13px;
  color: rgba(243, 239, 231, 0.85);
  line-height: 1.55;
}

.product-img {
  width: 100%;
  height: 280px;
  background: transparent;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
}

/* ---------- INDUSTRIES ---------- */
.industries {
  background: var(--paper);
}

.industries .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  margin-bottom: 80px;
}

.industries .head p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: rgba(10, 24, 48, 0.7);
  max-width: 520px;
  margin: 0;
  display: flex;
  align-items: flex-end;
}

.industries .sect-h {
  margin-bottom: 0;
}

.ind-list {
  border-top: 1px solid var(--line);
}

.ind-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 1.2fr auto;
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding .3s ease;
  cursor: pointer;
}

.ind-row:hover {
  padding-left: 8px;
}

.ind-row .n {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-500);
  padding-top: 6px;
  letter-spacing: 0.05em;
}

.ind-row h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ind-row .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-500);
  font-weight: 600;
}

.ind-row .tags span {
  position: relative;
  padding-right: 14px;
}

.ind-row .tags span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
  opacity: .5;
}

.ind-row p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(10, 24, 48, 0.7);
  margin: 0;
  max-width: 480px;
}

.ind-row .arrow {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  color: var(--ink);
}

.ind-row:hover .arrow {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.ind-row .arrow svg {
  width: 16px;
  height: 16px;
}



/* ---------- CONTACT ---------- */
.contact {
  background: var(--navy-900);
  color: var(--bone);
}

.contact .sect-eyebrow {
  color: var(--navy-300);
}

.contact .sect-h {
  color: var(--bone);
}

.contact .sect-h em {
  color: var(--bone);
}

.contact .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.ci-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(243, 239, 231, 0.16);
  align-items: start;
}

.ci-row:last-child {
  border-bottom: 1px solid rgba(243, 239, 231, 0.16);
}

.ci-row dt {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy-300);
  font-weight: 600;
}

.ci-row dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone);
}

form.inq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(243, 239, 231, 0.16);
}

form.inq label {
  text-align: left;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(243, 239, 231, 0.16);
  padding: 18px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-300);
  font-weight: 600;
}

form.inq label.full {
  grid-column: 1/-1;
}

form.inq label.odd {
  padding-right: 24px;
  border-right: 1px solid rgba(243, 239, 231, 0.16);
}

form.inq label.even {
  padding-left: 24px;
}

form.inq label.full {
  padding-left: 0;
  padding-right: 0;
  border-right: none;
}

form.inq input,
form.inq textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  padding: 8px 0 0;
  resize: none;
}

form.inq input::placeholder,
form.inq textarea::placeholder {
  color: rgba(243, 239, 231, 0.35);
}

form.inq textarea {
  min-height: 50px;
  overflow-y: hidden;
}

form.inq .submit-row {
  grid-column: 1/-1;
  padding-top: 28px;
  display: flex;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

form.inq .submit-row .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 18px 28px;
}

.g-recaptcha {
  margin-bottom: 0;
  transform: scale(0.92);
  transform-origin: left;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-950);
  color: var(--bone);
  padding: 96px var(--pad) 32px;
  border-top: 1px solid rgba(243, 239, 231, 0.06);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.12);
}

.foot-brand .brand {
  color: var(--bone);
  margin-bottom: 24px;
}

.foot-brand .brand-mark {
  border-color: var(--bone);
  color: var(--bone);
}

.foot-brand p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.foot-col h5 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy-300);
  margin: 0 0 24px;
  font-weight: 600;
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foot-col a {
  font-size: 14px;
  color: rgba(243, 239, 231, 0.75);
  transition: color .2s ease;
  letter-spacing: 0.02em;
}

.foot-col a:hover {
  color: var(--bone);
}

.foot-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 239, 231, 0.75);
}

.foot-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.foot-bottom .legal {
  display: flex;
  gap: 28px;
}

.foot-bottom .legal a:hover {
  color: var(--bone);
}

/* ---------- MOBILE DRAWER ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--navy-900);
  color: var(--bone);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.6, .05, .2, 1);
  padding: 32px var(--pad);
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.drawer-close {
  background: none;
  border: 1px solid rgba(243, 239, 231, 0.3);
  width: 44px;
  height: 44px;
  color: var(--bone);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 8vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */

/* ── Tablet (≤ 960px) ── */
@media (max-width: 960px) {
  .hero-image { display: none; }
  nav.primary { display: none; }
  .topbar-tools .lang { display: none; }
  .menu-btn { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 64px;
    min-height: auto;
    padding-bottom: 64px;
  }

  .breadcrumb { margin-bottom: 28px; }

  .legacy .grid,
  .mv-block,
  .product-grid,
  .industries .head,
  .contact .grid,
  .vlist {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .approach .grid {
    display: flex !important;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
  }

  .approach .images {
    height: auto;
    overflow: visible;
    gap: 8px;
    width: 100%;
  }

  .approach .images img:last-child { margin-top: 0 !important; }

  .legacy .stats { grid-template-columns: 1fr
    1fr; gap: 32px; }

  .ind-row { grid-template-columns: 32px 1fr auto; gap: 16px; }
  .ind-row p { display: none; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 48px; }
  .foot-bottom { flex-direction: column; align-items: center; }
  .foot-col { text-align: center; }

  .foot-brand {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  form.inq label.odd { padding-right: 0; border-right: none; }
  form.inq label.even { padding-left: 0; }

  .ci-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  /* Topbar */
  .topbar { height: 64px; padding: 0 20px; }
  .hero { padding-top: 64px; }
  .brand-name b { font-size: 13px; }
  .brand-name small { display: none; }
  .ind-row h4 { font-size: 18px; }
  .menu-btn {
  margin-right: -25px;
  }
  
  /* Hero */
  .hero-grid { padding: 48px 20px 48px; gap: 24px; }
  .breadcrumb { display: none; }
  .hero p.lede { font-size: 15px; margin-bottom: 32px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 48px; }
  .scroll-ind { display: none; }
  
  /* Sections */
  section { padding: 64px 20px; }

  /* Stats */
  .legacy .stats { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; padding-top: 36px; }
  .stat .num { font-size: clamp(36px, 10vw, 56px); }

  /* Approach */
  .approach .images { display: flex; flex-direction: column; gap: 12px; }
  .approach .images img { width: 100%; height: 220px; object-fit: cover; }

  /* Products */
  .product { padding: 24px; }
  .product h4 { font-size: 22px; }
  .product-img { height: 200px; }
  .products .lede { margin-bottom: 40px; }
  .spec { grid-template-columns: 100px 1fr; gap: 12px; }

  /* Industries */
  .industries .head { margin-bottom: 40px; }
  .ind-row { grid-template-columns: 1fr auto; gap: 12px; }
  .ind-row .n { display: none; }
  .ind-row .arrow { width: 44px; height: 44px; }

  /* Contact */
  .contact .grid { gap: 48px; margin-top: 40px; }
  form.inq { grid-template-columns: 1fr; }
  form.inq label.odd { padding-right: 0; border-right: none; }
  form.inq label.even { padding-left: 0; }
  form.inq label.full { grid-column: 1; }
  form.inq .submit-row { padding-top: 24px; display: flex; flex-direction: column; align-items: stretch; }
  form.inq .submit-row > div[data-netlify-recaptcha] { width: fit-content; }
  .g-recaptcha { transform: scale(0.9); transform-origin: left; }
  form.inq .submit-row .btn {
  height: auto;
  padding: 14px 22px;
  font-size: 10px;
}
  /* Footer */
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom { align-items: center; text-align: center; }
  .foot-bottom .legal { flex-wrap: wrap; justify-content: center; }

  /* Buttons */
  .btn { padding: 16px 22px; font-size: 10px; }

  /* MV blocks */
  .mv-block { padding: 48px 0; }
  .mv-block .ph-wrap { height: 280px; }
}