/* ── Shared tokens ─────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 20px;
}
.tag::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
}

/* The logo ships as one SVG (assets/images/logo.svg) used via <img>, so there
   is a single source of truth. It carries its own color="#D8DCE4" default. */
.nav-logo-mark, .footer-logo {
  display: block;
  width: auto;
  height: 24px;
}
.footer-logo { height: 28px; }

/* ── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--accent);
  padding: 15px 32px; text-decoration: none;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: background 0.25s, gap 0.25s;
}
.btn-primary:hover { background: var(--accent-lt); gap: 20px; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--wa);
  padding: 15px 32px; text-decoration: none;
  transition: background 0.25s;
}
.btn-wa:hover { background: #1db954; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--chrome);
  border: 1px solid var(--rule-strong);
  padding: 15px 32px; text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--chrome); color: var(--warm-white); }

/* ── Nav ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  background: var(--bg);
  opacity: 0.97;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(var(--accent-rgb),0.18);
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: rgba(var(--accent-rgb),0.35); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
/* The mark stays chrome on all three pages -- one company. Only the division
   name carries the branch accent, so /german and /japanese read as divisions
   rather than as two separate businesses. */
.nav-div {
  font-family: var(--serif);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); line-height: 1;
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--chrome); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-lt); }

.nav-wa {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--wa); color: #fff;
  padding: 10px 20px; text-decoration: none;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background 0.2s;
}
.nav-wa:hover { background: #1db954; }
.nav-wa svg { flex-shrink: 0; }

/* ── Hero ─────────────────────────────────────── */
.hero {
  height: 100vh; min-height: 680px;
  display: grid; grid-template-columns: 58% 42%;
  position: relative;
}

.hero-left {
  position: relative; overflow: hidden;
  background: var(--bg-panel);
  display: flex; align-items: flex-end;
  padding: 120px 64px 80px;
  isolation: isolate;
}
.hero-left img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.04);
  transition: transform 10s ease;
  filter: saturate(0.8);
}
.hero-left:hover img { transform: scale(1.0); }
.hero-left::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(var(--bg-rgb),0.85) 0%, rgba(var(--bg-rgb),0) 18%),
    linear-gradient(to top, rgba(var(--accent-rgb),0.22) 0%, rgba(var(--bg-rgb),0.82) 50%, rgba(var(--bg-rgb),0.5) 100%);
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -1px; bottom: 0;
  width: 72px; z-index: 3;
  background: var(--bg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hero-content { position: relative; z-index: 4; }

.hero-eyebrow {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-lt);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.9vw, 3.9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--accent); }
.hero-title .dim    { color: var(--chrome); opacity: 0.6; }

.hero-urdu {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  direction: rtl;
  font-weight: 300;
}

.hero-desc {
  font-size: 0.88rem; font-weight: 400;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 340px; margin-bottom: 40px;
}

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

/* Hero stats */
.hero-stats {
  position: absolute; bottom: 48px; right: 48px; z-index: 4;
  display: flex; flex-direction: column; gap: 20px;
}
.h-stat { text-align: right; }
.h-stat-num {
  font-family: var(--mono);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--warm-white); line-height: 1;
}
.h-stat-label {
  font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Mobile hamburger — hidden until <=768 (see responsive.css) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: 0; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--chrome-lt);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
#nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
#nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.h-stat-bar {
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: 6px;
  position: relative; overflow: hidden;
}

.hero-right {
  position: relative; overflow: hidden;
  background: var(--bg-panel-mid);
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.8) contrast(1.08);
  transform: scale(1.04);
  transition: transform 10s ease;
}
.hero-right:hover img { transform: scale(1.0); }
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.12) 0%, transparent 55%);
}

/* Scroll indicator */
.scroll-track {
  position: absolute; left: 40px; bottom: 40px;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; z-index: 4;
}
.chev {
  width: 28px; height: 14px;
  color: var(--accent);
}
.chev:nth-child(1) { animation: chev-1 1.8s ease-in-out infinite; }
.chev:nth-child(2) { animation: chev-2 1.8s ease-in-out infinite 0.2s; }
.chev:nth-child(3) { animation: chev-3 1.8s ease-in-out infinite 0.4s; }

