@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
  --color-bg-base: #ffffff;
  --color-bg-alt: #f5f6f8;
  --color-bg-card: rgba(255, 255, 255, 0.7);
  --color-bg-dark: #0f1012;
  --color-bg-dark-card: #18191c;
  --color-gold: #b38f1e;
  /* Deeper gold for readability on white */
  --color-gold-light: #d4af37;
  /* Accent gold */
  --color-gold-hover: #9b7816;
  --color-text-main: #1f2937;
  --color-text-muted: #6b7280;
  --color-text-light: #f3f4f6;
  --color-text-light-muted: #9ca3af;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-card-hover: 0 20px 50px rgba(179, 143, 30, 0.08);
  --border-glass: 1px solid rgba(255, 255, 255, 0.6);
  --border-light: 1px solid rgba(0, 0, 0, 0.06);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-bg-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION UTILITIES --- */
.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  text-transform: capitalize;
}

.section-title span {
  color: var(--color-gold);
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto 56px;
  font-weight: 400;
}

.section-dark .section-subtitle {
  color: var(--color-text-light-muted);
}

/* --- GLASSMORPHISM PANEL --- */
.glass-panel {
  background-color: var(--color-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass);
  box-shadow: var(--shadow-premium);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(179, 143, 30, 0.2);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 30px;
  /* Rounded pill style like Anglo American */
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--color-gold);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(179, 143, 30, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-bg-dark);
  border: 2px solid var(--color-bg-dark);
}

.btn-secondary:hover {
  background-color: var(--color-bg-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-actions .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-secondary:hover {
  background-color: #ffffff;
  color: var(--color-bg-dark);
  border-color: #ffffff;
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- NAVIGATION HEADER (DARK) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #1a1b1e;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  background-color: #111214;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  height: 68px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  max-height: 70px;
}

/* Center nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger lines — white on dark nav */
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* Nav right side: CTA + hamburger */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Desktop CTA nav button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: var(--color-gold);
  color: #ffffff;
  border-radius: 4px;
  border: 2px solid var(--color-gold);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(179, 143, 30, 0.2);
}

/* --- HAMBURGER MENU --- */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1100;
  flex-direction: column;
  justify-content: space-between;
  padding: 3px 0;
}

/* old hamburger-line definition — handled above */
.hamburger-line:last-child {
  margin-bottom: 0;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background-color: #0f1012;
  padding-top: 95px;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: grayscale(10%) contrast(110%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(80deg, rgba(15, 16, 18, 0.9) 0%, rgba(15, 16, 18, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding-right: 0;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-tagline::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-gold-light);
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-title span {
  color: var(--color-gold-light);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 44px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- INNER PAGE HERO (About / Services / Contact) --- */
.inner-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  background-color: #0f1012;
  padding-top: 80px; /* offset for fixed nav */
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(15%) contrast(115%);
  z-index: 1;
}

.inner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 16, 18, 0.5) 0%,
    rgba(15, 16, 18, 0.85) 80%,
    rgba(15, 16, 18, 0.97) 100%
  );
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.inner-hero-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.inner-hero-breadcrumbs a {
  color: var(--color-gold-light);
  opacity: 0.8;
}

.inner-hero-breadcrumbs a:hover {
  opacity: 1;
}

.inner-hero-breadcrumbs .bc-sep {
  opacity: 0.4;
}

.inner-hero-title {
  font-size: 3.5rem;
  line-height: 1.08;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.inner-hero-title span {
  color: var(--color-gold-light);
}

.inner-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 560px;
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Dark statement/quote panel (like the green panel in CFS template) */
.about-statement-block {
  background-color: #111214;
  padding: 0;
  display: grid;
  grid-template-columns: 5fr 7fr;
}

.about-statement-dark {
  background-color: #1a1b1e;
  padding: 80px 60px;
  display: flex;
  align-items: center;
}

.about-statement-dark blockquote {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.about-statement-dark blockquote::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-gold-light);
  margin-bottom: 28px;
}

.about-statement-dark blockquote span {
  color: var(--color-gold-light);
}

.about-statement-light {
  background-color: #f5f6f8;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-statement-light h3 {
  font-size: 1.5rem;
  color: var(--color-bg-dark);
  margin-bottom: 16px;
}

.about-statement-light p {
  color: var(--color-text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* Values / pillars grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: rgba(0, 0, 0, 0.04);
  border: var(--border-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 56px;
}

.value-card {
  background-color: #ffffff;
  padding: 40px 32px;
  transition: var(--transition-smooth);
}

.value-card:hover {
  background-color: rgba(212, 175, 55, 0.03);
}

.value-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}

.value-card h4 {
  font-size: 1.1rem;
  color: var(--color-bg-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* About image feature panel */
.about-feature-img {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.about-feature-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-feature-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background-color: var(--color-gold);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border-radius: 4px;
}

/* --- OVERLAPPING STATS ROW --- */
.overlapping-stats {
  margin-top: -80px;
  position: relative;
  z-index: 20;
}

.stats-glass-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.stat-block {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 40px 24px;
  text-align: center;
}

.stat-block h3 {
  font-size: 2.5rem;
  color: var(--color-gold);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-block p {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-main);
  letter-spacing: 0.08em;
}

/* --- TWO COLUMN SPLIT --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-text h3 {
  font-size: 1.85rem;
  margin-bottom: 20px;
  color: var(--color-bg-dark);
}

.split-text p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

.split-media {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: var(--border-light);
}

.split-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gold-light);
  border-radius: var(--border-radius);
  pointer-events: none;
  transform: translate(16px, 16px);
  z-index: -1;
  transition: var(--transition-smooth);
}

.split-media:hover::after {
  transform: translate(8px, 8px);
}

.split-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* --- SERVICES CARD GRID (LIGHT GLASS) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(179, 143, 30, 0.25);
}

.service-image-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.8) 100%);
}

.service-card-body {
  padding: 36px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(179, 143, 30, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
}

.service-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--color-bg-dark);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-list {
  margin-top: auto;
  border-top: var(--border-light);
  padding-top: 20px;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.service-list-item:last-child {
  margin-bottom: 0;
}

.service-list-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

/* --- CREATIVE CAROUSEL COMPONENT --- */
.carousel-outer {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-premium);
  border: var(--border-light);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  align-items: center;
  background-color: transparent;
}

.carousel-img-panel {
  position: relative;
  height: 460px;
  width: 100%;
  overflow: hidden;
}

.carousel-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(179, 143, 30, 0.15) 0%, rgba(15, 16, 18, 0.25) 100%);
}

.carousel-content-panel {
  padding: 56px;
}

.carousel-slide-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.carousel-slide-title {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--color-bg-dark);
}

