@charset "UTF-8";
/* =====================================================================
   GCC — Base + Components
   Depends on tokens.css. Load order: tokens → main → layout.

   The visual idea: an infrastructure firm's project book. Structured
   type, hairline rules, real photography, and geometry borrowed from
   the work itself — panel grids, pile spacing, setting-out lines.
   Ornament is not applied; it is derived.
   ===================================================================== */

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--sp-4));
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-normal);
  font-feature-settings: 'cv05', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--dur-3) var(--ease-both),
              color var(--dur-3) var(--ease-both);
}

img, svg, video, canvas, picture { display: block; max-width: 100%; }
img { height: auto; }
.frame img, .media img, .masonry img { background: var(--surface-3); }

h1, h2, h3, h4, h5 {
  margin: 0 0 var(--sp-4);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  color: var(--text-strong);
  text-wrap: balance;
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--t-h4); line-height: var(--lh-snug); font-weight: var(--fw-semi); }
h5 { font-size: var(--t-body-lg); font-weight: var(--fw-semi); }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color var(--dur-1) var(--ease-both); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15em; }
li + li { margin-top: var(--sp-2); }
strong, b { font-weight: var(--fw-semi); color: var(--text-strong); }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-7) 0; }
small { font-size: var(--t-small); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

::selection { background: var(--brand); color: var(--on-brand); }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: var(--r-xs); }

* { scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: var(--r-pill);
  border: 3px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand); background-clip: content-box; }

/* ----------------------------------------------------------------- script-aware type
   Each language gets the typeface its script needs, and Indic scripts get
   extra leading because their conjuncts stack taller than Latin. */
body[data-script="deva"] { font-family: var(--font-deva); line-height: var(--lh-relaxed); }
body[data-script="beng"] { font-family: var(--font-beng); line-height: var(--lh-relaxed); }
body[data-script="telu"] { font-family: var(--font-telu); line-height: var(--lh-relaxed); }
body[data-script="taml"] { font-family: var(--font-taml); line-height: var(--lh-relaxed); }
body[data-script="gujr"] { font-family: var(--font-gujr); line-height: var(--lh-relaxed); }
body[data-script="knda"] { font-family: var(--font-knda); line-height: var(--lh-relaxed); }
body[data-script="mlym"] { font-family: var(--font-mlym); line-height: var(--lh-relaxed); }
body[data-script="guru"] { font-family: var(--font-guru); line-height: var(--lh-relaxed); }
body[data-script="orya"] { font-family: var(--font-orya); line-height: var(--lh-relaxed); }
body[data-script="arab"] { font-family: var(--font-arab); line-height: 2; }

body:not([data-script="latn"]) h1,
body:not([data-script="latn"]) h2,
body:not([data-script="latn"]) h3,
body:not([data-script="latn"]) h4,
body:not([data-script="latn"]) .h-display {
  font-family: inherit;
  letter-spacing: 0;
  line-height: 1.3;
}

/* Translated strings run longer. Never clamp them into ambiguity. */
body:not([data-script="latn"]) .clamp-2,
body:not([data-script="latn"]) .clamp-3 { -webkit-line-clamp: unset; max-height: none; }

