/* ===================================================================
   Botsbits OÜ — landing
   Light grayscale palette, oversized typography, numbered nav,
   pill buttons, accordion services, big editorial sections.
   =================================================================== */

@font-face {
  font-family: 'Bricolage';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('fonts/Bricolage-Variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('fonts/Bricolage-LatinExt.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --graphite: #1a1a1a;
  --graphite-2: #2f2f2f;
  --steel: #9a9a9a;
  --soft: #ededed;
  --cream: #f4f3ef;
  --white: #ffffff;
  --line: #d6d6d2;
  --line-2: #1f1f1f;
  --accent: #6cd17a;

  --text: var(--graphite);
  --text-dim: #6a6a6a;

  --container: 1280px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--soft);
  color: var(--text);
  font-family: 'Bricolage', -apple-system, BlinkMacSystemFont, 'Segoe UI Variable',
    'Segoe UI', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'ss02';
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

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

/* === reusable === */
.display {
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 22px;
}
.lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0;
}
.num-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.4;
}
.num-tag--light { color: rgba(255,255,255,0.85); }
.num-tag span { font-size: 13px; }

/* ============================ TOPBAR ============================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(237, 237, 237, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  height: 96px;
}
.brand {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark { width: 65px; height: 65px; display: block; }
.brand-text { display: none; }

/* burger (hidden on desktop) */
.burger {
  display: none;
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
  transition: transform .25s ease, opacity .15s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer (hidden on desktop) */
.mobile-drawer {
  display: none;
}
.topbar-side {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar-side--end { justify-content: flex-end; }

.topnav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--graphite);
}
.topnav a { display: inline-flex; align-items: baseline; gap: 6px; padding: 6px 0; }
.topnav .num { color: var(--steel); font-weight: 500; }
.topnav a:hover { color: #000; }

.topbar-meta {
  display: flex;
  gap: 18px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--graphite);
}
.meta-line { white-space: nowrap; }
.meta-clock { color: var(--text-dim); font-variant-numeric: tabular-nums; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 3px;
  background: var(--white);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: color .15s, background .15s;
}
.lang-btn:hover { color: var(--graphite); }
.lang-btn.is-active { background: var(--graphite); color: var(--white); }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn-pill {
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.btn-light {
  background: var(--white);
  color: var(--graphite);
  border-color: var(--line);
}
.btn-light:hover { background: var(--graphite); color: var(--white); border-color: var(--graphite); }
.btn-light .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(108,209,122,0.18);
}
.btn-dark { background: var(--graphite); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-dark .arrow {
  width: 30px; height: 30px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--graphite);
  font-size: 14px;
  margin-right: -10px;
}

/* ============================ HERO ============================ */
.hero {
  padding: 56px 0 72px;
  background: var(--soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: stretch;
}

.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.wordmark {
  font-family: 'Bricolage', system-ui, sans-serif;
  font-size: clamp(54px, 8.6vw, 122px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  font-weight: 800;
  font-stretch: 75%;
  color: var(--graphite);
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.18em;
  column-gap: 0;
  min-width: 0;
}
.wordmark > span { display: inline-block; }
.wordmark-text { flex: 0 0 auto; }
.wordmark-mid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.155em;
  width: auto;
  margin: 0 calc(0.02em + 5px);
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
  align-self: center;
  transform: translateY(-0.04em);
}
.wordmark-mid img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.wordmark-ou {
  align-self: flex-start;
  margin: 0.18em 0 0 0.32em;
  font-size: 0.2em;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.45em 0.85em 0.5em;
  border: 0.18em solid currentColor;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  background: var(--soft);
  flex: 0 0 auto;
}

.role-tags {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.role-tags li {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: 13px;
  color: var(--graphite);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-loop {
  margin-top: auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  position: relative;
}
.hero-loop video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-pill {
  margin-top: auto;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--graphite);
  align-self: flex-start;
}
.hero-pill .bullet {
  width: 6px; height: 6px;
  background: var(--graphite);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

/* hero side */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--graphite);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(108,209,122,0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(108,209,122,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(108,209,122,0.05); }
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.stat-card {
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-card--light {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--graphite);
}
.stat-card--dark {
  background: var(--graphite);
  color: var(--white);
  flex: 1;
  position: relative;
  overflow: hidden;
}
.stat-card--dark::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}
.card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-dim);
}
.card-h {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0;
  color: var(--graphite);
}
.card-p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0;
}
.stat-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.ship-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ship-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ship-list li:last-child { border-bottom: 0; }
.ship-num { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.stat-cta, .ship-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  background: var(--graphite);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  margin-top: auto;
  align-self: stretch;
}
.stat-cta:hover, .ship-cta:hover { background: #000; }
.ship-cta {
  background: var(--white);
  color: var(--graphite);
}
.ship-cta:hover { background: var(--soft); }

/* ============================ ABOUT BAND ============================ */
.band {
  padding: 60px 0 80px;
  background: var(--soft);
}
.band-inner {
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.band-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
}
.band-title {
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 1100px;
  margin: 0;
}

/* ============================ SECTIONS ============================ */
.section { padding: 110px 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--graphite);
  color: var(--white);
}
.section-dark .lead { color: rgba(255,255,255,0.7); }
.section-dark .num-tag { color: rgba(255,255,255,0.85); }