.carousel-slide-desc {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: var(--transition-smooth);
  color: var(--color-bg-dark);
}

.carousel-btn:hover {
  background-color: var(--color-gold);
  color: #ffffff;
  border-color: var(--color-gold);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn-prev {
  left: -28px;
}

.carousel-btn-next {
  right: -28px;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: var(--color-gold);
  width: 28px;
  border-radius: 10px;
}

/* --- MISSION & VISION (GLASS BOARDS) --- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  padding: 56px;
  border-left: 5px solid var(--color-gold);
}

.mv-title {
  font-size: 1.6rem;
  color: var(--color-bg-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mv-title svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
}

.mv-card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.mv-list li:last-child {
  margin-bottom: 0;
}

.mv-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
  stroke-width: 2.5;
  fill: none;
  margin-top: 4px;
  flex-shrink: 0;
}

/* --- CORPORATE MENTOR PANEL --- */
.mentorship-card {
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--border-glass);
  box-shadow: var(--shadow-premium);
  border-radius: var(--border-radius);
  padding: 40px;
  border-left: 4px solid var(--color-gold);
  margin-top: 40px;
}

.mentor-profile {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.mentor-avatar-initials {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(179, 143, 30, 0.2);
}

.mentor-meta h4 {
  font-size: 1.4rem;
  color: var(--color-bg-dark);
}

.mentor-meta p {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mentorship-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.mentorship-content p:last-child {
  margin-bottom: 0;
}

/* --- CORPORATE PROFILE TABLE --- */
.profile-table-wrapper {
  overflow-x: auto;
  margin-top: 36px;
  box-shadow: var(--shadow-premium);
  border-radius: var(--border-radius);
  border: var(--border-light);
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.profile-table th,
.profile-table td {
  padding: 20px 28px;
  border-bottom: var(--border-light);
}

.profile-table th {
  background-color: var(--color-bg-alt);
  color: var(--color-bg-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-table tr {
  background-color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.profile-table tr:hover {
  background-color: rgba(179, 143, 30, 0.02);
}

.profile-table td.label-cell {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-bg-dark);
  width: 32%;
}

.profile-table td.value-cell {
  color: var(--color-text-muted);
  font-weight: 500;
}

/* --- CONTACT GRID & CONTACTS --- */
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 50px;
}

.contact-info-panel {
  padding: 44px;
}

.contact-info-panel h3 {
  font-size: 1.6rem;
  color: var(--color-bg-dark);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(179, 143, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
}

.contact-text-box h4 {
  font-size: 0.9rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-text-box p {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.reference-card {
  margin-top: 36px;
  border-top: var(--border-light);
  padding-top: 28px;
}

.reference-card h4 {
  font-size: 0.9rem;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ref-details {
  background-color: rgba(0, 0, 0, 0.02);
  border-left: 3px solid var(--color-gold);
  padding: 16px 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.ref-details p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.ref-details p:last-child {
  margin-bottom: 0;
}

.ref-details strong {
  color: var(--color-bg-dark);
}

/* Contact Form Panel */
.contact-form-panel {
  padding: 56px;
}

.contact-form-panel h3 {
  font-size: 1.85rem;
  color: var(--color-bg-dark);
  margin-bottom: 8px;
}

.contact-form-panel .form-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-bg-dark);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(179, 143, 30, 0.08);
}

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

/* --- MINIMAL MAP WRAPPER --- */
.map-section-wrapper {
  margin-top: 60px;
  height: 380px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: relative;
  border: var(--border-light);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px;
}

.map-placeholder svg {
  width: 52px;
  height: 52px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 20px;
}

.map-placeholder h4 {
  font-size: 1.35rem;
  color: var(--color-bg-dark);
  margin-bottom: 10px;
}

.map-placeholder p {
  color: var(--color-text-muted);
  max-width: 480px;
  font-size: 0.95rem;
}

/* --- THEME TOGGLE BUTTON --- */
.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-light);
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
  background-color: rgba(179, 143, 30, 0.08);
  transform: rotate(15deg);
}

/* --- FOOTER STYLES (DARK SLEEK SECTION) --- */
.footer {
  background-color: #0b0c0e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 90px 0 40px;
  color: var(--color-text-light-muted);
}

.footer h1,
.footer h2,
.footer h3,
.footer h4 {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-gold-light);
  margin-top: 10px;
}

.footer-about .footer-logo-link {
  display: block;
  margin-bottom: 24px;
}

.footer-about img {
  max-height: 55px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold-light);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  opacity: 0.7;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-legal-links a {
  font-size: 0.82rem;
}

.footer-legal-links a:hover {
  color: var(--color-gold-light);
}

.footer-designer-credit {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.footer-designer-credit a {
  color: var(--color-gold-light);
  opacity: 0.7;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.footer-designer-credit a:hover {
  opacity: 1;
  color: var(--color-gold-light);
}

/* --- LIGHT/DARK MODE IMPLEMENTATION OVERRIDES --- */
/* (The main site is now Light base. The .light-theme class actually represents the default behavior,
   and we will allow the JS toggler to swap classes or toggle a body class called .dark-theme if users prefer Dark mode,
   but we want the default theme to be LIGHT and clean like Anglo American.
   Let's design a .dark-theme overrides class so that the toggle continues to work, but defaults to Light.) */

body.dark-theme {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
  color: #ffffff;
}

body.dark-theme .section-title {
  color: #ffffff;
}

body.dark-theme .section-title span {
  color: var(--color-gold-light);
}

body.dark-theme .section-subtitle {
  color: var(--color-text-light-muted);
}

body.dark-theme .section-alt {
  background-color: var(--color-bg-dark-card);
}

body.dark-theme .glass-panel {
  background-color: rgba(24, 25, 28, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

body.dark-theme .btn-secondary:hover {
  background-color: #ffffff;
  color: var(--color-bg-dark);
}

body.dark-theme .header {
  background-color: rgba(15, 16, 18, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-theme .header.scrolled {
  background-color: rgba(15, 16, 18, 0.95);
}

body.dark-theme .hamburger-line {
  background-color: #ffffff;
}

body.dark-theme .page-banner {
  background-color: var(--color-bg-dark-card);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.dark-theme .page-banner::before {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

body.dark-theme .page-title {
  color: #ffffff;
}

body.dark-theme .page-banner-desc {
  color: var(--color-text-light-muted);
}

body.dark-theme .nav-cta-btn {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #ffffff;
}

body.dark-theme .stat-block {
  background-color: rgba(24, 25, 28, 0.3);
}

body.dark-theme .stat-block p {
  color: var(--color-text-light);
}

body.dark-theme .split-text h3 {
  color: #ffffff;
}

body.dark-theme .split-text p {
  color: var(--color-text-light-muted);
}

body.dark-theme .service-card {
  background-color: rgba(24, 25, 28, 0.6);
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark-theme .service-card-title {
  color: #ffffff;
}

body.dark-theme .service-card-desc {
  color: var(--color-text-light-muted);
}

body.dark-theme .service-list-item {
  color: var(--color-text-light);
}

body.dark-theme .service-card-list {
  border-top-color: rgba(255, 255, 255, 0.05);
}

body.dark-theme .carousel-container {
  background-color: rgba(24, 25, 28, 0.4);
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark-theme .carousel-slide-title {
  color: #ffffff;
}

body.dark-theme .carousel-slide-desc {
  color: var(--color-text-light-muted);
}

body.dark-theme .carousel-btn {
  background-color: rgba(24, 25, 28, 0.85);
  border-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

body.dark-theme .carousel-btn:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

body.dark-theme .carousel-dot {
  background-color: rgba(255, 255, 255, 0.2);
}

body.dark-theme .mv-title {
  color: #ffffff;
}

body.dark-theme .mv-list li {
  color: var(--color-text-light);
}

body.dark-theme .mentorship-card {
  background-color: rgba(24, 25, 28, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .mentor-meta h4 {
  color: #ffffff;
}

body.dark-theme .mentorship-content p {
  color: var(--color-text-light-muted);
}

body.dark-theme .profile-table tr {
  background-color: rgba(24, 25, 28, 0.7);
}

body.dark-theme .profile-table tr:hover {
  background-color: rgba(179, 143, 30, 0.03);
}

body.dark-theme .profile-table td.label-cell {
  color: #ffffff;
}

body.dark-theme .profile-table td.value-cell {
  color: var(--color-text-light-muted);
}

body.dark-theme .profile-table th {
  background-color: var(--color-bg-dark-card);
  color: #ffffff;
}

body.dark-theme .contact-info-panel h3 {
  color: #ffffff;
}

body.dark-theme .contact-info-panel {
  background-color: rgba(24, 25, 28, 0.6);
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark-theme .contact-text-box p {
  color: var(--color-text-light-muted);
}

body.dark-theme .ref-details {
  background-color: rgba(255, 255, 255, 0.02);
}

body.dark-theme .ref-details p {
  color: var(--color-text-light-muted);
}

body.dark-theme .ref-details strong {
  color: #ffffff;
}

body.dark-theme .contact-form-panel {
  background-color: rgba(24, 25, 28, 0.6);
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark-theme .contact-form-panel h3 {
  color: #ffffff;
}

body.dark-theme .contact-form-panel .form-subtitle {
  color: var(--color-text-light-muted);
}

body.dark-theme .form-group label {
  color: #ffffff;
}

body.dark-theme .form-control {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.dark-theme .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

body.dark-theme .form-control:focus {
  background-color: var(--color-bg-dark);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

body.dark-theme .map-placeholder {
  background-color: var(--color-bg-dark-card);
}

body.dark-theme .map-placeholder h4 {
  color: #ffffff;
}

body.dark-theme .map-placeholder p {
  color: var(--color-text-light-muted);
}


/* --- MEDIA QUERIES (Responsive Web Design) --- */

@media (max-width: 1024px) {
  .split-section {
    gap: 40px;
  }

  .split-media img {
    height: 400px;
  }

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

  .carousel-slide {
    grid-template-columns: 5fr 5fr;
  }

  .carousel-content-panel {
    padding: 36px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .nav-menu {
    gap: 22px;
  }

  .page-banner-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .page-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-actions .nav-cta-btn {
    display: none;
    /* Hide CTA button on mobile */
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    transform: none;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-base);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1050;
  }

  body.dark-theme .nav-menu {
    background-color: var(--color-bg-dark-card);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links-mobile-cta {
    display: block;
    margin-top: 20px;
    width: 100%;
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
  }

  .page-banner {
    padding: 100px 0 60px;
  }

  .page-banner-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .page-banner-desc {
    max-width: 100%;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .overlapping-stats {
    margin-top: 20px;
  }

  .stats-glass-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-media {
    order: -1;
  }

  .split-media img {
    height: 320px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
  }

  .carousel-img-panel {
    height: 280px;
  }

  .carousel-content-panel {
    padding: 32px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-card {
    padding: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-form-panel {
    padding: 36px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-glass-row {
    grid-template-columns: 1fr;
  }

  .profile-table th,
  .profile-table td {
    padding: 14px 18px;
    font-size: 0.82rem;
  }

  .profile-table td.label-cell {
    width: 42%;
  }
}
/* ============================================================
   ABOUT PAGE REDESIGN — CSS ONLY
   Safe scoped overrides: HTML remains unchanged.
   The :has(#storySection) selector limits shared banner styles
   to the About page without requiring a new body class.
   ============================================================ */

/* ---------- ABOUT PAGE BANNER ---------- */
body:has(#storySection) .page-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  align-items: center;
  padding: 155px 0 88px;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.18), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(179, 143, 30, 0.10), transparent 32%),
    linear-gradient(120deg, #090a0c 0%, #15171b 52%, #0d0e10 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

body:has(#storySection) .page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent 0%, #000 40%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 40%, #000 100%);
}

body:has(#storySection) .page-banner::after {
  content: '';
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  bottom: -190px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(212, 175, 55, 0.035),
    0 0 0 110px rgba(212, 175, 55, 0.02);
  z-index: -1;
  pointer-events: none;
}

body:has(#storySection) .page-banner-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

body:has(#storySection) .page-banner-left {
  position: relative;
}

body:has(#storySection) .page-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
}

body:has(#storySection) .page-breadcrumbs a {
  color: var(--color-gold-light);
}

body:has(#storySection) .page-breadcrumbs a:hover {
  color: #ffffff;
}

body:has(#storySection) .page-breadcrumbs .bc-sep {
  color: rgba(212, 175, 55, 0.65);
}

body:has(#storySection) .page-title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.25rem, 6vw, 4.35rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: #ffffff;
}

body:has(#storySection) .page-title span {
  display: block;
  margin-top: 8px;
  color: var(--color-gold-light);
}

body:has(#storySection) .page-banner-right {
  position: relative;
  padding: 34px 0 34px 34px;
  border-left: 1px solid rgba(212, 175, 55, 0.50);
}

body:has(#storySection) .page-banner-right::before {
  content: 'PLAATJIES';
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--color-gold-light);
}

body:has(#storySection) .page-banner-desc {
  max-width: 520px;
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);
}

/* ---------- WHO WE ARE / CORPORATE PROFILE ---------- */
#storySection {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
}

#storySection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 143, 30, 0.30), transparent);
}

#storySection .split-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(48px, 7vw, 86px);
  align-items: center;
}

#storySection .split-text {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

#storySection .split-text::before {
  display: none;
}

#storySection .section-title,
#storySection .section-title[style] {
  margin-bottom: 28px !important;
  font-size: clamp(2rem, 3.3vw, 2.7rem);
  line-height: 1.08;
}

#storySection .section-title::after {
  margin: 15px 0 0;
  width: 44px;
}

#storySection .split-text p {
  margin-bottom: 20px;
  color: #59616d;
  font-size: 0.98rem;
  line-height: 1.86;
}

#storySection .split-text p:last-child {
  margin-bottom: 0;
}

#storySection .split-text strong {
  color: #17191c;
  font-weight: 700;
}

#storySection .split-section > div:last-child {
  position: relative;
}

#storySection .about-feature-img {
  height: 100%;
  min-height: 460px;
}

#storySection .about-feature-img img {
  height: 100%;
  min-height: 460px;
}

#storySection .profile-table-wrapper,
#storySection .profile-table-wrapper.glass-panel {
  margin-top: 0;
  overflow: hidden;
  background: #111214;
  border: 1px solid rgba(212, 175, 55, 0.22) !important;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(15, 16, 18, 0.14);
  transform: none;
}

#storySection .profile-table-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 78px rgba(15, 16, 18, 0.17);
}

#storySection .profile-table {
  background: transparent;
}

#storySection .profile-table tr {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

#storySection .profile-table tr:last-child {
  border-bottom: 0;
}

#storySection .profile-table tr:hover {
  background: rgba(212, 175, 55, 0.07);
}

#storySection .profile-table td {
  padding: 22px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: middle;
}

#storySection .profile-table tr:last-child td {
  border-bottom: none;
}

#storySection .profile-table td.label-cell {
  width: 38%;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

#storySection .profile-table td.value-cell {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ---------- EXPERIENCE & STRATEGIC SUPPORT ---------- */
#mentorshipSection {
  position: relative;
  overflow: hidden;
  padding: 115px 0 125px;
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.10), transparent 22%),
    linear-gradient(180deg, #f6f7f8 0%, #eef0f2 100%);
}

#mentorshipSection::after {
  content: 'EXPERIENCE';
  position: absolute;
  right: -18px;
  top: 52px;
  z-index: 0;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(15, 16, 18, 0.025);
  pointer-events: none;
}

#mentorshipSection .container {
  position: relative;
  z-index: 1;
}

#mentorshipSection .text-center {
  max-width: 820px;
  margin: 0 auto 54px;
}

#mentorshipSection .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

#mentorshipSection .section-subtitle {
  margin-bottom: 0;
  max-width: 700px;
  line-height: 1.75;
}

