/* Abhinav Koriginja — abhi.otterchain.com
   One stylesheet, no framework, no build step.

   ── THEME: heavy-haul ───────────────────────────────────────────────────────
   Rebuilt 2026-07-27 on the design system of heavyhaulers.com, at the client's
   request. Colours were SAMPLED off that site rather than guessed:

     #FBCE4F  nav gold            — the header bar
     #FFE588  section yellow      — full-bleed feature bands
     #131519  ink                 — hero, dark bands, footer
     #222222  strip black         — the announcement bar
     #0B7081  teal                — the one call-to-action colour
     #FFFFFF  white               — light bands and cards

   The structural moves taken from it, which matter more than the hex codes:
     • A thin black ANNOUNCEMENT STRIP above a solid gold nav.
     • A dark hero with a heavy, flat headline — no gradients, no glow.
     • A TRUST BAR wedged straight under the hero: stats, a checkmark list and
       a call-to-action block, all in one dark strip.
     • Full-bleed alternating bands (gold → dark → white), never a page of
       floating cards on one background.
     • Heavy CONDENSED UPPERCASE display type, tight leading, black on gold.
     • Thick borders on media instead of soft shadows.

   What was deliberately NOT copied: the distressed/stencil headline face and
   the paper-grain texture overlay. Both are licensed assets of that brand, and
   a stencil font on a developer's CV reads as costume rather than confidence. */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; }

:root {
  --gold:      #FBCE4F;
  --gold-dk:   #E9B92F;
  --yellow:    #FFE588;
  --yellow-dk: #F2D46A;
  --ink:       #131519;
  --ink-2:     #1B1F26;
  --ink-3:     #2A303A;
  --strip:     #222222;
  --teal:      #0B7081;
  --teal-dk:   #095A68;
  --white:     #FFFFFF;
  --off:       #F4F4F2;
  --text:      #14171C;
  --text-2:    #55606E;
  --on-dark:   #E7E9EC;
  --on-dark-2: #9BA5B2;
  --line:      #DCDCD6;

  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  /* Condensed display stack. Arial Narrow ships on Windows and macOS, Roboto
     Condensed on most Android/Linux; the `font-stretch` line lets a variable
     system font condense where one is available. Falls back to the body sans
     at heavy weight, which still reads as a strong industrial headline. */
  --display: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed",
             "Liberation Sans Narrow", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--white); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* Display type: condensed, uppercase, heavy, tight. The whole look leans on
   this — a normal-width headline turns the page back into a template. */
h1, h2 {
  font-family: var(--display); font-stretch: condensed;
  font-weight: 700; text-transform: uppercase;
  line-height: .95; letter-spacing: .005em; color: var(--text);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.0625rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.3; }

