/* =====================================================================
   MINDAL GLOBAL RESOURCES — Oil & Gas
   Design system + components + motion. Vanilla, no build step.
   Identity: deep indigo + gold "energy" language (distinct from Meldex).
   ===================================================================== */

/* ---------- tokens ---------- */
:root {
  --ink:        #100E24;
  --indigo-900: #14113A;
  --indigo-800: #1B1750;
  --indigo-700: #241C6B;
  --indigo-600: #322a86;
  --indigo-500: #4A3EAE;
  --indigo-glow:#5B4BD6;

  --gold:       #F0B429;
  --gold-500:   #F7C948;
  --gold-700:   #C98A0E;

  --paper:      #F6F5F1;
  --paper-2:    #ECEAE2;
  --white:      #FFFFFF;

  --ink-70:     rgba(16,14,36,.72);
  --ink-55:     rgba(16,14,36,.55);
  --ink-40:     rgba(16,14,36,.40);
  --line:       rgba(16,14,36,.12);
  --line-light: rgba(255,255,255,.14);
  --white-70:   rgba(255,255,255,.72);
  --white-55:   rgba(255,255,255,.55);

  --radius:     16px;
  --radius-sm:  10px;
  --container:  1200px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Grotesk", ui-monospace, monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); padding: .7rem 1.1rem; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 600;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-500); }
.section-title { font-size: clamp(1.9rem, 4.4vw, 3.1rem); letter-spacing: -.03em; }
.section-title--center { text-align: center; }
.section-title--light { color: var(--white); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--ink-70); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--ink);
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.5rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  background: var(--bg); color: var(--fg);
  position: relative; will-change: transform;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  box-shadow: 0 8px 22px -12px rgba(240,180,41,.7);
}
.btn:hover { box-shadow: 0 16px 34px -14px rgba(240,180,41,.85); }
.btn:active { transform: translateY(1px) scale(.99); }
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--onDark { --fg: var(--white); box-shadow: inset 0 0 0 1.5px var(--line-light); }
.btn--onDark:hover { --fg: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn:focus-visible { outline: 3px solid var(--indigo-glow); outline-offset: 3px; }

/* ---------- scroll progress ---------- */
.scrollbar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; pointer-events: none;
  background: transparent;
}
.scrollbar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-700), var(--gold), var(--gold-500));
  box-shadow: 0 0 12px rgba(240,180,41,.6);
}

