/* ============================================================
   BLACKROCK ENERGY HOLDINGS LTD — MAIN STYLESHEET
   Colors: Deep Navy #0B1929 | Dark Red #8B1515 | Cream #E8D5B0
   Fonts: Cormorant Garamond (headings) | DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --navy:       #0B1929;
  --navy-mid:   #112238;
  --navy-light: #1A3150;
  --red:        #8B1515;
  --red-dark:   #6B0F0F;
  --red-light:  #A82020;
  --cream:      #E8D5B0;
  --cream-light:#F5EDD9;
  --white:      #FFFFFF;
  --grey-light: #F0F2F5;
  --grey-mid:   #9AA5B4;
  --text-dark:  #1A2638;
  --text-body:  #3D4F63;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --transition: all 0.35s ease;
  --shadow:     0 4px 24px rgba(11,25,41,0.12);
  --shadow-lg:  0 12px 48px rgba(11,25,41,0.20);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--red-dark); }

img { max-width: 100%; height: auto; }

p { margin-bottom: 1.25rem; }

/* ── Utility Classes ────────────────────────────────────── */
.text-red    { color: var(--red) !important; }
.text-navy   { color: var(--navy) !important; }
.text-cream  { color: var(--cream) !important; }
.bg-navy     { background-color: var(--navy) !important; }
.bg-navy-mid { background-color: var(--navy-mid) !important; }
.bg-red      { background-color: var(--red) !important; }
.bg-cream    { background-color: var(--cream-light) !important; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.section-title.light { color: var(--white); }
.section-title.cream { color: var(--cream); }

.divider-red {
  width: 52px;
  height: 3px;
  background: var(--red);
  margin-bottom: 2rem;
  display: block;
}

.divider-cream {
  width: 52px;
  height: 3px;
  background: var(--cream);
  margin-bottom: 2rem;
  display: block;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary-beh {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--red);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-beh:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-outline-beh {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-beh:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-red {
  display: inline-block;
  background: transparent;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--red);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* ── Navbar ─────────────────────────────────────────────── */
#mainNav {
  background: transparent;
  padding: 0.75rem 0;
  transition: var(--transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Lock the navbar to a fixed line-height so no child can push it open */
  min-height: 0;
}

#mainNav .navbar {
  min-height: 0;
}

#mainNav.scrolled {
  background: var(--navy);
  padding: 0.5rem 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.3);
}

/* ── Brand anchor: fixed height, never grows ── */
#mainNav .navbar-brand-beh,
.navbar-brand-beh {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-right: 2rem;
  /* Hard cap — the anchor itself cannot exceed this */
  height: 68px;
  max-height: 68px;
  overflow: hidden;
  line-height: 1;
}

/* ── Logo image: high-specificity rules that beat Bootstrap ── */
#mainNav .navbar-brand-beh img.nav-logo,
#mainNav img.nav-logo,
.navbar-brand-beh img.nav-logo,
img.nav-logo {
  display: block !important;
  height: 62px !important;
  max-height: 62px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  object-position: left center !important;
  transition: height 0.35s ease !important;
  flex-shrink: 0;
}

/* Scrolled state — slightly smaller */
#mainNav.scrolled .navbar-brand-beh img.nav-logo,
#mainNav.scrolled img.nav-logo {
  height: 50px !important;
  max-height: 50px !important;
}

.nav-link-beh {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82) !important;
  padding: 0.5rem 1.1rem !important;
  transition: var(--transition);
  position: relative;
}

.nav-link-beh::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link-beh:hover,
.nav-link-beh.active {
  color: var(--white) !important;
}

.nav-link-beh:hover::after,
.nav-link-beh.active::after {
  transform: scaleX(1);
}

.navbar-toggler-beh {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.4rem 0.7rem;
  background: transparent;
}

.navbar-toggler-beh span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  margin: 4px 0;
  transition: var(--transition);
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(139,21,21,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(26,49,80,0.6) 0%, transparent 50%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.85;
  max-width: 560px;
  margin: 0;
}

/* ── Hero (Homepage) ────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(139,21,21,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(26,49,80,0.5) 0%, transparent 50%),
    linear-gradient(160deg, rgba(11,25,41,0.85) 0%, rgba(9,21,32,0.80) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,213,176,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,213,176,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  color: var(--cream);
  font-style: italic;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 8rem;
}

.hero-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,213,176,0.12);
  padding: 1.5rem 1.75rem;
  position: relative;
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

.hero-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-card .stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Intro Strip ────────────────────────────────────────── */
.intro-strip {
  background: var(--navy-mid);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(139,21,21,0.3);
  border-bottom: 1px solid rgba(139,21,21,0.3);
}