.wrap { width: min(1220px, 100% - 2.5rem); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 5.75rem); }
.section--yellow { background: var(--yellow); }
.section--dark   { background: var(--ink); }
.section--light  { background: var(--off); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p, .section--dark .lead { color: var(--on-dark-2); }

.lead { font-size: clamp(.98rem, 1.35vw, 1.08rem); color: var(--text-2); max-width: 62ch; }
p { color: var(--text-2); }

.head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.head--center { text-align: center; }
.head--center .lead { margin-inline: auto; }
.head h2 { margin-bottom: .85rem; }

/* Kicker: the small line above every headline. Gold on dark, teal on light. */
.kicker {
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  color: var(--gold); margin-bottom: .7rem;
  /* inline-flex so the mark sits on the text baseline row rather than pushing
     the label down; `gap` keeps the spacing consistent at every size. */
  display: flex; align-items: center; gap: .5rem;
}
.kicker--dark { color: var(--teal-dk); }
/* `.section--dark p` is (0,1,1) and was silently beating `.kicker` (0,1,0), so
   every eyebrow on a dark section rendered muted grey instead of the brand gold
   — and now the prefix mark inherited that too. (0,2,0) puts it back. */
.section--dark .kicker { color: var(--gold); }
.kicker--center { text-align: center; justify-content: center; }

/* Every prefix mark inherits `currentColor`, so a kicker's own colour rule
   (gold on dark, teal on light) recolours its icon too — one rule, not two
   that can drift apart. */
.kicker__ico, .stack__ico, .mini__ico, .trust__ico {
  flex: none; fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.kicker__ico { width: 15px; height: 15px; }
.stack__ico  { width: 14px; height: 14px; }
.mini__ico   { width: 15px; height: 15px; }
.trust__ico  { width: 18px; height: 18px; color: var(--gold); margin-bottom: .35rem; }

.num {
  font-family: var(--display); font-stretch: condensed;
  font-size: 2.35rem; font-weight: 700; line-height: 1;
  letter-spacing: .01em; color: var(--gold);
}

/* ── buttons ───────────────────────────────────────────────────────────── */
/* Square corners, uppercase, heavy. Rounded pills would undo the whole look. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 3px; cursor: pointer;
  font-size: .8rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; white-space: nowrap; border: 2px solid transparent;
  transition: background-color .25s ease, color .25s ease,
              border-color .25s ease, transform .25s var(--ease);
}
.btn--lg { padding: 1.05rem 2rem; font-size: .875rem; }
.btn__ico { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.btn:hover .btn__ico { transform: translateX(4px); }

.btn--teal   { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dk); transform: translateY(-2px); }
.btn--yellow { background: var(--gold); color: var(--ink); }
.btn--yellow:hover { background: var(--gold-dk); transform: translateY(-2px); }
.btn--dark   { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--teal); transform: translateY(-2px); }
.btn--outline { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* ── announcement strip ────────────────────────────────────────────────── */
.topbar { background: var(--strip); color: #D6D6D6; }
.topbar__inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .4rem .75rem; padding-block: .5rem;
  font-size: .69rem; font-weight: 700; letter-spacing: .13em;
}
.topbar__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ED17F;
  box-shadow: 0 0 0 0 rgba(78,209,127,.6); animation: pulse 2.6s infinite;
}
.topbar i { color: var(--gold); font-style: normal; }
@keyframes pulse {
  70%  { box-shadow: 0 0 0 7px rgba(78,209,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,209,127,0); }
}

/* ── nav ───────────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 60; background: var(--gold); box-shadow: 0 2px 0 rgba(0,0,0,.14); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 64px; }
.nav__mark { display: grid; gap: .05rem; padding-block: .55rem; }
.nav__word {
  font-family: var(--display); font-stretch: condensed;
  font-size: 1.75rem; font-weight: 700; letter-spacing: .01em; color: var(--ink);
  line-height: 1;
}
.nav__word b { color: var(--teal); }
.nav__mark small {
  font-size: .58rem; font-weight: 800; letter-spacing: .22em; color: #6B5A20;
}
.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__links a {
  padding: .55rem .8rem; font-size: .76rem; font-weight: 800; letter-spacing: .07em;
  color: var(--ink); border-radius: 3px;
  transition: background-color .2s ease, color .2s ease;
}
.nav__links a:hover { background: rgba(0,0,0,.09); }
/* The one boxed item in the bar — same trick the reference site uses to make
   its primary action readable against a field of gold. */
.nav__cta { background: var(--ink); color: var(--gold) !important; margin-left: .4rem; }
.nav__cta:hover { background: var(--teal); color: #fff !important; }
.nav__direct { display: grid; gap: .15rem; justify-items: end; text-align: right; }
.nav__direct-k { font-size: .62rem; font-weight: 700; letter-spacing: .09em; color: #6B5A20; }
.nav__direct-v {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--teal); color: #fff; padding: .4rem .8rem; border-radius: 3px;
  font-size: .8rem; font-weight: 800; letter-spacing: .05em;
  transition: background-color .2s ease;
}
.nav__direct:hover .nav__direct-v { background: var(--teal-dk); }
.nav__direct-v svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; background: var(--ink); color: var(--white);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 4px solid var(--gold);
}
/* Faint diagonal hatch — the reference uses a photograph here; a texture keeps
   the band from reading as a flat rectangle without inventing a stock image. */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(
    -45deg, rgba(255,255,255,.028) 0 2px, transparent 2px 9px);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.hero__title { color: var(--white); margin-bottom: 1.1rem; max-width: 15ch; }
.hero__lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--on-dark); max-width: 52ch; margin-bottom: 1.9rem; }
.hero .kicker { color: var(--gold); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.6rem; }
.hero__note {
  display: flex; align-items: center; gap: .55rem;
  font-size: .82rem; color: var(--on-dark-2);
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #4ED17F;
  box-shadow: 0 0 0 0 rgba(78,209,127,.6); animation: pulse 2.6s infinite; flex: none;
}

/* ── portrait ──────────────────────────────────────────────────────────── */
/* Thick gold border, hard shadow, no radius — the reference frames every photo
   this way, and it's what stops the studio-grey backdrop floating. */
