/* Darsavio EXIM — production styles. Monochrome only. Montserrat only. */

:root {
  --ink: #0A0A0A;
  --charcoal: #1F1F1F;
  --bone: #F7F5F1;
  --paper: #FFFFFF;
  --mute1: #E8E6E1;
  --mute2: #B8B5B0;
  --mute3: #6B6B6B;
  --line: rgba(247, 245, 241, 0.10);
  --line-strong: rgba(247, 245, 241, 0.22);
  --ok: #1B7F3A;
  --warn: #B97A00;
  --alert: #C0392B;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--ink); color: var(--bone);
  font-family: 'Montserrat', system-ui, sans-serif; font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: common-ligatures;
}
body { overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
img { display: block; max-width: 100%; }

/* Focus */
:focus-visible { outline: 2px solid var(--bone); outline-offset: 3px; border-radius: 2px; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--bone); color: var(--ink);
  padding: 12px 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  z-index: 100; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-hint { animation: none; opacity: 0.6; }
}

/* ─── Header ─── */
body > header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.85), rgba(10,10,10,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* On any subpage (anywhere a .manual-back exists), make the header opaque so the
   hero image / article never bleeds behind the chrome at top of viewport. */
body:has(.manual-back) > header {
  background: #0A0A0A;
  border-bottom: 1px solid var(--line);
}
header .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer; }
header .logo img { height: 38px; width: auto; transition: transform 0.2s; }
header .logo:hover img { transform: scale(1.03); }
header nav { display: flex; align-items: center; gap: 28px; }
header nav a {
  color: var(--mute2); text-decoration: none; font-size: 12px;
  font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase;
  transition: color 0.25s;
}
header nav a:hover, header nav a:focus-visible { color: var(--bone); }
header .lang { display: flex; gap: 8px; font-size: 12px; font-weight: 600; }
header .lang button {
  background: none; border: 1px solid var(--line); color: var(--mute2);
  padding: 6px 10px; font-family: inherit; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; cursor: pointer; transition: all 0.25s;
}
header .lang button.active { border-color: var(--bone); color: var(--bone); }
header .lang button:hover { color: var(--bone); }

/* ─── Globe canvas ─── */
#globe-canvas {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 1; pointer-events: none;
}

/* ─── Sections ─── */
section { position: relative; z-index: 10; min-height: 100vh; padding: 120px 60px; }
.container { max-width: 1280px; margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mute3); margin-bottom: 24px;
}
.divider { width: 64px; height: 1px; background: var(--bone); margin: 32px 0; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding-top: 160px;
  background: radial-gradient(ellipse at left center, rgba(10,10,10,0.70) 0%, rgba(10,10,10,0.30) 60%, transparent 90%);
}
.hero .container { width: 100%; }
.hero .eyebrow {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: none;
  color: var(--bone); opacity: 0.95;
  margin-bottom: 32px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.7);
}
.hero h1 {
  font-size: clamp(48px, 8vw, 120px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 0.95;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}
.hero h1 .es { color: var(--bone); opacity: 0.82; }
.hero h1 .accent { font-style: italic; font-weight: 500; }
.hero p { font-size: clamp(16px, 1.3vw, 19px); color: var(--bone); opacity: 0.92; max-width: 560px; line-height: 1.6; text-shadow: 0 1px 14px rgba(0,0,0,0.6); }
.scroll-hint {
  position: absolute; bottom: 40px; left: 60px;
  font-size: 11px; letter-spacing: 0.22em; color: var(--mute3);
  text-transform: uppercase; font-weight: 500;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ─── Intro / positioning ─── */
.intro {
  background: linear-gradient(180deg, rgba(10,10,10,0.10), rgba(10,10,10,0.55) 30%, rgba(10,10,10,0.10));
}
.intro .container {
  background: rgba(10,10,10,0.62);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  padding: 48px 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.intro h2 {
  font-size: clamp(28px, 3.4vw, 48px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; max-width: 900px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
.intro h2 em { font-style: italic; font-weight: 500; color: var(--bone); opacity: 0.78; }
.intro .meta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line);
}
.intro .meta-grid div { padding-right: 20px; }
.intro .meta-grid .num {
  font-size: clamp(32px, 3vw, 44px); font-weight: 700; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--bone);
}
.intro .meta-grid .label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--bone); opacity: 0.72; margin-top: 8px; font-weight: 500;
}

/* ─── About ─── */
.about {
  padding: 140px 60px;
  background: linear-gradient(180deg, rgba(10,10,10,0.10), rgba(10,10,10,0.55) 30%, rgba(10,10,10,0.10));
}
.about .container {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
  max-width: 1280px; margin: 0 auto;
  padding: 64px;
  background: rgba(10,10,10,0.62);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.about .lead h2 {
  font-size: clamp(36px, 4.5vw, 64px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 28px;
}
.about .lead h2 em { font-style: italic; font-weight: 500; color: var(--mute2); }
.about .lead .meta {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute3); font-weight: 600; margin-top: 32px; line-height: 1.8;
}
.about .copy p {
  font-size: 17px; color: var(--bone); line-height: 1.7; margin-bottom: 24px; max-width: 620px;
}
.about .copy p:last-child { color: var(--mute2); }

/* ─── Chapter sections ─── */
.chapter { min-height: 100vh; display: flex; align-items: center; padding: 80px 60px; }
.chapter .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.chapter.right .content { order: 2; }
.chapter .stage { height: 60vh; }

/* No backdrop card — text drop-shadow alone keeps prose readable on the globe */
.chapter .content {
  background: transparent;
  border: none;
  padding: 0;
}

.chapter .index { display: none; }
.chapter h3 {
  font-size: clamp(36px, 4.5vw, 64px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1; margin-bottom: 20px;
  color: var(--bone);
  text-shadow:
    0 2px 4px rgba(0,0,0,0.95),
    0 4px 28px rgba(0,0,0,0.9),
    0 0 48px rgba(0,0,0,0.7);
}
.chapter .corridor {
  font-size: 13px; letter-spacing: 0.20em; text-transform: uppercase;
  font-weight: 600; color: var(--bone); margin-bottom: 28px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.95), 0 0 18px rgba(0,0,0,0.85);
}
.chapter .corridor .arrow { color: var(--mute2); margin: 0 8px; }
.chapter .corridor .dest { color: var(--bone); }
.chapter p {
  font-size: 16px; line-height: 1.7; color: var(--bone); opacity: 1;
  max-width: 480px; margin-bottom: 24px;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.95),
    0 2px 18px rgba(0,0,0,0.9),
    0 0 32px rgba(0,0,0,0.75);
}
.chapter .product-photo {
  width: 100%; max-width: 480px; aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--line); background: var(--charcoal);
  margin-bottom: 28px;
}
.chapter .spec {
  display: grid; grid-template-columns: auto 1fr; gap: 12px 32px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line-strong);
  font-size: 13px;
}
.chapter .spec dt { color: var(--bone); opacity: 0.85; letter-spacing: 0.10em; text-transform: uppercase; font-weight: 500; text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 0 12px rgba(0,0,0,0.85); }
.chapter .spec dd { color: var(--bone); font-weight: 500; font-variant-numeric: tabular-nums; text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 0 12px rgba(0,0,0,0.85); }
.chapter .spec { border-top-color: rgba(247,245,241,0.25); }

