/*
Theme Name: Belding India Ltd
Theme URI: https://beldingindia.com
Author: Belding India Ltd
Description: Official WordPress theme for Belding India Ltd — Energy · Compute · Manufacturing
Version: 1.0.0
License: Proprietary
Text Domain: belding-india
Tags: business, corporate, infrastructure
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy-deep: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1e2a3a;
  --orange: #e85d04;
  --orange-hover: #c84d00;
  --steel: #8a99b3;
  --off-white: #f5f5f0;
  --white: #ffffff;
  --border: #e5e7eb;
  --muted: #6b7280;
  --font-sans: 'Poppins', sans-serif;
  --max-width: 1280px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--navy-deep);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}

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

a {
  text-decoration: none;
  color: #0084a7;
}

ul { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .header-inner { padding: 1.25rem 3rem; }
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  display: flex;
  align-items: baseline;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-main { color: var(--white); }
.logo-accent { color: var(--orange); }

.logo-divider {
  display: none;
  width: 1px;
  height: 2rem;
  background: rgba(138, 153, 179, 0.4);
  margin: 0 0.25rem;
}

.logo-tagline {
  display: none;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

@media (min-width: 640px) {
  .logo-divider, .logo-tagline { display: block; }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--steel);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
}

.nav-desktop a.active {
  color: var(--orange);
}

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(138,153,179,0.2);
}

.nav-mobile.open { display: block; }

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
}

.nav-mobile a {
  padding: 0.875rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--steel);
  border-bottom: 1px solid rgba(138,153,179,0.15);
  transition: color 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--orange);
}

/* ============================================================
   HERO SECTION (HOME)
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.6);
}

.hero-accent-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(232, 93, 4, 0.2);
}

.hero-accent-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(232, 93, 4, 0.1);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
}

@media (min-width: 1024px) {
  .hero-content { padding: 6rem 3rem; }
}

.hero-inner { max-width: 48rem; }

.hero-overline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title .accent { color: var(--orange); }

.hero-description {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
  max-width: 36rem;
  margin-bottom: 3rem;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover { background: var(--orange-hover); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(138, 153, 179, 0.4);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--steel);
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--white);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--navy-deep);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-navy:hover { background: var(--navy-mid); }

.btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .stats-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 3rem;
    divide-x: 1px solid var(--border);
  }
  
  .stat-item + .stat-item {
    border-left: 1px solid var(--border);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-heading.center {
  text-align: center;
  align-items: center;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

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

.section-description {
  max-width: 40rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

.section-description.light { color: var(--steel); }

/* ============================================================
   DIVISIONS SECTION
   ============================================================ */
.divisions-section {
  background: var(--white);
  padding: 6rem 0;
}

.divisions-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

@media (min-width: 768px) {
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
}

.division-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.division-card:hover { background: var(--off-white); }

.division-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.division-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.division-card:hover .division-image img { transform: scale(1.05); }

.division-image-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4px;
  background: var(--orange);
}

.division-body {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
  flex: 1;
}

.division-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.division-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.division-icon {
  width: 2.25rem;
  color: var(--orange);
  flex-shrink: 0;
}

.division-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.division-arrow {
  color: var(--steel);
  transition: color 0.2s;
  flex-shrink: 0;
}

.division-card:hover .division-arrow { color: var(--orange); }

.division-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.division-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
}

.division-description {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */
.manifesto-section {
  background: var(--navy-mid);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 4px;
  background: var(--orange);
}

.manifesto-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 6rem;
  background: rgba(232, 93, 4, 0.2);
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 48rem;
}

.manifesto-quote .accent {
  color: var(--orange);
  font-weight: 700;
}

.manifesto-text {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
  max-width: 40rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--off-white);
  padding: 5rem 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.cta-description {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 36rem;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 8rem 0;
  background: var(--navy-deep);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.5);
}

.page-hero-content {
  position: relative;
}

.page-hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 48rem;
}

.page-hero-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
  max-width: 40rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.brand-story {
  background: var(--white);
  padding: 6rem 0;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .brand-story-grid { grid-template-columns: repeat(2, 1fr); }
}

.brand-story-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.brand-story-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* Timeline */
.timeline {
  border-left: 2px solid var(--border);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-year {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-deep);
  width: 3rem;
  flex-shrink: 0;
}