.portrait { position: relative; justify-self: center; width: min(100%, 400px); }
.portrait__img {
  border: 5px solid var(--gold); box-shadow: 14px 14px 0 rgba(0,0,0,.35);
  background: var(--ink-2); overflow: hidden;
}
.portrait__img img { width: 100%; height: auto; }
.portrait__tag {
  position: absolute; left: -.75rem; bottom: 1.25rem; z-index: 2;
  background: var(--ink); border-left: 4px solid var(--teal);
  padding: .6rem 1rem;
}
.portrait__tag strong {
  display: block; font-size: .78rem; font-weight: 800; letter-spacing: .07em; color: var(--white);
}
.portrait__tag span { display: block; font-size: .7rem; color: var(--on-dark-2); margin-top: .1rem; }

/* ── trust bar ─────────────────────────────────────────────────────────── */
.trust { background: var(--ink-2); border-bottom: 1px solid var(--ink-3); }
.trust__inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem 3rem;
  align-items: center; padding-block: 1.9rem;
}
.trust__stats { display: flex; gap: 2.25rem; }
.trust__stats li { display: grid; gap: .2rem; }
.trust__stats span:last-child { font-size: .72rem; color: var(--on-dark-2); line-height: 1.4; }
.trust__checks {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem 1.75rem;
  padding-inline: 2.5rem; border-inline: 1px solid var(--ink-3);
}
.trust__checks li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--on-dark);
}
.chk { width: 15px; height: 15px; fill: var(--gold); flex: none; }
.trust__cta { max-width: 22rem; }
.trust__cta-k {
  font-size: .95rem; font-weight: 800; color: var(--gold); margin-bottom: .3rem;
  display: flex; align-items: center; gap: .45rem;
}
.trust__cta p { font-size: .8rem; color: var(--on-dark-2); margin-bottom: .9rem; }

/* ── cards ─────────────────────────────────────────────────────────────── */
/* White panels with a hard black edge on a gold band — borders, not shadows. */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.card {
  position: relative; padding: 1.9rem 1.6rem 2rem;
  background: var(--white); border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(19,21,25,.14);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 rgba(19,21,25,.2); }
.section--light .card { box-shadow: 6px 6px 0 rgba(19,21,25,.1); }
.card__ico {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--gold); border: 2px solid var(--ink); margin-bottom: 1.1rem;
}
.card__ico svg {
  width: 21px; height: 21px; stroke: var(--ink); fill: none;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .03em; }
.card p { font-size: .9rem; }

/* ── stack ─────────────────────────────────────────────────────────────── */
.stack { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.stack__group { padding: 1.4rem 1.3rem 1.5rem; background: var(--ink-2); border-top: 4px solid var(--gold); }
.stack__k {
  font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
  display: flex; align-items: center; gap: .45rem;
}
.stack__group ul { display: grid; gap: .45rem; }
.stack__group li { font-size: .86rem; color: var(--on-dark); }
.stack__note { margin-top: 2rem; font-size: .85rem; color: var(--on-dark-2); font-style: italic; }

/* ── work ──────────────────────────────────────────────────────────────── */
#workGrid:empty { display: none; }
.work__empty {
  background: var(--white); border: 2px dashed var(--ink);
  padding: clamp(2rem, 4.5vw, 3rem); text-align: center;
}
.work__empty-k {
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-dk); margin-bottom: .7rem;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
}
.work__empty p { max-width: 56ch; margin-inline: auto; font-size: .92rem; }
.work__empty code {
  font-family: var(--mono); font-size: .85em; color: var(--ink);
  background: var(--yellow); padding: .1em .4em;
}
.work__empty .btn { margin-top: 1.4rem; }

.proj__tags { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.proj__tags li {
  font-size: .7rem; font-weight: 700; letter-spacing: .04em; color: var(--ink);
  background: var(--yellow); border: 1px solid var(--ink); padding: .2rem .5rem;
}
.proj__link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: var(--teal-dk);
}
.proj__link svg { width: 15px; height: 15px; stroke: currentColor; fill: none;
  stroke-width: 2.4; stroke-linecap: round; transition: transform .25s var(--ease); }
.card:hover .proj__link svg { transform: translateX(4px); }

/* ── pull quote ────────────────────────────────────────────────────────── */
.section--quote {
  background: var(--gold); border-block: 4px solid var(--ink);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.quote { max-width: 52ch; margin-inline: auto; text-align: center; }
.quote p {
  font-family: var(--display); font-stretch: condensed;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); font-weight: 700;
  text-transform: uppercase; line-height: 1.06; letter-spacing: .01em; color: var(--ink);
}
.quote em { font-style: normal; color: var(--teal-dk); }
.quote cite {
  display: block; margin-top: 1.4rem; font-style: normal;
  font-size: .72rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: #6B5A20;
}