#mentorshipSection .split-section {
  align-items: stretch !important;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

#mentorshipSection .split-section > div {
  position: relative;
  padding: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 16, 18, 0.07);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(15, 16, 18, 0.06);
}

#mentorshipSection .split-section > div::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 72px;
  border-radius: 18px 0 4px 0;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
}

#mentorshipSection .split-section h3 {
  margin-bottom: 18px;
  padding-left: 2px;
  font-size: 1.55rem;
  line-height: 1.25;
  color: #17191c;
}

#mentorshipSection .split-section p {
  color: #646b75;
  font-size: 0.95rem;
  line-height: 1.8;
}

#mentorshipSection .split-text > p:last-child {
  margin-bottom: 0;
}

#mentorshipSection .mv-list {
  display: grid;
  gap: 10px;
}

#mentorshipSection .mv-list li {
  margin-bottom: 0;
  padding: 13px 15px;
  align-items: center;
  background: #f8f8f7;
  border: 1px solid rgba(15, 16, 18, 0.055);
  border-radius: 10px;
  color: #34383f;
}

#mentorshipSection .mv-list li svg {
  width: 17px;
  height: 17px;
  margin-top: 0;
  padding: 2px;
  stroke: var(--color-gold);
}

#mentorshipSection .mentorship-card,
#mentorshipSection .mentorship-card.glass-panel {
  margin-top: 0;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(179, 143, 30, 0.18);
  border-left: 3px solid var(--color-gold);
  border-radius: 14px;
  box-shadow: none;
}