/* ─── Catalog ─── */
.catalog { padding: 140px 60px; background: rgba(10,10,10,0.95); }
.catalog h2 {
  font-size: clamp(40px, 5vw, 72px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1; margin-bottom: 16px;
}
.catalog .lead { font-size: 17px; color: var(--mute2); max-width: 640px; line-height: 1.6; margin-bottom: 80px; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.product-grid .item {
  position: relative; padding: 0;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background 0.3s;
  min-height: 240px;
  display: flex; flex-direction: column;
  background: rgba(10,10,10,0.65);
}
.product-grid .item:hover { background: rgba(247,245,241,0.04); }
.product-grid .item .thumb {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  background: var(--charcoal);
}
.product-grid .item .body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.product-grid .item .name {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25;
  margin-bottom: 8px;
}
.product-grid .item .cat {
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--mute3); font-weight: 600;
}
.product-grid .item .num {
  font-size: 11px; color: var(--mute3); font-variant-numeric: tabular-nums; font-weight: 500;
  margin-top: auto; padding-top: 12px;
}

/* ─── Method ─── */
.method { padding: 140px 60px; background: rgba(10,10,10,0.92); }
.method h2 {
  font-size: clamp(40px, 5vw, 72px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1; margin-bottom: 80px;
}
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.step { border-top: 1px solid var(--bone); padding-top: 24px; }
.step .n { font-size: 11px; letter-spacing: 0.20em; color: var(--mute3); font-weight: 600; margin-bottom: 16px; }
.step h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.2; }
.step p { font-size: 13px; color: var(--mute2); line-height: 1.6; }

/* ─── Certifications ─── */
.certs { padding: 140px 60px; background: rgba(10,10,10,0.92); border-top: 1px solid var(--line); }
.certs h2 {
  font-size: clamp(32px, 4vw, 56px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 16px;
}
.certs .lead { font-size: 15px; color: var(--mute2); max-width: 620px; line-height: 1.6; margin-bottom: 64px; }
.cert-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 56px 40px;
  padding-top: 56px;
}
.cert-grid .cert {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  position: relative;
}
.cert-grid .cert picture { display: flex; align-items: center; justify-content: center; height: 200px; }
.cert-grid .cert img {
  height: 200px; width: auto; max-width: 280px; object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45)) drop-shadow(0 2px 6px rgba(0,0,0,0.30));
  transition: filter 0.18s ease, transform 0.18s ease;
}
.cert-grid .cert:hover img {
  transform: translateY(-3px);
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.55)) drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.cert-grid .cert .label {
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--bone); font-weight: 700; text-align: center; line-height: 1.3;
}
.cert-view-all {
  display: inline-block; margin-top: 40px;
  font-size: 13px; letter-spacing: 0.06em; color: var(--bone);
  text-decoration: underline; text-underline-offset: 4px;
}

/* ─── FAQ — accordion with details/summary, surfaces FAQPage rich snippet ─── */
.faq { padding: 140px 60px; background: rgba(10,10,10,0.94); border-top: 1px solid var(--line); }
.faq .container { max-width: 920px; margin: 0 auto; }
.faq h2 {
  font-size: clamp(32px, 4vw, 56px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 16px;
}
.faq .lead { font-size: 15px; color: var(--mute2); max-width: 640px; line-height: 1.65; margin-bottom: 56px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(247,245,241,0.025);
  border: 1px solid rgba(247,245,241,0.10);
  border-radius: 6px;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.faq-item[open] { background: rgba(247,245,241,0.05); border-color: rgba(247,245,241,0.18); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 28px;
  font-size: 16px; font-weight: 600; line-height: 1.4;
  color: var(--bone);
  position: relative; padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--mute2); transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: #FFFFFF; }
.faq-item .faq-answer {
  padding: 0 28px 24px;
  font-size: 15px; line-height: 1.7; color: var(--mute1);
}

/* ─── Product detail page ─── */
.product-page { background: #0A0A0A; }
.product-page #globe-canvas { display: none; }
.pd-wrap { max-width: 1180px; margin: 0 auto; padding: 128px 32px 100px; display: flex; flex-direction: column; }
.pd-breadcrumb { font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--mute2); margin-bottom: 20px; }
.pd-breadcrumb a { color: var(--mute1); text-decoration: none; border-bottom: 1px solid var(--line); }
.pd-breadcrumb a:hover { color: var(--bone); }

.pd-back {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; margin-bottom: 32px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  background: var(--bone);
  border: 1px solid var(--bone);
  border-radius: 4px; transition: all 0.18s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.pd-back:hover { background: transparent; color: var(--bone); border-color: var(--bone); }
.pd-back::before { content: '←'; font-size: 18px; line-height: 1; font-weight: 700; }

/* .back-bar removed in v23 — superseded by sticky .manual-back pill which is more
   prominent and lives in one component instead of two stacked back affordances. */
.back-bar { display: none !important; }

.pd-callout {
  margin: 32px 0; padding: 22px 26px;
  background: rgba(247,245,241,0.04);
  border-left: 3px solid var(--bone);
  border-radius: 0 6px 6px 0;
}
.pd-callout h3 {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone); margin-bottom: 10px; font-weight: 700;
}
.pd-callout p { font-size: 14px; line-height: 1.65; color: var(--mute1); margin: 0; }
.pd-callout p + p { margin-top: 10px; }
.pd-callout.india-only { border-left-color: #C9A96E; background: rgba(201,169,110,0.06); }
.pd-callout.india-only h3 { color: #E8C896; }

.pd-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; margin-bottom: 64px; }
.pd-media picture, .pd-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); background: var(--charcoal); }
.pd-summary .pd-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute3); font-weight: 600; margin-bottom: 12px; }
.pd-summary h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 20px; color: var(--bone); }
.pd-summary .pd-deck { font-size: 17px; line-height: 1.6; color: var(--mute1); margin-bottom: 28px; }