/* ── process ───────────────────────────────────────────────────────────── */
.process { counter-reset: step; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.step {
  counter-increment: step; position: relative;
  padding: 2.4rem 1.5rem 1.7rem; background: var(--white); border: 2px solid var(--ink);
}
/* Number plate hung off the top-left corner — the reference badges its steps
   the same way, and it gives the row a rhythm a plain numeral doesn't. */
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -2px; left: -2px;
  display: grid; place-items: center; min-width: 46px; height: 34px;
  padding-inline: .5rem; background: var(--ink); color: var(--gold);
  font-family: var(--display); font-stretch: condensed;
  font-size: 1.15rem; font-weight: 700; letter-spacing: .04em;
}
.step h3 { margin-bottom: .45rem; text-transform: uppercase; letter-spacing: .03em; }
.step p { font-size: .89rem; }

/* ── tenets ────────────────────────────────────────────────────────────── */
.tenets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.tenet { padding: 1.7rem 1.5rem; background: var(--white); border-left: 4px solid var(--teal); }
.tenet__ico { display: block; margin-bottom: .9rem; }
.tenet__ico svg {
  width: 22px; height: 22px; stroke: var(--teal); fill: none;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.tenet h3 { margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .03em; }
.tenet p { font-size: .87rem; }
.tenet em { color: var(--teal-dk); font-style: normal; font-weight: 700; }

/* ── contact ───────────────────────────────────────────────────────────── */
.cta { border-top: 4px solid var(--gold); }
.cta__inner { text-align: center; max-width: 760px; margin-inline: auto; }
.cta__inner h2 { margin-bottom: .8rem; }
.cta__inner .lead { margin-inline: auto; }
.cta__btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.cta__links {
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--ink-3);
  display: flex; flex-wrap: wrap; gap: .8rem 2.25rem; justify-content: center;
  font-size: .85rem;
}
.cta__links li { display: inline-flex; align-items: center; gap: .5rem; color: var(--on-dark-2); }
.cta__links a { transition: color .2s ease; }
.cta__links a:hover { color: var(--gold); }
.ico { width: 17px; height: 17px; stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ── footer ────────────────────────────────────────────────────────────── */
.foot { background: var(--strip); padding-block: 2rem; border-top: 4px solid var(--gold); }
.foot__inner {
  display: flex; flex-wrap: wrap; gap: 1rem 2.5rem;
  align-items: center; justify-content: space-between;
}
.foot__name {
  font-family: var(--display); font-stretch: condensed;
  font-size: 1.35rem; font-weight: 700; letter-spacing: .03em; color: var(--white);
}
.foot__name span {
  display: block; font-family: var(--sans); font-size: .78rem; font-weight: 400;
  letter-spacing: 0; text-transform: none; color: var(--on-dark-2); margin-top: .2rem;
}
.foot__meta { display: flex; flex-wrap: wrap; gap: .25rem 1.75rem; font-size: .76rem; color: var(--on-dark-2); }

/* ── scroll reveal ─────────────────────────────────────────────────────── */
/* Gated on `.js` (set by an inline script in <head>): if JS never runs, these
   rules never apply and nothing can be left invisible. */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

/* ── responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav__links a { padding: .5rem .6rem; font-size: .72rem; }
  .trust__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .trust__checks { padding-inline: 0; border-inline: 0; padding-block: 1.4rem;
    border-block: 1px solid var(--ink-3); grid-template-columns: repeat(3, 1fr); }
  .trust__cta { max-width: none; }
}
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .portrait { order: -1; width: min(100%, 300px); }
  .cards, .tenets, .steps { grid-template-columns: repeat(2, 1fr); }
  .stack { grid-template-columns: repeat(3, 1fr); }
  .nav__links, .nav__direct-k { display: none; }
}
@media (max-width: 640px) {
  .topbar__inner { font-size: .62rem; letter-spacing: .08em; }
  .nav__inner { min-height: 58px; }
  .nav__word { font-size: 1.4rem; }
  .nav__mark small { display: none; }
  .cards, .tenets, .steps, .stack { grid-template-columns: 1fr; }
  .trust__stats { gap: 1.25rem; flex-wrap: wrap; }
  .trust__checks { grid-template-columns: repeat(2, 1fr); }
  .portrait__img { box-shadow: 8px 8px 0 rgba(0,0,0,.35); }
  .portrait__tag { left: 0; }
  .cta__links { gap: .7rem 1.25rem; }
}

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

@media print {
  .nav, .topbar, .hero::before { display: none; }
  body { background: #fff; color: #000; }
}