/* ---------- custom cursor ---------- */
/* precision reticle cursor: hairline ring + gold crosshair */
.cursor { position: fixed; top: 0; left: 0; z-index: 130; pointer-events: none; opacity: 0; transition: opacity .3s; }
.cursor.is-on { opacity: 1; }
.cursor__ring { position: absolute; border-radius: 50%; transform: translate(-50%, -50%); width: 30px; height: 30px; border: 1.5px solid rgba(50,42,134,.55); transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, background .3s; }
.cursor__dot {
  position: absolute; left: 0; top: 0; width: 15px; height: 15px; transform: translate(-50%, -50%) rotate(0deg);
  background:
    linear-gradient(var(--gold), var(--gold)) center / 1.5px 100% no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 100% 1.5px no-repeat;
  transition: transform .3s var(--ease), filter .3s;
}
.cursor.is-hot .cursor__ring { width: 46px; height: 46px; border-color: var(--gold); background: rgba(240,180,41,.08); }
.cursor.is-hot .cursor__dot { transform: translate(-50%, -50%) rotate(45deg); filter: drop-shadow(0 0 4px rgba(240,180,41,.7)); }
.cursor.is-down .cursor__ring { width: 24px; height: 24px; }
.cursor.is-down .cursor__dot { transform: translate(-50%, -50%) rotate(45deg) scale(.8); }
html.has-cursor, html.has-cursor a, html.has-cursor button { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ============================ HEADER ============================ */
.site-header { position: sticky; top: 0; z-index: 100; }
.topbar {
  background: var(--indigo-900); color: var(--white-70);
  font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.topbar__contacts { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.topbar__contacts li { display: flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: var(--gold-500); }
.topbar .ico { width: 15px; height: 15px; fill: none; stroke: var(--gold); stroke-width: 1.6; opacity: .9; }
.topbar__meta { display: flex; gap: 1.4rem; align-items: center; }
.topbar__rc { font-family: var(--font-mono); letter-spacing: .04em; }
@media (max-width: 860px){ .topbar__addr, .topbar__rc { display: none; } }

.navbar {
  background: rgba(246,245,241,.82); backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s;
}
.site-header.is-stuck .navbar { box-shadow: 0 14px 40px -26px rgba(16,14,36,.5); background: rgba(246,245,241,.94); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; padding: .7rem 0; transition: padding .3s var(--ease); }
.site-header.is-stuck .navbar__inner { padding: .45rem 0; }

/* brand / logo */
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { position: relative; height: 62px; flex: none; display: inline-flex; align-items: center; perspective: 460px; transition: height .3s var(--ease); }
/* soft brand-coloured halo so the white flourish never blends into the light navbar */
.brand:not(.brand--light) .brand__mark::before {
  content: ""; position: absolute; inset: -22% -14%; z-index: -1; border-radius: 50%;
  background: radial-gradient(58% 58% at 44% 56%, rgba(36,28,107,.26), rgba(58,46,134,.12) 52%, transparent 76%);
  filter: blur(3px);
}
.brand__mark img { height: 100%; width: auto; display: block; will-change: transform; transform-style: preserve-3d; transition: transform .4s var(--ease), filter .4s var(--ease); }
.brand:hover .brand__mark img { filter: drop-shadow(0 8px 16px rgba(36,28,107,.5)); }
.brand--light .brand__mark img { filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
.brand--light:hover .brand__mark img { filter: drop-shadow(0 0 16px rgba(240,180,41,.35)); }
.site-header.is-stuck .brand__mark { height: 52px; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__word b { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: -.03em; color: var(--indigo-800); }
.brand__word b i { font-style: normal; font-weight: 500; color: var(--ink-70); }
.brand__word small { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-700); margin-top: 3px; }
.brand--light .brand__word b { color: var(--white); }
.brand--light .brand__word b i { color: var(--white-70); }

.mainnav { display: flex; align-items: center; gap: 1.8rem; }
.mainnav__list { display: flex; align-items: center; gap: 1.5rem; }
.mainnav__link {
  font-weight: 500; font-size: .95rem; position: relative; padding: .3rem 0; color: var(--ink-70);
  display: inline-flex; align-items: center; gap: .3rem; transition: color .25s;
}
.mainnav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.mainnav__link:hover, .mainnav__link.is-active { color: var(--ink); }
.mainnav__link:hover::after, .mainnav__link.is-active::after { width: 100%; }
.caret { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .3s; }
.has-drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + .7rem); left: -.6rem; min-width: 220px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: .5rem;
  box-shadow: 0 26px 60px -24px rgba(16,14,36,.4);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .28s var(--ease);
}
.has-drop:hover .dropdown, .dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.has-drop:hover .caret { transform: rotate(180deg); }
.dropdown li a { display: block; padding: .6rem .8rem; border-radius: 9px; font-size: .92rem; color: var(--ink-70); transition: background .2s, color .2s; }
.dropdown li a:hover { background: var(--paper-2); color: var(--ink); }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.mainnav.is-open ~ .nav-toggle span:nth-child(1),
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .navbar__cta { display: none; }
  /* backdrop-filter on the navbar makes position:fixed children resolve against the navbar box,
     collapsing the slide-in menu — drop it on mobile so the panel is full-height off the viewport */
  .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(246,245,241,.96); }
  .mainnav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--indigo-900); color: var(--white);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 6rem 1.6rem 2rem; gap: 0;
    transform: translateX(100%); transition: transform .4s var(--ease-out);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,.6); overflow-y: auto;
  }
  .mainnav.is-open { transform: translateX(0); }
  .mainnav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .mainnav__link { color: var(--white-70); padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem; }
  .mainnav__link:hover, .mainnav__link.is-active { color: var(--white); }
  .mainnav__link::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; box-shadow: none; max-height: 0; overflow: hidden; padding: 0 0 0 1rem; transition: max-height .35s var(--ease); }
  .dropdown.is-open { max-height: 320px; }
  .dropdown li a { color: var(--white-55); }
  .dropdown li a:hover { background: rgba(255,255,255,.06); color: var(--white); }
}