.pd-facts { display: grid; grid-template-columns: auto 1fr; gap: 10px 24px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 28px; font-size: 13px; }
.pd-facts dt { color: var(--mute2); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.pd-facts dd { color: var(--bone); margin: 0; font-weight: 500; }

.pd-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary, .btn-secondary { display: inline-block; padding: 14px 26px; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; border-radius: 4px; transition: all 0.2s; }
.btn-primary { background: var(--bone); color: var(--ink); border: 1px solid var(--bone); }
.btn-primary:hover { background: #FFFFFF; }
.btn-secondary { background: transparent; color: var(--bone); border: 1px solid var(--bone); }
.btn-secondary:hover { background: var(--bone); color: var(--ink); }

.pd-detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; padding: 48px 0; border-top: 1px solid var(--line); }
.pd-block h2 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--bone); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--line-strong); }
.pd-block ul { list-style: none; padding: 0; margin: 0; }
.pd-block li { font-size: 14px; line-height: 1.6; color: var(--mute1); padding: 6px 0; border-bottom: 1px dashed rgba(247,245,241,0.06); }
.pd-block li:last-child { border-bottom: none; }
.pd-empty { font-size: 14px; line-height: 1.7; color: var(--mute2); font-style: italic; }

.pd-faq { padding: 80px 0; background: transparent; border-top: 1px solid var(--line); }
.pd-faq h2 { font-size: clamp(24px, 3vw, 40px); margin-bottom: 32px; color: var(--bone); }

.pd-bottom-cta { text-align: center; padding: 64px 32px; margin-top: 64px; border-top: 1px solid var(--line); }
.pd-bottom-cta h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 700; margin-bottom: 16px; color: var(--bone); }
.pd-bottom-cta p { font-size: 15px; color: var(--mute2); margin-bottom: 28px; }
.pd-bottom-cta .btn-primary, .pd-bottom-cta .btn-secondary { margin: 0 6px; }

/* Catalog item link styling */
.product-grid .item { text-decoration: none; color: inherit; cursor: pointer; }
.product-grid .item:hover .name { color: #FFFFFF; }
.product-grid .item .name { transition: color 0.2s; }

/* ─── Inquiry form ─── */
.inquiry { padding: 140px 60px; background: rgba(10,10,10,0.92); border-top: 1px solid var(--line); }
.inquiry .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.inquiry h2 {
  font-size: clamp(36px, 4.5vw, 64px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 20px;
}
.inquiry h2 em { font-style: italic; font-weight: 500; color: var(--mute2); }
.inquiry .pitch p { font-size: 15px; color: var(--mute2); line-height: 1.65; max-width: 360px; margin-bottom: 16px; }
.inquiry form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry form .full { grid-column: 1 / -1; }
.inquiry label {
  display: flex; flex-direction: column; gap: 8px;
}
.inquiry label > span {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute3); font-weight: 600;
}
.inquiry input,
.inquiry select,
.inquiry textarea {
  background: var(--charcoal); border: 1px solid var(--line);
  color: var(--bone); padding: 12px 14px;
  font-family: inherit; font-size: 14px; font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
}
.inquiry input:focus, .inquiry select:focus, .inquiry textarea:focus {
  outline: none; border-color: var(--bone);
}
.inquiry textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.inquiry select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--mute2) 50%), linear-gradient(135deg, var(--mute2) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 32px; }
.inquiry .honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.inquiry .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.inquiry button.primary,
.inquiry a.wa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bone); color: var(--ink);
  padding: 14px 24px; font-family: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase; cursor: pointer;
  border: 1px solid var(--bone); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.inquiry button.primary:hover, .inquiry a.wa-btn:hover { background: transparent; color: var(--bone); }
.inquiry .note { grid-column: 1 / -1; font-size: 11px; color: var(--mute3); letter-spacing: 0.06em; margin-top: 6px; }

/* ─── Contact ─── */
.contact { padding: 140px 60px; background: rgba(10,10,10,0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact h2 {
  font-size: clamp(40px, 5vw, 72px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1;
}
.contact h2 em { font-style: italic; font-weight: 500; color: var(--mute2); }
.contact .info { display: flex; flex-direction: column; gap: 24px; padding-top: 12px; }
.contact .info a {
  color: var(--bone); text-decoration: none; font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--line); padding-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color 0.2s;
}
.contact .info a:hover { border-color: var(--bone); }
.contact .info a .label { color: var(--mute3); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }

/* ─── Google Maps embed (Share > Embed a map from GMB — no API key) ───
   Capsule bezel (soft rounded-rect corners) + dark-mode CSS filter on the
   iframe (the free embed has no native dark theme, this is the standard
   invert/hue-rotate trick) + a mid-strength vignette layered on top to fade
   the inside edges to black, matching the site's monochrome shell. */
.map-embed {
  grid-column: 1 / -1;
  position: relative; width: 100%;
  aspect-ratio: 16 / 9; max-height: 420px;
  margin-top: 56px;
  border-radius: 0 0 80px 80px / 0 0 85px 85px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  background: #0A0A0A;
}
.map-embed-frame {
  position: absolute; inset: 0; width: 100%; height: 100%;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85);
}
.map-embed-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 85% 80% at 50% 50%, transparent 55%, #0A0A0A 100%);
}
@media (max-width: 700px) {
  .map-embed { aspect-ratio: 4 / 3; max-height: 320px; margin-top: 36px; border-radius: 0 0 48px 48px / 0 0 52px 52px; }
}

/* ─── Documentation block (inside Catalog) ─── */
.docs-block { margin-top: 80px; padding-top: 48px; border-top: 1px solid var(--line); }
.docs-block h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
.docs-block > p.lead { font-size: 14px; color: var(--bone); opacity: 0.78; max-width: 720px; line-height: 1.7; margin-bottom: 36px; }
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.docs-grid .card {
  border: 1px solid var(--line); padding: 22px 22px 24px;
  background: rgba(247,245,241,0.02);
}
.docs-grid .card h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone); opacity: 0.78; margin-bottom: 14px;
}
.docs-grid .card ul {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px;
}
.docs-grid .card li {
  font-size: 13px; color: var(--bone); opacity: 0.86; line-height: 1.55;
  padding-left: 14px; position: relative;
}
.docs-grid .card li::before { content: '·'; position: absolute; left: 0; color: var(--bone); opacity: 0.5; }

