:root {
  --energy-blue: #003D51;
  --energy-deep: #002535;
  --energy-mid: #0A6C77;
  --energy-teal: #0A8C9A;
  --gold: #C9952A;
  --gold-light: #E8B84B;
  --sand: #F5EDD6;
  --off-white: #F8F6F1;
  --gray-text: #4A4A46;
  --gray-muted: #8A8A84;
  --white: #FFFFFF;
  --border: rgba(0,61,81,0.12);
  --border-gold: rgba(201,149,42,0.3);
  --ticker-height: 38px;
  --nav-height: 88px;
  --header-offset: calc(var(--ticker-height) + var(--nav-height));
}

* { margin:0; padding:0; box-sizing:border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--energy-deep);
  background: var(--white);
  overflow-x: hidden;
}

main, .page, header, footer { width: 100%; max-width: 100%; }
img { max-width: 100%; height: auto; }

/* NAV */
nav {
  position: fixed; top: var(--ticker-height); left:0; right:0; z-index:100;
  background: rgba(0,37,53,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(201,149,42,0.2);
}

.nav-logo {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  text-decoration: none;
}

.logo-drop {
  width: 52px; height: 60px; position: relative;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.logo-text span { color: var(--gold-light); font-weight: 500; }

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 9px 22px;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  cursor: pointer;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--energy-deep) !important; }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* ======================== HOME ======================== */
#home { background: var(--white); }

.hero {
  min-height: 100vh;
  background: var(--energy-deep);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}

.hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    linear-gradient(rgba(201,149,42,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,149,42,0.4) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-geo {
  position: absolute;
  right: -100px; top: 50%; transform: translateY(-50%);
  width: 680px; height: 680px;
  border: 1px solid rgba(10,108,119,0.3);
  border-radius: 50%;
}
.hero-geo::before {
  content:''; position:absolute; inset: 60px;
  border: 1px solid rgba(201,149,42,0.2);
  border-radius: 50%;
}
.hero-geo::after {
  content:''; position:absolute; inset: 130px;
  border: 1px solid rgba(10,140,154,0.3);
  border-radius: 50%;
}

.hero-drop-large {
  position: absolute;
  right: 140px; top: 50%; transform: translateY(-50%);
  opacity: 0.12;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 160px 60px 100px;
  max-width: 760px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 52px;
  font-weight: 300;
}

.hero-actions {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}

.btn-primary,
a.btn-primary {
  background: var(--gold);
  color: var(--energy-deep);
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover,
a.btn-primary:hover { background: var(--gold-light); }

.btn-ghost,
a.btn-ghost,
button.btn-ghost {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.2s;
  background: none; border: none;
  text-decoration: none;
}
.btn-ghost:hover,
a.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost::after { content:'→'; font-size: 16px; }




/* Ticker bar */
.ticker {
  background: var(--energy-deep);
  border-bottom: 1px solid rgba(201,149,42,0.3);
  padding: 0;
  height: 38px;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
  position: fixed; top:0; left:0; right:0; z-index:101;
}
.ticker-scroll-wrap {
  flex: 1;
  overflow: hidden;
}
.ticker-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); white-space: nowrap;
  padding: 0 20px 0 60px;
  border-right: 1px solid rgba(201,149,42,0.3);
  flex-shrink: 0;
  background: var(--energy-deep);
  position: relative; z-index: 2;
  height: 38px;
  display: flex; align-items: center;
  transition: opacity 0.3s;
}
.ticker-items {
  display: flex; gap: 48px; animation: ticker 22s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em; white-space: nowrap;
}
.ticker-item::before { content: '◆  '; font-size: 7px; vertical-align: middle; opacity: 0.5; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-items { transition: opacity 0.3s; }

/* Home sections */
.section { padding: 110px 60px; }
.section-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.section-label-line { width: 32px; height: 1px; background: var(--gold); }
.section-label span {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 300;
  color: var(--energy-blue);
  line-height: 1.12; margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* Story columns */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.story-body {
  font-size: 16px; color: var(--gray-text);
  line-height: 1.8; margin-bottom: 20px;
}
.story-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 0 20px 28px;
  margin: 36px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  color: var(--energy-blue); line-height: 1.5;
}

.geo-panels {
  display: flex; flex-direction: column; gap: 0;
}
.geo-panel {
  padding: 32px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.2s;
}
.geo-panel:hover { border-color: var(--gold); }
.geo-panel + .geo-panel { margin-top: -1px; }
.geo-panel-flag {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 500;
}
.geo-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--energy-blue); margin-bottom: 8px;
}
.geo-panel-desc { font-size: 14px; color: var(--gray-muted); line-height: 1.65; }
.geo-panel-dot {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--energy-teal);
}

