/* ============================================================
   LANDING-OVERRIDES.CSS
   Premium styles for index2.html — GildenRow Advisory
   Does NOT touch styles.css (shared across 19 pages)
   ============================================================ */

/* ── Google Font additions ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&display=swap');

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --lp-navy:      #060f1f;
  --lp-mid-navy:  #0b1e3f;
  --lp-gold:      #C49B4F;
  --lp-gold-lt:   #d4b16e;
  --lp-gold-dim:  rgba(196,155,79,0.18);
  --lp-white:     #ffffff;
  --lp-off:       #f7f8fa;
  --lp-text:      #3d4a5c;
  --lp-radius:    6px;
  --lp-trans:     0.35s cubic-bezier(0.25,0.8,0.25,1);
}

/* ── Scroll-progress bar ───────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-gold), var(--lp-gold-lt));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Body override ─────────────────────────────────────── */
body {
  background: var(--lp-white);
  color: var(--lp-text);
}

/* ════════════════════════════════════════════════════════
   SECTION 1 — CINEMATIC HERO
   ════════════════════════════════════════════════════════ */
.lp-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
  background:
    linear-gradient(to bottom, rgba(6,15,31,0.78) 0%, rgba(6,15,31,0.65) 60%, rgba(6,15,31,0.88) 100%),
    url('Images/DECC.zoomed.out_.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  border-bottom: none !important;
}

/* subtle animated gradient shimmer on hero */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(196,155,79,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

.lp-hero-eyebrow {
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.lp-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6em, 5vw, 4.2em);
  font-weight: 700;
  color: var(--lp-white);
  line-height: 1.18;
  max-width: 820px;
  margin: 0 auto 28px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.45s forwards;
}

.lp-hero h1 em {
  font-style: italic;
  color: var(--lp-gold-lt);
}

.lp-hero-sub {
  font-size: 1.15em;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 46px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
}

.lp-cta-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.85s forwards;
}

.lp-btn-gold {
  display: inline-block;
  padding: 15px 36px;
  background: var(--lp-gold);
  color: var(--lp-white) !important;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--lp-radius);
  border: 2px solid var(--lp-gold);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--lp-trans);
}

.lp-btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.18);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.lp-btn-gold:hover::after { left: 130%; }
.lp-btn-gold:hover {
  background: var(--lp-gold-lt);
  border-color: var(--lp-gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(196,155,79,0.35);
}

.lp-btn-ghost {
  display: inline-block;
  padding: 15px 36px;
  background: transparent;
  color: var(--lp-white) !important;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--lp-radius);
  border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer;
  text-decoration: none;
  transition: var(--lp-trans);
}

.lp-btn-ghost:hover {
  border-color: var(--lp-gold);
  color: var(--lp-gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(196,155,79,0.18);
}

.lp-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 1.5em;
  animation: bounce 2s ease-in-out infinite;
  line-height: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════════════════
   SECTION 2 — STAT / DIFFERENTIATOR BAR
   ════════════════════════════════════════════════════════ */
.lp-statbar {
  background: var(--lp-mid-navy);
  padding: 32px 20px;
}

.lp-statbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.lp-stat {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--lp-trans);
}

.lp-stat:last-child { border-right: none; }

.lp-stat:hover { background: rgba(196,155,79,0.06); }

.lp-stat-label {
  font-size: 0.68em;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 8px;
}

.lp-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.45em;
  font-weight: 700;
  color: var(--lp-white);
  line-height: 1.2;
}

/* ════════════════════════════════════════════════════════
   SECTION 3 — WHAT GILDENROW IS
   ════════════════════════════════════════════════════════ */
.lp-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px;
}

.lp-section-label {
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 14px;
}

.lp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75em, 3vw, 2.5em);
  font-weight: 700;
  color: var(--lp-mid-navy);
  margin-bottom: 40px;
  line-height: 1.2;
}

.lp-asymmetric {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 56px;
  align-items: center;
}

.lp-prose p {
  font-size: 1.08em;
  line-height: 1.85;
  color: var(--lp-text);
  margin-bottom: 18px;
}

.lp-prose p:last-child { margin-bottom: 0; }

.lp-pull-quote {
  background: var(--lp-mid-navy);
  border-left: 4px solid var(--lp-gold);
  border-radius: var(--lp-radius);
  padding: 42px 36px;
  position: relative;
}

.lp-pull-quote::before,
.lp-pull-quote::after {
  content: none;
}

.lp-pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.18em;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
}

.lp-pull-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 0.75em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-gold);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════
   SECTION 4 — WHERE WE OPERATE (image panels)
   ════════════════════════════════════════════════════════ */