/* ----------------------------------------------------------------- layout */
.wrap        { width: 100%; max-width: var(--w-content); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide   { width: 100%; max-width: var(--w-wide); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { width: 100%; max-width: var(--w-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.measure     { max-width: var(--w-text); }

.section          { padding-block: var(--section-y); position: relative; }
.section--sm      { padding-block: var(--section-y-sm); }
.section--flush-top { padding-top: 0; }
.section--subtle  { background: var(--bg-subtle); }
.section--sunken  { background: var(--bg-sunken); }
.section--inverse { background: var(--deep); color: var(--text-on-dark); }
.section--inverse h1,
.section--inverse h2,
.section--inverse h3 { color: #fff; }
.section--inverse .muted { color: rgba(255,255,255,.62); }

.grid   { display: grid; gap: var(--sp-6); }
/* Paired form fields. A class rather than an inline style, so the handset
   breakpoint below can actually collapse them to one column. */
.grid-pair  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-trio  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 620px) {
  .grid-pair, .grid-trio { grid-template-columns: minmax(0, 1fr); }
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(228px, 100%), 1fr)); }

.stack { display: flex; flex-direction: column; gap: var(--sp-4); }
.row   { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }

.split { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(32px, 5vw, 84px); align-items: center; }
.split--top { align-items: start; }
.split--wide-left  { grid-template-columns: 1.35fr 1fr; }
.split--wide-right { grid-template-columns: 1fr 1.35fr; }
/* Body copy beside a narrow rail of supporting cards. */
.split--rail       { grid-template-columns: 1.4fr .6fr; }
/* A portrait beside a longer column of text. */
.split--portrait   { grid-template-columns: .85fr 1.15fr; }
@media (max-width: 900px) {
  .split, .split--wide-left, .split--wide-right,
  .split--rail, .split--portrait { grid-template-columns: 1fr; gap: var(--sp-8); }
}

.sticky-side { position: sticky; top: calc(var(--header-h) + var(--sp-5)); }

/* utilities */
.center  { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: var(--sp-2) } .mt-3 { margin-top: var(--sp-3) }
.mt-4 { margin-top: var(--sp-4) } .mt-5 { margin-top: var(--sp-5) }
.mt-6 { margin-top: var(--sp-6) } .mt-7 { margin-top: var(--sp-7) }
.mt-8 { margin-top: var(--sp-8) }
.mb-0 { margin-bottom: 0 } .mt-0 { margin-top: 0 }
.muted { color: var(--text-muted); }
.soft  { color: var(--text-soft); }
.nowrap{ white-space: nowrap; }
.hidden{ display: none !important; }
[hidden]{ display: none !important; }

.num {
  font-family: var(--font-num);
  font-feature-settings: 'tnum' 1;
  font-variant-numeric: tabular-nums;
}

.clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; inset-inline-start: var(--sp-4); z-index: var(--z-toast);
  background: var(--brand); color: var(--on-brand);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-md);
  font-weight: var(--fw-semi);
}
.skip-link:focus { top: var(--sp-3); }
/* Honeypot. Parking it at left:-9999px works in a left-to-right page, where
   browsers ignore overflow past the left edge — but the Urdu pages run
   right-to-left, the origin flips, and that same offset stretched the document
   to 10,338px on a 360px screen. Clipping hides it without moving it anywhere,
   so it behaves the same in both directions and is still in the DOM for a bot
   to fill, which is the whole point of it. */
.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ----------------------------------------------------------------- structural ornament
   Geometry taken from the work: a setting-out grid, and module pitch.
   Both sit far back and never compete with content. */
.grid-bg { position: relative; isolation: isolate; }
.grid-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 78% 62% at 50% 0%, #000 12%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 0%, #000 12%, transparent 76%);
  pointer-events: none;
}

/* Module-pitch rule, used as a section divider. */
.rule-pitch {
  height: 1px; border: 0; margin: 0;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 14px, transparent 14px 28px);
}

.keyline { width: 44px; height: 2px; background: var(--brand); border-radius: 2px; margin-bottom: var(--sp-4); }

/* ----------------------------------------------------------------- eyebrow / section head */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--t-caption);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-3);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; border-radius: 2px; flex-shrink: 0; }
.eyebrow--center { justify-content: center; }
.eyebrow--plain::before { display: none; }

.section-head { max-width: 60ch; margin-bottom: var(--sp-9); }
.section-head h2 { margin-bottom: var(--sp-3); }
.section-head p { color: var(--text-muted); font-size: var(--t-body-lg); margin-bottom: 0; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-7); flex-wrap: wrap; max-width: none;
}
.section-head--split > div:first-child { max-width: 56ch; }

.h-display {
  font-family: var(--font-display);
  font-size: var(--t-display);
  font-weight: var(--fw-extra);
  line-height: 1.04;
  letter-spacing: var(--ls-display);
}