/* ── Brand marquee ─────────────────────────────── */
.brand-bar {
  background: var(--bg-panel);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 16px 0; overflow: hidden;
}
.brand-bar-inner {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
.brand-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-body);
  flex-shrink: 0;
}
.brand-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent); opacity: 0.6;
}

/* ── Services ──────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--bg-mid);
  position: relative;
}
.services-header {
  text-align: center; margin-bottom: 72px;
}
.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.005em;
  color: var(--warm-white); margin-bottom: 14px;
}
.services-header p {
  font-size: 0.88rem; font-weight: 400;
  color: var(--text-body);
  max-width: 380px; margin: 0 auto; line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.svc-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 40px 32px 44px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.svc-card:hover { background: var(--bg-panel-lt); border-color: rgba(var(--accent-rgb),0.2); }
.svc-card:hover::before { height: 100%; }

.svc-num {
  font-family: var(--mono);
  font-size: 2.4rem; font-weight: 700;
  color: rgba(255,255,255,0.03);
  position: absolute; top: 12px; right: 16px;
  line-height: 1; pointer-events: none;
}
.svc-icon {
  width: 36px; height: 36px;
  color: var(--accent-lt);
  margin-bottom: 20px;
}
.svc-name {
  font-family: var(--serif);
  font-size: 0.98rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--warm-white); margin-bottom: 6px;
}
.svc-sub {
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lt); opacity: 0.55;
  margin-bottom: 20px;
}
.svc-desc {
  font-size: 0.82rem; font-weight: 400;
  line-height: 1.8; color: var(--text-body);
}

/* ── Expertise ─────────────────────────────────── */
.expertise {
  padding: 120px 0;
  background: var(--bg-panel);
  position: relative;
}
.expertise::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expertise-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.005em;
  line-height: 1.05; color: var(--warm-white);
  margin-bottom: 28px;
}
.expertise-text h2 .accent { color: var(--accent); }
.expertise-text h2 .dim    { color: var(--chrome); opacity: 0.6; }
.expertise-text p {
  font-size: 0.9rem; font-weight: 400;
  line-height: 1.9; color: var(--text-body);
  margin-bottom: 18px; max-width: 440px;
}
.brands-served {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 36px;
}
.brand-badge {
  font-family: inherit;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--chrome);
  background: none;
  border: 1px solid var(--rule);
  padding: 7px 16px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  user-select: none;
}
.brand-badge:hover { border-color: var(--accent); color: var(--accent-lt); }
.brand-badge.active {
  border-color: var(--accent);
  color: var(--warm-white);
  background: rgba(var(--accent-rgb),0.15);
}

/* ── Radar SVG ─────────────────────────────────────
   Read as an instrument, not an infographic: mono numerals on every axis,
   a scale on the rings, and a single scan line when the brand changes. */