/* Pillars */
.pillars {
  background: var(--energy-deep);
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}
.pillars .section-title { color: var(--white); }
.pillars .section-label span { color: var(--gold-light); }
.pillars .section-label-line { background: var(--gold-light); }

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 60px;
}
.pillar {
  background: rgba(255,255,255,0.04);
  padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.pillar:hover { background: rgba(255,255,255,0.07); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300;
  color: rgba(201,149,42,0.18);
  position: absolute; right: 28px; top: 20px;
  line-height: 1;
}
.pillar-icon {
  width: 44px; height: 44px; margin-bottom: 24px;
  border: 1px solid rgba(201,149,42,0.3);
  display: flex; align-items: center; justify-content: center;
}
.pillar-title {
  font-size: 15px; font-weight: 500;
  color: var(--white); margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.pillar-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Asset card */
.asset-band {
  background: var(--off-white);
  padding: 110px 60px;
}
.asset-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}
.asset-map {
  background: var(--energy-deep);
  min-height: 380px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-svg { width: 100%; height: 100%; }
.asset-info { padding: 52px 52px; }
.asset-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--energy-deep);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 14px; margin-bottom: 24px;
}
.asset-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300;
  color: var(--energy-blue); margin-bottom: 18px;
  line-height: 1.2;
}
.asset-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 32px 0;
}
.asset-metric {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.asset-metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300;
  color: var(--energy-teal); line-height: 1;
  margin-bottom: 6px;
}
.asset-metric-label {
  font-size: 11px; color: var(--gray-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ======================== WHO WE ARE ======================== */
#whoweare { background: var(--white); }

.page-hero {
  min-height: 60vh;
  background: var(--energy-deep);
  display: flex; align-items: flex-end;
  padding: 160px 60px 72px;
  position: relative; overflow: hidden;
}
.page-hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}
.page-hero-bg {
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  opacity: 0.08;
  background: repeating-linear-gradient(
    -45deg,
    rgba(201,149,42,0.4) 0, rgba(201,149,42,0.4) 1px,
    transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 10px; font-weight: 500;
  color: var(--gold-light); letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 76px); font-weight: 300;
  color: var(--white); line-height: 1.05;
  letter-spacing: -0.01em;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }

/* Leadership */
.leadership-intro {
  display: grid; grid-template-columns: 5fr 4fr; gap: 80px;
  padding: 110px 60px;
  align-items: start;
}
.lead-body { font-size: 16px; color: var(--gray-text); line-height: 1.8; }
.lead-aside { padding-top: 8px; }
.lead-stat-block {
  border: 1px solid var(--border-gold);
  padding: 36px;
  margin-bottom: 2px;
  position: relative;
}
.lead-stat-block::before {
  content:''; position:absolute; left:0; top:0; bottom:0;
  width: 3px; background: var(--gold);
}
.lead-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: var(--energy-teal); line-height: 1; margin-bottom: 8px;
}
.lead-stat-label { font-size: 13px; color: var(--gray-muted); line-height: 1.5; }

/* Track record companies */
.track-section {
  background: var(--off-white);
  padding: 80px 60px;
}
.track-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--energy-blue);
  margin-bottom: 12px;
}
.track-sub { font-size: 14px; color: var(--gray-muted); margin-bottom: 44px; line-height: 1.6; }




/* Values */
.values-section { padding: 110px 60px; background: var(--off-white); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 56px;
}
.value-card {
  padding: 40px 32px;
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}
.value-card:hover { border-bottom-color: var(--gold); }
.value-icon-wrap {
  width: 48px; height: 48px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
}
.value-name {
  font-size: 14px; font-weight: 500; color: var(--energy-blue);
  letter-spacing: 0.06em; margin-bottom: 12px;
  text-transform: uppercase;
}
.value-desc { font-size: 14px; color: var(--gray-muted); line-height: 1.7; }