/* ----------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--on-brand);
  --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 12px 22px;
  min-height: 46px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--t-small);
  font-weight: var(--fw-semi);
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  transition: background-color var(--dur-2) var(--ease-both),
              border-color var(--dur-2) var(--ease-both),
              color var(--dur-2) var(--ease-both),
              box-shadow var(--dur-2) var(--ease-both),
              transform var(--dur-1) var(--ease-both);
}
.btn:hover  { background: var(--brand-hover); box-shadow: var(--sh-brand); }
.btn:active { transform: translateY(1px); box-shadow: none; }

.btn--secondary { --btn-bg: transparent; --btn-fg: var(--text-strong); --btn-bd: var(--line-strong); }
.btn--secondary:hover { background: var(--brand-soft); --btn-fg: var(--brand); --btn-bd: var(--brand-border); box-shadow: none; }

.btn--solar { --btn-bg: var(--solar); --btn-fg: #24190A; }
.btn--solar:hover { background: var(--sun-400); box-shadow: 0 10px 26px -10px rgba(199,164,0,.45); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text-soft); --btn-bd: transparent; }
.btn--ghost:hover { background: var(--surface-3); --btn-fg: var(--text-strong); box-shadow: none; }

.btn--on-photo {
  --btn-bg: rgba(255,255,255,.13);
  --btn-fg: #fff;
  --btn-bd: rgba(255,255,255,.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--on-photo:hover { --btn-bg: rgba(255,255,255,.22); box-shadow: none; }

.btn--sm { padding: 8px 15px; min-height: 38px; font-size: var(--t-label); }
.btn--lg { padding: 15px 30px; min-height: 54px; font-size: var(--t-body); }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .55; pointer-events: none; }
.btn.is-loading::after {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg) } }

.btn-arrow { transition: transform var(--dur-2) var(--ease-out); flex-shrink: 0; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.link-u {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: var(--fw-semi);
  font-size: var(--t-small);
  color: var(--brand);
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size var(--dur-3) var(--ease-out);
}
.link-u:hover { background-size: 100% 1.5px; }

/* ----------------------------------------------------------------- badges & chips */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--surface-3);
  border: 1px solid var(--line-soft);
  font-size: var(--t-caption);
  font-weight: var(--fw-medium);
  color: var(--text-soft);
  white-space: nowrap;
}
.badge--brand  { background: var(--brand-soft); border-color: var(--brand-border); color: var(--brand); }
.badge--accent { background: var(--accent-soft); border-color: transparent; color: var(--accent-text); }
.badge--solar  { background: var(--solar-soft); border-color: transparent; color: var(--solar-text); }
.badge--capacity {
  background: var(--deep);
  border-color: transparent;
  color: #fff;
  font-family: var(--font-num);
  font-weight: var(--fw-bold);
  font-size: var(--t-label);
  padding: 6px 12px;
  letter-spacing: -.01em;
}
/* #1E9500 under #06240B is 4.23:1 — the dark ink needs a brighter field than
   the mid green to clear AA, so the dark theme takes the light end of the ramp. */
[data-theme="dark"] .badge--capacity { background: var(--green-300); color: var(--on-brand); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .badge--capacity { background: var(--green-300); color: var(--on-brand); }
}

.dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.6s var(--ease-both) infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(30,149,0,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(30,149,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,149,0,0); }
}

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  min-height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-muted);
  font-size: var(--t-small);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all var(--dur-1) var(--ease-both);
}
.chip:hover { color: var(--text-strong); border-color: var(--line-strong); }
.chip.is-active { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }

/* ----------------------------------------------------------------- cards
   Deliberately varied. A page of identical cards is the AI tell. */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: border-color var(--dur-2) var(--ease-both),
              box-shadow var(--dur-3) var(--ease-both),
              transform var(--dur-2) var(--ease-both);
}
.card--flush  { padding: 0; overflow: hidden; }
.card--pad-lg { padding: var(--sp-8); }
.card--lift:hover { border-color: var(--line-strong); box-shadow: var(--sh-lg); transform: translateY(-3px); }

/* Keyline that grows along the top edge — reads as a measurement mark. */
.card--mark::before {
  content: '';
  position: absolute; top: -1px; left: var(--sp-6); right: var(--sp-6);
  height: 2px;
  background: var(--brand);
  border-radius: 0 0 2px 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-4) var(--ease-out);
}
.card--mark:hover::before { transform: scaleX(1); }