/* ============================ WORDMARK HERO ============================ */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(240,180,41,.55); } 70% { box-shadow: 0 0 0 10px rgba(240,180,41,0); } 100% { box-shadow: 0 0 0 0 rgba(240,180,41,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes riseUp { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: none; } }
@keyframes photoIn { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.whero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(92vh, 800px); display: flex; flex-direction: column;
  padding: clamp(1.4rem,3vw,2.4rem) 0 clamp(1.6rem,3vw,2.4rem);
  background: var(--paper);
}
.whero__bg { position: absolute; inset: 0; z-index: -3; }
.whero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 52%; animation: heroZoom 20s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
/* left/top wash keeps the copy readable, hides the photo's own baked-in logo, and blends into the page */
.whero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(94deg, var(--paper) 0%, var(--paper) 24%, rgba(246,245,241,.6) 42%, rgba(246,245,241,0) 62%),
    linear-gradient(180deg, var(--paper) 0%, rgba(246,245,241,.9) 15%, rgba(246,245,241,0) 36%, rgba(246,245,241,0) 64%, rgba(16,14,36,.42) 100%);
}
.whero__grid-lines {
  position: absolute; inset: 0; z-index: -2; opacity: .35;
  background-image: linear-gradient(rgba(16,14,36,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,14,36,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(70% 60% at 22% 40%, #000 20%, transparent 70%);
}
@keyframes heroDrift { from { transform: translate3d(-2%,-1%,0); } to { transform: translate3d(3%,2%,0); } }
.whero__kicker {
  width: min(100% - 2.4rem, var(--container)); margin: 0 auto;
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: clamp(.72rem, 1.4vw, .86rem); letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-70);
  animation: fadeUp .7s var(--ease-out) both;
}
.whero__kicker .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2.2s infinite; }

.whero__stage { position: relative; flex: 1; width: min(100% - 2.4rem, var(--container)); margin: clamp(.6rem,2vw,1.4rem) auto 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: clamp(1rem, 2.5vw, 2rem); }
.whero__word {
  font-family: var(--font-head); font-weight: 800; text-align: left; margin: 0;
  font-size: clamp(3.6rem, 19vw, 15rem); line-height: .82; letter-spacing: -.045em;
  color: var(--indigo-800); position: relative; z-index: 1; user-select: none; width: 100%;
  transition: opacity .3s var(--ease);
  /* solid on the left; only a light fade over the vessel on the right so it stays legible */
  -webkit-mask-image: linear-gradient(93deg, #000 0%, #000 52%, rgba(0,0,0,.98) 64%, rgba(0,0,0,.74) 82%, rgba(0,0,0,.62) 100%);
  mask-image: linear-gradient(93deg, #000 0%, #000 52%, rgba(0,0,0,.98) 64%, rgba(0,0,0,.74) 82%, rgba(0,0,0,.62) 100%);
}
/* moving the cursor over the hero snaps the wordmark fully solid */
.whero.is-solid .whero__word { -webkit-mask-image: none; mask-image: none; }
.whero__word span {
  display: inline-block; color: var(--indigo-800);
  animation: riseUp .9s var(--ease-out) both; animation-delay: calc(var(--d) * .07s + .2s);
}
.whero__word span:nth-child(4) { color: var(--gold-700); }

.whero__left {
  position: relative; z-index: 3; max-width: 340px;
  animation: fadeUp .8s var(--ease-out) .7s both;
}
.whero__left > p { font-size: 1rem; color: var(--ink); font-weight: 500; margin-bottom: 1.2rem; text-shadow: 0 1px 12px rgba(246,245,241,.9); }
.whero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.whero__chip {
  display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .9rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.72); font-size: .82rem; font-weight: 500; color: var(--ink-70);
  backdrop-filter: blur(6px);
}
.whero__chip svg { width: 16px; height: 16px; stroke: var(--gold-700); fill: none; stroke-width: 1.7; }
.whero__badge {
  position: absolute; right: 0; bottom: 8%; z-index: 3; max-width: 260px;
  display: flex; align-items: center; gap: .7rem; padding: .7rem .95rem; border-radius: 12px;
  background: rgba(16,14,36,.55); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.16); color: var(--white);
  animation: fadeUp .8s var(--ease-out) .9s both;
}
.whero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #35d07f; box-shadow: 0 0 0 4px rgba(53,208,127,.2); flex: none; }
.whero__badge b { font-family: var(--font-head); font-size: .9rem; }
.whero__badge span { font-size: .74rem; color: var(--white-55); display: block; }

.whero__meta {
  width: min(100% - 2.4rem, var(--container)); margin: clamp(1.4rem,3vw,2.4rem) auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  border-top: 1px solid var(--line); padding-top: 1.4rem;
  animation: fadeUp .8s var(--ease-out) 1s both;
}
.whero__meta li { display: flex; flex-direction: column; gap: .2rem; }
.whero__meta b { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--indigo-800); letter-spacing: -.02em; }
.whero__meta span { font-size: .82rem; color: var(--ink-55); }

@media (max-width: 860px) {
  .whero { min-height: 0; }
  .whero__bg img { object-position: 66% 30%; }
  .whero__scrim { background:
    linear-gradient(180deg, var(--paper) 0%, rgba(246,245,241,.4) 24%, rgba(246,245,241,.15) 46%, rgba(16,14,36,.35) 100%); }
  .whero__word { font-size: clamp(3.4rem, 20vw, 8rem); -webkit-mask-image: none; mask-image: none; text-align: left; }
  .whero__stage { min-height: 62vh; align-items: flex-start; padding-top: 1rem; gap: 1.4rem; }
  .whero__left { position: static; max-width: none; margin-top: 0; }
  .whero__left > p { color: var(--ink); text-shadow: 0 1px 12px rgba(246,245,241,.9); }
  .whero__chip { background: rgba(255,255,255,.85); }
  .whero__badge { display: none; }
  .whero__meta { grid-template-columns: 1fr 1fr; }
}