.r-grid  { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 1; }
.r-axis  { stroke: rgba(255,255,255,0.07); stroke-width: 1; }
.r-sweep {
  stroke: var(--accent-lt); stroke-width: 1;
  opacity: 0; pointer-events: none;
}
.r-tick {
  font-family: var(--mono); font-size: 6px;
  letter-spacing: 0.06em; fill: var(--text-muted); opacity: 0.55;
}
.r-val {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: -0.02em; fill: var(--accent-lt);
}
.r-brand {
  font-family: var(--serif); font-size: 11px; font-weight: 700;
  letter-spacing: 0.02em;
}
.r-sub {
  font-family: var(--mono); font-size: 7px; font-weight: 500;
  letter-spacing: 0.16em; fill: var(--chrome);
}
.r-filled {
  fill: var(--accent);
  fill-opacity: 0.18;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linejoin: round;
}
.r-dot { fill: var(--accent-lt); cursor: pointer; transition: r 0.2s; }
.r-dot:hover { fill: var(--accent-pale); }
.r-label {
  font-family: var(--mono);
  font-size: 6.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  fill: var(--text-muted);
}
.radar-svg-main {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

/* ── Process ───────────────────────────────────── */
.process {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.process-header {
  text-align: center; margin-bottom: 72px;
}
.process-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--warm-white); margin-bottom: 14px;
}
.process-header p {
  font-size: 0.88rem; font-weight: 400;
  color: var(--text-body);
  max-width: 360px; margin: 0 auto; line-height: 1.8;
}
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; gap: 0;
}
.steps::before {
  content: '';
  position: absolute; top: 27px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--accent-rgb),0.35), transparent);
}
.step { text-align: center; padding: 0 20px; }
.step-num {
  width: 54px; height: 54px;
  background: var(--bg-mid);
  border: 1px solid rgba(var(--accent-rgb),0.3);
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 0.9rem; font-weight: 700;
  color: var(--accent-lt);
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.step-title {
  font-family: var(--serif);
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--warm-white); margin-bottom: 10px;
}
.step-desc {
  font-size: 0.78rem; font-weight: 400;
  line-height: 1.75; color: var(--text-body);
}

/* ── Gallery ───────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 340px 260px;
  gap: 3px;
}
.g { overflow: hidden; position: relative; background: var(--bg-panel-mid); }
.g img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
  transition: transform 0.6s ease, filter 0.4s;
}
.g:hover img { transform: scale(1.06); filter: saturate(0.95) contrast(1.05); }
.g:first-child { grid-row: 1/3; }
.g-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(var(--bg-rgb),0.8) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
}
.g:hover .g-ov { opacity: 1; }
.g-cap {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--chrome-lt);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.g:hover .g-cap { opacity: 1; transform: translateY(0); }
.g:first-child::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
}

/* ── CTA section ───────────────────────────────── */
.cta-section {
  padding: 140px 0;
  background: var(--bg-panel);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 14px,
    rgba(var(--accent-rgb),0.03) 14px, rgba(var(--accent-rgb),0.03) 28px
  );
  pointer-events: none;
}
.cta-section .tag { justify-content: center; }
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.005em;
  line-height: 1.0; color: var(--warm-white);
  margin-bottom: 20px;
}
.cta-section h2 .accent { color: var(--accent); }
.cta-urdu {
  font-size: 1.1rem; direction: rtl;
  color: var(--text-body);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 0.9rem; font-weight: 400;
  color: var(--text-body);
  max-width: 360px; margin: 0 auto 48px;
  line-height: 1.85;
}
.cta-buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