.card--flat    { background: var(--surface-3); border-color: transparent; }
.card--outline { background: transparent; }

.card--row { display: grid; grid-template-columns: 168px 1fr; align-items: stretch; padding: 0; overflow: hidden; }
@media (max-width: 620px) { .card--row { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- media frames */
.frame { position: relative; overflow: hidden; border-radius: var(--r-md); background: var(--surface-3); }
.frame > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--focal, center);
  transition: transform var(--dur-5) var(--ease-out);
}
.frame--21x9 { aspect-ratio: 21 / 9; }
.frame--16x9 { aspect-ratio: 16 / 9; }
.frame--3x2  { aspect-ratio: 3 / 2; }
.frame--4x3  { aspect-ratio: 4 / 3; }
.frame--1x1  { aspect-ratio: 1 / 1; }
.frame--4x5  { aspect-ratio: 4 / 5; }
.frame--3x4  { aspect-ratio: 3 / 4; }

a:hover > .frame > img,
.card--lift:hover .frame > img { transform: scale(1.045); }

/* One grade across every photograph so the site reads as a single shoot. */
.frame--graded > img { filter: saturate(.92) contrast(1.05) brightness(1.01); }

.frame-veil::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5, 12, 24, .86) 0%, rgba(5, 12, 24, .34) 42%, rgba(5, 12, 24, .04) 72%);
  pointer-events: none;
}
.frame-veil--soft::after { background: linear-gradient(to top, rgba(5,12,24,.62) 0%, transparent 58%); }

.frame-cap { position: absolute; inset-inline: 0; bottom: 0; padding: var(--sp-5); color: #fff; z-index: 2; }
.frame-cap h3, .frame-cap h4 { color: #fff; margin-bottom: 4px; }
.frame-cap p { color: rgba(255,255,255,.76); margin: 0; font-size: var(--t-small); }

/* ----------------------------------------------------------------- icons */
.ico { width: var(--ico-md); height: var(--ico-md); flex-shrink: 0; }
.ico-box {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
  flex-shrink: 0;
  transition: background-color var(--dur-2) var(--ease-both), color var(--dur-2) var(--ease-both);
}
.ico-box--lg { width: 56px; height: 56px; border-radius: var(--r-lg); }
.ico-box--sm { width: 36px; height: 36px; border-radius: var(--r-sm); }
.ico-box--solar   { background: var(--solar-soft); color: var(--solar-text); }
.ico-box--outline { background: transparent; border: 1px solid var(--line); color: var(--text-soft); }
.card--lift:hover .ico-box { background: var(--brand); color: var(--on-brand); }

/* ----------------------------------------------------------------- statistics */
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-num);
  font-size: clamp(1.85rem, 2.6vw, 2.75rem);
  font-weight: var(--fw-extra);
  line-height: 1;
  letter-spacing: -.032em;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 1px;
}
.stat-value .suffix { color: var(--brand); font-size: .62em; }
.stat-label { font-size: var(--t-small); color: var(--text-muted); }

/* ----------------------------------------------------------------- forms */
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { font-size: var(--t-label); font-weight: var(--fw-semi); color: var(--text-soft); }
.field .req { color: var(--brand); }
.field .opt { color: var(--text-muted); font-weight: var(--fw-regular); }

.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  min-height: 46px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: var(--t-body);
  transition: border-color var(--dur-1) var(--ease-both),
              box-shadow var(--dur-1) var(--ease-both),
              background-color var(--dur-1) var(--ease-both);
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--text-faint); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.textarea { min-height: 132px; resize: vertical; line-height: var(--lh-normal); }

.select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236B8478' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
[data-theme="dark"] .select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2390A498' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.field.has-error .input,
.field.has-error .select,
.field.has-error .textarea { border-color: var(--danger); }
.field.has-error .input:focus { box-shadow: 0 0 0 3px rgba(179,38,30,.12); }
.field-error { font-size: var(--t-caption); color: var(--danger); display: flex; align-items: center; gap: 5px; }
.field.is-valid .input { border-color: var(--accent); }