.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.intro-strip-icon {
  width: 42px;
  height: 42px;
  background: rgba(139,21,21,0.2);
  border: 1px solid rgba(139,21,21,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--red);
}

.intro-strip-text strong {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
}

.intro-strip-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ── About Snapshot (Home) ──────────────────────────────── */
.about-snapshot {
  padding: 6rem 0;
  background: var(--white);
}

.about-snapshot-img {
  position: relative;
}

.about-snapshot-img .img-wrap {
  position: relative;
  overflow: hidden;
}

.about-snapshot-img .img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.about-snapshot-img .img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: var(--red);
  z-index: -1;
}

.about-snapshot-img .img-tag {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  min-width: 160px;
}

.about-snapshot-img .img-tag span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0.25rem;
}

/* ── Business Segments Grid (Home) ─────────────────────── */
.segments-section {
  padding: 6rem 0;
  background: var(--grey-light);
}

.segment-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.segment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--navy);
  transition: var(--transition);
  z-index: 0;
}

.segment-card:hover { border-bottom-color: var(--red); }

.segment-card:hover::before { height: 100%; }

.segment-card-inner { position: relative; z-index: 1; }

.segment-icon {
  width: 48px;
  height: 48px;
  background: rgba(139,21,21,0.08);
  border: 1px solid rgba(139,21,21,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.segment-card:hover .segment-icon {
  background: rgba(139,21,21,0.3);
  border-color: var(--red);
  color: var(--cream);
}

.segment-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.segment-card:hover h4 { color: var(--white); }

.segment-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
  transition: var(--transition);
}

.segment-card:hover p { color: rgba(255,255,255,0.7); }

/* ── Why Emerging Markets (Dark section) ────────────────── */
.emerging-section {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.emerging-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 20%, rgba(139,21,21,0.2) 0%, transparent 55%);
}

.emerging-section .container { position: relative; z-index: 2; }

.data-point {
  border-left: 3px solid var(--red);
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.03);
  margin-bottom: 1.25rem;
}

.data-point .dp-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.data-point .dp-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* ── Approach Pillars ───────────────────────────────────── */
.approach-section {
  padding: 6rem 0;
  background: var(--white);
}

.pillar-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(11,25,41,0.1);
  transition: var(--transition);
  height: 100%;
}

.pillar-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(139,21,21,0.12);
  line-height: 1;
  margin-bottom: -0.5rem;
  display: block;
}

.pillar-card h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.cta-banner::after {
  content: 'BLACKROCK';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ── About Page Specific ────────────────────────────────── */
.company-overview { padding: 6rem 0; background: var(--white); }

.vm-section {
  padding: 6rem 0;
  background: var(--cream-light);
  position: relative;
}

.vm-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-top: 4px solid var(--red);
  height: 100%;
  box-shadow: var(--shadow);
}

.vm-card h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.vm-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

.values-section { padding: 5rem 0; background: var(--navy); }

.value-item {
  text-align: center;
  padding: 2rem 1rem;
}

.value-item .value-icon {
  width: 56px;
  height: 56px;
  background: rgba(139,21,21,0.25);
  border: 1px solid rgba(139,21,21,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cream);
  margin: 0 auto 1.25rem;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

.philosophy-section { padding: 6rem 0; background: var(--white); }

.philosophy-quote {
  border-left: 4px solid var(--red);
  padding: 2rem 2.5rem;
  background: var(--grey-light);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.corporate-section {
  padding: 5rem 0;
  background: var(--navy-mid);
}

/* ── Business Page Specific ─────────────────────────────── */
.business-nav {
  padding: 2rem 0;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(139,21,21,0.25);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.business-nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.business-nav-links li a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0.5rem 1.1rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.business-nav-links li a:hover,
.business-nav-links li a.active {
  color: var(--cream);
  border-bottom-color: var(--red);
}

.segment-section {
  padding: 6rem 0;
  position: relative;
}

.segment-section:nth-child(even) {
  background: var(--grey-light);
}

.segment-section:nth-child(odd) {
  background: var(--white);
}

.segment-number {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(11,25,41,0.05);
  line-height: 1;
  position: absolute;
  top: 3rem;
  right: 2rem;
  pointer-events: none;
}

.segment-section.dark-bg { background: var(--navy) !important; }
.segment-section.dark-bg .segment-number { color: rgba(255,255,255,0.04); }

.key-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.activity-tag {
  display: inline-block;
  background: rgba(11,25,41,0.06);
  border: 1px solid rgba(11,25,41,0.12);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
}

.segment-section.dark-bg .activity-tag {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
}

.segment-visual {
  background: var(--navy);
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.segment-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,21,21,0.3), transparent 70%);
}

.segment-visual-icon {
  font-size: 4rem;
  color: rgba(232,213,176,0.15);
  position: relative;
  z-index: 2;
  text-align: center;
}

.segment-visual-icon i {
  display: block;
  font-size: 4rem;
  color: rgba(232,213,176,0.2);
}

.segment-visual-icon span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(232,213,176,0.4);
  font-style: italic;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ── Insights Page ──────────────────────────────────────── */
.insights-section { padding: 5rem 0; background: var(--white); }

.article-card {
  background: var(--white);
  border: 1px solid rgba(11,25,41,0.1);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.article-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.article-card-img .img-placeholder-text {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
}

.article-card-img .article-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.article-card-body {
  padding: 1.75rem 1.5rem;
}

.article-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--grey-mid);
  margin-bottom: 0.75rem;
  display: block;
}

