/* components.css — tree-shaken: dead pre-cinematic pattern rules removed (build/scripts/treeshake-components.mjs). */
/* ==========================================================================
   iMetric — components.css  (Brand v2 / "Living Metrics" editorial-bold)
   Warm-charcoal ground, Anton headings, Poppins body/metrics, orange spine.
   Uses tokens from tokens.css + theme.json preset variables.
   Logical properties only (RTL-safe). Orange = the result; NEVER white-on-orange.
   ========================================================================== */

:root {
  --im-pill:       999px;
  --im-radius:     14px;  /* prototype standard */
  --im-radius-sm:  10px;
  --im-section-py: clamp(4rem, 2.5rem + 6vw, 7.5rem);
  --im-gap:        clamp(1rem, 0.6rem + 1.5vw, 2rem);
  /* Background chart-line texture prominence (services-grid + ad-tech sections).
     v0.9.0: raised from .06 → .12 per Mark + added a 3rd line in the pattern SVGs.
     ONE dial: lower toward .06 to mute, raise toward .16 for bolder. Revert = .06. */
  --im-chartfield-opacity: 0.12;
}

/* ==========================================================================
   ORANGE LEFT-SPINE — the brand's signature fixed edge rule.
   Fixed, full-height, logical so it mirrors to the right in RTL.
   z-index 60 (above nav at 50). NEVER animated beyond opacity/gradient.
   ========================================================================== */
.im-spine {
  position: fixed;
  inset-block: 0;
  inset-inline-start: 0;
  width: var(--spine-width, 6px);
  z-index: 60;
  background: linear-gradient(180deg, var(--clr-orange-500), var(--clr-orange-700));
  pointer-events: none;
}

/* ---- Section rhythm ---- */
.im-section { padding-block: var(--im-section-py); }  /* alternating section bg */

/* ==========================================================================
   WP CONSTRAINED-LAYOUT OVERRIDE (legacy .im-section)
   WP's is-layout-constrained applies max-width + margin-inline:auto (centred);
   this neutralises it on any .im-section wrapper. The cinematic layers use
   their own .shell container (home.css / rhythm.css); the old .im-shell system
   was removed in the v0.16.x dead-CSS prune.
   ========================================================================== */
.im-section.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.im-section.wp-block-group.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-inline-size: none;
  margin-inline: 0;
}

/* ==========================================================================
   NAV — SOLID charcoal, space-between: logo start | links + switcher + CTA end
   Rebalanced per client feedback: logo clearly pinned left, right-group clearly right.
   NO backdrop-filter per perf guardrail.
   ========================================================================== */
/* The FSE header template-part wraps .im-nav; its box is only nav-height tall,
   so a sticky .im-nav had nowhere to travel. Make the WRAPPER sticky (its
   containing block is .wp-site-blocks = full page) so the bar actually sticks. */
header.wp-block-template-part {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
}

.im-nav {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  padding-block: 0.7rem;
  padding-inline: clamp(1.25rem, 0.75rem + 2.5vw, 3rem);
  padding-inline-start: calc(clamp(1.25rem, 0.75rem + 2.5vw, 3rem) + 6px); /* clear the spine */
  background-color: var(--clr-nav-bg-resting, rgba(28,26,26,.95));
  border-block-end: 1px solid var(--clr-hairline-2, rgba(255,255,255,.06));
  /* NO backdrop-filter — compositor stall risk + editorial = restraint */
}
.im-nav.is-scrolled {
  background-color: var(--clr-ground, #221F1F);
}

/* Logo: flex-shrink:0 so it never compresses */
.im-nav .im-brand {
  flex-shrink: 0;
}
.im-nav .im-brand img,
.im-nav .wp-site-logo img,
.im-nav img.logo {
  display: block;
  block-size: 42px;
  width: auto;
}
@media (max-width: 600px) {

  .im-nav .im-brand img,
  .im-nav .wp-site-logo img,
  .im-nav img.logo { block-size: 36px; }

}

/* Right cluster: links + switcher + CTA, all inline-END */
.im-nav__right {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, .4rem + 1.2vw, 1.5rem);
  flex-shrink: 0;
}