.check {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-size: var(--t-small);
  color: var(--text-muted);
  min-height: 44px;
}
.check input { width: 18px; height: 18px; margin: 0; accent-color: var(--brand); flex-shrink: 0; }

.file-drop {
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--t-small);
  cursor: pointer;
  background: var(--surface-2);
  transition: all var(--dur-1) var(--ease-both);
}
.file-drop:hover, .file-drop.is-over { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }

/* ----------------------------------------------------------------- alerts & toasts */
.alert {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  border-left: 3px solid var(--text-faint);
  background: var(--surface-2);
  font-size: var(--t-small);
}
.alert svg { flex-shrink: 0; margin-top: 1px; }
.alert--success { border-left-color: var(--accent); background: var(--accent-soft); color: var(--accent-text); }
.alert--error   { border-left-color: var(--danger); background: rgba(179,38,30,.07); }
.alert--warning { border-left-color: var(--solar); background: var(--solar-soft); color: var(--solar-text); }
.alert--info    { border-left-color: var(--info); background: rgba(27,107,143,.08); }

.toasts {
  position: fixed; right: var(--sp-4); bottom: var(--sp-4);
  z-index: var(--z-toast);
  display: flex; flex-direction: column; gap: var(--sp-2);
  max-width: min(390px, calc(100vw - 32px));
}
.toast {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  box-shadow: var(--sh-xl);
  font-size: var(--t-small);
  animation: toast-in var(--dur-4) var(--ease-out);
}
@keyframes toast-in { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: none } }

/* ----------------------------------------------------------------- tables */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.table { width: 100%; border-collapse: collapse; font-size: var(--t-small); }
.table th, .table td { padding: 15px 18px; text-align: left; vertical-align: top; }
.table thead th {
  background: var(--surface-2);
  font-size: var(--t-caption);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.table tbody tr { border-top: 1px solid var(--line-soft); transition: background-color var(--dur-1) var(--ease-both); }
.table tbody tr:first-child { border-top: 0; }
.table tbody tr:hover { background: var(--surface-2); }
.table td.num { white-space: nowrap; }

.spec { display: grid; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.spec-row {
  display: grid;
  grid-template-columns: minmax(118px, 36%) 1fr;
  gap: var(--sp-4);
  padding: 14px var(--sp-5);
  border-top: 1px solid var(--line-soft);
}
.spec-row:first-child { border-top: 0; }
.spec-row dt { color: var(--text-muted); font-size: var(--t-small); }
.spec-row dd { margin: 0; font-weight: var(--fw-medium); color: var(--text-strong); }

/* ----------------------------------------------------------------- accordion */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: var(--fw-semi);
  color: var(--text-strong);
  transition: color var(--dur-1) var(--ease-both);
}
.acc-btn:hover { color: var(--brand); }
.acc-icon {
  flex-shrink: 0; width: 30px; height: 30px;
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: transform var(--dur-3) var(--ease-out),
              background-color var(--dur-2) var(--ease-both),
              border-color var(--dur-2) var(--ease-both),
              color var(--dur-2) var(--ease-both);
}
.acc-btn[aria-expanded="true"] .acc-icon {
  transform: rotate(45deg);
  background: var(--brand); border-color: var(--brand); color: var(--on-brand);
}
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-4) var(--ease-out); }
.acc-panel > div { overflow: hidden; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-body { padding-bottom: var(--sp-5); color: var(--text-muted); max-width: 76ch; }

/* ----------------------------------------------------------------- breadcrumb / pager */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); font-size: var(--t-small); color: var(--text-muted); }
.crumbs ol { display: contents; }
.crumbs li { list-style: none; display: flex; align-items: center; gap: var(--sp-2); margin: 0; }
.crumbs li + li::before { content: '/'; color: var(--text-faint); }
.crumbs a:hover { color: var(--brand); }
.crumbs [aria-current] { color: var(--text-soft); }

.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2); margin-top: var(--sp-9); }
.pager a, .pager span {
  min-width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  padding-inline: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-num);
  font-size: var(--t-small);
  color: var(--text-muted);
  transition: all var(--dur-1) var(--ease-both);
}
.pager a:hover { border-color: var(--brand); color: var(--brand); }
.pager .is-current { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }
.pager .is-disabled { opacity: .38; pointer-events: none; }