/* Consortium */
.consortium-section { padding: 110px 60px; }
.consortium-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 52px;
}
.cons-card {
  padding: 44px 36px;
  border: 1px solid var(--border);
  position: relative;
}
.cons-card.featured {
  background: var(--energy-blue);
  border-color: var(--energy-blue);
}
.cons-role {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.cons-card.featured .cons-role { color: var(--gold-light); }
.cons-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--energy-blue);
  margin-bottom: 14px;
}
.cons-card.featured .cons-name { color: var(--white); }
.cons-desc { font-size: 14px; color: var(--gray-muted); line-height: 1.7; }
.cons-card.featured .cons-desc { color: rgba(255,255,255,0.6); }

/* ======================== OUR BUSINESS ======================== */
#ourbusiness .section-title { margin-bottom: 16px; }

.business-hero-strip {
  background: linear-gradient(135deg, var(--energy-deep) 60%, var(--energy-mid) 100%);
  padding: 160px 60px 90px;
  position: relative; overflow: hidden;
}
.business-hero-strip::after {
  content:'PPL 257';
  position: absolute; right: 60px; bottom: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px; font-weight: 300; opacity: 0.06;
  color: var(--white); letter-spacing: -0.04em;
  line-height: 1; pointer-events: none;
}

/* Asset overview */
.asset-overview { padding: 110px 60px; }
.asset-detail-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start;
}
.asset-body { font-size: 16px; color: var(--gray-text); line-height: 1.8; margin-bottom: 20px; }

.highlight-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 28px 32px; margin: 36px 0;
}
.highlight-box-title {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.highlight-box-text { font-size: 15px; color: var(--energy-blue); line-height: 1.7; }

.resource-cards {
  display: flex; flex-direction: column; gap: 2px;
}
.resource-card {
  background: var(--energy-deep);
  padding: 36px 32px;
  position: relative;
}
.resource-card + .resource-card { background: var(--energy-blue); }
.resource-card + .resource-card + .resource-card { background: var(--energy-mid); }
.rc-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.rc-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--gold-light);
  line-height: 1; margin-bottom: 4px;
}
.rc-unit { font-size: 14px; color: rgba(255,255,255,0.6); }
.rc-case {
  position: absolute; right: 28px; top: 28px;
  font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.12em; text-transform: uppercase;
}

/* Timeline */
.timeline-section {
  background: var(--off-white);
  padding: 110px 60px;
  overflow-x: clip;
}
.timeline {
  --tl-year-col: 112px;
  --tl-marker-col: 32px;
  position: relative;
  margin-top: 64px;
  max-width: 780px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: calc(var(--tl-year-col) + var(--tl-marker-col) / 2);
  top: 6px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.tl-item {
  display: grid;
  grid-template-columns: var(--tl-year-col) var(--tl-marker-col) minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  margin-bottom: 48px;
}
.tl-year {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--energy-teal);
  text-align: right;
  line-height: 1.2;
  padding-top: 4px;
}
.tl-dot {
  grid-column: 2;
  grid-row: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--off-white);
  box-shadow: 0 0 0 1px var(--gold);
  justify-self: center;
  margin-top: 8px;
  z-index: 1;
}
.tl-item.future .tl-dot {
  background: transparent;
  border-color: var(--gold);
  box-shadow: none;
}
.tl-item.future .tl-year { color: var(--gold); }
.tl-item.future--mid .tl-year { color: rgba(201, 149, 42, 0.55); }
.tl-item.future--far .tl-year { color: rgba(201, 149, 42, 0.35); }
.tl-title {
  grid-column: 3;
  grid-row: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--energy-blue);
  margin-bottom: 0;
}
.tl-desc {
  grid-column: 3;
  grid-row: 2;
  margin-top: 8px;
  font-size: 14px;
  color: var(--gray-muted);
  line-height: 1.7;
}

/* Segments */
.segments { padding: 110px 60px; }
.segment-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 52px; }
.segment {
  padding: 44px 36px; border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.segment:hover { border-color: var(--gold); }
.seg-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--border);
  margin-bottom: 20px; line-height: 1;
  transition: color 0.2s;
}
.segment:hover .seg-num { color: var(--gold); opacity: 0.4; }
.seg-title {
  font-size: 15px; font-weight: 500; color: var(--energy-blue);
  letter-spacing: 0.04em; margin-bottom: 14px;
  text-transform: uppercase;
}
.seg-desc { font-size: 14px; color: var(--gray-muted); line-height: 1.7; }