.section-head { max-width: 720px; margin-bottom: 56px; }

/* ============================ SERVICES (accordion) ============================ */
.services-wrap { display: grid; grid-template-columns: 1fr; gap: 56px; }
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.services-title {
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
}
.services-head .num-tag {
  margin-bottom: 6px;
  text-align: right;
  font-size: 13px;
  color: var(--text-dim);
}

.accordion {
  list-style: none;
  padding: 0; margin: 0;
}
.acc-item {
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.acc-item:hover { background: var(--soft); }
.acc-head {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.acc-num {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.acc-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--graphite);
}
.acc-toggle {
  position: relative;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--graphite);
  display: inline-block;
}
.acc-toggle::before, .acc-toggle::after {
  content: "";
  position: absolute;
  inset: 50% 25% auto 25%;
  height: 1.5px;
  background: var(--white);
  transform: translateY(-50%);
  transition: transform .25s;
}
.acc-toggle::after { transform: translateY(-50%) rotate(90deg); }
.acc-item.is-open .acc-toggle::after { transform: translateY(-50%) rotate(0deg); }

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.acc-body > * { overflow: hidden; }
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner {
  padding: 0 8px 28px 112px;
}
.acc-body p {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 720px;
}
.chips {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips li {
  font-size: 12.5px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--graphite);
}
.chips--dark li { background: var(--graphite); color: var(--white); border-color: var(--graphite); }

/* ============================ PROCESS ============================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.proc-num {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.process-grid h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.process-grid p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
}

/* ============================ MARQUEE ============================ */
.marquee {
  background: var(--graphite);
  color: var(--white);
  overflow: hidden;
  border-block: 1px solid var(--graphite);
  padding: 28px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-size: clamp(28px, 4.8vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.marquee-track i {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 14px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================ WHY ============================ */
.why-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-card--lg {
  grid-row: span 2;
  background: var(--cream);
  overflow: hidden;
}
.why-video {
  margin-top: 8px;
  flex: 1 1 auto;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  position: relative;
}
.why-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.why-card--map {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}
.why-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.why-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
}
.why-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.stars { color: #1a1a1a; letter-spacing: 0.04em; font-size: 16px; }
.why-rating span { font-size: 13px; color: var(--text-dim); }
.why-icon {
  font-size: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--white);
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.why-globe {
  width: 130px; height: 130px;
  flex: 0 0 auto;
  opacity: 0.75;
}
.why-card--map > div:first-of-type { grid-column: 1; order: 2; }
.why-card--map h3 { grid-column: 1; order: 1; }
.why-card--map p { grid-column: 1; order: 3; }
.why-card--map .why-globe { grid-column: 2; grid-row: 1 / span 3; }

/* ============================ TESTIMONIALS ============================ */
.section-testimonials {
  background: var(--graphite);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(600px 600px at 0% 100%, rgba(108,209,122,0.05), transparent 70%);
  pointer-events: none;
}
.testimonials-inner { position: relative; }
.testi-display {
  font-size: clamp(70px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 56px;
  color: var(--white);
}
.quote {
  margin: 0;
  max-width: 760px;
}
.quote blockquote {
  margin: 0 0 28px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--white);
}
.quote blockquote::before { content: "“ "; opacity: 0.5; }
.quote blockquote::after { content: " ”"; opacity: 0.5; }
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.quote-name { color: var(--white); font-weight: 600; letter-spacing: 0.04em; }

/* ============================ STACK ============================ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.stack-grid > div {
  border-radius: var(--radius);
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.stack-grid h4 {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 600;
}
.stack-grid ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 7px;
}
.stack-grid li { font-size: 14.5px; }

/* ============================ CONTACT ============================ */
.section-contact {
  background: var(--white);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px;
  background:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.06) 1px, transparent 0) 0 0/22px 22px,
    var(--white);
}
.contact-headline {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 0 0 32px;
}
.subscribe {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--graphite);
  max-width: 520px;
  padding: 12px 0;
  background: transparent;
}
.subscribe input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  outline: none;
  color: var(--graphite);
  padding: 8px 0;
}
.subscribe button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--white);
  border: 0;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s;
}
.subscribe button:hover { background: #000; }
.legal {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--text-dim);
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
}
.contact-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 19px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.contact-row .num { color: var(--text-dim); font-size: 13px; }
.contact-row:hover { background: var(--soft); border-color: var(--line); }
.contact-row--active {
  background: var(--graphite);
  color: var(--white);
}
.contact-row--active .num { color: rgba(255,255,255,0.6); }

