/* =================================================================
   DAS KAPITAL SDN BHD — Corporate Site
   Aesthetic: institutional / editorial gravitas
   Navy + olive on warm ivory, blueprint-grid accents
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy:        #16314f;
  --navy-deep:   #0d2138;
  --navy-soft:   #294a6b;
  --olive:       #6f8e2e;
  --olive-bright:#86a83b;
  --olive-deep:  #56711f;
  --ivory:       #f6f4ee;
  --paper:       #fbfaf6;
  --line:        #d9d4c7;
  --ink:         #1b2330;
  --muted:       #5c6675;
  --muted-light: #6b7482;
  --white:       #ffffff;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(13, 33, 56, .06), 0 2px 6px rgba(13, 33, 56, .05);
  --shadow-md: 0 8px 24px rgba(13, 33, 56, .08), 0 2px 6px rgba(13, 33, 56, .05);
  --shadow-lg: 0 24px 60px rgba(13, 33, 56, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* ---------- Accessibility: visible keyboard focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }
/* Skip link */
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 200;
  background: var(--navy); color: #fff; padding: .7em 1.2em; border-radius: 4px;
  font-size: .9rem; font-weight: 600;
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--navy);
  font-optical-sizing: auto;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--olive);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .85em 1.5em;
  font-weight: 600; font-size: .92rem;
  letter-spacing: .01em;
  border-radius: 2px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  border: 1.5px solid transparent;
}
.btn svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--olive { background: var(--olive); color: #fff; }
.btn--olive:hover { background: var(--olive-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--light { border-color: rgba(255,255,255,.45); color: #fff; }
.btn--light:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 244, 238, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); background: rgba(246, 244, 238, .94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand__logo { height: 50px; width: auto; border-radius: 9px; display: block; }
.footer-brand .brand__logo { height: 60px; }
@media (max-width: 480px) { .brand__logo { height: 44px; } }
.brand__mark {
  width: 40px; height: 40px; box-sizing: border-box;
  padding: 6px; border-radius: 9px;
  background: var(--olive); object-fit: contain;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-body); font-weight: 800;
  font-size: 1.08rem; letter-spacing: .04em; color: var(--navy);
}
.brand__name b { color: var(--olive-deep); font-weight: 800; }
.brand__suffix { font-weight: 600; font-size: .72em; letter-spacing: .06em; opacity: .72; }
.brand__tag {
  font-size: .56rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted-light); font-weight: 600; margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  position: relative; padding: .55em .9em;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  border-radius: 3px; transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: .9em; right: .9em; bottom: .32em;
  height: 1.5px; background: var(--olive); transform: scaleX(0);
  transform-origin: left; transition: transform .28s var(--ease);
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav__cta { margin-left: 1rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--navy); transition: .3s var(--ease); }

@media (max-width: 920px) {
  .nav__cta { margin-left: 0; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 20px var(--gutter) 32px;
    box-shadow: var(--shadow-md);
    /* Hide fully off-screen: the menu is offset 76px from the top, so a %-only
       translate leaves its bottom edge peeking into the header. Subtract the
       offset (plus a small buffer) so the hide is height-independent. */
    transform: translateY(calc(-100% - 90px)); transition: transform .4s var(--ease);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { display: block; padding: 1.15em .2em; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__links .btn { display: flex; margin-top: 16px; justify-content: center; border-bottom: 0 !important; }
  body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: #081321;
  color: #fff;
  isolation: isolate;
}
.hero__frame { position: absolute; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
/* scrim: darkens the text column and fades the chevron lines out behind content */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(100deg, #081321 0%, #081321 46%, rgba(8,19,33,.55) 66%, rgba(8,19,33,0) 84%);
}
.hero__chev {
  position: absolute; right: -11%; top: 50%; transform: translateY(-50%);
  height: 138%; width: auto;
}
.hero__frame::after { /* subtle film grain to kill the flat-gradient look */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { padding-block: clamp(54px, 8vw, 104px); position: relative; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  font-size: .7rem; letter-spacing: .17em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.52);
  padding-bottom: 1.4rem; margin-bottom: 2.1rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.hero__meta span { position: relative; padding-left: 1.05rem; }
.hero__meta span::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; background: var(--olive-bright); }

.hero .eyebrow { color: var(--olive-bright); }
.hero .eyebrow::before { background: var(--olive-bright); }
.hero__title {
  color: #fff; font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.6vw, 5.4rem);
  font-weight: 600; letter-spacing: -.025em; line-height: 1.02;
  margin: 1.1rem 0 0; max-width: 15ch;
}
.hero__title .mark { position: relative; white-space: nowrap; }
.hero__title .mark::after {
  content: ""; position: absolute; left: -.02em; right: -.02em; bottom: .05em;
  height: .09em; background: var(--olive); border-radius: 3px;
}
.hero__lede {
  margin-top: 1.7rem; max-width: 46ch;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: rgba(255,255,255,.8); line-height: 1.62;
}
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.3rem 2rem; align-items: center; }
.hero__textlink {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 600; font-size: .95rem; color: #fff;
  padding-bottom: 3px; border-bottom: 1.5px solid rgba(255,255,255,.35);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.hero__textlink svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.hero__textlink:hover { border-color: var(--olive-bright); color: var(--olive-bright); }
.hero__textlink:hover svg { transform: translateX(3px); }

.hero__ticker { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.14); overflow: hidden; }
.hero__ticker-track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  padding: 1rem 0; white-space: nowrap;
  animation: hero-ticker 40s linear infinite;
}
.hero__ticker-track span { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.58); font-weight: 600; }
.hero__ticker-track i { color: var(--olive-bright); font-style: normal; }
@keyframes hero-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero__ticker-track { animation: none; } }
@media (max-width: 640px) { .hero__chev { opacity: .55; right: -24%; } }

/* Credentials at a glance (stats relocated out of the hero) */
.creds__inner { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 3.5vw, 40px); }
.creds__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem 2.5rem; flex-wrap: wrap; }
.creds__head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.creds__head > p { color: var(--muted); max-width: 40ch; font-size: .98rem; }
.creds__stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.creds__stat { padding: .3rem clamp(14px, 2.4vw, 36px); border-left: 1px solid var(--line); }
.creds__stat:first-child { border-left: 0; padding-left: 0; }
.creds__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 4.6vw, 3.6rem); color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.creds__num span { color: var(--olive); }
.creds__label { margin-top: .8rem; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
@media (max-width: 680px) { .creds__stats { grid-template-columns: 1fr 1fr; gap: 1.6rem 0; } .creds__stat:nth-child(3) { border-left: 0; padding-left: 0; } }

/* ===================================================================
   GENERIC PAGE HEADER (interior pages)
   =================================================================== */
.page-head {
  background: var(--navy); color: #fff; position: relative; overflow: hidden; isolation: isolate;
}
.page-head::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(120% 130% at 90% -10%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 130% at 90% -10%, #000 20%, transparent 75%);
}
.page-head__inner { padding-block: clamp(58px, 9vw, 110px); }
.page-head .eyebrow { color: var(--olive-bright); }
.page-head .eyebrow::before { background: var(--olive-bright); }
.page-head h1 {
  color: #fff; font-size: clamp(2.3rem, 5vw, 4rem); margin-top: 1rem; max-width: 18ch;
}
.page-head p { margin-top: 1.2rem; max-width: 56ch; color: rgba(255,255,255,.8); font-size: 1.1rem; }

/* breadcrumb */
.crumb { font-size: .8rem; letter-spacing: .04em; color: rgba(255,255,255,.62); display: flex; gap: .5em; flex-wrap: wrap; }
.crumb a { color: rgba(255,255,255,.72); }
.crumb a:hover { color: #fff; }
.crumb span { color: var(--olive-bright); }

/* ---------- Section sub-navigation ---------- */
.subnav {
  position: sticky; top: 76px; z-index: 90;
  background: rgba(251, 250, 246, .94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.subnav__inner { display: flex; align-items: center; gap: .25rem; height: 56px; overflow-x: auto; scrollbar-width: none; }
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__label {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--olive-deep); font-weight: 700; white-space: nowrap;
  margin-right: 1rem; padding-right: 1rem; border-right: 1px solid var(--line); flex-shrink: 0;
}
.subnav a {
  white-space: nowrap; font-size: .88rem; font-weight: 500; color: var(--muted);
  padding: .5em .9em; border-radius: 4px; flex-shrink: 0;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.subnav a:hover { color: var(--navy); background: rgba(111,142,46,.08); }
.subnav a[aria-current="page"] { color: var(--navy); font-weight: 600; background: rgba(111,142,46,.12); }
@media (max-width: 620px) { .subnav__label { display: none; } }

/* ===================================================================
   SECTION HEADERS
   =================================================================== */
.sec-head { max-width: 62ch; }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-top: 1rem; }
.sec-head p { margin-top: 1rem; color: var(--muted); font-size: 1.08rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow::before { display: none; }

/* numbered marker */
.num { font-family: var(--font-display); color: var(--olive); font-weight: 600; font-size: .95rem; }

/* ===================================================================
   INTRO / SPLIT
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split--top { align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.prose p + p { margin-top: 1.1rem; }
.prose p { color: var(--muted); }
.prose strong { color: var(--ink); font-weight: 600; }

/* Justify descriptive/detail body paragraphs site-wide
   (centered section intros and table cells intentionally excluded) */
.prose p,
.page-head p,
.card p,
.value p,
.feature-item p,
.footer-brand p { text-align: justify; text-justify: inter-word; }

/* feature list with markers */
.feature-list { display: grid; gap: 4px; }
.feature-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem;
  padding: 1.5rem 0; border-top: 1px solid var(--line);
}
.feature-item:last-child { border-bottom: 1px solid var(--line); }
.feature-item__ico {
  width: 46px; height: 46px; border: 1.5px solid var(--olive);
  border-radius: 50%; display: grid; place-items: center; color: var(--olive-deep);
  flex-shrink: 0; transition: background .3s var(--ease), color .3s var(--ease);
}
.feature-item:hover .feature-item__ico { background: var(--olive); color: #fff; }
.feature-item__ico svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 1.18rem; }
.feature-item p { margin-top: .35rem; color: var(--muted); font-size: .98rem; }

/* ===================================================================
   CARDS GRID (sectors / services)
   =================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--olive); transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { transform: scaleY(1); }
.card__ico {
  width: 52px; height: 52px; border-radius: 8px;
  background: rgba(111,142,46,.1); color: var(--olive-deep);
  display: grid; place-items: center; margin-bottom: 1.3rem;
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; }
.card p { margin-top: .6rem; color: var(--muted); font-size: .96rem; }
.card__tag {
  position: absolute; top: 1.4rem; right: 1.5rem;
  font-family: var(--font-display); font-weight: 600; color: var(--line); font-size: 1.3rem;
}

/* sector card with image-less colored top */
.sector { padding: 0; }
.sector__band {
  height: 8px; background: linear-gradient(90deg, var(--olive), var(--olive-bright));
}
.sector__body { padding: 1.8rem; }

/* ===================================================================
   STATS STRIP (light)
   =================================================================== */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat-strip__item { background: var(--paper); padding: 2rem 1.5rem; text-align: center; }
.stat-strip__num { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.stat-strip__num span { color: var(--olive); }
.stat-strip__label { margin-top: .6rem; font-size: .82rem; letter-spacing: .04em; color: var(--muted); }
@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr 1fr; } }

/* ===================================================================
   BANDS
   =================================================================== */
.band-navy { background: var(--navy); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.band-navy h2 { color: #fff; }
.band-navy::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(110% 110% at 10% 0%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(110% 110% at 10% 0%, #000 20%, transparent 72%);
}
.band-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ===================================================================
   CLIENTS / PARTNERS
   =================================================================== */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.partner {
  background: var(--navy); padding: 1.7rem 1.4rem; display: flex; flex-direction: column; gap: .25rem;
  transition: background .3s var(--ease);
}
.partner:hover { background: var(--navy-deep); }
.partner__abbr { font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; color: var(--olive-bright); }
.partner__full { font-size: .82rem; color: rgba(255,255,255,.66); line-height: 1.35; }
@media (max-width: 860px) { .partner-grid { grid-template-columns: 1fr 1fr; } }

/* Logo wall (client/agency logos on navy band) */
.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .logo-wall { grid-template-columns: 1fr 1fr; } }
.logo-wall__item {
  background: #fff; border-radius: 10px; height: 118px;
  display: grid; place-items: center; padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-wall__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.logo-wall__item img { max-height: 74px; max-width: 100%; width: auto; object-fit: contain; }
.logo-wall__item--text {
  background: rgba(255,255,255,.05); box-shadow: none;
  border: 1px dashed rgba(255,255,255,.28);
}
.logo-wall__item--text span {
  color: rgba(255,255,255,.78); font-weight: 600; font-size: .9rem;
  text-align: center; line-height: 1.4;
}
.logo-wall__item--text:hover { transform: none; }

/* ===================================================================
   LEADERSHIP
   =================================================================== */
.leader-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 760px) { .leader-grid { grid-template-columns: 1fr; } }
.leader {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  display: grid; grid-template-columns: 1fr;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.leader:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.leader__photo {
  width: 128px; height: 128px; border-radius: 50%; margin: 1.7rem auto .3rem;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  display: grid; place-items: center; color: rgba(255,255,255,.9);
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; position: relative;
  overflow: hidden; border: 3px solid var(--olive); box-shadow: 0 8px 20px rgba(13,33,56,.12);
}
.leader__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.leader__body { padding: .6rem 1.6rem 1.7rem; text-align: center; }
.leader__body ul { text-align: left; }
.leader__role { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--olive-deep); font-weight: 700; }
.leader__name { font-size: 1.3rem; margin-top: .35rem; }
.leader__post-nominal { font-size: .82rem; color: var(--muted-light); font-weight: 500; margin-top: .2rem; }
.leader ul { margin-top: 1rem; display: grid; gap: .5rem; }
.leader li { font-size: .9rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.leader li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; background: var(--olive); border-radius: 1px; }
@media (max-width: 480px) { .leader { grid-template-columns: 1fr; } .leader__photo { width: 112px; height: 112px; } }

/* ===================================================================
   TABLE (shareholding / corporate info)
   =================================================================== */
.info-table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.info-table th, .info-table td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { width: 36%; color: var(--navy); font-weight: 600; font-family: var(--font-body); }
.info-table td { color: var(--muted); }
.info-table tr:hover td, .info-table tr:hover th { background: rgba(111,142,46,.04); }

.data-table { width: 100%; border-collapse: collapse; font-size: .96rem; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.data-table thead th { background: var(--navy); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: .9rem 1.2rem; text-align: left; }
.data-table td { padding: .95rem 1.2rem; border-bottom: 1px solid var(--line); color: var(--muted); }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr.total td { background: rgba(111,142,46,.08); font-weight: 700; color: var(--navy); }
.data-table td.num-col, .data-table th.num-col { text-align: right; font-variant-numeric: tabular-nums; }

/* ===================================================================
   CEO QUOTE
   =================================================================== */
.quote-block { position: relative; }
.quote-block__mark { font-family: var(--font-display); font-size: 6rem; line-height: .6; color: var(--olive); opacity: .3; }
.quote-block blockquote { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 500; font-style: italic; color: var(--navy); line-height: 1.32; letter-spacing: -.01em; }
.quote-block cite { display: block; margin-top: 1.5rem; font-style: normal; }
.quote-block cite b { display: block; font-family: var(--font-body); font-weight: 700; color: var(--ink); font-style: normal; font-size: 1rem; }
.quote-block cite span { font-size: .9rem; color: var(--muted); }

/* signature card */
.sig-card { background: var(--navy); color: #fff; border-radius: 10px; padding: 2.2rem; position: relative; overflow: hidden; }
.sig-card::before { content: ""; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(111,142,46,.4), transparent 70%); }
.sig-card__avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--olive); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.6rem; color: #fff; margin-bottom: 1.2rem; overflow: hidden; position: relative; }
.sig-card__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sig-card h3 { color: #fff; font-size: 1.35rem; }
.sig-card .role { color: var(--olive-bright); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .4rem; font-weight: 600; }
.sig-card .pn { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: .6rem; }
.sig-card__photo { display: block; width: 240px; max-width: 100%; height: 240px; object-fit: cover; object-position: top center; border-radius: 10px; margin: 0 0 1.4rem; position: relative; z-index: 1; box-shadow: 0 16px 40px rgba(0,0,0,.3); border: 3px solid var(--olive); }
.sig-card--feature { padding: 1.8rem 2rem 2rem; }
.sig-card--feature h3 { font-size: 1.5rem; }
@media (max-width: 480px) { .sig-card__photo { width: 180px; height: 180px; } }

/* ===================================================================
   TIMELINE / VALUES
   =================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.value { padding: 2.2rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); background: var(--paper); transition: background .3s var(--ease); }
.value:hover { background: rgba(111,142,46,.05); }
.value:nth-child(2n) { border-right: 0; }
.value:nth-last-child(-n+2) { border-bottom: 0; }
.value__n { font-family: var(--font-display); font-weight: 600; color: var(--olive); font-size: 1rem; }
.value h3 { font-size: 1.3rem; margin-top: .6rem; }
.value p { margin-top: .6rem; color: var(--muted); font-size: .96rem; }
@media (max-width: 620px) { .value-grid { grid-template-columns: 1fr; } .value { border-right: 0 !important; } .value:nth-last-child(2) { border-bottom: 1px solid var(--line); } }

/* ===================================================================
   PROJECTS
   =================================================================== */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 960px) { .project-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .project-grid { grid-template-columns: 1fr; } }
.project {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project__visual { height: 150px; position: relative; overflow: hidden; display: grid; place-items: center; }
.project__visual svg.bg-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.project__visual .ico { position: relative; z-index: 1; color: #fff; width: 46px; height: 46px; }
.project__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project__tag {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  background: rgba(13,33,56,.82); color: #fff; font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: .34em .75em; border-radius: 100px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.project__body { padding: 1.5rem 1.6rem; }
.project__cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--olive-deep); font-weight: 700; }
.project__title { font-size: 1.18rem; margin-top: .5rem; }
.project__meta { margin-top: .7rem; font-size: .88rem; color: var(--muted); display: flex; align-items: center; gap: .5em; }
.project__meta svg { width: 14px; height: 14px; color: var(--olive); flex-shrink: 0; }

/* Horizontal scroll carousel for future projects */
.project-scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 380px);
  gap: 1.5rem; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem; margin-inline: calc(-1 * var(--gutter, 1.25rem)); padding-inline: var(--gutter, 1.25rem);
  scroll-padding-left: var(--gutter, 1.25rem);
  scrollbar-width: thin; scrollbar-color: var(--olive) transparent;
}
.project-scroller > .project { scroll-snap-align: start; }
.project-scroller::-webkit-scrollbar { height: 8px; }
.project-scroller::-webkit-scrollbar-thumb { background: var(--olive); border-radius: 100px; }
.project-scroller::-webkit-scrollbar-track { background: rgba(0,0,0,.06); border-radius: 100px; }
.project-scroller .project__visual { height: auto; aspect-ratio: 16 / 9; }
.scroll-hint { display: flex; align-items: center; gap: .5em; margin-top: 1rem; font-size: .82rem; color: var(--muted); }
.scroll-hint svg { width: 16px; height: 16px; }
@media (max-width: 620px) { .project-scroller { grid-auto-columns: minmax(260px, 84%); } }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff; border-radius: 14px; padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative; overflow: hidden; isolation: isolate;
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(90% 130% at 100% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(90% 130% at 100% 0%, #000, transparent 70%);
}
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); max-width: 20ch; }
.cta p { color: rgba(255,255,255,.78); margin-top: .8rem; max-width: 44ch; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.contact-item:last-of-type { border-bottom: 1px solid var(--line); }
.contact-item__ico { width: 44px; height: 44px; border-radius: 8px; background: rgba(111,142,46,.1); color: var(--olive-deep); display: grid; place-items: center; }
.contact-item__ico svg { width: 22px; height: 22px; }
.contact-item dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-light); font-weight: 600; }
.contact-item dd { margin-top: .2rem; color: var(--ink); font-weight: 500; }
.contact-item dd a:hover { color: var(--olive-deep); }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.field input, .field textarea, .field select {
  font: inherit; font-size: .95rem; padding: .8em 1em;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 5px; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(111,142,46,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .82rem; color: var(--muted); }
.map-embed { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; aspect-ratio: 16/8; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-block: clamp(48px, 6vw, 80px) 0; position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px; mask-image: radial-gradient(100% 80% at 0% 100%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(100% 80% at 0% 100%, #000, transparent 70%);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; position: relative; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name b { color: var(--olive-bright); }
.footer-brand p { margin-top: 1.2rem; max-width: 34ch; font-size: .92rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a, .footer-col li { font-size: .92rem; color: rgba(255,255,255,.7); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--olive-bright); }
.footer-addr { font-size: .92rem; line-height: 1.7; font-style: normal; }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.6rem; position: relative;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom .badges { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom .badges span { display: inline-flex; align-items: center; gap: .4em; }
.footer-bottom .badges b { color: var(--olive-bright); font-weight: 700; }

/* ===================================================================
   REVEAL ANIMATION
   =================================================================== */
[data-reveal] { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* utilities */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.tag-pill { display: inline-flex; align-items: center; gap: .5em; padding: .35em .9em; background: rgba(111,142,46,.1); color: var(--olive-deep); border-radius: 100px; font-size: .78rem; font-weight: 600; letter-spacing: .03em; }
.tag-pill.light { background: rgba(255,255,255,.1); color: #fff; }
.divider-line { height: 1px; background: var(--line); border: 0; margin-block: 0; }

/* ===================================================================
   PHOTOGRAPHY / MEDIA BACKGROUNDS
   Real Malaysian construction & skyline imagery, kept legible with
   dark overlays so text and brand colour always read cleanly.
   =================================================================== */

/* Hero: KL skyline photo behind the chevron frame + scrim */
.hero__photo {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 70% center;
  opacity: .58;
}
/* strengthen the left-column darkening so hero copy always has contrast */
.hero__scrim {
  background:
    linear-gradient(100deg, #081321 0%, #081321 42%, rgba(8,19,33,.72) 62%, rgba(8,19,33,.28) 82%, rgba(8,19,33,.05) 100%),
    linear-gradient(0deg, rgba(8,19,33,.55) 0%, rgba(8,19,33,0) 40%);
}
@media (max-width: 720px) {
  .hero__photo { opacity: .42; object-position: 62% center; }
  .hero__scrim { background: linear-gradient(180deg, rgba(8,19,33,.78) 0%, rgba(8,19,33,.62) 55%, rgba(8,19,33,.82) 100%); }
}

/* Interior page headers: dark dusk skyline under a navy wash */
.page-head {
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(180deg, rgba(13,33,56,.86), rgba(13,33,56,.92)),
    url("../img/backgrounds/pagehead-kl-dusk.jpg");
  background-size: cover;
  background-position: center 32%;
}

/* Project / sector cards that carry a real photo instead of a gradient */
.project__visual--photo { background: var(--navy-deep); }
.project__visual--photo img { object-position: center bottom; }
.project__visual--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,33,56,0) 45%, rgba(13,33,56,.42) 100%);
}

/* CTA banner with a darkened skyline behind the navy grid */
.cta--photo {
  background-image:
    linear-gradient(125deg, rgba(13,33,56,.93) 0%, rgba(22,49,79,.86) 55%, rgba(13,33,56,.9) 100%),
    url("../img/backgrounds/kl-aerial.jpg");
  background-size: cover;
  background-position: center;
}

/* ===================================================================
   PROPERTY LISTINGS (land / property for sale & collaboration)
   =================================================================== */
.focus-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.focus-chips .tag-pill { font-size: .8rem; padding: .4em 1em; }

.listing {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--paper); box-shadow: var(--shadow-sm);
}
.listing + .listing { margin-top: clamp(28px, 4vw, 44px); }
.listing__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.6rem;
  flex-wrap: wrap; padding: clamp(1.3rem, 2.6vw, 1.9rem) clamp(1.3rem, 2.6vw, 2rem);
  border-bottom: 1px solid var(--line);
}
.listing__bar-main { display: flex; flex-direction: column; gap: .35rem; }
.listing__eyebrow {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--olive-deep); font-weight: 700;
}
.listing__title { font-size: clamp(1.45rem, 3vw, 2.15rem); line-height: 1.05; }
.listing__loc { display: inline-flex; align-items: center; gap: .45em; color: var(--muted); font-size: .95rem; margin-top: .15rem; }
.listing__loc svg { width: 15px; height: 15px; color: var(--olive); flex-shrink: 0; }
.listing__badge {
  align-self: flex-start; background: var(--olive); color: #fff;
  padding: .42em .95em; border-radius: 100px; font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
}
.listing__badge--muted { background: var(--muted); }

.listing__grid {
  display: grid; grid-template-columns: 1.12fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem); padding: clamp(1.3rem, 2.6vw, 2rem);
  align-items: start;
}
@media (max-width: 880px) { .listing__grid { grid-template-columns: 1fr; } }

.figure { margin: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--navy-deep); }
.figure > img { width: 100%; height: auto; display: block; }
.figure figcaption {
  font-size: .74rem; color: var(--muted); padding: .55rem .8rem;
  background: var(--paper); border-top: 1px solid var(--line); line-height: 1.4;
}
.figure-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: .8rem; }