/* Growth opportunity */
.growth-band { background: var(--energy-deep); padding: 110px 60px; }
.growth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 52px; }
.growth-card {
  background: rgba(255,255,255,0.04); padding: 52px 44px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.growth-card:hover { background: rgba(255,255,255,0.07); }
.growth-card-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
}
.growth-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--white);
  margin-bottom: 16px; line-height: 1.3;
}
.growth-card-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.growth-card-metric {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--gold-light);
}
.growth-card-metric-label {
  font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ======================== RESPONSIBILITY ======================== */
#responsibility .page-hero { min-height: 55vh; }

.resp-pillars { padding: 110px 60px; }
.resp-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 52px;
}
.resp-card {
  padding: 52px 44px; border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.resp-card:hover { border-color: rgba(10,108,119,0.4); }
.resp-icon {
  width: 52px; height: 52px; margin-bottom: 28px;
  border: 1px solid var(--energy-teal);
  display: flex; align-items: center; justify-content: center;
}
.resp-title {
  font-size: 17px; font-weight: 500; color: var(--energy-blue);
  margin-bottom: 16px;
}
.resp-desc { font-size: 15px; color: var(--gray-text); line-height: 1.8; }

.resp-quote-band {
  background: var(--energy-teal);
  padding: 80px 60px;
  display: flex; align-items: center; justify-content: center;
}
.resp-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 300; font-style: italic;
  color: var(--white); text-align: center; max-width: 860px;
  line-height: 1.4;
}
.resp-quote-attr {
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.6);
  text-align: center; letter-spacing: 0.1em; text-transform: uppercase;
}



/* ======================== ENERGY TRANSITION ======================== */
#energytransition .page-hero {
  background: linear-gradient(135deg, var(--energy-deep) 0%, #073B2F 100%);
}

.et-vision { padding: 110px 60px; }
.et-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.et-body { font-size: 16px; color: var(--gray-text); line-height: 1.8; margin-bottom: 20px; }

.et-pillars { background: var(--energy-deep); padding: 110px 60px; }
.et-pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.et-pillar { padding: 52px 36px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.05); }
.et-pillar-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.et-pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.et-pillar-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }

.gas-section { padding: 110px 60px; background: var(--off-white); }
.gas-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; }
.gas-stat-stack { display: flex; flex-direction: column; gap: 2px; }
.gas-stat {
  padding: 32px 28px; background: var(--white); border-left: 4px solid var(--energy-teal);
}
.gas-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--energy-teal); line-height: 1; margin-bottom: 6px; }
.gas-stat-label { font-size: 12px; color: var(--gray-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ======================== CONTACT ======================== */
#contact { background: var(--white); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 72px);
}
.contact-info {
  background: var(--energy-deep);
  padding: 120px 60px 80px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-form-panel {
  padding: 120px 60px 80px;
  background: var(--white);
}

.contact-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 48px;
}
.contact-tagline em { font-style: italic; color: var(--gold-light); }

.contact-details { display: flex; flex-direction: column; gap: 28px; }
.cd-item {}
.cd-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 8px;
}
.cd-value { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.cd-value a { color: rgba(255,255,255,0.8); text-decoration: none; }
.cd-value a:hover { color: var(--gold-light); }

.offices {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 52px;
}
.office {
  padding: 28px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.office-city { font-size: 13px; font-weight: 500; color: var(--gold-light); margin-bottom: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.office-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300; color: var(--energy-blue);
  margin-bottom: 10px;
}
.form-sub { font-size: 14px; color: var(--gray-muted); margin-bottom: 44px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--energy-blue); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--energy-deep);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--energy-teal); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--energy-blue);
  color: var(--white);
  border: none;
  padding: 18px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--energy-teal); }

/* FOOTER */
footer {
  background: #001822;
  padding: 72px 60px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.footer-brand-text { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; cursor: pointer; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeInUp 0.7s ease both;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.25s; }
.hero-sub { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.55s; }
.hero-stats { animation-delay: 0.65s; }

/* Responsive grid utilities (inline-styled sections) */
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: center; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 72px; align-items: center; }
.grid-2-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

/* Board of Directors */
.board-section .section-label { justify-content: center; }
.board-section .section-title { text-align: center; }
.board-section > p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 840px;
  margin-inline: auto;
}
.board-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 0px solid var(--border);
}
.board-card--featured {
  background: var(--energy-deep);
  border-color: var(--energy-deep);
}
.board-card-photo {
  height: 270px;
  overflow: hidden;
  background: var(--off-white);
  flex-shrink: 0;
  line-height: 0;
}
.board-card-photo img,
.board-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.board-card-img--muted { filter: grayscale(15%); }
.board-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 22px;
}