.wa-big {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #25D366 0%, #1aad52 50%, #128C3E 100%);
  padding: 20px 48px; text-decoration: none;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: box-shadow 0.3s, gap 0.25s, filter 0.25s;
}
.wa-big::before {
  content: '';
  position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.wa-big:hover { gap: 22px; filter: brightness(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.2); }
.wa-big:hover::before { left: 130%; }

/* ── Floating WhatsApp ─────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.5);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; }

/* ── Testimonials ──────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--bg-mid); }
.t-header { text-align: center; margin-bottom: 60px; }
.t-header h2 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--warm-white);
}
.t-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.t-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 40px 36px;
  position: relative;
}
.t-card::before {
  content: '"';
  font-family: var(--serif);
  font-size: 3.6rem; font-weight: 700;
  color: var(--accent); opacity: 0.15;
  position: absolute; top: 12px; left: 24px;
  line-height: 1;
}
.t-stars { color: var(--accent-lt); font-size: 0.85rem; margin-bottom: 16px; }
.t-text {
  font-size: 0.88rem; font-weight: 400;
  line-height: 1.85; color: var(--text-body);
  margin-bottom: 24px; font-style: italic;
}
.t-author { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-lt); }
.t-car    { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 4px; }

/* ── Footer ───────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(var(--accent-rgb),0.2);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.footer-brand-name {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--warm-white); margin-bottom: 14px;
}
.footer-div {
  font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--accent); line-height: 1;
}
.footer-panel {
  padding: 48px 40px;
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,0.04);
}
.footer-panel h4 {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-lt); opacity: 0.55;
  margin-bottom: 20px;
}
.footer-panel p {
  font-size: 0.84rem; font-weight: 400;
  color: var(--text-body);
  line-height: 1.85; margin-bottom: 6px;
}
.footer-panel p strong {
  color: var(--chrome-lt);
  font-weight: 500;
}
.footer-action {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  margin-bottom: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.footer-action:hover { border-color: rgba(var(--accent-rgb),0.35); background: rgba(var(--accent-rgb),0.06); }
.footer-action .fa-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-action .fa-label { display: flex; flex-direction: column; }
.footer-action .fa-title {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--warm-white);
}
.footer-action .fa-sub {
  font-size: 0.7rem; font-weight: 400;
  color: var(--text-body);
  margin-top: 2px;
}
.footer-bottom {
  padding: 24px 40px;
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.7rem; color: var(--text-muted); }

/* Cross-links to the sibling workshop (nav pill + footer strip) */
.nav-links .nav-cross {
  color: var(--accent-lt);
  border: 1px solid rgba(var(--accent-rgb),0.45);
  padding: 6px 13px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-links .nav-cross:hover {
  background: rgba(var(--accent-rgb),0.12);
  border-color: var(--accent);
}
.footer-cross {
  text-align: center;
  padding: 22px 20px;
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2px;
  font-size: 0.85rem; color: var(--text-body);
}
.footer-cross a {
  color: var(--warm-white); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--accent);
  margin-left: 6px;
}
.footer-cross a:hover { color: var(--accent-lt); }

/* Embedded location map in the footer location panel */
.footer-map {
  width: 100%; height: 170px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  filter: grayscale(0.35) contrast(1.05) brightness(0.9);
}

/* Urdu — proper Nastaliq script for the accountability line (falls back to
   the sans stack until Noto Nastaliq loads). Nastaliq needs extra leading. */
[lang="ur"] {
  font-family: 'Noto Nastaliq Urdu', var(--sans);
  line-height: 2.1;
}

/* ── Data type ─────────────────────────────────────
   Everything that is a reading rather than a sentence — hours, phone
   numbers, radar values, step indices — is set in the mono utility face.
   Mono is not decoration here: tabular figures keep the hours column
   aligned, and it visually separates "what we measured" from "what we say". */
.hrs-row {
  font-size: 0.84rem; color: var(--text-body); line-height: 1.7;
}
.hrs-row-sep { margin-top: 16px; }
.hrs-row strong {
  display: block;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.hrs-time {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.82rem; letter-spacing: -0.02em;
  color: var(--warm-white);
}
.hrs-status {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hrs-status.is-open   { color: var(--wa); }
.hrs-status.is-closed { color: var(--accent-lt); }

/* ── Branch switcher ───────────────────────────────
   A visitor who lands on the wrong bay used to dead-end at a single text
   link. This is a two-state plate: the bay you are in is filled, the other
   is a live link. Present in the nav on every page, so the wrong landing is
   always one tap from the right one. */
.branch-switch {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--rule-strong);
  line-height: 1;
}
.branch-switch a,
.branch-switch span {
  font-family: var(--mono);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 12px;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.branch-switch a:hover { color: var(--warm-white); background: var(--rule); }
.branch-switch [aria-current="page"] {
  color: var(--warm-white);
  background: var(--accent);
}
/* Darker than the branch accents on purpose: white on #2F6BFF measures
   4.4:1, just under AA, and this label is 0.62rem. */
.branch-switch .bs-de[aria-current="page"] { background: #1E4FD8; }
.branch-switch .bs-jp[aria-current="page"] { background: #B01F1F; }
.branch-switch .bs-sep {
  width: 1px; padding: 0; background: var(--rule-strong);
}