/* ─── Partners (logo wall) ─── */
.partners { padding: 140px 60px; background: rgba(10,10,10,0.92); border-top: 1px solid var(--line); }
.partners h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 16px; }
.partners .lead { font-size: 15px; color: var(--bone); opacity: 0.78; max-width: 620px; line-height: 1.6; margin-bottom: 56px; }
.partner-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.partner-grid .partner {
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 24px; min-height: 110px;
  transition: background 0.25s;
}
.partner-grid .partner:hover { background: rgba(247,245,241,0.04); }
.partner-grid .partner img {
  max-height: 50px; max-width: 130px; width: auto; object-fit: contain;
  filter: grayscale(1) brightness(1.4) opacity(0.85);
  transition: opacity 0.25s;
}
.partner-grid .partner:hover img { opacity: 1; }
.partner-grid .partner.empty {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone); opacity: 0.42; font-weight: 600; text-align: center;
}

/* v26: grouped partner rails — white-card treatment matching 05 compliance section
   so the carrier logos read at first glance. No grayscale. Full colour. */
.partner-group { margin-bottom: 36px; padding-top: 8px; }
.partner-group:last-child { margin-bottom: 0; }
.partner-group-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute3); margin-bottom: 18px; font-weight: 700;
}
.partner-group .partner-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px 36px;
  background: transparent; border: 0;
}
.partner-tile {
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  padding: 0; min-height: 120px;
}
.partner-tile img {
  height: 140px; width: auto; max-width: 260px; object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45)) drop-shadow(0 2px 6px rgba(0,0,0,0.30));
  transition: filter 0.18s ease, transform 0.18s ease;
}
.partner-tile:hover img {
  transform: translateY(-3px);
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.55)) drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
@media (max-width: 700px) {
  .partner-group .partner-grid { gap: 28px 18px; grid-template-columns: repeat(2, 1fr); }
  .partner-tile { min-height: 70px; }
  .partner-tile img { height: 68px; max-width: 130px; }
}

/* ─── Blog ─── */
.blog { padding: 140px 60px; background: rgba(10,10,10,0.95); border-top: 1px solid var(--line); }
.blog h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 16px; }
.blog .lead { font-size: 15px; color: var(--bone); opacity: 0.78; max-width: 620px; line-height: 1.6; margin-bottom: 56px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border: 1px solid var(--line); padding: 28px 26px 32px;
  background: rgba(247,245,241,0.025);
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: var(--bone);
  transition: border-color 0.25s, background 0.25s;
}
.blog-card:hover { border-color: var(--line-strong); background: rgba(247,245,241,0.05); }
.blog-card .meta { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone); opacity: 0.6; font-weight: 600; }
.blog-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; }
.blog-card p { font-size: 13px; line-height: 1.6; color: var(--bone); opacity: 0.78; }
.blog-card .read { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--bone); margin-top: auto; padding-top: 12px; }
.blog-card .read::after { content: ' →'; }

/* ─── Footer CIN line ─── */
.footer-cin {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone);
  opacity: 0.72;
  margin-top: 4px;
}

/* ─── Google My Business button (footer) ─── */
.gmb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  background: rgba(247,245,241,0.04);
  color: var(--bone);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.gmb-btn:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* ─── Social rail (footer + contact) ─── */
.social-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: transparent; color: var(--bone);
  border: 1px solid var(--line); border-radius: 50%;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.social-row a:hover { border-color: var(--bone); background: var(--bone); color: var(--ink); }
.social-row a svg { width: 16px; height: 16px; }

/* ─── Blog page (standalone article + hub) ─── */
body.blog-page { background: var(--ink); }
body.blog-page main { padding-top: 120px; }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 128px 28px 120px; display: flex; flex-direction: column; }
.article-wrap .breadcrumb { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute3); margin-bottom: 28px; }
.article-wrap .breadcrumb a { color: var(--mute3); text-decoration: none; transition: color 0.2s; }
.article-wrap .breadcrumb a:hover { color: var(--bone); }
.article-wrap .meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute3); font-weight: 600; margin-bottom: 18px; }
.article-wrap h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 32px; }
.article-wrap p.deck { font-size: 19px; line-height: 1.65; color: var(--mute2); margin-bottom: 36px; max-width: 640px; }
.article-wrap article p { font-size: 16px; line-height: 1.75; margin-bottom: 22px; color: var(--bone); opacity: 0.92; }
.article-wrap article h2 { font-size: 24px; font-weight: 600; letter-spacing: -0.015em; margin: 48px 0 18px; }
.article-wrap article h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 36px 0 14px; }
.article-wrap article ul, .article-wrap article ol { padding-left: 24px; margin-bottom: 22px; }
.article-wrap article li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; color: var(--bone); opacity: 0.92; }
.article-wrap article blockquote {
  border-left: 2px solid var(--bone); padding-left: 20px; margin: 32px 0;
  font-style: italic; color: var(--bone); opacity: 0.85;
}
.article-wrap .related { margin-top: 80px; padding-top: 40px; border-top: 1px solid var(--line); }
.article-wrap .related h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute3); margin-bottom: 20px; }
.article-wrap .related a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--bone); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.article-wrap .related a:hover { color: var(--bone); opacity: 0.7; }
.article-wrap .signoff { margin-top: 60px; font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--mute3); font-weight: 600; }

.blog-hub-wrap { max-width: 1080px; margin: 0 auto; padding: 128px 28px 120px; display: flex; flex-direction: column; }
.blog-hub-wrap .lead { font-size: 17px; line-height: 1.6; color: var(--mute2); max-width: 620px; margin-bottom: 56px; }
.blog-hub-wrap h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -0.025em; line-height: 1; margin-bottom: 18px; }

/* ─── Floating CTAs ─── */
.fab-stack {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 40;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--bone); color: var(--ink);
  border: 1px solid var(--bone); border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.fab:hover { transform: translateY(-2px); background: var(--ink); color: var(--bone); }
.fab svg { width: 22px; height: 22px; }