#mentorshipSection .mentorship-card:hover {
  transform: none;
  box-shadow: none;
}

#mentorshipSection .mentor-profile {
  gap: 18px;
  margin-bottom: 20px;
}

#mentorshipSection .mentor-avatar-initials {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  background: linear-gradient(145deg, #d8b649, #8e6d10);
  border: 4px solid rgba(255,255,255,0.75);
  box-shadow: 0 8px 25px rgba(179, 143, 30, 0.22);
}

#mentorshipSection .mentor-meta h4 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

#mentorshipSection .mentor-meta p {
  margin: 0;
  font-size: 0.71rem;
  line-height: 1.45;
}

#mentorshipSection .mentorship-content p {
  margin-bottom: 12px;
  color: #5e6570;
}

#mentorshipSection .split-section > div:last-child > h3[style] {
  margin-top: 30px !important;
  margin-bottom: 13px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 16, 18, 0.08);
}

#mentorshipSection .split-section > div:last-child > p[style] {
  color: #646b75 !important;
  margin-top: 0 !important;
  margin-bottom: 12px;
}

/* ---------- SLOGAN CTA ---------- */
#sloganCta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 18% 40%, rgba(212, 175, 55, 0.14), transparent 22%),
    linear-gradient(115deg, #0b0c0e 0%, #17191d 56%, #0e0f11 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

#sloganCta::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -160px;
  right: -130px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(212, 175, 55, 0.025), 0 0 0 130px rgba(212, 175, 55, 0.015);
}

#sloganCta .container {
  max-width: 860px;
}

#sloganCta h2[style] {
  margin-bottom: 18px !important;
  font-size: clamp(2.45rem, 5vw, 4.1rem) !important;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #ffffff !important;
}

#sloganCta h2[style]::after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  margin: 24px auto 0;
  border-radius: 5px;
  background: var(--color-gold-light);
}

#sloganCta p[style] {
  max-width: 660px !important;
  margin: 0 auto 34px !important;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 1.02rem !important;
  line-height: 1.8;
}

#sloganCta .btn-primary {
  min-width: 180px;
  padding: 15px 30px;
  background: var(--color-gold-light);
  color: #101113;
  border: 1px solid var(--color-gold-light);
  border-radius: 5px;
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.18);
}

#sloganCta .btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #101113;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

