/* =============================================================
   Landsmill Solar — Main CSS
   Converted from HTML template — preserves all original styles
   ============================================================= */

/* ── CSS VARIABLES ── */
:root {
  --navy:     #0A1628;
  --navy2:    #0F2040;
  --blue:     #1A3A6B;
  --sky:      #01211e;
  --sky-lt:   #E8F2FF;
  --amber:    #E8A020;
  --amber-lt: #FEF5E7;
  --green:    #1B7A3E;
  --green-lt: #EAF4EE;
  --white:    #FFFFFF;
  --off:      #F7F9FB;
  --border:   rgba(10,22,40,0.09);
  --border-lt:rgba(10,22,40,0.05);
  --text:     #0A1628;
  --sub:      #4A5568;
  --muted:    #8A9AB0;
  --line:     rgba(255,255,255,0.12);
  --black:    #000000;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family:  'Merriweather Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--sky); }

/* ── ALERT BAR ── */
.alert-bar {
  background: var(--amber);
  padding: 2px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.alert-bar span { display:flex; font-size: 12.5px; font-weight: 600; color: var(--black); align-items: center; justify-content: center; gap:7px; letter-spacing: 0.5px;}
.alert-bar strong { font-weight: 700; }
.alert-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-size: 16px;
  line-height: 1;
  padding: 0 4px;
  flex-shrink: 0;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  padding: 9px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tb-left { display: flex; align-items: center; gap: 20px; }
.tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255);
  font-weight: 500;
}
.tb-item a { color: rgba(255,255,255); transition: color .2s; letter-spacing: 0.5px; }
.tb-item a:hover { color: var(--amber); }
.tb-right { display: flex; align-items: center; gap: 14px; }
.tb-soc {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255);
  transition: all .2s;
}
.tb-soc:hover { border-color: var(--amber); color: var(--amber); }
.tb-lang { font-size: 11px; font-weight: 600; color: rgba(255,255,255); letter-spacing: .5px; }

/* ── NAVBAR ── */
#site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 9000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(10,22,40,.1); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  padding-right: 5%;
  padding-left: 5%;
  gap: 0px;
}
.nav-logo { cursor: pointer; flex-shrink: 0; }
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-logo-fallback { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--navy); letter-spacing: -.3px; }
.nav-logo-fallback em { font-style: italic; color: var(--sky); }
.nav-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; flex: 1; }
.nav-links li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: flex; align-items: center; gap: 5px;
  padding: 0 14px; height: 65px;
  font-size: 15px; font-weight: 500;
  text-transform: uppercase;
  color: var(--black);
  background: none; border: none; cursor: pointer;
  transition: color .2s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.current-menu-item a, .nav-links li.current-menu-parent > button, .nav-links li.current-menu-ancestor > a { color: var(--black); border-bottom-color: var(--sky); }
.nav-links > li.current-menu-item a { font-weight: 600; }

.chevron {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform .2s;
}
.nav-links li:hover .chevron { transform: rotate(-135deg) translate(-6px, 0px); }

/* Dropdown */
.nav-drop {
  position: absolute; top: 64px; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--sky);
  min-width: 220px; padding: 8px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: all .22s;
  box-shadow: 0 16px 40px rgba(10,22,40,.12);
  z-index: 200;
}
.nav-links li:hover .nav-drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-drop a { display: block; padding: 10px 22px; font-size: 15px; font-weight: 500; color: var(--black); transition: all .18s; text-transform: uppercase; letter-spacing: 0.5px;}
.nav-drop a:hover { color: var(--sky); background: var(--sky-lt); padding-left: 28px; }
.nav-drop-divider { height: 1px; background: var(--border-lt); margin: 6px 0; }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn-nav { font-size: 15px; font-weight: 600; padding: 9px 20px; border-radius: 5px; transition: all .2s; display: inline-flex; align-items: center; gap: 7px; }
.btn-nav-ghost { border: 1.5px solid var(--black); color: var(--black); }
.btn-nav-ghost:hover { border-color: var(--sky); color: var(--sky); }
.btn-nav-solid { background: var(--sky); color: var(--white); }
.btn-nav-solid:hover { background: var(--blue); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: all .3s; border-radius: 2px; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BREADCRUMB ── */
.bc { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.bc a, .bc span { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.bc a { cursor: pointer; transition: color .2s; }
.bc a:hover { color: var(--amber); }
.bc .sep { color: rgba(255,255,255,.18); font-size: 9px; }
.bc .cur { color: rgba(255,255,255,.85); }
.bc.lt a, .bc.lt span { color: var(--muted); }
.bc.lt a:hover { color: var(--sky); }
.bc.lt .cur { color: var(--sky); }

/* ── HERO ── */
.hero-full { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,22,40,.92) 0%, rgba(10,22,40,.7) 50%, rgba(10,22,40,.25) 100%); }
.hero-ov2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.95) 0%, rgba(10,22,40,.4) 45%, transparent 100%); }
.hero-ct { position: relative; z-index: 2; padding: 0 5% 80px; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,.15); border: 1px solid rgba(232,160,32,.3);
  border-radius: 2px; padding: 7px 16px; margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: bdot 2s infinite; }