/* ─── Footer ─── */
footer {
  /* Right padding clears the fixed FAB stack so column text never sits under it. */
  padding: 26px 96px 20px 48px; border-top: 1px solid var(--line);
  position: relative; z-index: 10; background: var(--ink);
}
footer .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
footer .col { font-size: 12px; line-height: 1.65; color: var(--mute3); max-width: 320px; }
footer .col a, footer .legal a { color: var(--bone); text-decoration: underline; text-underline-offset: 3px; }
footer .col a:hover, footer .legal a:hover { opacity: 0.8; }
footer .footer-logo { height: 52px; width: auto; margin-bottom: 10px; }
footer .col strong { color: var(--bone); font-weight: 600; letter-spacing: -0.005em; }
footer .tag { font-size: 12px; font-weight: 600; color: var(--bone); margin-top: 20px; letter-spacing: -0.005em; }
footer .legal { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 11px; color: var(--mute3); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .about .container, .inquiry .container { grid-template-columns: 1fr; gap: 48px; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  header { padding: 10px 16px; }
  header nav { display: none; }
  header .lang { font-size: 10px; gap: 4px; flex-shrink: 0; }
  header .lang button { padding: 5px 7px; font-size: 10px; letter-spacing: 0.04em; }
  header .logo img { height: 32px; }

  /* Compress section paddings for shorter scroll + no horizontal bleed */
  section { padding: 56px 20px; min-height: auto; }
  .hero { min-height: 100vh; padding: 120px 20px 56px; }

  /* About block: tighter card, cleaner text sizing, no overflow */
  .about { padding: 48px 16px; }
  .about .container { padding: 26px 20px; gap: 24px; grid-template-columns: 1fr; }
  .about .lead h2 { font-size: clamp(28px, 8vw, 40px); margin-bottom: 18px; }
  .about .lead .meta { font-size: 11px; margin-top: 20px; letter-spacing: 0.14em; }
  .about .copy p { font-size: 15px; line-height: 1.6; margin-bottom: 16px; max-width: 100%; }
  .about .tagline { font-size: 14px; }

  /* Chapters: no forced 100vh — collapses total scroll length */
  .chapter { min-height: auto; padding: 52px 20px; }
  .chapter .container { grid-template-columns: 1fr; gap: 24px; }
  .chapter .stage { display: none; }
  .chapter .content { padding: 0; }
  .chapter h3 { font-size: clamp(24px, 6.5vw, 34px); }

  /* Grids collapse cleanly */
  /* Catalog: 2-col tight tiles on mobile so 26 items don't create an 18-viewport scroll */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-grid .item .thumb { aspect-ratio: 1 / 1; }
  .product-grid .item .body { padding: 10px 12px 14px; }
  .product-grid .item .name { font-size: 13px; line-height: 1.3; }
  .product-grid .item .cat { font-size: 10px; margin-top: 4px; }
  .product-grid .item .num { font-size: 10px; margin-top: 6px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .contact .container { grid-template-columns: 1fr; gap: 32px; }
  .about .container, .inquiry .container { grid-template-columns: 1fr; gap: 28px; }
  .intro .meta-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .inquiry form { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pd-hero { grid-template-columns: 1fr; gap: 24px; }
  .pd-detail { grid-template-columns: 1fr; gap: 24px 0; padding: 28px 0; }
  .pd-wrap { padding: 96px 18px 60px; }

  /* Cert grid mobile: floating no-box tiles, compact for shorter scroll — smaller than desktop's ~200px */
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; padding-top: 32px; }
  .cert-grid .cert picture { height: 76px; }
  .cert-grid .cert img { height: 76px; max-width: 130px; }
  .cert-grid .cert .label { font-size: 11px; letter-spacing: 0.10em; }
  .certs { padding: 56px 20px; }
  .certs h2 { font-size: clamp(26px, 6.5vw, 36px); }
  .certs .lead { font-size: 13px; margin-bottom: 24px; }

  /* Partner grid: 3-col compact tiles — was 2-col with giant logos */
  .partners { padding: 56px 20px; }
  .partners h2 { font-size: clamp(26px, 6.5vw, 36px); }
  .partners .lead { font-size: 13px; margin-bottom: 24px; }
  .partner-group { margin-bottom: 20px; }
  .partner-group-label { font-size: 10px; margin-bottom: 10px; letter-spacing: 0.14em; }
  .partner-group .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .partner-grid .partner { padding: 12px 6px; border-radius: 6px; min-height: 68px; }
  .partner-grid .partner img { height: 40px; max-width: 84px; max-height: 44px; }
  .partner-tile { padding: 0; min-height: 70px; border-radius: 0; box-shadow: none; }
  .partner-tile img { height: 68px; max-width: 130px; }

  /* FAB stack tighter so it does not eat viewport */
  .fab-stack { bottom: 14px; right: 12px; gap: 8px; }
  .fab { width: 42px; height: 42px; }
  .fab svg { width: 18px; height: 18px; }

  /* Scroll cue smaller + closer */
  .scroll-hint { left: 20px; bottom: 20px; font-size: 10px; }

  /* FAQ tighter */
  .faq { padding: 56px 20px; }
  .faq h2 { font-size: clamp(26px, 6.5vw, 36px); }
  .faq-item summary { padding: 14px 18px; padding-right: 44px; font-size: 14px; }
  .faq-item .faq-answer { padding: 0 18px 16px; font-size: 13px; }

  /* Intro / positioning tighter */
  .intro { padding: 56px 20px; }
  .intro h2 { font-size: clamp(28px, 7vw, 42px); }
  .intro .meta-grid .num { font-size: clamp(30px, 8vw, 44px); }
  .intro .meta-grid .label { font-size: 11px; }

  /* Catalog tighter */
  .catalog { padding: 56px 20px; }
  .catalog h2 { font-size: clamp(28px, 7vw, 42px); }
  .catalog .lead { font-size: 14px; margin-bottom: 36px; }

  /* Method tighter */
  .method { padding: 56px 20px; }
  .method h2 { font-size: clamp(28px, 7vw, 42px); }

  /* Contact + Inquiry tighter */
  .contact, .inquiry { padding: 56px 20px; }
  .contact h2, .inquiry h2 { font-size: clamp(26px, 6.5vw, 36px); }

  /* Blog tighter */
  .blog { padding: 56px 20px; }
  .blog h2 { font-size: clamp(26px, 6.5vw, 36px); }
  .blog .lead { font-size: 14px; margin-bottom: 28px; }

  /* Footer: thinner + tighter — reclaims viewport space */
  footer { padding: 14px 18px 16px; }
  footer .footer-logo { height: 40px; margin-bottom: 8px; }
  footer .row { gap: 16px; }
  footer .col { font-size: 11px; max-width: 100%; line-height: 1.55; }
  footer .col strong { font-size: 12px; }
  footer .tag { font-size: 11px; margin-top: 12px; }
  footer .legal { font-size: 10px; gap: 8px; margin-top: 14px; padding-top: 10px; flex-direction: column; align-items: flex-start; }
  footer .gmb-btn { padding: 6px 10px; font-size: 10px; margin-top: 8px; }
}

/* ─── Cookie banner (Consent Mode v2) ─── */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 980px; margin: 0 auto;
  background: var(--bone); color: var(--ink);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.45), 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.cookie-banner.is-shown { opacity: 1; transform: translateY(0); }
.cookie-banner__inner {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 22px;
}
.cookie-banner__text {
  flex: 1; font-size: 13px; line-height: 1.55; color: #1F1F1F;
}
.cookie-banner__text strong { color: var(--ink); font-weight: 700; letter-spacing: -0.005em; }
.cookie-banner__privacy {
  color: var(--ink); text-decoration: underline; text-underline-offset: 2px;
  font-weight: 600; white-space: nowrap;
}
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__btn {
  font: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 6px; cursor: pointer;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner__btn--ghost { border-color: rgba(10,10,10,0.25); color: rgba(10,10,10,0.78); }
.cookie-banner__btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.cookie-banner__btn--primary { background: var(--ink); color: var(--bone); }
.cookie-banner__btn--primary:hover { background: #1F1F1F; }

@media (max-width: 768px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 14px 16px; }
  .cookie-banner__text { font-size: 12.5px; }
  .cookie-banner__actions { justify-content: stretch; flex-wrap: wrap; }
  .cookie-banner__btn { flex: 1; padding: 11px 12px; font-size: 11px; }
}

/* ─── Geo language banner — matches cookie-banner treatment but slimmer ─── */
/* Fixed strip at bottom-left, above the cookie banner if both appear. Cream
   pill on dark backdrop. Never full-width — stays out of the way. */
.lang-banner {
  position: fixed; left: 16px; bottom: 92px; z-index: 190;
  max-width: 520px;
  background: var(--bone); color: var(--ink);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 3px 8px rgba(0,0,0,0.18);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.lang-banner.is-in { opacity: 1; transform: translateY(0); }
.lang-banner__inner {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
}
.lang-banner__q {
  flex: 1; font-size: 13px; line-height: 1.45; color: #1F1F1F;
  font-weight: 500;
}
.lang-banner__cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  padding: 8px 14px; border-radius: 6px;
  background: var(--ink); color: var(--bone);
  transition: background 0.18s ease;
  white-space: nowrap;
}
.lang-banner__cta:hover { background: #1F1F1F; }
.lang-banner__dismiss {
  font: inherit; font-size: 11px; font-weight: 600;
  color: rgba(10,10,10,0.55); background: transparent; border: 0;
  cursor: pointer; padding: 6px 2px;
  transition: color 0.18s ease;
  white-space: nowrap;
}
.lang-banner__dismiss:hover { color: var(--ink); }
.lang-banner[dir="rtl"] .lang-banner__inner { flex-direction: row-reverse; }

@media (max-width: 768px) {
  .lang-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .lang-banner__inner { flex-direction: column; align-items: stretch; gap: 10px; padding: 12px 14px; }
  .lang-banner__q { font-size: 12.5px; }
  .lang-banner__cta { text-align: center; }
  .lang-banner__dismiss { text-align: center; }
}

/* ─── Cookie preferences modal ─── */
.cookie-modal {
  position: fixed; inset: 0; z-index: 220;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.cookie-modal.is-shown { opacity: 1; pointer-events: auto; }
.cookie-modal__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.62);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.cookie-modal__card {
  position: relative; max-width: 560px; margin: 7vh auto 0;
  background: var(--bone); color: var(--ink);
  border-radius: 14px; padding: 28px 28px 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  max-height: 86vh; overflow-y: auto;
}
.cookie-modal__card h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 6px;
}
.cookie-modal__sub { font-size: 13px; line-height: 1.55; color: #4A4A4A; margin-bottom: 20px; }
.cookie-modal__rows { list-style: none; padding: 0; margin: 0 0 22px; }
.cookie-modal__row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0; border-top: 1px solid rgba(0,0,0,0.08);
}
.cookie-modal__row:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.cookie-modal__row-text { flex: 1; }
.cookie-modal__row-title { font-size: 13px; font-weight: 700; letter-spacing: 0.01em; margin-bottom: 4px; }
.cookie-modal__row-desc { font-size: 12px; line-height: 1.5; color: #4A4A4A; }
.cookie-modal__toggle {
  position: relative; width: 40px; height: 22px; flex-shrink: 0;
  display: inline-block; cursor: pointer;
}
.cookie-modal__toggle input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.cookie-modal__toggle input[disabled] { cursor: not-allowed; }
.cookie-modal__toggle-track {
  position: absolute; inset: 0; background: #C8C8C8; border-radius: 999px; transition: background 0.18s;
}
.cookie-modal__toggle-track::before {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; background: #fff; border-radius: 50%;
  transition: transform 0.18s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-modal__toggle input:checked ~ .cookie-modal__toggle-track { background: var(--ink); }
.cookie-modal__toggle input:checked ~ .cookie-modal__toggle-track::before { transform: translateX(18px); }
.cookie-modal__toggle input[disabled] ~ .cookie-modal__toggle-track { background: var(--ink); opacity: 0.45; }
.cookie-modal__actions { display: flex; justify-content: flex-end; gap: 8px; }

/* ─── Manual back button (always visible, in flow) ─── */
.manual-back {
  position: sticky; top: 116px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  margin-bottom: 28px;
  padding: 12px 22px;
  background: var(--bone); color: var(--ink);
  border: 1px solid var(--bone); border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.manual-back::before { content: '←'; font-size: 18px; line-height: 1; font-weight: 700; }
.manual-back:hover {
  background: transparent; color: var(--bone);
  transform: translateX(-3px);
}
@media (max-width: 700px) {
  .manual-back { font-size: 12px; padding: 10px 16px; top: 92px; }
}

/* Kill the site-wide "section { min-height:100vh }" rule for content sections on
   subpages — that rule is for the landing-page full-viewport chapters; on product,
   market, and blog pages it just creates massive empty space and pushes the footer
   off-screen. */
.market-section,
.market-cta-block,
.pd-related,
.pd-bottom-cta,
.pd-block,
.pd-callout,
.pd-faq,
section.faq.pd-faq {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.pd-bottom-cta { padding: 48px 32px; text-align: center; }
.pd-faq { padding: 32px 0; }
.market-section, .market-cta-block { padding-left: 0; padding-right: 0; }

/* ─── Markets / Country-corridor pages ─── */
.market-wrap { max-width: 1080px; margin: 0 auto; padding: 128px 32px 100px; display: flex; flex-direction: column; }
.market-breadcrumb {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute3); margin-bottom: 24px;
}
.market-breadcrumb a { color: var(--mute3); text-decoration: none; }
.market-breadcrumb a:hover { color: var(--bone); }

.market-hero { margin-bottom: 64px; }
.market-region {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #C9A96E; font-weight: 700; margin-bottom: 12px;
}
.market-hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05; margin-bottom: 20px;
}
.market-deck {
  font-size: 17px; line-height: 1.6; color: var(--mute2);
  max-width: 760px; margin-bottom: 32px;
}
.market-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px 32px; margin-bottom: 32px;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.market-facts > div { display: flex; flex-direction: column; }
.market-facts dt {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute3); margin-bottom: 4px;
}
.market-facts dd { font-size: 14px; line-height: 1.5; color: var(--bone); }
.market-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.market-section { margin: 56px 0; }
.market-section h2 {
  font-size: 26px; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 16px; color: var(--bone);
}
.market-section p { font-size: 15px; line-height: 1.7; color: var(--mute2); margin-bottom: 12px; }
.market-section strong { color: var(--bone); }

.market-product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-top: 24px;
}
.market-product {
  display: block; background: rgba(247,245,241,0.03);
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.market-product:hover { transform: translateY(-2px); border-color: var(--line-strong); background: rgba(247,245,241,0.06); }
.market-product picture { display: block; aspect-ratio: 16/10; overflow: hidden; }
.market-product img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.market-product:hover img { transform: scale(1.04); }
.market-product-meta { padding: 12px 14px 14px; }
.market-product-eyebrow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute3); margin-bottom: 4px; }
.market-product-name { font-size: 13px; font-weight: 600; color: var(--bone); line-height: 1.35; }

.market-doc-list { padding-left: 22px; margin-top: 12px; }
.market-doc-list li { font-size: 14px; line-height: 1.65; color: var(--mute2); margin-bottom: 6px; }
.market-quirk {
  margin-top: 18px; padding: 16px 20px;
  background: rgba(247,245,241,0.04);
  border-left: 3px solid #C9A96E; border-radius: 0 4px 4px 0;
  font-size: 14px; line-height: 1.65; color: var(--mute1);
}

.market-faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.market-faq-item {
  border: 1px solid var(--line); border-radius: 6px;
  background: rgba(247,245,241,0.025);
  overflow: hidden; transition: border-color 0.2s, background 0.2s;
}
.market-faq-item[open] { border-color: var(--line-strong); background: rgba(247,245,241,0.05); }
.market-faq-item summary {
  cursor: pointer; padding: 16px 22px; list-style: none;
  font-size: 15px; font-weight: 600; color: var(--bone);
  display: flex; justify-content: space-between; align-items: center;
}
.market-faq-item summary::-webkit-details-marker { display: none; }
.market-faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 400; color: var(--bone);
  margin-left: 12px; transition: transform 0.2s;
}
.market-faq-item[open] summary::after { content: '−'; }
.market-faq-item p { padding: 0 22px 18px; font-size: 14px; line-height: 1.7; color: var(--mute1); margin: 0; }