.price-band {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .3rem .5rem;
  margin: 0 0 1.1rem; padding: 1rem 1.2rem;
  background: rgba(111,142,46,.09); border: 1px solid rgba(111,142,46,.25); border-radius: 8px;
}
.price-band__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); line-height: 1; }
.price-band__unit { color: var(--muted); font-size: .9rem; }
.price-band__label { width: 100%; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--olive-deep); font-weight: 700; margin-bottom: .3rem; }

.uses { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.2rem; margin-top: .3rem; }
@media (max-width: 520px) { .uses { grid-template-columns: 1fr; } }
.uses li { position: relative; padding-left: 1.5rem; font-size: .93rem; color: var(--muted); }
.uses li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 15px; height: 15px;
  background: var(--olive); border-radius: 3px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/70% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/70% no-repeat;
}
.lot-table { width: 100%; border-collapse: collapse; font-size: .86rem; margin-top: 1rem; }
.lot-table th, .lot-table td { padding: .55rem .7rem; border-bottom: 1px solid var(--line); text-align: left; }
.lot-table thead th { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--olive-deep); font-weight: 700; }
.lot-table td.num-col, .lot-table th.num-col { text-align: right; font-variant-numeric: tabular-nums; }
.lot-table tr.total td { font-weight: 700; color: var(--navy); border-bottom: 0; }