@keyframes bdot { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-badge span { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(38px,5.5vw,78px); font-weight: 400; color: var(--white); line-height: 1.06; margin-bottom: 22px; letter-spacing: -.5px; }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.58); line-height: 1.78; max-width: 560px; margin-bottom: 38px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.btn-hero-p { background: var(--sky); color: var(--white); font-size: 13px; font-weight: 600; padding: 14px 30px; border-radius: 3px; display: inline-flex; align-items: center; gap: 8px; transition: all .22s; }
.btn-hero-p:hover { background: #1E6BC4; transform: translateY(-2px); }
.btn-hero-s { border: 1.5px solid rgba(255,255,255,.3); color: var(--white); font-size: 13px; font-weight: 600; padding: 14px 30px; border-radius: 3px; display: inline-flex; align-items: center; gap: 8px; transition: all .22s; }
.btn-hero-s:hover { border-color: var(--amber); color: var(--amber); }
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
.hst { padding: 24px 36px; border-right: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 5px; }
.hst:first-child { padding-left: 0; }
.hst:last-child { border-right: none; }
.hst-v { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--white); line-height: 1; }
.hst-v em { font-style: italic; color: var(--amber); }
.hst-l { font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.38); }
.scroll-ind {
  position: absolute; bottom: 28px; right: 5%; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.4); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce-y 2s infinite;
}
@keyframes bounce-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── INNER PAGE HERO ── */
.ph { position: relative; min-height: 50vh; display: flex; align-items: flex-end; overflow: hidden; padding: 80px 5% 60px; }
.ph-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ph-ov { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,22,40,.93) 0%, rgba(26,58,107,.5) 55%, rgba(10,22,40,.85) 100%); }
.ph-ct { position: relative; z-index: 2; max-width: 680px; }
.ph-tag { display: inline-block; background: var(--amber); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 18px; }
.ph h1 { font-family: 'DM Serif Display', serif; font-size: clamp(36px,5vw,68px); font-weight: 400; color: var(--white); line-height: 1.06; margin-bottom: 14px; }
.ph h1 em { font-style: italic; color: var(--amber); }
.ph-sub { font-size: 16px; color: rgba(255,255,255,.55); max-width: 520px; line-height: 1.75; }

/* ── SECTIONS ── */
.sec { padding: 96px 5%; }
.sec-off { background: var(--off); }
.sec-navy { background: var(--navy); }
.sec-navy2 { background: var(--navy2); }
.tc { text-align: center; }

/* ── EYEBROW ── */
.ey { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; }
.ey::before { content: ''; width: 24px; height: 2px; background: var(--sky); }
.ey.cn { justify-content: center; }
.ey.lt { color: var(--amber); }
.ey.lt::before { background: var(--amber); }
.ey.dk { color: var(--muted); }
.ey.dk::before { background: var(--muted); }