/* ---------- ABOUT PAGE DARK THEME COMPATIBILITY ---------- */
body.dark-theme:has(#storySection) #storySection {
  background: linear-gradient(180deg, #101113 0%, #151619 100%);
}

body.dark-theme:has(#storySection) #storySection .split-text {
  background: transparent;
  border: 0;
}

body.dark-theme:has(#storySection) #storySection .split-text p,
body.dark-theme:has(#storySection) #storySection .split-text strong {
  color: rgba(255,255,255,0.72);
}

body.dark-theme:has(#storySection) #mentorshipSection {
  background: linear-gradient(180deg, #121316 0%, #18191c 100%);
}

body.dark-theme:has(#storySection) #mentorshipSection .split-section > div {
  background: rgba(25, 26, 30, 0.88);
  border-color: rgba(255,255,255,0.07);
}

body.dark-theme:has(#storySection) #mentorshipSection .split-section h3,
body.dark-theme:has(#storySection) #mentorshipSection .mentor-meta h4 {
  color: #ffffff;
}

body.dark-theme:has(#storySection) #mentorshipSection .split-section p,
body.dark-theme:has(#storySection) #mentorshipSection .mentorship-content p,
body.dark-theme:has(#storySection) #mentorshipSection .split-section > div:last-child > p[style] {
  color: var(--color-text-light-muted) !important;
}

body.dark-theme:has(#storySection) #mentorshipSection .mv-list li {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
}

body.dark-theme:has(#storySection) #mentorshipSection .mentorship-card,
body.dark-theme:has(#storySection) #mentorshipSection .mentorship-card.glass-panel {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(255,255,255,0.025));
}

/* ---------- ABOUT RESPONSIVE ---------- */
@media (max-width: 1024px) {
  body:has(#storySection) .page-banner {
    min-height: 430px;
    padding: 140px 0 78px;
  }

  body:has(#storySection) .page-banner-content {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
  }

  body:has(#storySection) .page-title {
    font-size: clamp(3rem, 6.3vw, 4.3rem);
  }

  #storySection .split-section {
    gap: 34px;
  }

  #storySection .split-text {
    padding: 0;
  }

  #mentorshipSection .split-section > div {
    padding: 34px;
  }

  #mentorshipSection .split-section {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  body:has(#storySection) .page-banner {
    min-height: auto;
    padding: 124px 0 66px;
  }

  body:has(#storySection) .page-banner-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body:has(#storySection) .page-title {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  body:has(#storySection) .page-banner-right {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.40);
  }

  body:has(#storySection) .page-banner-right::before {
    margin-bottom: 12px;
  }

  #storySection,
  #mentorshipSection {
    padding: 80px 0;
  }

  #storySection .split-section,
  #mentorshipSection .split-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #storySection .split-text {
    padding: 0;
  }

  #mentorshipSection .split-section > div {
    padding: 30px 26px;
    border-radius: 14px;
  }

  #storySection .about-feature-img,
  #storySection .about-feature-img img {
    min-height: 320px;
  }

  #storySection .profile-table td {
    padding: 18px 18px;
  }

  #storySection .profile-table td.label-cell {
    width: 40%;
  }

  #mentorshipSection .text-center {
    margin-bottom: 38px;
  }

  #mentorshipSection::after {
    top: 30px;
    right: -5px;
  }

  #sloganCta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  body:has(#storySection) .page-banner {
    padding: 112px 0 54px;
  }

  body:has(#storySection) .page-breadcrumbs {
    font-size: 0.66rem;
  }

  body:has(#storySection) .page-title {
    font-size: 2.65rem;
  }

  body:has(#storySection) .page-banner-desc {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  #storySection .split-text {
    padding: 0;
  }

  #mentorshipSection .split-section > div {
    padding: 26px 21px;
  }

  #storySection .profile-table-wrapper {
    overflow-x: visible;
  }

  #storySection .profile-table,
  #storySection .profile-table tbody,
  #storySection .profile-table tr,
  #storySection .profile-table td {
    display: block;
    width: 100%;
  }

  #storySection .profile-table tr {
    padding: 15px 18px;
  }

  #storySection .profile-table td {
    padding: 0;
    border: 0;
  }

  #storySection .profile-table td.label-cell {
    width: 100%;
    margin-bottom: 6px;
    font-size: 0.66rem;
  }

  #storySection .profile-table td.value-cell {
    font-size: 0.88rem;
  }

  #mentorshipSection .mentor-profile {
    align-items: flex-start;
  }

  #mentorshipSection .mentor-avatar-initials {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    font-size: 1.25rem;
  }

  #sloganCta h2[style] {
    font-size: 2.35rem !important;
  }

  #sloganCta .btn-primary {
    width: 100%;
  }
}
/* ========================================================================
   UNIFIED SITE REDESIGN — HOME + SERVICES + CONTACT
   Appended after the existing stylesheet to preserve legacy behaviour.
   ======================================================================== */

:root {
  --site-gold: #c7a33b;
  --site-gold-bright: #e2c15c;
  --site-ink: #0b0c0f;
  --site-charcoal: #14161a;
  --site-slate: #20232a;
  --site-line: rgba(255, 255, 255, 0.12);
  --site-soft-line: rgba(15, 16, 18, 0.08);
  --site-radius-lg: 24px;
  --site-radius-md: 16px;
}

/* Shared button used on dark heroes */
.btn-hero-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-hero-outline:hover {
  color: var(--site-ink);
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.section-kicker,
.inner-hero-kicker,
.map-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-gold);
}
.section-kicker::before,
.inner-hero-kicker::before,
.map-kicker::before {
  content: '';
  width: 26px;
  height: 2px;
  background: currentColor;
}

/* ---------- UNIFIED INNER PAGE HERO ---------- */
.services-page .inner-hero,
.contact-page .inner-hero {
  min-height: 68vh;
  padding: 130px 0 78px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  background: var(--site-ink);
}
.services-page .inner-hero-bg,
.contact-page .inner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  opacity: .62;
  transform: scale(1.02);
  filter: saturate(.8) contrast(1.08);
}
.services-page .inner-hero-overlay,
.contact-page .inner-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7,8,10,.96) 0%, rgba(7,8,10,.84) 46%, rgba(7,8,10,.36) 82%, rgba(7,8,10,.48) 100%),
    linear-gradient(0deg, rgba(7,8,10,.82) 0%, rgba(7,8,10,.05) 55%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.inner-hero-shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
}
.services-page .inner-hero-content,
.contact-page .inner-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.services-page .inner-hero-breadcrumbs,
.contact-page .inner-hero-breadcrumbs {
  margin-bottom: 26px;
  color: rgba(255,255,255,.52);
}
.services-page .inner-hero-breadcrumbs a,
.contact-page .inner-hero-breadcrumbs a { color: var(--site-gold-bright); }
.inner-hero-kicker { color: var(--site-gold-bright); margin-bottom: 18px; }
.services-page .inner-hero-title,
.contact-page .inner-hero-title {
  max-width: 820px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}
