/*
  InnoUnits static website
  No framework, no build step, no external runtime dependency.
  Brand colors are centralized below for easy manual editing.
*/
:root {
  --red: #C2121C;
  --red-dark: #a00e15;
  --grey: #555D60;
  --ink: #1A1C1D;
  --black: #0F1011;
  --paper: #FFFFFF;
  --soft: #F5F5F3;
  --line: rgba(85, 93, 96, 0.12);
  --line-strong: rgba(85, 93, 96, 0.25);
  --font-sans: Inter, "Segoe UI", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Cascadia Mono", Consolas, monospace;
  --max: 1440px;
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f0ee; }
::-webkit-scrollbar-thumb { background: var(--red); }

.container { width: min(100% - 96px, var(--max)); margin-inline: auto; }
.section { padding-block: 88px; }
.page-content { padding-block: 72px; }
.display { font-family: var(--font-display); line-height: 1.03; }
.mono { font-family: var(--font-mono); }
.label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
}
.grid-bg {
  background-image:
    linear-gradient(rgba(85,93,96,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85,93,96,.045) 1px, transparent 1px);
  background-size: 48px 48px;
}
.rule { position: relative; height: 1px; background: rgba(85,93,96,.15); }
.rule::before, .rule::after {
  content: ""; position: absolute; top: -3px; width: 1px; height: 7px; background: rgba(85,93,96,.3);
}
.rule::before { left: 0; }
.rule::after { right: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 0; text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-red { border: 1.5px solid var(--red); background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { border: 1.5px solid rgba(85,93,96,.35); background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--red); color: #fff; border-color: var(--red); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: #fff; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 200;
  background: #fff; border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97); border-bottom-color: rgba(85,93,96,.13);
  box-shadow: 0 2px 24px rgba(0,0,0,.06); backdrop-filter: blur(8px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { line-height: 0; }
.logo img { height: 40px; width: auto; }
.desktop-nav { display: flex; gap: 32px; align-items: center; }
.nav-link {
  display: inline-block; padding: 4px 0; text-decoration: none;
  font-size: 11.5px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  color: var(--grey); border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link.active { border-bottom-color: var(--red); }
.header-cta { font-size: 11px; padding: 10px 22px; }
.hamburger {
  display: none; width: 34px; height: 34px; align-items: center; justify-content: center;
  background: none; border: 0; color: var(--ink);
}
.hamburger span, .hamburger::before, .hamburger::after {
  content: ""; display: block; width: 20px; height: 1.5px; background: currentColor; position: absolute; transition: transform .2s, opacity .2s;
}
.hamburger { position: relative; }
.hamburger::before { transform: translateY(-6px); }
.hamburger::after { transform: translateY(6px); }
.hamburger[aria-expanded="true"] span { opacity: 0; }
.hamburger[aria-expanded="true"]::before { transform: rotate(45deg); }
.hamburger[aria-expanded="true"]::after { transform: rotate(-45deg); }
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 190; background: #fff;
  padding: 32px 24px; border-top: 2px solid var(--red);
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .28s ease;
}
.mobile-nav.open { transform: none; }
.mobile-nav a:not(.btn) {
  padding: 12px 0; border-bottom: 1px solid rgba(85,93,96,.1); text-decoration: none;
  font-family: var(--font-display); font-size: 22px; letter-spacing: .04em; color: var(--ink);
}
.mobile-nav a.active, .mobile-nav a:hover { color: var(--red); }
.mobile-nav .btn { align-self: flex-start; margin-top: 24px; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); position: relative; overflow: hidden; }
.hero-inner { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; position: relative; padding-block: 100px 80px; }
.hero-copy { flex: 0 0 52%; max-width: 52%; padding-right: 48px; z-index: 2; }
.hero-copy .label { margin-bottom: 28px; }
.hero h1 { font-size: clamp(52px, 6vw, 86px); font-weight: 700; letter-spacing: -.01em; margin-bottom: 28px; }
.hero h1 .red { color: var(--red); }
.hero-copy > p { font-size: 16px; line-height: 1.7; color: var(--grey); max-width: 440px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-machine { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 52%; z-index: 1; }
.hero-machine img { width: 100%; object-fit: contain; max-height: 80vh; }
.hero-ref { position: absolute; bottom: 15%; left: -20px; font-size: 9px; color: var(--red); letter-spacing: .1em; opacity: .7; writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-corner { position: absolute; top: 80px; width: 24px; height: 24px; opacity: .3; border-top: 1px solid var(--grey); }
.hero-corner.left { left: 40px; border-left: 1px solid var(--grey); }
.hero-corner.right { right: 40px; border-right: 1px solid var(--grey); }
.hero-bottom-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(85,93,96,.1); }

/* Animations */
@keyframes fadeup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero .a1 { animation: fadeup .8s .05s both; }
.hero .a2 { animation: fadeup .8s .2s both; }
.hero .a3 { animation: fadeup .8s .35s both; }
.hero .a4 { animation: fadeup .8s .5s both; }
.hero-machine img { animation: fadeup 1s .3s both; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .28s; }

/* Stats */
.stats { background: var(--ink); }
.stats-inner { display: flex; align-items: stretch; }
.stat { flex: 1; padding: 48px; display: flex; flex-direction: column; gap: 8px; }
.stat-value { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: #fff; line-height: 1; }
.stat .label { color: rgba(255,255,255,.45); }
.stat-divider { width: 1px; background: rgba(85,93,96,.18); align-self: stretch; }

/* Headings */
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; max-width: 600px; }
.section-lead { font-size: 15px; color: var(--grey); max-width: 380px; line-height: 1.65; }

/* Process */
.process-wrap { overflow: visible; }
.steps { display: flex; align-items: flex-start; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.step-line { position: absolute; top: 18px; left: 50%; width: 100%; height: 1px; background: rgba(85,93,96,.2); }
.step:last-child .step-line { display: none; }
.step-number { width: 36px; height: 36px; border: 1.5px solid rgba(85,93,96,.25); display: grid; place-items: center; position: relative; z-index: 1; background: #fff; }
.step:first-child .step-number { border-color: var(--red); background: var(--red); color: #fff; }
.step-number { font-family: var(--font-mono); font-size: 9px; color: var(--grey); }
.step:first-child .step-number { color: #fff; }
.step-label { margin-top: 12px; text-align: center; font-size: 11px; font-weight: 500; letter-spacing: .03em; line-height: 1.4; white-space: pre-line; }

/* Cards */
.projects-bg { background: var(--soft); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.project-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: border-color .22s, box-shadow .22s; }
.project-card:hover { border-color: var(--red); box-shadow: 0 6px 28px rgba(194,18,28,.09); }
.project-media { aspect-ratio: 4/3; overflow: hidden; position: relative; background: #f9f9f8; }
.project-media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .4s ease; }
.project-card:hover .project-media img { transform: scale(1.015); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,22,23,.92), rgba(20,22,23,.4) 60%, transparent); opacity: 0; transition: opacity .28s; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay .label { color: rgba(255,255,255,.55); margin-bottom: 8px; }
.project-overlay-title { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.project-overlay ul { list-style: none; }
.project-overlay li { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.7); padding-top: 4px; letter-spacing: .06em; }
.project-body { padding: 20px 20px 22px; }
.project-body .label { margin-bottom: 6px; }
.project-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.project-subtitle { font-size: 12px; color: var(--grey); }
.project-description { margin-top: 7px; font-size: 12px; line-height: 1.55; color: var(--grey); }
.project-highlight { display: inline-block; margin-top: 12px; font-family: var(--font-mono); font-size: 10px; color: var(--red); background: rgba(194,18,28,.07); padding: 4px 8px; letter-spacing: .08em; }

/* Home capabilities teaser */
.teaser { display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.teaser-copy { flex: 1 1 340px; }
.teaser-copy .label { margin-bottom: 16px; }
.teaser-copy h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; margin-bottom: 24px; line-height: 1.08; }
.teaser-copy p { font-size: 15px; color: var(--grey); line-height: 1.7; margin-bottom: 32px; max-width: 400px; }
.capability-grid { flex: 1 1 460px; display: grid; grid-template-columns: 1fr 1fr; }
.capability { padding: 24px 20px; border-bottom: 1px solid var(--line); }
.capability:nth-child(odd) { border-right: 1px solid var(--line); }
.capability::before { content: ""; display: block; width: 28px; height: 2px; background: var(--red); margin-bottom: 14px; }
.capability strong { font-size: 13px; }

/* CTA */
.cta-strip { background: var(--red); padding-block: 64px; position: relative; overflow: hidden; color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px; position: relative; }
.cta-strip h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; margin-bottom: 12px; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.6; }
.cta-graphic { position: absolute; right: -40px; top: -40px; width: 320px; height: 220px; opacity: .08; border: 1px solid #fff; transform: rotate(0deg); }
.cta-graphic::before { content: ""; position: absolute; inset: 40px; border: 1px solid #fff; }

/* Page masthead */
.page { padding-top: var(--header-h); }
.masthead { background: var(--ink); color: #fff; padding-block: 72px 64px; }
.masthead .label { color: rgba(255,255,255,.45); margin-bottom: 20px; }
.masthead h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 700; line-height: 1.03; }
.masthead p { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,.55); max-width: 520px; line-height: 1.65; }

/* Solutions */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.solution-card { padding: 28px 24px; border-bottom: 1px solid var(--line); min-height: 100%; transition: border-color .2s, box-shadow .2s; }
.solution-card:hover { box-shadow: inset 3px 0 0 var(--red), 0 4px 20px rgba(194,18,28,.05); }
.solution-title { display: flex; gap: 12px; align-items: baseline; margin-bottom: 16px; }
.solution-title .mono { font-size: 10px; color: var(--red); }
.solution-title h3 { font-size: 15px; font-weight: 700; }
.solution-card p { font-size: 13.5px; color: var(--grey); line-height: 1.65; margin-bottom: 20px; }
.solution-card ul, .product-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.solution-card li, .product-card li { display: flex; gap: 9px; align-items: baseline; }
.solution-card li::before, .product-card li::before { content: ""; width: 16px; height: 1px; background: var(--red); flex: 0 0 auto; }
.solution-card li span { font-family: var(--font-mono); font-size: 10px; color: var(--grey); letter-spacing: .06em; }

/* Project filters */
.filter-bar { border-bottom: 1px solid var(--line); }
.filters { display: flex; gap: 4px; overflow-x: auto; }
.filter-button { background: none; border: none; padding: 16px 20px; font-size: 12px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--grey); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.filter-button:hover, .filter-button.active { color: var(--red); }
.filter-button.active { border-bottom-color: var(--red); }
.project-item[hidden] { display: none !important; }
.center-cta { background: var(--soft); text-align: center; padding-block: 64px; }
.center-cta p { max-width: 520px; margin: 0 auto 24px; font-size: 15px; color: var(--grey); line-height: 1.65; }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { border: 1px solid var(--line); transition: box-shadow .2s, border-color .2s; }
.product-card:hover { border-color: rgba(194,18,28,.35); box-shadow: 0 4px 24px rgba(194,18,28,.07); }
.product-accent { height: 4px; background: var(--red); }
.product-image { aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; border-bottom: 1px solid var(--line); }
.product-image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.product-body { padding: 28px 24px 32px; }
.product-body .label { margin-bottom: 14px; }
.product-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.product-body > p { font-size: 13.5px; color: var(--grey); line-height: 1.65; margin-bottom: 24px; }
.product-specs { border-top: 1px solid var(--line); padding-top: 20px; }
.product-specs .label { margin-bottom: 12px; }
.product-card li span { font-family: var(--font-mono); font-size: 11px; color: var(--grey); letter-spacing: .04em; line-height: 1.5; }

/* About */
.about-cols { display: flex; gap: 96px; align-items: flex-start; }
.about-story { flex: 1 1 480px; }
.about-story .label { margin-bottom: 20px; }
.about-story h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; margin-bottom: 32px; line-height: 1.06; }
.about-story h2 span { color: var(--red); }
.about-story p { font-size: 15px; color: var(--grey); line-height: 1.75; margin-bottom: 20px; }
.disciplines { flex: 1 1 380px; border-top: 3px solid var(--red); padding-top: 32px; }
.disciplines h3 { font-size: 15px; font-weight: 700; margin-bottom: 28px; letter-spacing: .03em; text-transform: uppercase; }
.discipline { display: flex; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(85,93,96,.1); }
.discipline .mono { font-size: 9px; color: var(--red); min-width: 20px; }
.discipline span:last-child { font-size: 13.5px; font-weight: 500; }
.cnc-section { background: var(--soft); }
.cnc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.cnc-card { background: #fff; padding: 36px 32px; border-left: 3px solid var(--red); }
.cnc-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.cnc-card strong { display: block; font-size: 13px; color: var(--red); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.cnc-card .mono { font-size: 11px; color: var(--grey); letter-spacing: .05em; }
.cnc-note { font-size: 14px; color: var(--grey); line-height: 1.7; margin-top: 40px; max-width: 680px; }

/* Contact */
.contact-grid { display: flex; gap: 96px; align-items: flex-start; }
.contact-form-wrap { flex: 1 1 480px; }
.contact-info { flex: 0 0 320px; display: flex; flex-direction: column; gap: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form label { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.input { width: 100%; border: 1px solid var(--line-strong); padding: 12px 14px; font-size: 14px; color: var(--ink); background: #fff; outline: none; border-radius: 0; transition: border-color .18s; }
.input:focus { border-color: var(--red); }
textarea.input { min-height: 130px; resize: vertical; }
.form-status { display: none; padding: 16px 18px; background: var(--soft); border-left: 3px solid var(--red); font-size: 13px; color: var(--grey); line-height: 1.5; }
.form-status.visible { display: block; }
.contact-info .label { margin-bottom: 16px; }
.contact-info address { font-style: normal; }
.contact-info strong { display: block; font-size: 15px; margin-bottom: 6px; }
.contact-info .mono { font-size: 12px; color: var(--grey); line-height: 1.8; letter-spacing: .04em; }
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-links a { text-decoration: none; display: flex; gap: 12px; align-items: center; }
.contact-links a::before { content: ""; width: 16px; height: 1px; background: var(--red); flex: 0 0 auto; }
.contact-links a .mono { line-height: 1.4; }
.contact-links a.email .mono { color: var(--red); }
.response-block { border-top: 1px solid var(--line); padding-top: 32px; }
.response-block p { font-size: 13.5px; color: var(--grey); line-height: 1.65; }

/* Footer */
.site-footer { background: var(--black); padding: 56px 0 40px; color: #fff; }
.footer-cols { display: flex; gap: 64px; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 240px; }
.site-footer .label { color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; letter-spacing: .04em; }
.footer-nav a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a, .footer-contact span { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.45); text-decoration: none; letter-spacing: .06em; }
.footer-contact a.email { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.25); letter-spacing: .08em; }


/* Google Maps location on the Contact page */
.contact-map-section { padding: 0 0 72px; }
.contact-map { width: 100%; height: 430px; overflow: hidden; border: 1px solid rgba(88,90,87,.22); background: #f4f4f4; }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }

@media (max-width: 960px) {
  .container { width: min(100% - 48px, var(--max)); }
  .desktop-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding-block: 120px 72px; }
  .hero-copy { flex-basis: 100%; max-width: 100%; padding-right: 0; }
  .hero-machine { display: none; }
  .stats-inner { flex-direction: column; }
  .stat-divider { display: none; }
  .stat { border-bottom: 1px solid var(--line); padding: 24px 0; }
  .stat:last-child { border-bottom: 0; }
  .projects-grid, .solutions-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-cols, .contact-grid { flex-direction: column; }
  .contact-info { flex-basis: auto; width: 100%; }
  .cnc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 32px, var(--max)); }
  .section { padding-block: 60px; }
  .page-content { padding-block: 60px; }
  .hero h1 { font-size: clamp(46px, 15vw, 66px); }
  .hero-corner { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-cols { flex-direction: column; gap: 32px; }
  .process-wrap { overflow-x: auto; padding-bottom: 8px; }
  .steps { min-width: 680px; }
  .form-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability:nth-child(odd) { border-right: 0; }
  .stat-value { font-size: 48px; }
}

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


/* Language switcher */
.lang-switch {
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .10em; color: rgba(85,93,96,.48);
}
.lang-switch a { color: var(--grey); text-decoration: none; padding: 5px 1px; transition: color .18s; }
.lang-switch a:hover, .lang-switch a.active { color: var(--red); }
.lang-switch span { color: rgba(85,93,96,.28); }
.mobile-lang-switch { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.mobile-nav .mobile-lang-switch a {
  padding: 6px 0; border: 0; font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; color: var(--grey);
}
.mobile-nav .mobile-lang-switch a.active, .mobile-nav .mobile-lang-switch a:hover { color: var(--red); }
.mobile-lang-switch span { color: rgba(85,93,96,.35); }

@media (max-width: 1180px) and (min-width: 961px) {
  .desktop-nav { gap: 20px; }
  .header-cta { padding-inline: 16px; }
}
@media (max-width: 960px) {
  .lang-switch-desktop { display: none; }
}

@media (max-width: 720px) {
  .contact-map-section { padding-bottom: 60px; }
  .contact-map { height: 340px; }
}

/* Dedicated contact and project enquiry pages */
.contact-info-page { width: 100%; max-width: 760px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 72px; }
.project-form-container { display: flex; justify-content: center; }
.project-form-section .contact-form-wrap { width: 100%; max-width: 760px; }
@media (max-width: 700px) {
  .contact-info-page { grid-template-columns: 1fr; gap: 40px; }
}