/* placeholder image slots */
.imgslot {
  position: relative; display: grid; place-items: center; min-height: 180px;
  background:
    repeating-linear-gradient(45deg, rgba(91,75,214,.08) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--indigo-700), var(--indigo-900));
  color: var(--white-70); text-align: center; padding: 1.5rem;
}
.imgslot__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.imgslot__label b { display: block; color: var(--gold-500); font-size: .95rem; margin-bottom: .3rem; letter-spacing: .04em; }
.imgslot .ico { width: 34px; height: 34px; stroke: var(--gold-500); fill: none; stroke-width: 1.4; margin: 0 auto .6rem; opacity: .8; }

/* ============================ MARQUEE ============================ */
.marquee {
  background: var(--ink); color: var(--white); overflow: hidden; border-block: 1px solid rgba(255,255,255,.06);
  padding: 1.05rem 0; --gap: 3rem;
}
.marquee__track { display: flex; gap: var(--gap); width: max-content; animation: scrollx 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: var(--gap); font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--white-70); white-space: nowrap; }
.marquee__item::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
@keyframes scrollx { to { transform: translateX(calc(-50% - var(--gap) / 2)); } }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: calc(var(--i, 0) * 90ms); }
.reveal.in-view { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }

/* ============================ ABOUT ============================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__body .lead { margin: 1.2rem 0 1.8rem; }
.about__points { display: grid; gap: 1rem; margin: 1.6rem 0 2rem; }
.about__points li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-70); }
.about__points .tick { flex: none; width: 24px; height: 24px; border-radius: 7px; background: rgba(240,180,41,.16); display: grid; place-items: center; }
.about__points .tick svg { width: 14px; height: 14px; stroke: var(--gold-700); fill: none; stroke-width: 2.4; }
.about__points b { color: var(--ink); font-weight: 600; }
.framed { position: relative; border-radius: var(--radius); overflow: hidden; }
.framed__accent { position: absolute; inset: auto auto -14px -14px; width: 60%; height: 60%; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.framed img, .framed .imgslot { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.framed figcaption { position: absolute; left: 0; bottom: 0; right: 0; padding: 1.4rem 1.2rem .9rem; font-size: .85rem; color: var(--white); background: linear-gradient(transparent, rgba(16,14,36,.85)); }
@media (max-width: 820px){ .about__grid { grid-template-columns: 1fr; } }

/* ============================ CAPABILITIES ============================ */
.caps { background: var(--white); }
.caps__head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.caps__head .lead { max-width: 42ch; }
/* asymmetric bento — one large feature tile, one wide banner */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (min-width: 900px) {
  .caps .cards { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(158px, 1fr); }
  .caps .card:nth-child(1) { grid-column: span 2; grid-row: span 2; background: linear-gradient(150deg, var(--indigo-800), var(--indigo-900)); border-color: transparent; color: var(--white); }
  .caps .card:nth-child(1) h3 { font-size: 1.7rem; }
  .caps .card:nth-child(1) p { color: var(--white-70); font-size: 1rem; }
  .caps .card:nth-child(1) .card__num { color: var(--gold-500); }
  .caps .card:nth-child(1) .card__icon { width: 56px; height: 56px; background: rgba(240,180,41,.16); }
  .caps .card:nth-child(1) .card__link { color: var(--gold-500); }
  .caps .card:nth-child(6) { grid-column: span 4; display: flex; flex-direction: column; justify-content: center; }
  .caps .card:nth-child(6) h3 { font-size: 1.4rem; }
}
.card {
  position: relative; overflow: hidden; padding: 1.8rem 1.6rem 1.7rem; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(220px 220px at var(--mx, 50%) var(--my, 0%), rgba(240,180,41,.14), transparent 70%);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(16,14,36,.35); border-color: rgba(240,180,41,.4); }
.card:hover::before { opacity: 1; }
.card__num { font-family: var(--font-mono); font-size: .8rem; color: var(--gold-700); letter-spacing: .1em; }
.card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--indigo-800); display: grid; place-items: center; margin: .9rem 0 1.1rem; transition: transform .4s var(--ease), background .4s; }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.06); background: var(--indigo-600); }
.card__icon svg { width: 24px; height: 24px; stroke: var(--gold-500); fill: none; stroke-width: 1.7; }
.card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.card p { color: var(--ink-70); font-size: .95rem; }
.card__link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--indigo-700); }
.card__link span { transition: transform .3s var(--ease); }
.card__link:hover span { transform: translateX(4px); }
@media (max-width: 900px){ .cards { grid-template-columns: repeat(2, 1fr); } .caps__head { grid-template-columns: 1fr; } }
@media (max-width: 560px){ .cards { grid-template-columns: 1fr; } }