/* ----------------------------------------------------------------- prose */
.prose { color: var(--text-soft); font-size: var(--t-body-lg); line-height: var(--lh-relaxed); max-width: var(--w-text); }
.prose h2 { font-size: var(--t-h2); margin-top: var(--sp-9); }
.prose h3 { font-size: var(--t-h3); margin-top: var(--sp-7); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--brand-hover); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li::marker { color: var(--brand); }
.prose strong { color: var(--text-strong); }
.prose blockquote {
  margin: var(--sp-7) 0;
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-6);
  border-left: 2px solid var(--brand);
  font-family: var(--font-display);
  font-size: var(--t-h4);
  color: var(--text-strong);
  line-height: var(--lh-snug);
}
.prose img { border-radius: var(--r-md); margin: var(--sp-6) 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--t-body); margin: var(--sp-6) 0; }
.prose th, .prose td { padding: 11px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--surface-2); font-weight: var(--fw-semi); color: var(--text-strong); }

/* ----------------------------------------------------------------- empty state */
.empty-state {
  padding: var(--sp-11) var(--sp-6);
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  color: var(--text-muted);
  background: var(--surface-2);
}

/* ----------------------------------------------------------------- scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

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

/* ----------------------------------------------------------------- print */
@media print {
  .site-header, .site-footer, .floaters, .preloader, .hero-controls, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 16px; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10px; color: #555; }
}

/* =====================================================================
   CARD & SECTION DISCIPLINE
   Everything below exists to answer one complaint: cards were coming out
   different heights and their text was not landing on the same line.
   The rules are deliberately blunt — one card language, one alignment.
   ===================================================================== */

/* Every cell of a grid is the full height of its row, and every card fills
   its cell. Content stacks from the top; anything marked .to-foot is pushed
   to the bottom edge, so footers line up across a row no matter how long
   the copy above them runs. */
.grid > * { min-width: 0; }
.grid > .card,
.grid > * > .card { height: 100%; }

.card:not(.card--row):not(.card--flush) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
}
.card > * { max-width: 100%; }
.card .to-foot,
.card .svc-foot { margin-top: auto; width: 100%; }

/* Uniform internal rhythm. A card's title and body sit on the same baseline
   in every section of the site — the previous per-section overrides were
   what made the grids read as mismatched. */
.card h3, .card h4 { margin: 0; font-size: var(--t-h4); line-height: 1.3; }
.card > p { margin: 0; font-size: var(--t-small); color: var(--text-muted); line-height: 1.62; }

/* Fixed-track grids. auto-fill was leaving a ragged last row and letting one
   column stretch wider than its neighbours; explicit tracks keep every card
   the same width at a given breakpoint. */
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1080px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ----------------------------------------------------------------- tinted cards
   A quiet wash of colour instead of a shadow. Each tint is a flat field with
   a matching hairline, so a row of them reads as one set of chips rather than
   four floating objects. */
.card--tint {
  border-radius: var(--r-md);
  border: 1px solid transparent;
  padding: var(--sp-6) var(--sp-5);
  gap: var(--sp-4);
  transition: transform var(--dur-2) var(--ease-both), border-color var(--dur-2) var(--ease-both);
}
.card--tint:hover { transform: translateY(-2px); }
.card--tint .ico-box { background: transparent; width: 34px; height: 34px; }
.card--tint .ico-box svg { width: 28px; height: 28px; }