.board-card-body--faisal {
  padding: 18px 18px 22px;
  padding-top: 22px;
}
.board-card-body--farouk {
  object-position: center 45%; !important;
  scale: 1.07;
} 
.board-card-body--dark .board-role { color: var(--gold-light); }
.board-card-body--dark .board-name { color: var(--white); }
.board-card-body--dark .board-bio { color: rgba(255,255,255,0.65); }
.board-role {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.board-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--energy-blue);
  margin-bottom: 10px;
  line-height: 1.2;
}
.board-bio {
  flex: 1;
  font-size: 12px;
  color: var(--gray-muted);
  line-height: 1.65;
  min-height: calc(12px * 1.65 * 8);
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.grid-3-commitments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; max-width: 1000px; }
.logo-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; margin-top: 32px; background: var(--border); }
.logo-cell {
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 20px; min-height: 100px;
  transition: background 0.2s;
}
.logo-cell:hover { background: #f8f4e8; }
.logo-cell img { max-height: 60px; max-width: 150px; object-fit: contain; }

.section-inline-pad { padding: 90px 60px; }
.section-inline-pad--sm { padding: 72px 60px; }
.section-inline-pad--lg { padding: 110px 60px; }
.section-dark { background: var(--energy-deep); }

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 300;
  color: var(--energy-blue);
  line-height: 1.1;
  margin-bottom: 32px;
}

/* Responsive basics */
@media (max-width: 900px) {
  :root {
    --nav-height: 72px;
  }

  body.nav-open { overflow: hidden; }

  nav { padding: 0 20px; height: var(--nav-height); }
  .nav-logo-img { height: 44px; }
  .nav-logo-sub { display: none; }

  .section, .asset-band, .asset-overview, .pillars, .track-section,
  .values-section, .consortium-section, .resp-pillars, .commitments,
  .et-vision, .et-pillars, .gas-section, .growth-band, .segments,
  .timeline-section, .leadership-intro, .business-hero-strip,
  .resp-quote-band, footer { padding-left: 20px; padding-right: 20px; }

  .section, .asset-band, .asset-overview, .pillars, .track-section,
  .values-section, .consortium-section, .resp-pillars, .et-vision,
  .et-pillars, .gas-section, .growth-band, .segments, .timeline-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-inline-pad,
  .section-inline-pad--sm,
  .section-inline-pad--lg {
    padding: 56px 20px !important;
  }

  .hero-content {
    padding: calc(var(--header-offset) + 32px) 20px 64px;
    max-width: 100%;
  }
  .hero-headline { font-size: clamp(36px, 10vw, 56px); }
  .hero-sub { max-width: 100%; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; text-align: center; }
  .hero-drop-large { display: none; }
  .hero-geo { display: none; }

  .page-hero { padding: calc(var(--header-offset) + 24px) 20px 48px; min-height: auto; }
  .page-hero-title { font-size: clamp(36px, 8vw, 56px); }

  .business-hero-strip { padding: calc(var(--header-offset) + 24px) 20px 56px; }
  .business-hero-strip::after { display: none; }

  .story-grid, .asset-card, .asset-detail-grid, .et-vision-grid, .growth-grid,
  .resp-grid, .gas-grid, .contact-layout, .leadership-intro,
  .grid-1-2, .grid-2-1, .grid-2-equal, .grid-3-2, .contact-split,
  .consortium-grid, .offices { grid-template-columns: 1fr !important; gap: 32px !important; }

  .grid-3, .board-grid, .grid-3-commitments,
  .pillars-grid, .et-pillars-grid, .segment-grid { grid-template-columns: 1fr !important; }

  .board-grid { max-width: 100%; }

  .grid-4 { grid-template-columns: 1fr 1fr !important; }

  .logo-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .asset-metrics { grid-template-columns: 1fr; }
  .asset-map { min-height: 240px; }
  .asset-info { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .timeline {
    --tl-year-col: 24px;
    --tl-marker-col: 24px;
    margin-top: 40px;
    max-width: 100%;
  }
  .timeline::before { left: 11px; }
  .tl-item {
    grid-template-columns: var(--tl-marker-col) minmax(0, 1fr);
    column-gap: 16px;
    margin-bottom: 36px;
  }
  .tl-year {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    font-size: 18px;
    padding-top: 0;
    margin-bottom: 4px;
  }
  .tl-dot {
    grid-column: 1;
    grid-row: 2;
    margin-top: 4px;
    align-self: start;
  }
  .tl-title { grid-column: 2; grid-row: 2; }
  .tl-desc { grid-column: 2; grid-row: 3; margin-top: 6px; }

  .rc-value { font-size: 40px; }
  .rc-case { position: static; margin-top: 8px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .ticker-label { padding: 0 12px 0 20px; font-size: 8px; }
  .ticker-item { font-size: 10px; }
  .ticker-items { gap: 32px; }

  .resp-quote { font-size: clamp(20px, 5vw, 28px); padding: 0 8px; }
  .resp-quote-band { padding: 56px 20px; }

  .lead-stat-num { font-size: 40px; }
  .pillar-num { font-size: 44px; }

  .contact-form-panel-dark,
  div[style*="background:var(--energy-deep);padding:56px"] {
    padding: 32px 24px !important;
  }
}

/* Contact form focus states */
#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: var(--gold) !important;
  outline: none;
}
#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
#contact select option {
  background: var(--energy-deep);
  color: var(--white);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 200;
  background: var(--gold);
  color: var(--energy-deep);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
}