.market-cta-block {
  margin-top: 64px; padding: 40px;
  background: rgba(247,245,241,0.04);
  border: 1px solid var(--line); border-radius: 8px;
  text-align: center;
}
.market-cta-block h2 { font-size: 24px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 12px; }
.market-cta-block p { font-size: 14px; line-height: 1.6; color: var(--mute2); margin-bottom: 22px; max-width: 540px; margin-left: auto; margin-right: auto; }
.market-cta-block .btn-primary, .market-cta-block .btn-secondary { display: inline-block; margin: 0 4px; }

/* ─── Markets hub (/markets/) ─── */
.market-hub-wrap { max-width: 1180px; margin: 0 auto; padding: 128px 32px 120px; display: flex; flex-direction: column; }
.market-hub-wrap h1 {
  font-size: clamp(34px, 5.5vw, 60px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05; margin-bottom: 18px;
}
.market-hub-lead { font-size: 16px; line-height: 1.65; color: var(--mute2); max-width: 760px; margin-bottom: 48px; }
.market-hub-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.market-hub-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 26px;
  background: rgba(247,245,241,0.03); border: 1px solid var(--line); border-radius: 8px;
  text-decoration: none; color: var(--bone);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.market-hub-card:hover { transform: translateY(-3px); border-color: #C9A96E; background: rgba(247,245,241,0.06); }
.market-hub-region {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #C9A96E; font-weight: 700;
}
.market-hub-card h3 {
  font-size: 20px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--bone); margin: 0;
}
.market-hub-fta { font-size: 12px; color: var(--mute2); line-height: 1.45; }
.market-hub-export { font-size: 11px; color: var(--mute3); }
.market-hub-link {
  margin-top: auto; padding-top: 12px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone); font-weight: 700;
}