@media print {
  .listing { break-inside: avoid; box-shadow: none; }
}

/* ===================================================================
   PRINT / PDF EXPORT
   =================================================================== */
@media print {
  html, body { background: #fff; }
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* screen-only chrome */
  .skip-link, .nav__toggle, .hero__ticker { display: none !important; }

  /* drop heavy photo backgrounds for clean, ink-light print */
  .hero__photo { display: none !important; }
  .page-head { background-image: none !important; background-color: var(--navy) !important; }
  .cta--photo { background-image: linear-gradient(135deg, var(--navy-deep), var(--navy)) !important; }

  /* unpin sticky elements so they don't repeat / overlap */
  .site-header { position: static !important; box-shadow: none; border-bottom: 1px solid var(--line); }
  .subnav { position: static !important; backdrop-filter: none; }

  /* reveal everything (no JS scroll in print) */
  [data-reveal] { opacity: 1 !important; transform: none !important; }

  /* keep components from splitting across pages */
  .card, .leader, .project, .value, .logo-wall__item, .feature-item,
  .contact-item, .sig-card, .info-table tr, .data-table tr { break-inside: avoid; }
  .hero, .page-head, .cta { break-inside: avoid; }

  /* start each page's hero/page-head on a fresh sheet */
  .page-head { break-before: page; }

  a { text-decoration: none; }
  @page { size: A4; margin: 0; }
}