.tint-green { background: var(--green-050); border-color: var(--green-100); }
.tint-green .ico-box { color: var(--green-700); }
.tint-solar { background: var(--sun-100);   border-color: #F4E49F; }
.tint-solar .ico-box { color: var(--sun-700); }
.tint-blue  { background: var(--blue-050);  border-color: var(--blue-100); }
.tint-blue  .ico-box { color: var(--blue-700); }
.tint-slate { background: var(--surface-3);  border-color: var(--line); }
.tint-slate .ico-box { color: var(--text-soft); }

/* In the dark theme a pale wash would glare, so each tint becomes a deep
   field of the same hue and the icon carries the colour instead. */
[data-theme="dark"] .tint-green { background: rgba(30,149,0,.11);  border-color: rgba(53,176,21,.26); }
[data-theme="dark"] .tint-green .ico-box { color: var(--green-300); }
[data-theme="dark"] .tint-solar { background: rgba(254,216,1,.10); border-color: rgba(254,216,1,.24); }
[data-theme="dark"] .tint-solar .ico-box { color: var(--sun-400); }
[data-theme="dark"] .tint-blue  { background: rgba(45,116,224,.12); border-color: rgba(45,116,224,.28); }
[data-theme="dark"] .tint-blue  .ico-box { color: var(--blue-300); }
[data-theme="dark"] .tint-slate { background: var(--surface-2);     border-color: var(--line); }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .tint-green { background: rgba(30,149,0,.11);  border-color: rgba(53,176,21,.26); }
  :root:not([data-theme]) .tint-green .ico-box { color: var(--green-300); }
  :root:not([data-theme]) .tint-solar { background: rgba(254,216,1,.10); border-color: rgba(254,216,1,.24); }
  :root:not([data-theme]) .tint-solar .ico-box { color: var(--sun-400); }
  :root:not([data-theme]) .tint-blue  { background: rgba(45,116,224,.12); border-color: rgba(45,116,224,.28); }
  :root:not([data-theme]) .tint-blue  .ico-box { color: var(--blue-300); }
  :root:not([data-theme]) .tint-slate { background: var(--surface-2);     border-color: var(--line); }
}

/* ----------------------------------------------------------------- section edges
   Sections were running into each other as one continuous field. A change of
   ground now always carries a hairline, so the eye is told where a section
   starts even when the two tones are close. */