.timeline-event {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* Pillars */
.pillars-section {
  background: var(--off-white);
  padding: 6rem 0;
}

.pillars-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
}

.pillar-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--orange);
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.pillar-description {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* Values */
.values-section {
  background: var(--navy-deep);
  padding: 6rem 0;
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 4px;
  background: var(--orange);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

.values-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  border-left: 2px solid var(--orange);
  padding-left: 1.5rem;
}

.value-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.value-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.6;
}

.leadership-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.leadership-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
}

.leadership-coming {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(138, 153, 179, 0.6);
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.culture-section {
  background: var(--white);
  padding: 6rem 0;
}

.culture-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

@media (min-width: 768px) {
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
}

.culture-card {
  background: var(--white);
  padding: 2.5rem;
}

.culture-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.culture-accent {
  width: 2rem;
  height: 4px;
  background: var(--orange);
  margin-top: 0.75rem;
  flex-shrink: 0;
}

.culture-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.culture-description {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* Jobs */
.jobs-section {
  background: var(--off-white);
  padding: 6rem 0;
}

.jobs-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
}

.job-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .job-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.job-row:hover { background: var(--navy-deep); }

.job-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  transition: color 0.2s;
}

.job-row:hover .job-title { color: var(--white); }

.job-division {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.2s;
}

.job-row:hover .job-meta-item { color: var(--steel); }

.job-meta-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.job-arrow {
  color: var(--steel);
  transition: color 0.2s;
}

.job-row:hover .job-arrow { color: var(--orange); }

/* Open Application CTA */
.open-application {
  margin-top: 4rem;
  background: var(--navy-mid);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .open-application {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.open-application-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.open-application-description {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--steel);
}

/* ============================================================
   INVESTOR RELATIONS PAGE
   ============================================================ */
.metrics-section {
  background: var(--off-white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--orange);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.metric-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--steel);
}

/* Reports */
.reports-section {
  background: var(--white);
  padding: 6rem 0;
}

.reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .reports-grid { grid-template-columns: repeat(2, 1fr); }
}

.doc-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}

.doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}

.doc-row:hover { background: var(--off-white); }

.doc-row-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.doc-file-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--steel);
  transition: color 0.2s;
  flex-shrink: 0;
}

.doc-row:hover .doc-file-icon { color: var(--orange); }

.doc-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-deep);
}

.doc-type {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--steel);
}

.doc-row-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.doc-size {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--steel);
}

.doc-download {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--steel);
  transition: color 0.2s;
}

.doc-row:hover .doc-download { color: var(--orange); }

/* Shareholder */
.shareholder-section {
  background: var(--navy-deep);
  padding: 6rem 0;
  position: relative;
}

.shareholder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 4px;
  background: var(--orange);
}

.shareholder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .shareholder-grid { grid-template-columns: repeat(2, 1fr); }
}

.key-contacts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  border-left: 2px solid var(--orange);
  padding-left: 1.5rem;
}

.contact-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.contact-detail {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--steel);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.form-input,
.form-select,
.form-textarea {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--navy-deep);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--steel);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy-deep);
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

.form-select { appearance: none; }

.form-success {
  background: var(--off-white);
  padding: 3rem;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.form-success-accent {
  width: 3rem;
  height: 4px;
  background: var(--orange);
  margin-bottom: 1.5rem;
}

.form-success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.form-success-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
}

/* Offices */
.offices-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.offices-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
}

.office-item {
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.office-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
}

.office-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--steel);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.direct-contacts {
  margin-top: 3rem;
  background: var(--off-white);
  padding: 2rem;
  border: 1px solid var(--border);
}

.direct-contacts-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.direct-contact-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.direct-contact-label {
  font-weight: 300;
  color: var(--muted);
}

.direct-contact-value {
  font-weight: 500;
  color: var(--navy-deep);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--off-white);
}

.footer-accent {
  height: 4px;
  background: var(--orange);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

@media (min-width: 1024px) {
  .footer-inner { padding: 4rem 3rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
}

.footer-mandate {
  font-size: 0.75rem;
  color: var(--steel);
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--navy-deep); }

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--steel);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--steel);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--navy-deep); }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WORDPRESS ADMIN BAR FIX
   ============================================================ */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* ============================================================
   WORDPRESS ALIGNMENT CLASSES
   ============================================================ */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 767px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline, .btn-navy { width: 100%; justify-content: center; }
}