.services-page .inner-hero-title span,
.contact-page .inner-hero-title span { color: var(--site-gold-bright); }
.services-page .inner-hero-subtitle,
.contact-page .inner-hero-subtitle {
  max-width: 690px;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0;
}
.inner-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.inner-hero-proof {
  width: 190px;
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: 30px;
  display: grid;
  gap: 20px;
}
.hero-proof-item { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.11); }
.hero-proof-item:last-child { padding-bottom: 0; border-bottom: 0; }
.hero-proof-item strong {
  display: block;
  color: var(--site-gold-bright);
  font-family: var(--font-heading);
  font-size: 1.32rem;
  line-height: 1.15;
  margin-bottom: 6px;
}
.hero-proof-item span {
  display: block;
  color: rgba(255,255,255,.56);
  font-family: var(--font-heading);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* ---------- SERVICES PAGE ---------- */
.services-page #servicesGridSection { background: #f7f7f5; }
.services-page #servicesGridSection .section-subtitle { max-width: 760px; }
.services-page #servicesGridSection .services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px;
}
.services-page .service-card {
  border-radius: 18px;
  border: 1px solid rgba(10,12,15,.075);
  background: #fff;
  box-shadow: 0 16px 45px rgba(8,10,14,.055);
  overflow: hidden;
  position: relative;
}
.services-page .service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  z-index: 4;
  background: linear-gradient(var(--site-gold-bright), var(--color-gold));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
}
.services-page .service-card:hover::before { transform: scaleY(1); }
.services-page .service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 70px rgba(8,10,14,.10); }
.services-page .service-image-wrapper { height: 235px; }
.services-page .service-image-wrapper img { filter: saturate(.78) contrast(1.04); }
.services-page .service-card-overlay {
  background: linear-gradient(to top, rgba(10,12,15,.55), rgba(10,12,15,0) 68%);
}
.services-page .service-card-body { padding: 30px 30px 32px; }
.services-page .service-card-icon {
  width: 46px; height: 46px; margin-top: -53px; margin-bottom: 24px;
  position: relative; z-index: 3; border-radius: 12px;
  background: var(--site-charcoal); box-shadow: 0 10px 24px rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.08);
}
.services-page .service-card-icon svg { stroke: var(--site-gold-bright); }
.services-page .service-card-title { font-size: 1.25rem; letter-spacing: -.02em; }
.services-page .service-card-desc { line-height: 1.72; }
.services-page .service-list-item svg { stroke: var(--color-gold); }
.services-page #labour { max-width: 1000px !important; margin-top: 24px !important; }
.services-page #labour > .service-card { flex-direction: row !important; background: var(--site-charcoal); }
.services-page #labour .service-image-wrapper { width: 42% !important; height: 330px !important; }
.services-page #labour .service-card-body { padding: 42px !important; }
.services-page #labour .service-card-title,
.services-page #labour .service-list-item { color: #fff; }
.services-page #labour .service-card-desc { color: rgba(255,255,255,.62); }
.services-page #labour .service-card-list { border-color: rgba(255,255,255,.12); }
.services-page #labour .service-card-icon { margin-top: 0; background: var(--site-gold); }
.services-page #labour .service-card-icon svg { stroke: #fff; }
.services-page #safetySection { background: #fff; }
.services-page #safetySection .split-media { border: 0; border-radius: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.12); }
.services-page #safetySection .split-media::after { transform: translate(18px,18px); border-color: rgba(199,163,59,.5); }