@media (max-width: 700px) {
  .market-wrap, .market-hub-wrap { padding: 24px 18px 80px; }
  .market-facts { grid-template-columns: 1fr; gap: 14px; }
  .market-product-grid { grid-template-columns: repeat(2, 1fr); }
  .market-cta-block { padding: 28px 20px; }
}

/* ─── Related products (product page footer) ─── */
.pd-related { margin: 64px 0 32px; }
.pd-related h2 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.015em;
  margin-bottom: 24px; color: var(--bone);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.related-card {
  display: block;
  background: rgba(247,245,241,0.03);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(247,245,241,0.06);
}
.related-card picture { display: block; aspect-ratio: 16/10; overflow: hidden; }
.related-card img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s ease;
}
.related-card:hover img { transform: scale(1.04); }
.related-meta { padding: 14px 16px 16px; }
.related-eyebrow {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute3); margin-bottom: 6px;
}
.related-name {
  font-size: 14px; font-weight: 600; color: var(--bone);
  letter-spacing: -0.005em; line-height: 1.35;
}
@media (max-width: 700px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .related-meta { padding: 10px 12px 14px; }
  .related-name { font-size: 13px; }
}

/* ─── Glossary tooltips ─── */
abbr.tip {
  position: relative;
  text-decoration: underline dotted rgba(247,245,241,0.45);
  text-underline-offset: 3px;
  cursor: help;
  font-variant: inherit;
}
abbr.tip:hover, abbr.tip:focus-visible {
  color: var(--bone);
  text-decoration-color: var(--bone);
  outline: none;
}
abbr.tip::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content; max-width: 280px;
  padding: 10px 14px;
  background: #0A0A0A; color: var(--bone);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 12px; font-weight: 400; line-height: 1.5;
  letter-spacing: 0; text-transform: none;
  white-space: normal; text-align: left;
  pointer-events: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s 0.15s;
  z-index: 60; box-shadow: 0 8px 22px rgba(0,0,0,0.55);
}
abbr.tip::before {
  content: '';
  position: absolute; bottom: calc(100% + 2px); left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #0A0A0A;
  pointer-events: none;
  opacity: 0; transition: opacity 0.15s ease;
  z-index: 61;
}
abbr.tip:hover::after, abbr.tip:focus-visible::after {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s;
}
abbr.tip:hover::before, abbr.tip:focus-visible::before { opacity: 1; }
/* Dotted bone underline reads correctly on dark backgrounds (e.g. .pd-wrap,
   .article-wrap) by default — no override needed. (Removed the old cert-grid
   white-card flip: cert labels are plain text now, no abbr.tip inside them.) */