/* ── DISPLAY HEADINGS ── */
.dh { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.06; letter-spacing: -.3px; }
.dh em { font-style: italic; color: var(--sky); }
.dh.lt em { color: var(--amber); }
.dh.on-dk { color: var(--white); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 13px 26px; border-radius: 3px; transition: all .22s; cursor: pointer; border: none; }
.btn-p { background: var(--sky); color: var(--white); }
.btn-p:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,125,225,.25); }
.btn-a { background: var(--amber); color: var(--navy); }
.btn-a:hover { background: #d4931b; transform: translateY(-2px); }
.btn-o { border: 1.5px solid var(--border); color: var(--sub); }
.btn-o:hover { border-color: var(--sky); color: var(--sky); }
.btn-olt { border: 1.5px solid rgba(255,255,255,.28); color: rgba(255,255,255,.85); }
.btn-olt:hover { border-color: var(--amber); color: var(--amber); }
.btn-txt { color: var(--sky); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; transition: gap .2s; }
.btn-txt:hover { gap: 11px; }
.arr { display: inline-block; transition: transform .2s; }

/* ── CHIP ── */
.chip { display: inline-block; background: var(--sky-lt); color: var(--sky); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 11px; border-radius: 2px; text-transform: uppercase; }
.chip-a { background: var(--amber-lt); color: #7A5010; }

/* ── MARQUEE ── */
.marquee { overflow: hidden; background: var(--sky); padding: 13px 0; }
.marquee-track { display: flex; animation: mq 32s linear infinite; white-space: nowrap; }
.marquee-item { flex-shrink: 0; padding: 0 32px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 12px; }
.mdot { color: var(--amber); }
@keyframes mq { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.rv.d1 { transition-delay: .08s; }
.rv.d2 { transition-delay: .16s; }
.rv.d3 { transition-delay: .24s; }
.rv.vis { opacity: 1; transform: none; }

/* ── ABOUT BAND ── */
.about-band { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 580px; }
.ab-photo { position: relative; overflow: hidden; }
.ab-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 580px; transition: transform .8s; }
.ab-photo:hover img { transform: scale(1.03); }
.ab-photo-ov { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(10,22,40,.5) 100%); }
.ab-float { position: absolute; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(0,0,0,.3); }
.ab-fl-i { background: rgba(10,22,40,.75); backdrop-filter: blur(12px); padding: 20px 18px; text-align: center; }
.ab-fl-v { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); line-height: 1; }
.ab-fl-v em { font-style: italic; color: var(--amber); }
.ab-fl-l { font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 4px; }
.ab-content { padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; }
.ab-content p { font-size: 15px; color: var(--sub); line-height: 1.85; margin-bottom: 18px; }
.ab-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.ab-val { padding: 16px 18px; background: var(--off); border-left: 3px solid var(--sky); }
.ab-val-t { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ab-val-d { font-size: 12.5px; color: var(--sub); line-height: 1.55; }

/* ── NUMBERS BAND ── */
.num-band { background: var(--navy); padding: 80px 5%; }
.num-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.06); }
.ni { padding: 40px 36px; background: rgba(255,255,255,.02); text-align: center; }
.ni-v { font-family: 'DM Serif Display', serif; font-size: clamp(36px,4vw,60px); color: var(--white); line-height: 1; margin-bottom: 10px; }
.ni-v em { font-style: italic; color: var(--amber); }
.ni-l { font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); }