/* ============================ STATS ============================ */
.stats { position: relative; background: var(--indigo-900); color: var(--white); overflow: hidden; }
.stats__bg {
  position: absolute; inset: 0; z-index: 0; opacity: .6;
  background: radial-gradient(50% 60% at 20% 10%, rgba(91,75,214,.4), transparent 60%),
    radial-gradient(50% 60% at 90% 90%, rgba(240,180,41,.14), transparent 60%);
}
.stats .container { position: relative; z-index: 1; }
.stats__head { margin-bottom: 3rem; max-width: 60ch; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat { padding: 1.6rem 1.4rem; border-radius: 14px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; left: 1.4rem; bottom: 1.2rem; width: 0; height: 2px; background: var(--gold); transition: width .8s var(--ease) .2s; }
.stat.in-view::after { width: 34px; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); letter-spacing: -.03em; color: var(--gold-500); line-height: 1; }
.stat__label { display: block; margin-top: 1.4rem; color: var(--white-55); font-size: .9rem; }
.stats__note { margin-top: 2rem; font-size: .82rem; color: var(--white-55); }
@media (max-width: 780px){ .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================ REACH ============================ */
.reach { background: var(--paper); }
.reach__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.reach__list { display: grid; gap: 1.1rem; margin-top: 2rem; }
.reach__list li { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.reach__list .num { font-family: var(--font-mono); color: var(--gold-700); font-size: .85rem; padding-top: .2rem; }
.reach__list b { font-family: var(--font-head); font-size: 1.05rem; }
.reach__list p { color: var(--ink-70); font-size: .92rem; }
.reach__visual {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4;
  background: linear-gradient(160deg, var(--indigo-800), var(--indigo-900)); border: 1px solid var(--line);
  display: grid; place-items: center;
}
.reach__map { position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(240,180,41,.25) 1.4px, transparent 1.6px); background-size: 22px 22px; }
.reach__ping { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.reach__ping::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--gold); animation: ping 2.4s ease-out infinite; }
.reach__ping:nth-child(2)::before { animation-delay: .6s; }
.reach__ping:nth-child(3)::before { animation-delay: 1.2s; }
@keyframes ping { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(2.4); opacity: 0; } }
@media (max-width: 820px){ .reach__grid { grid-template-columns: 1fr; } }

/* ============================ PRODUCTS SHOWCASE ============================ */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.2rem; }
.pfilter { display: flex; flex-wrap: wrap; gap: .55rem; margin: 2rem 0 2.4rem; }
.pfilter button {
  padding: .55rem 1.1rem; border-radius: 999px; font-size: .88rem; font-weight: 500;
  border: 1px solid var(--line); color: var(--ink-70); transition: all .25s var(--ease);
}
.pfilter button:hover { border-color: var(--ink); color: var(--ink); }
.pfilter button.is-active { background: var(--indigo-800); color: var(--white); border-color: var(--indigo-800); }
/* image-forward overlay tiles — info reveals on hover (distinct treatment) */
.pcard {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden;
  background: var(--indigo-900); border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.pcard.is-hidden { display: none; }
.pcard__media { position: absolute; inset: 0; overflow: hidden; }
.pcard__media img, .pcard__media .imgslot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.pcard__media img { transition: transform .7s var(--ease); }
.pcard::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 46%, rgba(16,14,36,.22) 63%, rgba(16,14,36,.9) 100%);
  transition: opacity .4s;
}
.pcard__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.2rem 1.25rem 1.35rem; color: var(--white); }
.pcard__tag {
  display: inline-block; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-500); margin-bottom: .45rem;
  padding: .2rem .55rem; border: 1px solid rgba(240,180,41,.4); border-radius: 999px;
}
.pcard h3 { font-size: 1.18rem; color: var(--white); letter-spacing: -.01em; }
.pcard p {
  font-size: .86rem; color: var(--white-70); max-height: 0; opacity: 0; overflow: hidden;
  transform: translateY(6px);
  transition: max-height .45s var(--ease), opacity .35s, transform .45s var(--ease), margin-top .45s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 34px 62px -30px rgba(16,14,36,.6); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard:hover p { max-height: 7rem; opacity: 1; transform: none; margin-top: .45rem; }
.pcard:focus-within p { max-height: 7rem; opacity: 1; transform: none; margin-top: .45rem; }
.pcard.pop { animation: pop .5s var(--ease) backwards; animation-delay: calc(var(--i,0) * 60ms); }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }

/* ============================ CTA BAND ============================ */
.ctaband { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.ctaband__bg { position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 50%, rgba(91,75,214,.4), transparent 60%), radial-gradient(50% 100% at 10% 50%, rgba(240,180,41,.14), transparent 60%); }
.ctaband__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.ctaband__text { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.4rem); letter-spacing: -.03em; max-width: 20ch; }
.ctaband__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ============================ CONTACT ============================ */
.contact { background: var(--indigo-900); color: var(--white); position: relative; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; opacity: .5; background: radial-gradient(50% 60% at 85% 10%, rgba(91,75,214,.4), transparent 60%); }
.contact .container { position: relative; }
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); }
.contact__info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 1.1rem 0 1.2rem; }
.contact__info p { color: var(--white-70); }
.contact__cards { display: grid; gap: .9rem; margin-top: 2rem; }
.contact__cards a, .contact__cards div { display: flex; gap: .9rem; align-items: center; padding: 1rem 1.1rem; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); transition: background .25s, border-color .25s; }
.contact__cards a:hover { background: rgba(255,255,255,.08); border-color: rgba(240,180,41,.4); }
.contact__cards .ico { width: 20px; height: 20px; stroke: var(--gold-500); fill: none; stroke-width: 1.6; flex: none; }
.contact__cards small { display: block; color: var(--white-55); font-size: .74rem; letter-spacing: .04em; }
.contact__cards b { font-family: var(--font-head); font-weight: 600; font-size: .95rem; }

.form { background: var(--white); color: var(--ink); border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; box-shadow: 0 40px 80px -40px rgba(0,0,0,.6); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-70); }
.field input, .field select, .field textarea {
  padding: .8rem .95rem; border-radius: 10px; border: 1px solid var(--line); background: var(--paper);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,180,41,.18); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.form__actions { grid-column: 1/-1; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.form__note { font-size: .82rem; color: var(--ink-55); }
.form__status { grid-column: 1/-1; font-size: .9rem; min-height: 0; }
.form__status.is-ok { color: #0f7a44; font-weight: 600; }
.form__status.is-err { color: #c0392b; font-weight: 600; }
@media (max-width: 820px){ .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px){ .form { grid-template-columns: 1fr; } }

/* ============================ FOOTER ============================ */
.footer { background: var(--ink); color: var(--white-70); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand p { margin: 1.2rem 0; font-size: .92rem; max-width: 34ch; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .65rem; }
.footer__col a { font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: var(--gold-500); }
.footer address { font-style: normal; display: grid; gap: .9rem; font-size: .9rem; }
.footer address strong { color: var(--white); }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; transition: all .25s; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); }
.footer__social a:hover .ico { stroke: var(--ink); }
.footer__social .ico { width: 18px; height: 18px; stroke: var(--white-70); fill: none; stroke-width: 1.6; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.footer__certs { color: var(--white-55); }
@media (max-width: 860px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } }

/* ============================ TO-TOP ============================ */
.totop {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90; width: 48px; height: 48px; border-radius: 50%;
  background: var(--indigo-800); color: var(--white); display: grid; place-items: center;
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none; transition: all .35s var(--ease);
  box-shadow: 0 14px 30px -12px rgba(16,14,36,.6);
}
.totop.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--gold); color: var(--ink); }
.totop svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================ PAGE HERO (inner pages) ============================ */
.pagehero { background: var(--indigo-900); color: var(--white); position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem); }
.pagehero__glow { position: absolute; inset: 0; z-index: 0; opacity: .8; background: radial-gradient(50% 70% at 80% 0%, rgba(91,75,214,.45), transparent 60%), radial-gradient(40% 60% at 5% 100%, rgba(240,180,41,.14), transparent 60%); }
.pagehero .container { position: relative; z-index: 1; }
.pagehero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); letter-spacing: -.04em; margin: 1rem 0 .8rem; }
.pagehero p { color: var(--white-70); max-width: 54ch; font-size: 1.1rem; }
.crumbs { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; color: var(--white-55); text-transform: uppercase; }
.crumbs a:hover { color: var(--gold-500); }

/* value grid */
.vgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.vcard { padding: 1.8rem 1.6rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.vcard:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(16,14,36,.35); }
.vcard .vicon { width: 46px; height: 46px; border-radius: 12px; background: rgba(240,180,41,.14); display: grid; place-items: center; margin-bottom: 1.1rem; }
.vcard .vicon svg { width: 24px; height: 24px; stroke: var(--gold-700); fill: none; stroke-width: 1.7; }
.vcard h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.vcard p { color: var(--ink-70); font-size: .93rem; }
@media (max-width: 860px){ .vgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .vgrid { grid-template-columns: 1fr; } }

/* timeline */
.timeline { position: relative; display: grid; gap: 0; margin-top: 2rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold), transparent); }
.tline { position: relative; padding: 0 0 2rem 2.4rem; }
.tline::before { content: ""; position: absolute; left: 2px; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: var(--indigo-800); border: 3px solid var(--gold); }
.tline .yr { font-family: var(--font-mono); color: var(--gold-700); font-weight: 600; font-size: .9rem; }
.tline h3 { font-size: 1.15rem; margin: .3rem 0 .3rem; }
.tline p { color: var(--ink-70); font-size: .94rem; max-width: 60ch; }