/* Mobile navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(201,149,42,0.35);
  cursor: pointer;
  padding: 10px;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.2s, opacity 0.2s;
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-logo-img { height: 52px; width: auto; display: block; mix-blend-mode: screen; }
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  padding-left: 2px;
}

/* Contact form panel */
.contact-form-panel-dark {
  background: var(--energy-deep);
  padding: 56px 52px;
}
.contact-form-fields { display: flex; flex-direction: column; gap: 18px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
}
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
}
.contact-form-textarea { resize: vertical; min-height: 100px; }
.contact-form-recaptcha-note {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
}
.contact-form-recaptcha-note a { color: rgba(255,255,255,0.45); }
.contact-form-submit {
  background: var(--gold);
  color: var(--energy-deep);
  border: none;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
  width: 100%;
}
.contact-form-submit:hover:not(:disabled) { background: var(--gold-light); }
.contact-form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-status { margin-top: 16px; font-size: 14px; line-height: 1.6; }
.form-status--success { color: var(--energy-teal); }
.form-status--error { color: #c45c5c; }
.hp-field { display: none !important; }

/* Social & cards */
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: rgba(201,149,42,0.5);
  color: var(--gold-light);
}
.social-links { margin-top: 24px; display: flex; gap: 14px; }

.resp-card-inline {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--energy-teal);
  transition: border-color 0.2s;
}
.resp-card-inline:hover { border-color: var(--energy-teal); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-items { animation: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; flex-shrink: 0; }
  nav { gap: 12px; }
  .nav-logo { flex: 1; min-width: 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-offset);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-offset));
    overflow-y: auto;
    background: rgba(0,37,53,0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 24px;
    border-bottom: 1px solid rgba(201,149,42,0.2);
    z-index: 99;
  }
  body.nav-open .nav-links { display: flex; }
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    top: var(--header-offset);
    background: rgba(0, 20, 30, 0.55);
    z-index: 98;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 20px;
    width: 100%;
  }
  .nav-cta {
    margin: 8px 20px 0 !important;
    text-align: center;
    display: block !important;
  }
  .contact-form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }

  .contact-split { max-width: 100%; width: 100%; }

  .grid-1-2 h2[style*="font-size:42px"] {
    font-size: clamp(28px, 6vw, 42px) !important;
  }

  .geo-panels { margin-top: 24px; }
  .story-quote { font-size: 18px; }
  .asset-metric-val { font-size: 28px; }
}

@media (max-width: 480px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-4 { grid-template-columns: 1fr !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .pillars-grid, .segment-grid, .et-pillars-grid,
  .consortium-grid, .values-grid { grid-template-columns: 1fr !important; }
  .hero-headline { font-size: clamp(32px, 9vw, 44px); }
  .section-title { font-size: clamp(28px, 7vw, 40px); }
  .ticker-label { display: none; }
  .logo-cell { padding: 16px 12px; min-height: 72px; }
  .logo-cell img { max-height: 40px; max-width: 100px; }
}