/* Desktop nav links (the .im-nav__links <nav> inside .im-nav__right) */
.im-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, .3rem + 1vw, 1.2rem);
}
.im-nav__links a {
  font-family: var(--font-latin);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out);
}
.im-nav__links a:hover { color: var(--clr-orange-500); }
/* Current-page highlight (applied via im_nav_attr() → .is-active + aria-current) */
.im-nav__links a.is-active,
.im-nav__mobile a.is-active { color: var(--clr-orange-500); }
.im-nav__links a.is-active { position: relative; }
.im-nav__links a.is-active::after {
  content: ""; position: absolute; inset-inline: 0; inset-block-end: -6px;
  block-size: 2px; background: var(--clr-orange-500); border-radius: 2px;
}

/* CTA button in nav — slightly compact */
.im-nav__cta {
  padding-block: 0.55rem !important;
  padding-inline: 1.1rem !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  min-block-size: 44px; /* A11y fix 2: ≥44px tap target */
  display: inline-flex !important;
  align-items: center;
}

/* Hamburger toggle — hidden on desktop */
.im-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-inline-size: 44px;
  min-block-size: 44px;
}
.im-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text-2);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.im-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.im-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.im-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — hidden until toggle opens */
.im-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  inset-block-start: 100%;
  inset-inline: 0;
  background: var(--clr-ground, #221F1F);
  border-block-end: 1px solid var(--clr-hairline-2);
  padding: 1rem clamp(1.25rem, 0.75rem + 2.5vw, 3rem);
}
.im-nav__mobile.is-open { display: flex; }
.im-nav__mobile a {
  font-family: var(--font-latin);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text-2);
  text-decoration: none;
  padding-block: 0.75rem;
  border-block-end: 1px solid var(--clr-hairline-2);
  transition: color .2s ease;
}
.im-nav__mobile a:hover { color: var(--clr-orange-500); }
.im-nav__mobile .im-btn--primary {
  margin-block-start: 0.75rem;
  text-align: center;
  justify-content: center;
  border-block-end: none;
}

@media (max-width: 768px) {

  /* .im-nav__cta carries display:inline-flex !important above, so the hide
     must also be !important or the CTA crowds out the hamburger on mobile. */
  .im-nav__links { display: none; }
  .im-nav__cta { display: none !important; }
  .im-nav__toggle { display: flex; }

}

/* Legacy WP navigation block compat inside nav */
.im-nav .wp-block-navigation .wp-block-navigation-item__content,
.im-nav .wp-block-navigation a {
  font-family: var(--font-latin);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-2);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
.im-nav .wp-block-navigation a:hover { color: var(--clr-orange-500); }

/* ==========================================================================
   LANG SWITCHER (Polylang)
   ========================================================================== */
.im-langswitch { display: flex; align-items: center; gap: .1rem; }
.im-lang {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .25rem .5rem;
  border-radius: 6px;
  line-height: 1;
  min-block-size: 44px; /* A11y fix 2: ≥44px tap target */
  display: inline-flex;
  align-items: center;
}
.im-lang.is-active { color: var(--clr-orange-500); }
.im-lang:not(.is-active):hover { color: var(--clr-text); background: var(--clr-raised); }
/* Endonym labels (v0.9.6: EN/AR → English/العربية) — Arabic must not be letter-spaced */
.im-lang:lang(ar) { letter-spacing: 0; font-family: var(--font-arabic, system-ui, sans-serif); }

/* ==========================================================================
   BUTTONS (wraps WP button block)
   Primary: orange + NEAR-BLACK text (never white — WCAG + brand rule)
   ========================================================================== */