.lp-operate-wrap {
  background: var(--lp-off);
  padding: 90px 24px;
}

.lp-operate-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lp-image-panels {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 20px;
  margin-top: 48px;
  height: 540px;
}

.lp-panel {
  position: relative;
  border-radius: var(--lp-radius);
  overflow: hidden;
  cursor: default;
}

.lp-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.lp-panel:hover img { transform: scale(1.04); }

.lp-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,31,0.82) 0%, rgba(6,15,31,0.3) 55%, transparent 100%);
  transition: background var(--lp-trans);
}

.lp-panel:hover .lp-panel-overlay {
  background: linear-gradient(to top, rgba(6,15,31,0.88) 0%, rgba(6,15,31,0.42) 60%, rgba(6,15,31,0.15) 100%);
}

.lp-panel-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 30px;
}

.lp-panel-tag {
  font-size: 0.65em;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 8px;
}

.lp-panel-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55em;
  color: var(--lp-white);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.lp-panel-text p {
  font-size: 0.9em;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

/* Right column stacked */
.lp-panel-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-panel-stack .lp-panel {
  flex: 1;
}

.lp-stat-card {
  background: var(--lp-mid-navy);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  border-left: 4px solid var(--lp-gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-stat-card p {
  font-size: 0.95em;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

.lp-stat-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3em;
  color: var(--lp-gold);
  margin-bottom: 10px;
}

/* ════════════════════════════════════════════════════════
   SECTION 5 — OPERATING MODEL (4-step)
   ════════════════════════════════════════════════════════ */
.lp-process-section {
  padding: 90px 24px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}

/* connecting line */
.lp-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--lp-gold) 0, var(--lp-gold) 8px, transparent 8px, transparent 18px);
  z-index: 0;
}

.lp-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.lp-step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--lp-mid-navy);
  border: 2px solid var(--lp-gold);
  color: var(--lp-gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--lp-trans);
  box-shadow: 0 0 0 6px rgba(196,155,79,0.08);
}

.lp-step:hover .lp-step-num {
  background: var(--lp-gold);
  color: var(--lp-white);
  box-shadow: 0 0 0 8px rgba(196,155,79,0.15);
  transform: scale(1.08);
}

.lp-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05em;
  color: var(--lp-mid-navy);
  margin-bottom: 10px;
}

.lp-step p {
  font-size: 0.88em;
  color: var(--lp-text);
  line-height: 1.6;
  margin: 0;
}

.lp-step-kicker {
  display: block;
  margin-top: 12px;
  font-size: 0.75em;
  font-weight: 600;
  font-style: italic;
  color: var(--lp-gold);
}

/* ════════════════════════════════════════════════════════
   SECTION 6 — DARK MANIFESTO STRIP
   ════════════════════════════════════════════════════════ */
.lp-manifesto {
  background: var(--lp-navy);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--lp-gold));
}

.lp-manifesto::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to top, transparent, var(--lp-gold));
}

.lp-manifesto blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2em, 2.5vw, 1.75em);
  color: rgba(255,255,255,0.9);
  max-width: 820px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.lp-manifesto blockquote::before,
.lp-manifesto blockquote::after { content: ''; }

.lp-chips {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-chip {
  background: transparent;
  border: 1.5px solid rgba(196,155,79,0.45);
  color: var(--lp-gold);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  transition: var(--lp-trans);
}

.lp-chip:hover {
  background: var(--lp-gold-dim);
  border-color: var(--lp-gold);
}

/* ════════════════════════════════════════════════════════
   SECTION 7 — COMPARISON TABLE
   ════════════════════════════════════════════════════════ */
.lp-compare-bg {
  background: var(--lp-off);
  padding: 90px 24px;
}

.lp-compare-inner {
  max-width: 980px;
  margin: 0 auto;
}

.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(11,30,63,0.10);
}