.article-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: var(--transition);
}

.article-card:hover h4 { color: var(--red); }

.article-card p {
  font-size: 0.825rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.article-card .read-more {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-card .read-more::after {
  content: '→';
  transition: var(--transition);
}

.article-card:hover .read-more::after {
  transform: translateX(4px);
}

.featured-article {
  background: var(--navy);
  padding: 3.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.featured-article::before {
  content: 'FEATURED';
  position: absolute;
  top: 2rem;
  right: -2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(255,255,255,0.03);
  font-weight: 700;
  white-space: nowrap;
}

.featured-article .feat-cat {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}

.featured-article h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.featured-article p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.newsletter-section {
  padding: 5rem 0;
  background: var(--grey-light);
}

.newsletter-box {
  background: var(--white);
  padding: 3rem;
  border-top: 4px solid var(--red);
  text-align: center;
}

.newsletter-box h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.newsletter-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 1.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(11,25,41,0.2);
  border-right: none;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  background: var(--white);
}

.newsletter-form input:focus {
  border-color: var(--red);
}

.newsletter-form button {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--red-dark); }

/* ── Contact Page ───────────────────────────────────────── */
.contact-section { padding: 6rem 0; background: var(--white); }

.contact-info-block {
  padding: 3rem;
  background: var(--navy);
  height: 100%;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(139,21,21,0.25);
  border: 1px solid rgba(139,21,21,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.contact-info-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.6;
}

.contact-form-wrap {
  padding: 3rem;
  background: var(--grey-light);
  height: 100%;
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label-beh {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-control-beh {
  width: 100%;
  border: 1px solid rgba(11,25,41,0.2);
  background: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}

.form-control-beh:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,21,21,0.08);
}

select.form-control-beh { appearance: none; cursor: pointer; }

textarea.form-control-beh { resize: vertical; min-height: 130px; }

.disclaimer-strip {
  background: var(--grey-light);
  border-top: 1px solid rgba(11,25,41,0.08);
  padding: 2rem 0;
}

.disclaimer-strip p {
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin: 0;
  line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 5rem 0 0;
  border-top: 3px solid var(--red);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 1.25rem 0 1.75rem;
}

footer h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a::before {
  content: '—';
  font-size: 0.6rem;
  color: var(--red);
  opacity: 0.7;
}

.footer-links li a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover { color: var(--cream); }

/* ── AOS Overrides ──────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-stats { padding-top: 3rem; flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { flex: 1 1 45%; }
  .segment-number { font-size: 4rem; }
  .contact-info-block, .contact-form-wrap { height: auto; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.5rem; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-direction: column; }
  .hero-stat-card { flex: 1 1 100%; }
  .business-nav { top: 65px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(11,25,41,0.2); }
  .featured-article { padding: 2rem; }
  .contact-info-block, .contact-form-wrap { padding: 2rem; }
  footer { padding: 3.5rem 0 0; }
}

/* ── Back to Top ────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 500;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover { background: var(--red-dark); }

/* ── Cookie Bar ─────────────────────────────────────────── */
#cookieBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-mid);
  border-top: 2px solid var(--red);
  padding: 1rem 0;
  z-index: 2000;
  display: none;
}

#cookieBar p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

#cookieBar a { color: var(--cream); text-decoration: underline; }

#cookieDismiss {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