/* ── BIZ TABS ── */
.biz-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 0; }
.btab { padding: 14px 24px; font-size: 13px; font-weight: 600; color: var(--sub); border-bottom: 2px solid transparent; transition: all .2s; cursor: pointer; }
.btab.on { color: var(--sky); border-bottom-color: var(--sky); }
.biz-panels { position: relative; }
.biz-panel { display: none; }
.biz-panel.on { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.bp-img { overflow: hidden; }
.bp-img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; transition: transform .6s; }
.biz-panel:hover .bp-img img { transform: scale(1.04); }
.bp-content { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; background: var(--off); }
.bp-content p { font-size: 14.5px; color: var(--sub); line-height: 1.82; margin-bottom: 18px; }
.bp-specs { display: flex; flex-direction: column; gap: 0; margin: 20px 0 28px; border: 1px solid var(--border); }
.bp-spec { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.bp-spec:last-child { border-bottom: none; }
.bp-spec-l { font-size: 12px; font-weight: 600; color: var(--muted); }
.bp-spec-v { font-size: 13px; font-weight: 700; color: var(--text); }

/* ── CTA BAND ── */
.cta-band { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(26,58,107,.85) 100%); }
.cta-ct { position: relative; z-index: 2; text-align: center; max-width: 640px; padding: 80px 5%; }
.cta-ct h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px,4vw,52px); color: var(--white); margin-bottom: 18px; }
.cta-ct h2 em { font-style: italic; color: var(--amber); }
.cta-ct p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 32px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0; min-height: 600px; }
.ci-panel { background: var(--navy); padding: 72px 52px; }
.ci-panel h3 { font-family: 'DM Serif Display', serif; font-size: 30px; color: var(--white); margin-bottom: 32px; }
.cd { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.cd:last-of-type { border-bottom: none; }
.cd-ic { width: 40px; height: 40px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cd-l { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.cd-v { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.55; }
.cf-panel { background: var(--white); padding: 72px 52px; }
.cf-title { font-family: 'DM Serif Display', serif; font-size: 30px; color: var(--text); margin-bottom: 28px; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fi { margin-bottom: 18px; }
.fi label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.fi input, .fi select, .fi textarea {
  width: 100%; padding: 12px 15px;
  background: var(--off); border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: var(--text);
  outline: none; border-radius: 3px; transition: border-color .2s;
  -webkit-appearance: none;
}
.fi input:focus, .fi select:focus, .fi textarea:focus { border-color: var(--sky); background: var(--white); }
.fi textarea { resize: vertical; min-height: 120px; }
.cf-sub { background: var(--sky); color: var(--white); padding: 13px 30px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; border: none; border-radius: 3px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all .22s; }
.cf-sub:hover { background: var(--blue); transform: translateY(-2px); }

/* ── OFFICES ── */
.off-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-lt); }
.off { background: var(--white); padding: 28px 24px; border-top: 3px solid var(--sky); transition: all .28s; }
.off:hover { box-shadow: 0 10px 28px rgba(10,22,40,.08); transform: translateY(-4px); }
.off-flag { font-size: 26px; margin-bottom: 12px; }
.off-city { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--text); margin-bottom: 4px; }
.off-type { font-size: 9.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; }
.off-addr { font-size: 13px; color: var(--sub); line-height: 1.7; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-lt); }
.bc-c { background: var(--white); overflow: hidden; transition: all .28s; }
.bc-c:hover { box-shadow: 0 12px 32px rgba(10,22,40,.1); }
.bc-c img { width: 100%; height: 200px; object-fit: cover; transition: transform .45s; }
.bc-c:hover img { transform: scale(1.05); }
.bc-body { padding: 20px 20px 22px; }
.bc-cat { font-size: 9.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sky); margin-bottom: 8px; }
.bc-t { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 8px; }
.bc-d { font-size: 13px; color: var(--sub); line-height: 1.65; margin-bottom: 14px; }
.bc-ft { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border-lt); }
.bc-auth { font-size: 11.5px; font-weight: 600; color: var(--muted); }
.bc-read { font-size: 11px; font-weight: 600; color: var(--sky); }