/* ============================ FOOTER ============================ */
.footer {
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-num {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.footer-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-val {
  display: block;
  font-size: 15px;
  color: var(--graphite);
  padding: 4px 0;
}
.footer-val:hover { text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1140px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-side { order: 2; flex-direction: row; align-items: stretch; }
  .card-stack { flex-direction: row; flex: 1; }
  .stat-card--dark, .stat-card--light { flex: 1; }
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card--lg { grid-row: span 2; grid-column: 1 / -1; }
  .why-card--map { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .topnav, .topbar-meta { display: none; }

  /* Mobile topbar: brand left, controls right, NO floating logo with bg */
  .topbar-inner {
    grid-template-columns: 1fr auto;
    height: 64px;
    gap: 12px;
  }
  .topbar-side:first-of-type { display: none; }
  .brand {
    grid-column: 1;
    justify-content: flex-start;
    text-decoration: none;
  }
  .brand-mark { display: block; width: 42px; height: 42px; }
  .brand-text { display: none; }
  .topbar-side--end {
    grid-column: 2;
    justify-content: flex-end;
    gap: 10px;
  }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 5px 9px; font-size: 11px; }

  .burger { display: inline-flex; }

  /* Mobile drawer */
  .mobile-drawer {
    display: block;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    bottom: 0;
    background: var(--soft);
    z-index: 55;
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,.0,.2,1);
    overflow-y: auto;
  }
  .mobile-drawer.is-open { transform: translateY(0); }
  .mobile-drawer-inner {
    padding: 32px 28px 48px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-drawer a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 18px 4px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--graphite);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .mobile-drawer a .num {
    font-size: 12px;
    color: var(--steel);
    font-weight: 500;
    min-width: 32px;
  }
  .mobile-drawer .drawer-mail {
    margin-top: 18px;
    font-size: 16px;
    color: var(--text-dim);
    border: 0;
    padding: 12px 4px;
  }
  .mobile-drawer .drawer-meta {
    padding: 4px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
  }
  body.drawer-locked { overflow: hidden; }

  .hero-side { flex-direction: column; }
  .card-stack { flex-direction: column; }
  .services-head { grid-template-columns: 1fr; }
  .services-head .num-tag { text-align: left; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding: 36px; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .acc-head { grid-template-columns: 50px 1fr 32px; gap: 16px; padding: 22px 6px; }
  .acc-body-inner { padding-left: 66px; }

  /* Fix ship-cta / stat-cta overflowing the dark/light card on mobile */
  .ship-cta, .stat-cta {
    align-self: stretch;
    margin-top: 18px;
    padding: 14px 18px;
  }
  .stat-card { padding-bottom: 24px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .band { padding: 40px 0 50px; }
  .why-grid { grid-template-columns: 1fr; }
  .stack-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .wordmark { font-size: clamp(38px, 12.5vw, 64px); }
  .wordmark-mid {
    width: 12vw; height: 12vw; min-width: 44px; min-height: 44px;
    margin: 0 6px;
    transform: translate(5px, -0.04em);
  }
  .wordmark-ou { font-size: 0.24em; padding: 0.4em 0.7em 0.45em; border-width: 0.16em; margin: 0.1em 0 0 0.25em; }
  .hero-pill { gap: 14px; padding: 12px 18px; font-size: 12px; }
  .hero { padding: 28px 0 50px; }
  .why-card--map { grid-template-columns: 1fr; }
  .why-card--map .why-globe { grid-column: 1; grid-row: auto; width: 100px; height: 100px; }
  .stat-num--lg { font-size: 44px; }
}