.section--subtle,
.section--sunken {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section--subtle + .section--subtle { border-top: 0; }

/* ----------------------------------------------------------------- green band
   The full-width call to action: a solid brand field with a solar-yellow
   button, which is the one place on the page yellow is allowed to shout. */
.band {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-6) var(--sp-8);
  flex-wrap: wrap;
  padding: var(--sp-7) var(--sp-8);
  border-radius: var(--r-lg);
  /* The light end of this run was reaching --green-500, where the supporting
     line dropped to 3.2:1. Stopping at --green-600 keeps the band bright
     without letting the text fall under the 4.5:1 line anywhere across it. */
  background: linear-gradient(105deg, var(--green-800) 0%, var(--green-700) 46%, var(--green-600) 100%);
  color: #fff;
  box-shadow: var(--sh-lg);
}
.band__lead { display: flex; align-items: center; gap: var(--sp-5); min-width: 0; }
.band__ico {
  width: 52px; height: 52px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
}
.band__txt { min-width: 0; }
.band__txt h3 { margin: 0 0 3px; color: #fff; font-size: var(--t-h3); }
.band__txt p  { margin: 0; color: rgba(255,255,255,.93); font-size: var(--t-small); }
@media (max-width: 720px) {
  .band { padding: var(--sp-6); }
  .band .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   BIDIRECTIONAL TEXT
   Urdu is the one right-to-left language here, and its page still carries
   English from the database wherever a column has not been translated yet.
   Left alone, the bidi algorithm treats the whole block as right-to-left and
   pushes an English full stop to the front of the sentence, and reverses the
   groups of a phone number.

   `unicode-bidi: plaintext` is the CSS equivalent of dir="auto": each block
   takes its direction from its own first strong character. Urdu blocks stay
   right-to-left, English blocks run left-to-right with their punctuation in
   place, and runs of digits with no strong character fall back to
   left-to-right — which is what a phone number wants.
   ===================================================================== */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] p,  [dir="rtl"] li, [dir="rtl"] dd, [dir="rtl"] dt,
[dir="rtl"] td, [dir="rtl"] th, [dir="rtl"] blockquote, [dir="rtl"] figcaption,
[dir="rtl"] .prose,
[dir="rtl"] .num,
[dir="rtl"] .badge,
[dir="rtl"] .header-phone__num,
[dir="rtl"] .hero-fact__k, [dir="rtl"] .hero-fact__v,
[dir="rtl"] .hero-stat__v, [dir="rtl"] .hero-stat__k,
[dir="rtl"] .stat-value,   [dir="rtl"] .stat-label,
[dir="rtl"] .marquee-item, [dir="rtl"] .proj-loc {
  unicode-bidi: plaintext;
}

/* =====================================================================
   CONTROLS ON DARK GROUND
   .btn--secondary and friends resolve their ink from the light-theme text
   tokens, which is right on paper and wrong the moment the same button is
   dropped onto the navy call-to-action panel, the green band or a photograph:
   near-black text on a near-black field. Any dark surface re-points those
   tokens at white, so a button inherits the correct ink from its container
   instead of each page having to remember which variant to ask for.
   ===================================================================== */
.cta-band,
.section--inverse,
.band,
.page-banner--photo,
.site-footer { --on-dark: 1; }

.cta-band .btn--secondary,
.section--inverse .btn--secondary,
.band .btn--secondary,
.page-banner--photo .btn--secondary,
.site-footer .btn--secondary,
.cta-band .btn--ghost,
.section--inverse .btn--ghost,
.band .btn--ghost,
.site-footer .btn--ghost {
  --btn-bg: rgba(255, 255, 255, .10);
  --btn-fg: #FFFFFF;
  --btn-bd: rgba(255, 255, 255, .32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-band .btn--secondary:hover,
.section--inverse .btn--secondary:hover,
.band .btn--secondary:hover,
.page-banner--photo .btn--secondary:hover,
.site-footer .btn--secondary:hover,
.cta-band .btn--ghost:hover,
.section--inverse .btn--ghost:hover,
.band .btn--ghost:hover,
.site-footer .btn--ghost:hover {
  --btn-bg: rgba(255, 255, 255, .20);
  --btn-fg: #FFFFFF;
  --btn-bd: rgba(255, 255, 255, .58);
  box-shadow: none;
}

/* Supporting text and links inside those panels, for the same reason. */
.cta-band .muted,
.section--inverse .muted,
.band .muted { color: rgba(255, 255, 255, .72); }

.cta-band .link-u,
.section--inverse .link-u,
.band .link-u { color: #FFFFFF; }


/* The eyebrow is brand green, which is chosen to sit on paper. On the navy
   panel and the green band it drops to about 2:1, so those grounds get the
   light end of the ramp instead. */
.cta-band .eyebrow,
.section--inverse .eyebrow,
.page-banner--photo .eyebrow { color: var(--green-300); }
.band .eyebrow { color: rgba(255, 255, 255, .82); }

/* Chips inside a dark panel, for the same reason. */
.cta-band .badge,
.section--inverse .badge,
.band .badge {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .88);
}

/* =====================================================================
   TABLES ON A HANDSET
   A six-column order register cannot be squeezed into 390px, and letting it
   scroll sideways left rows several hundred pixels tall as every cell wrapped
   to four lines. On a narrow screen each row becomes its own stacked block
   with the column heading carried down as a label, which is how the same data
   reads in a native list.
   ===================================================================== */
@media (max-width: 720px) {
  .table-scroll:has(.table--stack) { overflow-x: visible; border: 0; background: none; }

  .table--stack { min-width: 0; display: block; }
  .table--stack thead { display: none; }
  .table--stack tbody { display: block; }

  .table--stack tr {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--sp-4) var(--sp-5);
    margin-bottom: var(--sp-4);
  }
  .table--stack tr:hover { background: var(--surface); }

  .table--stack td {
    display: grid;
    grid-template-columns: 8.5rem minmax(0, 1fr);
    gap: var(--sp-3);
    align-items: baseline;
    padding: 7px 0;
    max-width: none !important;
    text-align: left !important;
    border-top: 1px solid var(--line-soft);
  }
  .table--stack td:first-child { border-top: 0; padding-top: 0; }
  .table--stack td:last-child { padding-bottom: 0; }

  /* The heading travels with the value instead of sitting in a column. */
  .table--stack td::before {
    content: attr(data-label);
    color: var(--text-muted);
    font-size: var(--t-caption);
    letter-spacing: var(--ls-caps);
    text-transform: uppercase;
    font-weight: var(--fw-semi);
  }
  .table--stack td.num { white-space: normal; }
}