.im-btn .wp-block-button__link,
a.im-btn {
  border-radius: 9px;
  font-family: var(--font-latin);
  font-weight: 600;
  font-size: 0.92rem;
  padding-block: 0.7rem;
  padding-inline: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

/* Primary: orange bg + near-black text */
.im-btn--primary .wp-block-button__link,
a.im-btn--primary {
  background-color: var(--clr-orange-500);
  color: var(--clr-text-on-accent);
  border-color: var(--clr-orange-500);
}
.im-btn--primary .wp-block-button__link:hover,
a.im-btn--primary:hover {
  background-color: var(--clr-orange-400);
  border-color: var(--clr-orange-400);
  box-shadow: 0 12px 26px -12px rgba(247,148,32,.6);
}
.im-btn--primary .wp-block-button__link:active,
a.im-btn--primary:active {
  transform: translateY(1px);
  background-color: var(--clr-orange-700);
}

/* Outline */
.im-btn--outline .wp-block-button__link,
a.im-btn--outline {
  background-color: transparent;
  color: var(--clr-text);
  border-color: var(--clr-hairline);
}
.im-btn--outline .wp-block-button__link:hover,
a.im-btn--outline:hover {
  border-color: var(--clr-orange-500);
  color: var(--clr-orange-400);
}

/* Ghost */
.im-btn--ghost .wp-block-button__link,
a.im-btn--ghost {
  background-color: transparent;
  color: var(--clr-text);
  border-color: rgba(255,255,255,.28);
}
.im-btn--ghost .wp-block-button__link:hover,
a.im-btn--ghost:hover {
  border-color: var(--clr-orange-500);
  color: var(--clr-orange-400);
}

/* Fix: double-draw issue — keep paint on inner <a>, not WP wrapper */
.wp-block-button.im-btn--outline,
.wp-block-button.im-btn--primary,
.wp-block-button.im-btn--ghost { border: 0; background-color: transparent; }
/* Hero content wrapper — aligned to .im-shell (same wide 1600px centered container)
   so the hero text shares the SAME left edge as every section; text is left-aligned inside. */
.im-kicker .n { color: var(--clr-orange-400); font-weight: 700; }

/* ==========================================================================
   CARDS / GRIDS — lifted warm card recipe
   ========================================================================== */
.im-grid {
  display: grid;
  gap: var(--im-gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}
.im-card {
  background-color: var(--clr-surface);
  border-radius: var(--im-radius);
  box-shadow: var(--lift, inset 0 1px 0 0 rgba(255,255,255,.05), inset 0 0 0 1px rgba(255,255,255,.045), 0 16px 30px -26px rgba(0,0,0,.85));
  padding: clamp(1.4rem, 1rem + 1vw, 2rem);
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.im-card:hover {
  box-shadow: var(--lift-hover, inset 0 1px 0 0 rgba(255,255,255,.09), inset 0 0 0 1px rgba(247,148,32,.30), 0 22px 38px -26px rgba(0,0,0,.9));
  transform: translateY(-4px);
}
.im-card h3 { margin-block: 0 0.4rem; }
.im-card p  { color: var(--clr-text-muted); }
/* v0.9.3 service-card polish: index becomes a large faint EDITORIAL ghost numeral
   (Anton), sitting behind the card content (brand.md §5 corner-metadata language). */

/* ==========================================================================
   FOOTER — v2: warm canvas, orange office labels, 4-column offices
   ========================================================================== */
.im-footer {
  background-color: var(--clr-canvas);
  border-block-start: 1px solid var(--clr-hairline-2, rgba(255,255,255,.06));
  padding-block: 3rem 2rem;
  /* Root padding is 0, and the footer doesn't use .im-shell — without this the
     content sits at x=0 and the fixed 6px orange spine overlaps the first letters
     on narrow screens. The gutter clears the spine (matches .im-shell). */
  padding-inline: var(--gutter);
}
.im-footer__brand img { block-size: 30px; width: auto; display: block; margin-block-end: 1rem; }
.im-footer__brand p {
  color: var(--clr-text-muted);
  font-size: .88rem;
  max-inline-size: 32ch;
}
/* 4-office grid inside footer */
.im-footer__offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.im-office h4,
.im-office b {
  font-family: var(--font-latin);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-orange-500); /* orange labels */
  display: block;
  margin-block-end: .6rem;
}
.im-office p,
.im-footer .im-office { color: var(--clr-text-2); font-size: .84rem; line-height: 1.5; }
.im-office a { color: var(--clr-text-2); text-decoration: none; }
.im-office a:hover { color: var(--clr-orange-500); }
/* Footer bottom strip */
.im-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-block-start: 2.4rem;
  padding-block-start: 1.4rem;
  border-block-start: 1px solid var(--clr-hairline-2, rgba(255,255,255,.06));
  color: var(--clr-text-muted);
  font-size: .78rem;
}
@media (max-width: 820px) {

  .im-footer__offices { grid-template-columns: repeat(2, 1fr); }

}

/* Footer columns layout (WP block columns wrapper) */
.im-footer .wp-block-columns {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 820px) {

  .im-footer .wp-block-columns { grid-template-columns: 1fr; }

}

/* ==========================================================================
   SCROLL-REVEAL  (transform/opacity only)
   ========================================================================== */
/* NOTE: the legacy scroll-reveal JS that added `.is-inview` to [data-reveal] was
   replaced by the [data-rev]/.stagger engine (rhythm.js/home.js), which orphaned
   this selector. Left as opacity:0 it stranded every kit-block "What's included"
   grid at invisible (they only showed under reduced-motion). Render visible by
   default — no JS drives these, so they must never start hidden (cf. gotcha #13). */
[data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .im-btn .wp-block-button__link { transition: none; }
  .im-card { transition: none; }
}

/* ==========================================================================
   METRIC BADGE + EYEBROW (legacy im- class compat)
   ========================================================================== */ .metric {
  color: var(--clr-orange-500);
  font-family: var(--font-metric);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

@keyframes im-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* exactly half = first copy width */
}

/* ==========================================================================
   AWARDS ROW
   ========================================================================== */
.im-awards { display: grid; gap: 0.75rem; }
.im-awards li { color: var(--clr-text-2); }
.im-awards b { color: var(--clr-orange-500); }
@keyframes imDraw { to { stroke-dashoffset: 0; } }
@keyframes imPulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
.im-office__meta { color: var(--clr-text-muted); font-size: .9rem; margin-block-start: .5rem; }
.im-office__meta a { color: var(--clr-orange-400); }

.fluentform .ff-el-input--label label,
.fluentform label { color: var(--clr-text-2); font-weight: 500; }
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform select,
.fluentform textarea {
  background: var(--clr-raised);
  color: var(--clr-text);
  border-radius: 10px;
  padding: .7rem .9rem;
  width: 100%;
}
.fluentform input::placeholder,
.fluentform textarea::placeholder { color: var(--clr-text-muted); }
.fluentform input:focus,
.fluentform select:focus,
.fluentform textarea:focus {
  border-color: var(--clr-orange-500);
  box-shadow: 0 0 0 3px rgba(247,148,32,.25);
}
/* A11y: keep a real visible ring for keyboard/switch users (was outline:none) */
.fluentform input:focus-visible,
.fluentform select:focus-visible,
.fluentform textarea:focus-visible {
  outline: 2px solid var(--clr-orange-500);
  outline-offset: 2px;
}
.fluentform .ff-btn-submit,
.fluentform button[type="submit"] {
  background: var(--clr-orange-500) !important;
  color: var(--clr-text-on-accent) !important;
  border: none;
  border-radius: 999px;
  padding: .85rem 1.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .18s ease;
}
.fluentform .ff-btn-submit:hover,
.fluentform button[type="submit"]:hover { background: var(--clr-orange-400) !important; }
.ff-message-success {
  color: var(--clr-text);
  background: var(--clr-raised);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.fluentform .ff-el-is-error .text-danger,
.fluentform .error { color: var(--clr-error); }
.im-lead { color: var(--clr-text-2); max-inline-size: 60ch; font-size: var(--fs-body-lg); line-height: 1.65; }

.im-answer {
  border-inline-start: 3px solid var(--clr-orange-500);
  background: color-mix(in srgb, var(--clr-surface) 65%, transparent);
  border-radius: var(--im-radius-sm);
  padding: clamp(1rem,.8rem + 1vw,1.5rem) clamp(1.15rem,.9rem + 1vw,1.75rem);
  max-inline-size: 70ch;
}
.im-answer p { margin: 0; color: var(--clr-text-2); font-size: var(--fs-body-lg); line-height: 1.65; }
.im-answer p strong, .im-answer p b { color: var(--clr-text); }

.im-prose-h { margin-block-start: clamp(2.25rem,1.5rem + 2vw,3.25rem); }

.im-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-block-start: 1rem; padding-inline-start: 0; list-style: none; }
.im-chips li { border: 1px solid var(--clr-border-ui); border-radius: 999px; padding: .4rem 1rem; color: var(--clr-text-2); font-size: .9rem; }

.im-faq { margin-block-start: 1.5rem; border-block-start: 1px solid var(--clr-hairline-2); }
.im-faq__q { margin-block: 0; padding-block-start: 1.25rem; font-size: var(--fs-h4); }
.im-faq__a { color: var(--clr-text-2); margin-block: .5rem 0; padding-block-end: 1.25rem; border-block-end: 1px solid var(--clr-hairline-2); }
.im-faq__a:last-child { border-block-end: 0; }

/* ==========================================================================
   ARCHIVE HUBS — /services/ and /portfolio/
   ========================================================================== */

/* ==========================================================================
   FIX — block-gap zero on grid/flex children (WP margin-block-start leak)
   ========================================================================== */
.im-grid > *,
.im-chips > li{ margin-block: 0; }
/* JS fires the draw — CSS just defines the transition */

/* ==========================================================================
   CTA — centred text + action cluster
   ========================================================================== */
/* Everything inside formula that's content needs z-index above the field */

/* ==========================================================================
   RTL — Directional arrow mirroring (fix 8)
   → arrows flip to ← in RTL so they point the correct read direction.
   transform:scaleX(-1) is perf-safe (GPU composite, no layout).
   ========================================================================== */

/* ==========================================================================
   RTL — Footer justification (fix 12)
   WP emits is-content-justification-left on flex rows; in RTL that reads as
   the wrong end. Override to flex-end so the content aligns to the inline-end.
   ========================================================================== */
[dir="rtl"] .is-content-justification-left.is-layout-constrained {
  justify-content: flex-end;
}

/* ==========================================================================
   RTL — Arabic heading overrides
   Prevent global uppercase from mangling short Arabic display titles.
   ========================================================================== */
:lang(ar) h1,
:lang(ar) h2,
:lang(ar) h3,
:lang(ar) .im-kicker{
  text-transform: none;
  font-family: var(--font-arabic, 'IBM Plex Sans Arabic', system-ui, sans-serif); /* RTL fix 10: was --font-ar (typo), correct token is --font-arabic */
}

/* ==========================================================================
   PARALLAX UTILITY — [data-parallax] targets moved by scroll-reveal.js.
   transform/opacity ONLY (no will-change on elements that don't need it).
   Applied per element when the JS activates it.
   ========================================================================== */
[data-parallax] {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {

  [data-parallax] { will-change: auto; transform: none !important; }

}

/* Stagger animation — via .im-stagger on the <ol> */
@keyframes im-tile-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* Reduced motion: no auto-advance (JS checks RM), animations instant */

/* Content sits above both the bg and the scrim */

/* --------------------------------------------------------------------------
   STRONGER BAND RHYTHM — heavier alternating bg contrast
   .im-band already uses --clr-surface; strengthen with a subtle top border
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   HOVER: ALL CARDS — consistent lift + orange edge ring + soft shadow.
   Applied to .im-card, .im-svc, sector-card .im-card, .im-case, archive tiles.
   Uses inset box-shadow for the orange ring (no layout shift).
   -------------------------------------------------------------------------- */

/* Generic .im-card: already has hover, enhance with orange ring */
.im-card:hover {
  box-shadow:
    inset 0 0 0 1px var(--clr-orange-500),
    inset 0 1px 0 0 rgba(255,255,255,.09),
    0 22px 40px -20px rgba(0,0,0,.92);
  transform: translateY(-4px);
}

/* Icon brightens + scales on card/row hover — transform/opacity only */

/* Stat icons in by-the-numbers: brighten + scale on parent hover */

/* Arrow slides on hover (already defined but using translateX as intended) */
/* v0.9.12 QA fix: RTL counter — arrow is scaleX(-1) flipped, so advance toward inline-end */

/* --------------------------------------------------------------------------
   DATAPOINT NODE PULSE — subtle CSS keyframe on the orange circles in the
   stats baseline (by-the-numbers). Fires only when not reduced-motion.
   -------------------------------------------------------------------------- */
@keyframes im-node-pulse {
  0%, 100% { r: 5; opacity: 1; }
  50%       { r: 7; opacity: .7; }
}

@media (prefers-reduced-motion: reduce) {
  .im-card:hover{
    transform: none;
  }

}

/* ==========================================================================
   v0.9.0 — IMAGERY / GRAPHICS PASS
   Sector cards: thin orange line-icon + chart-motif sparkline accent.
   Brightens the flattest section in the site's established chart language.
   Motion: transform/opacity only, reduced-motion guarded.
   ========================================================================== */
/* v0.9.3: sparklines removed (Mark feedback) — icons only. */
@media (max-width: 879px) {
  /* 2 across */

}
@media (max-width: 560px) {
                          /* ~1.2 across, peek */

}

/* ==========================================================================
   v0.9.3 — CTA bg chart-line texture host (Mark: "add the bg line charts" to CTA)
   The orange panel covers the centre; the texture shows in the section padding.
   ========================================================================== */
#cta { position: relative; overflow: clip; }

/* ==========================================================================
   v0.9.3 — CASE-CARD POLISH
   Editorial leading hairline on the case tag/eyebrow (matches the kicker language).
   ========================================================================== */
:lang(ar) .im-footer__offices b,
:lang(ar) .im-footer__base span { letter-spacing: 0 !important; }