/* leadership */
.team { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.tmember { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.tmember .imgslot, .tmember img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.tmember__body { padding: 1.1rem 1.2rem 1.3rem; }
.tmember h3 { font-size: 1.1rem; }
.tmember span { color: var(--gold-700); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 760px){ .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .team { grid-template-columns: 1fr; } }

/* prose */
.prose { max-width: 68ch; }
.prose p { color: var(--ink-70); margin-bottom: 1.1rem; }
.prose h2 { font-size: 1.6rem; margin: 2rem 0 .8rem; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; }
}

/* ============================ ROUND-5 ADDITIONS ============================ */
/* --- Petroleum feature tile with photo bg --- */
.caps .card--feat { overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.caps .card--feat .card__num { position: absolute; top: 1.6rem; left: 1.6rem; }
.card--feat::before { display: none; }
.card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .8s var(--ease); }
.card--feat::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(175deg, rgba(20,17,58,.45) 0%, rgba(16,14,36,.62) 45%, rgba(16,14,36,.92) 100%); }
.card--feat > * { position: relative; z-index: 2; }
.card--feat:hover .card__bg { transform: scale(1.06); }

/* --- Coverage map --- */
.reach__visual { position: relative; padding: 0; overflow: hidden; }
.reach__svg { width: 100%; height: 100%; display: block; }
.reach__nbr { fill: rgba(255,255,255,.045); stroke: rgba(255,255,255,.12); stroke-width: 1; }
.reach__ng { stroke: var(--gold); stroke-width: 2; filter: drop-shadow(0 10px 22px rgba(0,0,0,.45)); }
.reach__route { fill: none; stroke: var(--gold-500); stroke-width: 2; stroke-dasharray: 5 7; opacity: .9; animation: routedash 1.3s linear infinite; }
.reach__route--x { stroke: rgba(240,180,41,.55); }
@keyframes routedash { to { stroke-dashoffset: -24; } }
.reach__node text { fill: #fff; font-family: var(--font-mono); font-size: 12px; font-weight: 500; text-anchor: middle; letter-spacing: .02em; }
.reach__node--hq text { fill: var(--gold-500); font-weight: 600; font-size: 13px; }
.reach__node--x text { fill: var(--gold-500); }
.reach__pulse { fill: rgba(240,180,41,.28); transform-box: fill-box; transform-origin: center; animation: nodepulse 2.6s ease-out infinite; }
.reach__node:nth-of-type(3) .reach__pulse { animation-delay: .5s; }
.reach__node:nth-of-type(4) .reach__pulse { animation-delay: 1s; }
.reach__node--x .reach__pulse { animation-delay: 1.4s; }
@keyframes nodepulse { 0% { transform: scale(.5); opacity: .9; } 100% { transform: scale(2.6); opacity: 0; } }
.reach__legend { position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--white-70); background: rgba(20,17,58,.55); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.12); padding: .45rem .8rem; border-radius: 999px; }
.reach__legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(240,180,41,.6); animation: pulse 2.2s infinite; }

/* --- Compact interactive products strip --- */
.psupply__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1.4rem; }
.psupply__group h3 { display: flex; align-items: center; gap: .5rem; font-size: 1rem; margin-bottom: .95rem; letter-spacing: -.01em; }
.psupply__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex: none; }
.psupply__group ul { display: flex; flex-wrap: wrap; gap: .5rem; }
.psupply__group li a {
  display: inline-block; padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); font-size: .86rem; font-weight: 500; color: var(--ink-70);
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.psupply__group li a:hover { background: var(--indigo-800); color: #fff; border-color: var(--indigo-800); transform: translateY(-3px); box-shadow: 0 10px 20px -8px rgba(36,28,107,.6); }
@media (max-width: 900px) { .psupply__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .psupply__grid { grid-template-columns: 1fr; } }

/* --- About image: show the full branded graphic (no crop) --- */
.about__media .framed, .about__media .framed img { aspect-ratio: 3 / 2; }
.about__media .framed img { object-fit: cover; }

/* ============================ ROUND-6 ADDITIONS ============================ */
/* --- Real coverage map --- */
.reach__visual { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }
.reach__map-embed { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* --- Products & services banner (pro-services truck) --- */
.psupply__banner { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 2.6rem; aspect-ratio: 16 / 6; display: flex; align-items: flex-end; }
.psupply__banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s var(--ease); }
.psupply__banner:hover img { transform: scale(1.04); }
.psupply__banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,14,36,.92) 0%, rgba(16,14,36,.72) 42%, rgba(16,14,36,.2) 100%); }
.psupply__banner-copy { position: relative; z-index: 1; padding: clamp(1.4rem,3vw,2.6rem); color: var(--white); max-width: 640px; }
.psupply__banner-copy .section-title { margin: .5rem 0 .5rem; }
.psupply__banner-copy p { color: var(--white-70); }
@media (max-width: 640px) { .psupply__banner { aspect-ratio: 5 / 4; } .psupply__banner::after { background: linear-gradient(180deg, rgba(16,14,36,.45) 0%, rgba(16,14,36,.9) 100%); } }