@media (max-width: 600px) {
  abbr.tip::after { max-width: 240px; font-size: 11px; padding: 8px 12px; }
}

/* ─── Back-to-top FAB ─── */
.back-to-top {
  position: fixed; bottom: 216px; right: 24px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bone); color: var(--ink);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--ink); color: var(--bone); }
.back-to-top:focus-visible { outline: 2px solid var(--bone); outline-offset: 3px; }
.back-to-top svg { width: 18px; height: 18px; display: block; }
@media (max-width: 900px) {
  .back-to-top { bottom: 164px; right: 12px; width: 42px; height: 42px; }
  .back-to-top svg { width: 18px; height: 18px; }
}

/* ─── Footer cookie-prefs link ─── */
.cookie-prefs-link {
  background: none; border: none; padding: 0; cursor: pointer;
  color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 2px;
}
.cookie-prefs-link:hover { color: var(--bone); }

/* ─── Related corridors widget ─── */
.related-corridors { margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--line); }
.related-corridors h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; color: var(--bone); }
.related-corridors > p { font-size: 13px; color: var(--mute3); margin: 0 0 24px; max-width: 640px; line-height: 1.55; }
.related-corridors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
.related-corridors-grid a { display: flex; flex-direction: column; padding: 16px 18px; background: rgba(247,245,241,0.03); border: 1px solid var(--line); border-radius: 6px; text-decoration: none; transition: all 0.22s ease; }
.related-corridors-grid a:hover { background: rgba(247,245,241,0.07); border-color: var(--line-strong); transform: translateY(-1px); }
.related-corridors-grid a.current { display: none; }
.rc-region { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute3); margin-bottom: 6px; }
.rc-title { font-size: 14px; font-weight: 600; color: var(--bone); line-height: 1.35; }
.rc-all { display: inline-block; padding: 10px 20px; background: var(--bone); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 4px; }
.rc-all:hover { opacity: 0.9; }
@media (max-width: 900px) { .related-corridors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .related-corridors-grid { grid-template-columns: 1fr; } }

/* ─── HS Code Finder ─── */
.hs-page-wrap { max-width: 900px; margin: 0 auto; padding: 128px 28px 120px; }
.hs-page-wrap h1 { font-size: clamp(32px, 4.4vw, 56px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 16px; }
.hs-page-wrap .eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute3); margin-bottom: 18px; font-weight: 700; }
.hs-page-wrap .lead { font-size: 15px; color: var(--mute2); max-width: 680px; line-height: 1.6; margin-bottom: 32px; }

.hs-search-wrap { margin-bottom: 16px; }
#hs-search-input {
  width: 100%; box-sizing: border-box; padding: 16px 20px; font-size: 16px; font-family: inherit;
  background: var(--charcoal); border: 1px solid var(--line-strong); border-radius: 8px; color: var(--bone);
  outline: none; transition: border-color 0.15s;
}
#hs-search-input:focus { border-color: var(--bone); }
#hs-search-input::placeholder { color: var(--mute3); }

.hs-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 16px; }
.hs-breadcrumb[hidden] { display: none; }
.hs-crumb {
  font: inherit; font-size: 12px; color: var(--mute2); background: none; border: 1px solid var(--line);
  border-radius: 20px; padding: 6px 14px; cursor: pointer; transition: color 0.15s, border-color 0.15s;
}
.hs-crumb:hover { color: var(--bone); border-color: var(--line-strong); }
.hs-crumb-sep { color: var(--mute3); font-size: 11px; }

.hs-result-count { font-size: 12px; color: var(--mute3); margin-bottom: 12px; }

.hs-results { display: flex; flex-direction: column; gap: 1px; }
.hs-row {
  display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 16px;
  padding: 14px 16px; background: var(--charcoal); border-radius: 6px; cursor: pointer;
  transition: background 0.15s;
}
.hs-row:hover { background: rgba(255,255,255,0.06); }
.hs-row-code { font-size: 13px; font-weight: 700; color: var(--bone); letter-spacing: 0.02em; white-space: nowrap; }
.hs-row-desc { font-size: 13.5px; color: var(--mute2); line-height: 1.45; }
.hs-row-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bone);
  text-decoration: none; white-space: nowrap; border: 1px solid var(--line-strong); border-radius: 20px;
  padding: 8px 14px; transition: background 0.15s, color 0.15s;
}
.hs-row-cta:hover { background: var(--bone); color: var(--ink); }
.hs-row-leaf { border-left: 2px solid var(--bone); }

.hs-empty { font-size: 14px; color: var(--mute3); padding: 32px 16px; text-align: center; }

@media (max-width: 700px) {
  .hs-page-wrap { padding: 96px 18px 80px; }
  .hs-row { grid-template-columns: 1fr; gap: 8px; }
  .hs-row-cta { justify-self: start; }
}