/* ---------- CONTACT PAGE ---------- */
.contact-page #contactMainSection { background: #f6f6f4; }
.contact-page .contact-grid { grid-template-columns: .82fr 1.18fr; gap: 26px; align-items: stretch; }
.contact-page .contact-info-panel,
.contact-page .contact-form-panel {
  border: 1px solid rgba(10,12,15,.07);
  background: #fff;
  backdrop-filter: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(7,9,12,.055);
}
.contact-page .contact-info-panel { padding: 44px 40px; }
.contact-page .contact-form-panel { padding: 44px; }
.contact-page .contact-info-panel h3,
.contact-page .contact-form-panel h3 { font-size: 1.65rem; letter-spacing: -.025em; }
.contact-page .contact-item { padding: 18px 0; margin: 0; border-bottom: 1px solid rgba(10,12,15,.07); }
.contact-page .contact-item:last-of-type { border-bottom: 0; }
.contact-page .contact-icon-box { border-radius: 12px; background: rgba(199,163,59,.09); }
.contact-page .contact-text-box h4 { font-size: .7rem; }
.contact-page .contact-text-box p { color: #343943; }
.contact-page .reference-card { margin-top: 28px; }
.contact-page .ref-details { background: #f7f6f2; border-radius: 10px; }
.contact-page .form-control {
  border-radius: 10px;
  padding: 15px 16px;
  background: #fafaf9;
  border-color: rgba(10,12,15,.10);
}
.contact-page .form-control:focus { background: #fff; }
.contact-page .contact-form-panel .btn-primary { border-radius: 8px; min-height: 52px; }

.location-map-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 470px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--site-charcoal);
  box-shadow: 0 24px 70px rgba(7,9,12,.10);
}
.location-map-copy {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.location-map-copy::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px; border-radius: 50%;
  right: -140px; bottom: -140px;
  border: 1px solid rgba(226,193,92,.25);
  box-shadow: 0 0 0 45px rgba(226,193,92,.035), 0 0 0 90px rgba(226,193,92,.02);
}
.map-kicker { color: var(--site-gold-bright); }
.location-map-copy h3 { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.location-map-copy p { color: rgba(255,255,255,.62); line-height: 1.75; margin-bottom: 26px; }
.map-directions-link {
  display: inline-flex; align-items: center; gap: 10px;
  width: fit-content; color: var(--site-gold-bright);
  font-family: var(--font-heading); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
}
.map-directions-link:hover { color: #fff; }
.location-map-frame { min-height: 470px; background: #dedede; }
.location-map-frame iframe { display: block; width: 100%; height: 100%; min-height: 470px; border: 0; filter: grayscale(.15) contrast(1.02); }

/* ---------- HOME HERO CAROUSEL ---------- */
.home-hero-carousel {
  position: relative;
  min-height: 94vh;
  height: max(720px, 94vh);
  background: var(--site-ink);
  overflow: hidden;
  isolation: isolate;
}
.home-hero-track,
.home-hero-slide { position: absolute; inset: 0; }
.home-hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .8s ease, visibility .8s ease, transform 6.5s ease;
}
.home-hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.home-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -5; }
.home-hero-overlay {
  position: absolute; inset: 0; z-index: -4;
  background:
    linear-gradient(90deg, rgba(6,7,9,.96) 0%, rgba(6,7,9,.78) 48%, rgba(6,7,9,.18) 80%, rgba(6,7,9,.42) 100%),
    linear-gradient(0deg, rgba(6,7,9,.88) 0%, transparent 45%);
}
.home-hero-accent {
  position: absolute; inset: 0; z-index: -3; pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 66%, rgba(226,193,92,.18) 66% 66.08%, transparent 66.08%),
    radial-gradient(circle at 82% 22%, rgba(226,193,92,.15), transparent 22%);
}
.home-hero-content-wrap { height: 100%; display: flex; align-items: center; padding-top: 62px; padding-bottom: 130px; }
.home-hero-content { max-width: 820px; }
.home-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px;
  font-family: var(--font-heading); font-size: .75rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--site-gold-bright);
}
.home-hero-eyebrow::before { content:''; width:32px; height:2px; background:currentColor; }
.home-hero-content h1,
.home-hero-content h2 {
  color: #fff;
  font-size: clamp(3.7rem, 6.4vw, 2.25rem);
  line-height: .93;
  letter-spacing: -.055em;
  margin: 0 0 28px;
  max-width: 1000px;
}
.home-hero-content h1 span,
.home-hero-content h2 span { color: var(--site-gold-bright); }
.home-hero-content p { max-width: 700px; color: rgba(255,255,255,.74); font-size: 1.08rem; line-height: 1.75; margin-bottom: 36px; }
.home-hero-controls-wrap {
  position: absolute; z-index: 8; left: 50%; transform: translateX(-50%); bottom: 104px;
  width: 100%; display: flex; justify-content: space-between; align-items: center;
}
.home-hero-progress { display: flex; gap: 14px; }
.home-hero-dot {
  appearance: none; border: 0; background: transparent; color: rgba(255,255,255,.45);
  display: grid; grid-template-columns: auto 52px; gap: 10px; align-items: center; cursor: pointer;
  font-family: var(--font-heading); font-size: .68rem; font-weight: 800;
}
.home-hero-dot i { display:block; width:52px; height:2px; background:rgba(255,255,255,.18); position:relative; overflow:hidden; }
.home-hero-dot.is-active { color: var(--site-gold-bright); }
.home-hero-dot.is-active i::after { content:''; position:absolute; inset:0; background:var(--site-gold-bright); animation: heroProgress 6.5s linear forwards; }
@keyframes heroProgress { from{transform:translateX(-100%)} to{transform:translateX(0)} }
.home-hero-arrows { display: flex; gap: 9px; }
.home-hero-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.05); color:#fff; font-size:1.2rem; cursor:pointer;
  backdrop-filter: blur(10px); transition: .25s ease;
}
.home-hero-arrow:hover { background: var(--site-gold); border-color:var(--site-gold); transform:translateY(-2px); }
.home-hero-trustbar { position:absolute; z-index:7; left:0; right:0; bottom:0; height:80px; border-top:1px solid rgba(255,255,255,.12); background:rgba(7,8,10,.72); backdrop-filter:blur(14px); }
.home-trust-grid { height:100%; display:grid; grid-template-columns:repeat(4,1fr); }
.home-trust-grid > div { display:flex; align-items:center; gap:12px; border-right:1px solid rgba(255,255,255,.10); padding:0 26px; }
.home-trust-grid > div:first-child { padding-left:0; }
.home-trust-grid > div:last-child { border-right:0; }
.home-trust-grid strong { color:var(--site-gold-bright); font-family:var(--font-heading); font-size:.9rem; }
.home-trust-grid span { color:rgba(255,255,255,.5); font-family:var(--font-heading); font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }

/* ---------- HOME BODY ---------- */
.home-intro-section { padding: 115px 0 105px; }
.home-intro-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:100px; align-items:start; }
.home-intro-heading .section-title { text-align:left; display:block; margin-bottom:0; }
.home-intro-heading .section-title::after { margin-left:0; }
.home-intro-copy { padding-top:20px; max-width:660px; }
.home-intro-copy p { color:var(--color-text-muted); font-size:1.06rem; line-height:1.85; margin-bottom:28px; }
.text-link-gold { color:var(--color-gold); font-family:var(--font-heading); font-size:.78rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.text-link-gold span { margin-left:8px; transition:transform .25s ease; display:inline-block; }
.text-link-gold:hover span { transform:translateX(5px); }
.home-services-showcase { padding:110px 0; }
.home-section-head { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:46px; }
.home-section-head .section-title { text-align:left; display:block; margin:0; }
.home-section-head .section-title::after { margin-left:0; }
.home-service-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:18px; min-height:520px; }
.home-service-tile { position:relative; min-height:520px; border-radius:20px; overflow:hidden; isolation:isolate; box-shadow:0 24px 60px rgba(0,0,0,.08); }
.home-service-tile img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-3; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.home-service-shade { position:absolute; inset:0; z-index:-2; background:linear-gradient(0deg, rgba(7,8,10,.92), rgba(7,8,10,.12) 70%); }
.home-service-tile::after { content:''; position:absolute; inset:0; z-index:-1; border:1px solid rgba(255,255,255,.12); border-radius:inherit; pointer-events:none; }
.home-service-tile:hover img { transform:scale(1.06); }
.home-service-content { position:absolute; left:0; right:0; bottom:0; padding:36px; color:#fff; }
.home-service-content > span { color:var(--site-gold-bright); font-family:var(--font-heading); font-size:.7rem; font-weight:800; letter-spacing:.1em; }
.home-service-content h3 { color:#fff; font-size:1.55rem; margin:10px 0 10px; }
.home-service-content p { color:rgba(255,255,255,.62); font-size:.9rem; max-width:380px; margin-bottom:20px; }
.home-service-content b { color:var(--site-gold-bright); font-family:var(--font-heading); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; }
.home-value-section { padding:120px 0; }
.home-value-grid { display:grid; grid-template-columns:1fr .92fr; gap:90px; align-items:center; }
.home-value-copy .section-title { display:block; text-align:left; }
.home-value-copy .section-title::after { margin-left:0; }
.home-value-copy > p { color:var(--color-text-muted); line-height:1.8; max-width:650px; margin-bottom:34px; }
.home-value-list { border-top:1px solid var(--site-soft-line); }
.home-value-list > div { display:grid; grid-template-columns:52px 1fr; gap:18px; padding:22px 0; border-bottom:1px solid var(--site-soft-line); }
.home-value-list > div > span { color:var(--color-gold); font-family:var(--font-heading); font-size:.75rem; font-weight:800; }
.home-value-list p { color:var(--color-text-muted); font-size:.92rem; margin:0; }
.home-value-list strong { color:var(--site-ink); font-family:var(--font-heading); }
.home-value-visual { position:relative; border-radius:24px; overflow:hidden; min-height:610px; box-shadow:0 28px 80px rgba(0,0,0,.12); }
.home-value-visual img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.home-value-visual::after { content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(7,8,10,.55), transparent 55%); }
.home-value-badge { position:absolute; z-index:2; left:28px; bottom:28px; width:145px; height:145px; border-radius:50%; background:var(--site-gold); display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; box-shadow:0 16px 40px rgba(0,0,0,.18); }
.home-value-badge strong { font-family:var(--font-heading); font-size:1.3rem; }
.home-value-badge span { font-family:var(--font-heading); font-size:.65rem; text-transform:uppercase; letter-spacing:.12em; opacity:.8; }
.home-cta-band { padding:90px 0; background:var(--site-charcoal); position:relative; overflow:hidden; }
.home-cta-band::after { content:''; position:absolute; width:420px; height:420px; border-radius:50%; border:1px solid rgba(226,193,92,.18); right:-180px; top:-210px; box-shadow:0 0 0 70px rgba(226,193,92,.025),0 0 0 140px rgba(226,193,92,.015); }
.home-cta-inner { position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:50px; }
.home-cta-inner h2 { color:#fff; font-size:clamp(2.4rem,4vw,4.2rem); line-height:1.03; letter-spacing:-.04em; margin:0; }
.home-cta-inner h2 span { color:var(--site-gold-bright); }
.home-cta-actions { display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }

/* ---------- NAV / FOOTER POLISH ---------- */
.header { background:rgba(13,14,17,.94); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); }
.nav-cta-btn { border-radius:6px; }
.footer { background:#0b0c0f; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-page .inner-hero,
  .contact-page .inner-hero { min-height:62vh; }
  .inner-hero-shell { grid-template-columns:1fr; gap:36px; }
  .inner-hero-proof { width:100%; grid-template-columns:repeat(3,1fr); border-left:0; border-top:1px solid rgba(255,255,255,.15); padding:24px 0 0; gap:0; }
  .hero-proof-item { border-bottom:0; border-right:1px solid rgba(255,255,255,.12); padding:0 24px; }
  .hero-proof-item:first-child { padding-left:0; }
  .hero-proof-item:last-child { border-right:0; }
  .services-page #servicesGridSection .services-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
  .contact-page .contact-grid { grid-template-columns:1fr; }
  .location-map-card { grid-template-columns:1fr; }
  .location-map-copy { padding:40px; }
  .location-map-frame, .location-map-frame iframe { min-height:420px; }
  .home-hero-content h1,.home-hero-content h2 { font-size:clamp(3.4rem,7.2vw,5.3rem); }
  .home-intro-grid { gap:55px; }
  .home-service-grid { grid-template-columns:1fr 1fr; }
  .home-service-featured { grid-column:1 / -1; min-height:460px; }
  .home-service-tile:not(.home-service-featured) { min-height:430px; }
  .home-value-grid { gap:55px; }
  .home-value-visual { min-height:540px; }
}

@media (max-width: 768px) {
  .nav-menu { background-color:#111317; }
  .nav-menu .nav-link { color:rgba(255,255,255,.78); }
  .nav-menu .nav-link:hover,.nav-menu .nav-link.active { color:var(--site-gold-bright); }
  .services-page .inner-hero,
  .contact-page .inner-hero { min-height:auto; padding:120px 0 58px; }
  .services-page .inner-hero-title,
  .contact-page .inner-hero-title { font-size:clamp(2.65rem,12vw,4rem); }
  .inner-hero-proof { grid-template-columns:repeat(3,1fr); }
  .hero-proof-item { padding:0 12px; }
  .services-page #servicesGridSection .services-grid { grid-template-columns:1fr !important; }
  .services-page #labour > .service-card { flex-direction:column !important; }
  .services-page #labour .service-image-wrapper { width:100% !important; height:260px !important; }
  .services-page #labour .service-card-body { padding:32px !important; }
  .contact-page .contact-info-panel,.contact-page .contact-form-panel { padding:32px 26px; }
  .location-map-copy { padding:34px 26px; }
  .location-map-frame,.location-map-frame iframe { min-height:360px; }

  .home-hero-carousel { min-height:760px; height:100svh; max-height:900px; }
  .home-hero-content-wrap { padding-top:95px; padding-bottom:165px; align-items:center; }
  .home-hero-content h1,.home-hero-content h2 { font-size:clamp(3rem,13vw,4.5rem); }
  .home-hero-content p { font-size:1rem; max-width:94%; }
  .home-hero-controls-wrap { bottom:108px; }
  .home-hero-dot { grid-template-columns:auto 30px; }
  .home-hero-dot i { width:30px; }
  .home-hero-trustbar { height:88px; }
  .home-trust-grid { grid-template-columns:repeat(2,1fr); }
  .home-trust-grid > div { padding:8px 12px; border-bottom:1px solid rgba(255,255,255,.08); }
  .home-trust-grid > div:first-child { padding-left:12px; }
  .home-intro-section,.home-services-showcase,.home-value-section { padding:80px 0; }
  .home-intro-grid,.home-value-grid { grid-template-columns:1fr; gap:36px; }
  .home-section-head { align-items:flex-start; flex-direction:column; }
  .home-service-grid { grid-template-columns:1fr; }
  .home-service-featured { grid-column:auto; }
  .home-service-tile,.home-service-featured,.home-service-tile:not(.home-service-featured) { min-height:430px; }
  .home-value-visual { min-height:460px; order:-1; }
  .home-cta-inner { align-items:flex-start; flex-direction:column; }
  .home-cta-actions { justify-content:flex-start; }
}

@media (max-width: 520px) {
  .inner-hero-actions,.home-hero-content .hero-actions { flex-direction:column; align-items:stretch; }
  .inner-hero-actions .btn,.home-hero-content .hero-actions .btn { width:100%; }
  .inner-hero-proof { display:none; }
  .home-hero-progress { gap:8px; }
  .home-hero-dot { grid-template-columns:auto 22px; gap:6px; }
  .home-hero-dot i { width:22px; }
  .home-hero-arrows { gap:6px; }
  .home-hero-arrow { width:42px; height:42px; }
  .home-service-content { padding:28px; }
  .home-value-visual { min-height:390px; }
  .home-value-badge { width:118px; height:118px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-slide,
  .home-hero-dot.is-active i::after,
  .home-service-tile img { transition:none !important; animation:none !important; }
}