.lp-compare-table thead th {
  padding: 22px 28px;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lp-th-muted {
  background: #e4e8ef;
  color: #7a8699;
  text-align: left;
}

.lp-th-gold {
  background: var(--lp-mid-navy);
  color: var(--lp-gold);
  text-align: left;
}

.lp-compare-table tbody tr {
  transition: background var(--lp-trans);
}

.lp-compare-table tbody tr:nth-child(odd)  td { background: var(--lp-white); }
.lp-compare-table tbody tr:nth-child(even) td { background: #f1f3f7; }
.lp-compare-table tbody tr:hover td { background: rgba(196,155,79,0.07); }

.lp-compare-table td {
  padding: 18px 28px;
  font-size: 0.96em;
  line-height: 1.55;
  color: var(--lp-text);
  vertical-align: top;
}

.lp-td-icon {
  width: 28px;
  font-size: 1.05em;
}

.lp-td-bad  .lp-td-icon { color: #b0b8c5; }
.lp-td-good .lp-td-icon { color: var(--lp-gold); }
.lp-td-good { font-weight: 500; color: var(--lp-mid-navy); }

/* ════════════════════════════════════════════════════════
   SECTION 8 — OUR ADVANTAGE (dark grid)
   ════════════════════════════════════════════════════════ */
.lp-advantage-bg {
  background: var(--lp-mid-navy);
  padding: 90px 24px;
}

.lp-advantage-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lp-advantage-inner .lp-section-title { color: var(--lp-white); }
.lp-advantage-inner .lp-section-label { color: var(--lp-gold); }

.lp-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.lp-adv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid transparent;
  border-radius: var(--lp-radius);
  padding: 38px 30px;
  transition: var(--lp-trans);
}

.lp-adv-card:hover {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--lp-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.lp-adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-gold-dim);
  border: 1px solid rgba(196,155,79,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  color: var(--lp-gold);
  margin-bottom: 20px;
}

.lp-adv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
  color: var(--lp-white);
  margin-bottom: 12px;
}

.lp-adv-card p {
  font-size: 0.9em;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   SECTION 9 — FINAL CTA STRIP
   ════════════════════════════════════════════════════════ */
.lp-cta-strip {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 24px;
  background:
    linear-gradient(to bottom, rgba(6,15,31,0.82) 0%, rgba(6,15,31,0.72) 100%),
    url('Images/high-voltage-electrical-transmission-lines.jpg') center 40% / cover no-repeat;
  background-attachment: fixed;
}

.lp-cta-strip-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.lp-cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--lp-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.lp-cta-strip p {
  font-size: 1.1em;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 42px;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.lp-reveal.lp-visible {
  opacity: 1;
  transform: none;
}

.lp-reveal-d1 { transition-delay: 0.1s; }
.lp-reveal-d2 { transition-delay: 0.2s; }
.lp-reveal-d3 { transition-delay: 0.3s; }
.lp-reveal-d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .lp-steps::before { display: none; }
  .lp-statbar-inner { grid-template-columns: repeat(2, 1fr); }
  .lp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .lp-stat:nth-child(even) { border-right: none; }
}

@media (max-width: 768px) {
  .lp-hero { min-height: 100svh; background-attachment: scroll; }
  .lp-cta-strip { background-attachment: scroll; }
  .lp-asymmetric { grid-template-columns: 1fr; gap: 36px; }
  .lp-image-panels { grid-template-columns: 1fr; height: auto; }
  .lp-panel { height: 300px; }
  .lp-panel-stack { flex-direction: row; }
  .lp-panel-stack .lp-panel { height: 280px; }
  .lp-adv-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; }
  .lp-statbar-inner { grid-template-columns: 1fr 1fr; }
  .lp-image-panels { height: auto; }
  .lp-compare-table thead th,
  .lp-compare-table td { padding: 14px 16px; font-size: 0.9em; }
}

@media (max-width: 480px) {
  .lp-steps { grid-template-columns: 1fr; }
  .lp-statbar-inner { grid-template-columns: 1fr; }
  .lp-panel-stack { flex-direction: column; }
  .lp-panel-stack .lp-panel { height: 240px; }
}
/* Floating Broker Badge */
.broker-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid rgba(11,30,63,0.15);
    border-radius: 6px;
    padding: 16px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    color: var(--lp-navy);
    display: block;
}
.broker-badge-header { font-size: 0.7em; font-weight: 700; letter-spacing: 0.1em; color: var(--lp-gold); margin-bottom: 8px; }
.broker-badge-text { font-size: 0.85em; line-height: 1.4; margin-bottom: 12px; }
.broker-badge-link { font-size: 0.8em; font-weight: 600; text-decoration: underline; cursor: pointer; color: var(--lp-navy); }
.broker-badge-details { display: none; margin-top: 12px; font-size: 0.85em; line-height: 1.5; border-top: 1px solid #eee; padding-top: 12px; }
.broker-badge:hover .broker-badge-details { display: block; }
.broker-divider { height: 1px; background: #eee; margin: 8px 0; }
.broker-banner-mobile { display: none; }
@media (max-width: 768px) {
    .broker-badge { display: none; }
    .broker-banner-mobile { display: block; background: #fff; padding: 20px; text-align: center; font-size: 0.85em; border-top: 1px solid #eee; }
}

/* Styled Steps */
.lp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a3a6b;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 16px;
}