/* ── JOBS ── */
.job-list { display: flex; flex-direction: column; gap: 1px; background: var(--border-lt); }
.job { background: var(--white); padding: 22px 28px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 20px; transition: all .22s; cursor: pointer; }
.job:hover { background: var(--off); border-left: 3px solid var(--sky); }
.job-d { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sky); margin-bottom: 5px; }
.job-t { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.job-l { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.job-type { font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 5px 14px; background: var(--sky-lt); color: var(--sky); border-radius: 2px; white-space: nowrap; }

/* ── FOOTER ── */
footer, .site-footer { background: #00433C; padding: 80px 5% 0; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.06); }
.f-brand p { font-size: 15px; color: rgb(255, 255, 255); line-height: 1.82; max-width: 260px; margin: 18px 0 22px; }
.f-logo img { height: 26px; filter: brightness(0) invert(1); opacity: 1; }
.f-soc { display: flex; gap: 8px; }
.fsoc { width: 34px; height: 34px; border: 1px solid rgba(255,255,255); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255); transition: all .2s; }
.fsoc:hover { border-color: #e8a020; color: #e8a020; }
.fc h5 { font-size: 15px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgb(255, 255, 255); margin-bottom: 18px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fc ul li a { font-size: 15px; color: rgb(255, 255, 255); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.fc ul li a::before { content: '›'; color: #fff; opacity: .7; }
.fc ul li a:hover { color: #e8a020; }
.f-contact-i { font-size: 15px; color: rgb(255, 255, 255); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.f-contact-i span:first-child { color: #fff; flex-shrink: 0; }
.fbot { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.fbot p { font-size: 15px; color: rgba(255,255,255); }
.fbot a { color: rgba(255,255,255); transition: color .2s; }
.fbot a:hover { color: #e8a020; }

/* ── MANAGEMENT / TEAM ── */
.mgmt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; background: var(--border-lt); }
.mg-card { background: var(--white); overflow: hidden; cursor: pointer; }
.mg-img { position: relative; overflow: hidden; height: 320px; }
.mg-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(15%); transition: all .5s; }
.mg-card:hover .mg-img img { filter: grayscale(0); transform: scale(1.05); }
.mg-img-ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,22,40,.88) 0%, rgba(10,22,40,.15) 60%, transparent 100%); }
.mg-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 22px 20px; }
.mg-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--white); margin-bottom: 4px; }
.mg-role { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--amber); }
.mg-expand { background: var(--navy); padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.mg-card:hover .mg-expand { max-height: 120px; padding: 18px 22px; }
.mg-bio { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── ESG / SUSTAINABILITY ── */
.esg-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 520px; }
.esg-media { position: relative; overflow: hidden; }
.esg-media img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; transition: transform .7s; }
.esg-media:hover img { transform: scale(1.04); }
.esg-badge { position: absolute; bottom: 0; right: 0; background: var(--sky); padding: 22px 28px; text-align: center; }
.esg-badge-v { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--white); line-height: 1; }
.esg-badge-l { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 4px; }
.esg-text { padding: 72px 60px; background: var(--off); display: flex; flex-direction: column; justify-content: center; }
.esg-text p { font-size: 15px; color: var(--sub); line-height: 1.85; margin-bottom: 14px; }
.kpi-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.kpi { padding: 18px 22px; background: var(--white); border-bottom: 3px solid var(--sky); min-width: 110px; }
.kpi-v { font-family: 'DM Serif Display', serif; font-size: 30px; color: var(--sky); line-height: 1; }
.kpi-l { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.sdg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border-lt); }
.sdg { background: var(--white); padding: 32px 24px; border-top: 3px solid var(--sky); transition: all .28s; }
.sdg:hover { background: var(--sky-lt); box-shadow: 0 10px 28px rgba(42,125,225,.1); }
.sdg-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); margin-bottom: 8px; }
.sdg-ic { font-size: 28px; margin-bottom: 14px; }
.sdg-t { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sdg-d { font-size: 13px; color: var(--sub); line-height: 1.65; }

/* ── INVESTOR ── */
.inv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 460px; }
.inv-dark { background: var(--navy); padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; }
.inv-dark p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.82; margin-bottom: 28px; }
.inv-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.06); }
.inv-n { padding: 28px 22px; background: rgba(255,255,255,.04); text-align: center; }
.inv-n-v { font-family: 'DM Serif Display', serif; font-size: clamp(28px,3vw,44px); color: var(--white); line-height: 1; margin-bottom: 5px; }
.inv-n-v em { font-style: italic; color: var(--amber); }
.inv-n-l { font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); }
.doc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-lt); }
.doc { background: var(--white); padding: 28px 24px; transition: all .28s; cursor: pointer; }
.doc:hover { background: var(--off); box-shadow: 0 8px 24px rgba(10,22,40,.08); }
.doc-ic { width: 48px; height: 48px; background: var(--sky-lt); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.doc-type { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); margin-bottom: 7px; }
.doc-t { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.doc-d { font-size: 13px; color: var(--sub); line-height: 1.6; margin-bottom: 14px; }
.doc-link { font-size: 12px; font-weight: 600; color: var(--sky); display: inline-flex; align-items: center; gap: 6px; }

/* ── CAREERS ── */
.val-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border-lt); }
.vc { background: var(--white); padding: 36px 26px; text-align: center; border-bottom: 3px solid transparent; transition: all .28s; cursor: pointer; }
.vc:hover { background: var(--navy); border-bottom-color: var(--amber); }
.vc-ic { font-size: 32px; margin-bottom: 15px; transition: transform .3s; }
.vc:hover .vc-ic { transform: scale(1.15); }
.vc-t { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; transition: color .28s; }
.vc:hover .vc-t { color: var(--white); }
.vc-d { font-size: 13px; color: var(--sub); line-height: 1.65; transition: color .28s; }
.vc:hover .vc-d { color: rgba(255,255,255,.5); }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-lt); }
.ben { background: var(--white); padding: 24px 20px; display: flex; gap: 16px; align-items: flex-start; }
.ben-ic { width: 44px; height: 44px; background: var(--sky-lt); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ben-t { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ben-d { font-size: 12.5px; color: var(--sub); line-height: 1.6; }

/* ── TIMELINE ── */
.tl-grid { display: grid; grid-template-columns: 1fr 1fr; }
.tl-cell { padding: 36px 52px; position: relative; }
.tl-cell.left { text-align: right; border-right: 1px solid var(--border); }
.tl-cell.right { border-left: 1px solid var(--border); }
.tl-dot { position: absolute; top: 42px; width: 14px; height: 14px; border-radius: 50%; background: var(--sky); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--sky-lt); z-index: 1; }
.tl-cell.left .tl-dot { right: -7px; }
.tl-cell.right .tl-dot { left: -7px; }
.tl-yr { font-family: 'DM Serif Display', serif; font-size: 48px; color: rgba(42,125,225,.1); line-height: 1; margin-bottom: 4px; }
.tl-t { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.tl-d { font-size: 13.5px; color: var(--sub); line-height: 1.72; }

/* ── FORM SUCCESS ── */
.form-success { display: none; margin-top: 14px; padding: 14px 18px; background: var(--green-lt); border: 1px solid rgba(27,122,62,.25); color: var(--green); font-size: 14px; font-weight: 600; border-radius: 3px; }
.form-success.show { display: block; }
.form-error { display: none; margin-top: 14px; padding: 14px 18px; background: #fff0f0; border: 1px solid rgba(200,0,0,.2); color: #c00; font-size: 14px; border-radius: 3px; }
.form-error.show { display: block; }

/* ── ELEMENTOR SECTION OVERRIDES ── */
.elementor-section.hero-section { min-height: 100vh; }
.elementor-section.sec-navy { background: var(--navy) !important; }
.elementor-widget-heading .elementor-heading-title { font-family: 'DM Serif Display', serif; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-band, .biz-panel.on, .esg-split, .inv-split, .contact-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .num-grid { grid-template-columns: repeat(2,1fr); }
  .sdg-grid { grid-template-columns: repeat(2,1fr); }
  .val-row { grid-template-columns: repeat(2,1fr); }
  .mgmt-grid { grid-template-columns: repeat(2,1fr); }
  .doc-grid, .off-grid, .benefit-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .topbar .tb-left { display: none; }
  .nav-links, .nav-actions, .nav-sep { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner.mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 20px 5%; gap: 0;
    overflow-y: auto; z-index: 8999; align-items: flex-start;
  }
  .nav-inner.mobile-open .nav-links > li > a,
  .nav-inner.mobile-open .nav-links > li > button { height: auto; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border-lt); font-size: 15px; }
  .nav-drop { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; padding-left: 16px; }
  .sec { padding: 60px 5%; }
  .hero-stats { flex-wrap: wrap; }
  .hst { padding: 18px 20px; }
  .fg { grid-template-columns: 1fr; }
  .ci-panel, .cf-panel { padding: 48px 24px; }
  .f-grid { grid-template-columns: 1fr; gap: 28px; }
  .num-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid, .doc-grid, .off-grid, .benefit-grid, .mgmt-grid { grid-template-columns: 1fr; }
  .val-row, .sdg-grid { grid-template-columns: 1fr 1fr; }
  .tl-grid { grid-template-columns: 1fr; }
  .tl-cell.left { text-align: left; border-right: none; border-left: 3px solid var(--sky-lt); }
  .tl-cell.left .tl-dot { right: auto; left: -8px; }
  .job { grid-template-columns: 1fr; gap: 10px; }
  .biz-tabs { overflow-x: auto; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-hero-p, .btn-hero-s { width: 100%; justify-content: center; }
  .val-row, .sdg-grid { grid-template-columns: 1fr; }
  .ab-vals { grid-template-columns: 1fr; }
  .ph { padding: 60px 5% 40px; }
  .ph h1 { font-size: clamp(28px,8vw,52px); }
}