/* --- About page photo hero --- */
.pagehero--photo { position: relative; isolation: isolate; }
.pagehero__img { position: absolute; inset: 0; z-index: -2; }
.pagehero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; opacity: .55; }
.pagehero--photo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, var(--indigo-900) 0%, rgba(20,17,58,.72) 46%, rgba(20,17,58,.42) 100%); }

/* --- Contact "get in touch" + map --- */
.getin { background: var(--indigo-900); color: var(--white); }
.getin__map { width: 100%; height: clamp(240px, 32vw, 420px); border-bottom: 1px solid rgba(255,255,255,.1); }
.getin__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.25) contrast(1.03); }
.getin__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); padding: clamp(3rem,6vw,5rem) 0; align-items: start; }
.getin__title { font-size: clamp(2rem,4.4vw,3.1rem); margin: 1rem 0 1.1rem; letter-spacing: -.03em; }
.getin__title span { color: var(--gold-500); }
.getin__intro { color: var(--white-70); max-width: 46ch; margin-bottom: 2rem; }
.getin__big { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.15rem,2.3vw,1.6rem); color: var(--white); padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.16); transition: color .25s; }
.getin__big span { color: var(--gold-500); transition: transform .3s var(--ease); font-size: 1.3rem; }
.getin__big:hover { color: var(--gold-500); }
.getin__big:hover span { transform: translate(5px,-5px); }
.getin__addr { display: grid; gap: 1.2rem; margin-top: 2rem; }
.getin__addr small { display: block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-500); margin-bottom: .3rem; }
.getin__addr b { font-family: var(--font-body); font-weight: 500; color: var(--white-70); font-size: .95rem; }
.getin__addr a:hover { color: var(--gold-500); }
.getin__form { align-self: start; }
.getin__formlead { grid-column: 1 / -1; color: var(--ink-70); font-size: .9rem; margin-bottom: .3rem; }
@media (max-width: 820px) { .getin__grid { grid-template-columns: 1fr; } }

/* --- Milestones: two-column timeline (Meldex-style) on desktop --- */
@media (min-width: 800px) {
  #milestones .timeline { display: block; column-count: 2; column-gap: 3.6rem; }
  #milestones .timeline::before { display: none; }
  #milestones .tline { break-inside: avoid; border-left: 2px solid var(--line); padding-left: 1.7rem; margin-bottom: .4rem; }
  #milestones .tline::before { left: -9px; }
}

/* ============================ ROUND-7 ADDITIONS ============================ */
/* --- CTA band with photo (offshore platform) --- */
.ctaband--photo { isolation: isolate; }
.ctaband__img { position: absolute; inset: 0; z-index: -2; }
.ctaband__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .42; }
.ctaband--photo .ctaband__bg { z-index: -1; }
/* combined "what we do" banner sits a touch tighter to the cards */
.caps .psupply__banner { margin-bottom: clamp(2rem, 4vw, 3rem); }
.caps .cards { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ============================ ROUND-8 ADDITIONS ============================ */
/* clickable capability cards (now <a>) + chip links */
.card { display: block; }
.caps .card:nth-child(6) { display: flex; }
.whero__chip { text-decoration: none; transition: transform .25s var(--ease), border-color .25s, color .25s, background .25s; }
.whero__chip:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }

/* --- Partners: interactive logo grid --- */
.partners { background: var(--white); }
.plogos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; margin-top: .5rem; }
.plogo {
  display: grid; place-items: center; aspect-ratio: 3 / 2; padding: 1.3rem 1.5rem;
  border-radius: 16px; background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 12px 30px -20px rgba(16,14,36,.35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.plogo img { max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain; opacity: .95; transition: opacity .4s, transform .4s var(--ease); }
.plogo:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -22px rgba(16,14,36,.45); border-color: rgba(240,180,41,.5); }
.plogo:hover img { opacity: 1; transform: scale(1.07); }
@media (max-width: 920px) { .plogos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .plogos { grid-template-columns: repeat(2, 1fr); gap: .9rem; } .plogo img { max-height: 48px; } }

/* --- Mobile: hero meta reads white over the dark water --- */
@media (max-width: 860px) {
  .whero__scrim { background:
    linear-gradient(180deg, var(--paper) 0%, rgba(246,245,241,.5) 20%, rgba(246,245,241,.1) 44%, rgba(16,14,36,.62) 100%); }
  .whero__meta { border-top-color: rgba(255,255,255,.22); }
  .whero__meta b { color: #fff; }
  .whero__meta span { color: rgba(255,255,255,.78); }
}
