/* ============================================
   NWAEKPO GROUP - Premium Brand Identity
   Deep Green & Gold | Earthy Elegance
   ============================================ */

/* --- CSS Custom Properties (Brand Tokens) --- */
:root {
  /* Primary Palette */
  --green-deep:     #0D2818;
  --green-dark:     #1B3D2F;
  --green-mid:      #2D5A3D;
  --green-light:    #4A7C59;
  --green-sage:     #7A9E7E;
  --green-pale:     #C5D5C0;

  /* Gold Accent Palette */
  --gold-rich:      #C8A45C;
  --gold-light:     #D4B97A;
  --gold-pale:      #E8D5A8;
  --gold-glow:      #F0E6C8;

  /* Neutrals */
  --charcoal:       #1A1A1A;
  --dark-gray:      #2C2C2C;
  --mid-gray:       #5A5A5A;
  --light-gray:     #8A8A8A;
  --silver:         #B0B0B0;
  --off-white:      #F5F2EC;
  --ivory:          #FAF8F4;
  --pure-white:     #FFFFFF;

  /* Functional */
  --overlay-dark:   rgba(13, 40, 24, 0.85);
  --overlay-medium: rgba(13, 40, 24, 0.6);
  --overlay-light:  rgba(13, 40, 24, 0.3);
  --gold-overlay:   rgba(200, 164, 92, 0.15);

  /* Typography */
  --font-display:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:      'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:    'Cormorant Garamond', Georgia, serif;

  /* Spacing Scale */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-xxl:  10rem;

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:   0.3s;
  --duration-medium:  0.6s;
  --duration-slow:    1s;
  --duration-slower:  1.5s;

  /* Layout */
  --max-width:     1400px;
  --nav-height:    80px;
  --border-gold:   1px solid var(--gold-rich);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--pure-white);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--gold-rich);
  color: var(--pure-white);
}

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

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

ul, ol {
  list-style: none;
}


/* --- Typography System --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pure-white);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}

.heading-sm {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.body-lg {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
}

.body-md {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.body-sm {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.accent-text {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-rich);
}


/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.section-pad {
  padding: var(--space-xxl) 0;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-rich);
  display: block;
}

.gold-line-center {
  width: 60px;
  height: 2px;
  background: var(--gold-rich);
  display: block;
  margin: 0 auto;
}

.text-gold {
  color: var(--gold-rich);
}

.text-green {
  color: var(--green-dark);
}

.text-white {
  color: var(--pure-white);
}

.bg-green-deep {
  background-color: var(--green-deep);
}

.bg-green-dark {
  background-color: var(--green-dark);
}

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

.bg-off-white {
  background-color: var(--off-white);
}


/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--duration-medium) var(--ease-smooth);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 40, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 70px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  transition: height var(--duration-medium) var(--ease-smooth);
}

.navbar.scrolled .nav-logo-img {
  height: 38px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: font-size var(--duration-medium) var(--ease-smooth);
}

.navbar.scrolled .nav-logo-text {
  font-size: 1.2rem;
}

.nav-logo-text span {
  color: var(--gold-rich);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-rich);
  transition: width var(--duration-medium) var(--ease-smooth);
}

.nav-link:hover {
  color: var(--gold-rich);
}

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

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold-rich);
  padding: 12px 28px;
  border: 1px solid var(--gold-rich);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-cta:hover {
  background: transparent;
  color: var(--gold-rich);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pure-white);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s var(--ease-smooth);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.05);
  transition: transform 8s var(--ease-smooth);
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 40, 24, 0.7) 0%,
    rgba(13, 40, 24, 0.4) 40%,
    rgba(13, 40, 24, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.3s var(--ease-out) forwards;
}

.hero-label .gold-line {
  width: 40px;
}

.hero-label span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-rich);
}

.hero-title {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.5s var(--ease-out) forwards;
}

.hero-title .display-xl {
  color: var(--pure-white);
}

.hero-title .display-xl em {
  font-style: italic;
  color: var(--gold-rich);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.7s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s 0.9s var(--ease-out) forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  animation: heroFadeUp 1s 1.2s var(--ease-out) forwards;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-rich), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* Hero Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 40px;
  right: clamp(2rem, 5vw, 4rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-slider-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  font-size: 1.2rem;
}

.hero-slider-btn:hover {
  border-color: var(--gold-rich);
  color: var(--gold-rich);
  background: rgba(200, 164, 92, 0.1);
}

.hero-slider-counter {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}

.hero-slider-counter .current {
  color: var(--gold-rich);
  font-weight: 600;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-rich);
  color: var(--green-deep);
  border: 1px solid var(--gold-rich);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 164, 92, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--gold-rich);
  color: var(--gold-rich);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
}

.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-rich);
  border: none;
  padding: 16px 0;
  font-weight: 500;
}

.btn-ghost::after {
  content: '→';
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.btn-ghost:hover::after {
  transform: translateX(5px);
}


/* ============================================
   INTRO / ABOUT SECTION
   ============================================ */
.intro-section {
  background: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-overlay), transparent);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.intro-content {
  position: relative;
}

.intro-label {
  margin-bottom: 1.5rem;
}

.intro-title {
  margin-bottom: 1.5rem;
}

.intro-title .heading-lg {
  color: var(--green-dark);
}

.intro-title .heading-lg em {
  font-style: italic;
  color: var(--gold-rich);
}

.intro-text {
  margin-bottom: 2rem;
  color: var(--mid-gray);
}

.intro-text p {
  margin-bottom: 1rem;
}

.intro-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold-pale);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-number span {
  color: var(--gold-rich);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
}

.intro-visual {
  position: relative;
}

.intro-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 3px solid var(--gold-pale);
}

.intro-image-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 55%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border: 4px solid var(--pure-white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(13, 40, 24, 0.3);
  z-index: 2;
}

.intro-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-rich);
  line-height: 1;
}

.intro-badge .badge-text {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.3;
}


/* ============================================
   DIVISIONS SECTION
   ============================================ */
.divisions-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.divisions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/texture-marble.jpg') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.divisions-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.divisions-header .label {
  color: var(--gold-rich);
  margin-bottom: 1rem;
  display: block;
}

.divisions-header .display-md {
  color: var(--pure-white);
}

.divisions-header .display-md em {
  font-style: italic;
  color: var(--gold-rich);
}

.divisions-header p {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.division-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.division-card-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.division-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(13, 40, 24, 0.6) 60%,
    rgba(13, 40, 24, 0.9) 100%
  );
  transition: background var(--duration-medium) var(--ease-smooth);
}

.division-card:hover .division-card-overlay {
  background: linear-gradient(
    180deg,
    transparent 10%,
    rgba(13, 40, 24, 0.7) 50%,
    rgba(13, 40, 24, 0.95) 100%
  );
}

.division-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 2;
}

.division-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold-rich);
  font-size: 1.2rem;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.division-card:hover .division-card-icon {
  background: var(--gold-rich);
  color: var(--green-deep);
}

.division-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}

.division-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-medium) var(--ease-smooth),
              opacity var(--duration-medium) var(--ease-smooth);
  opacity: 0;
}

.division-card:hover .division-card-desc {
  max-height: 200px;
  opacity: 1;
}

.division-card-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-rich);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-medium) var(--ease-smooth);
}

.division-card:hover .division-card-link {
  opacity: 1;
  transform: translateY(0);
}

.division-card-link::after {
  content: '→';
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.division-card:hover .division-card-link::after {
  transform: translateX(4px);
}

/* Featured Division (Full Width) */
.division-featured {
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  height: 500px;
}

.division-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.division-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(13, 40, 24, 0.9) 0%,
    rgba(13, 40, 24, 0.6) 50%,
    transparent 100%
  );
}

.division-featured-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 600px;
  padding: clamp(2rem, 5vw, 4rem);
  z-index: 2;
}

.division-featured-content .label {
  color: var(--gold-rich);
  margin-bottom: 1rem;
  display: block;
}

.division-featured-content .heading-lg {
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.division-featured-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}


/* ============================================
   PORTFOLIO / PROJECTS SECTION
   ============================================ */
.portfolio-section {
  background: var(--ivory);
  position: relative;
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: 2rem;
}

.portfolio-header-left .label {
  color: var(--gold-rich);
  margin-bottom: 1rem;
  display: block;
}

.portfolio-header-left .display-md {
  color: var(--green-dark);
}

.portfolio-header-left .display-md em {
  font-style: italic;
  color: var(--gold-rich);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.portfolio-item.tall .portfolio-item-image {
  aspect-ratio: auto;
  height: 100%;
}

.portfolio-item:hover .portfolio-item-image {
  transform: scale(1.1);
}

.portfolio-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(13, 40, 24, 0.85) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-medium) var(--ease-smooth);
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--duration-medium) var(--ease-smooth);
}

.portfolio-item:hover .portfolio-item-content {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-item-category {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 0.5rem;
}

.portfolio-item-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pure-white);
}


/* ============================================
   VALUES / PILLARS SECTION
   ============================================ */
.values-section {
  background: var(--pure-white);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value-item {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--gold-pale);
  position: relative;
  transition: all var(--duration-medium) var(--ease-smooth);
}

.value-item:last-child {
  border-right: none;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-rich);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-medium) var(--ease-smooth);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item:hover {
  background: var(--green-deep);
}

.value-icon {
  font-size: 2rem;
  color: var(--gold-rich);
  margin-bottom: 1.5rem;
}

.value-item:hover .value-icon {
  color: var(--gold-light);
}

.value-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold-rich);
  margin-bottom: 1rem;
  font-style: italic;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.value-item:hover .value-title {
  color: var(--pure-white);
}

.value-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.value-item:hover .value-desc {
  color: rgba(255,255,255,0.7);
}


/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership-section {
  background: var(--off-white);
  position: relative;
}

.leadership-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.leadership-header .label {
  color: var(--gold-rich);
  margin-bottom: 1rem;
  display: block;
}

.leadership-header .display-md {
  color: var(--green-dark);
}

.leadership-header .display-md em {
  font-style: italic;
  color: var(--gold-rich);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

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

.leader-image-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 3/4;
}

.leader-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, rgba(13, 40, 24, 0.3));
  pointer-events: none;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.leader-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.leader-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-rich);
}


/* ============================================
   QUOTE / BANNER SECTION
   ============================================ */
.quote-section {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-rich);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--pure-white);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-author-line {
  width: 40px;
  height: 1px;
  background: var(--gold-rich);
}

.quote-author-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-rich);
}


/* ============================================
   NEWSLETTER / CTA SECTION
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200, 164, 92, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(200, 164, 92, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  position: relative;
}

.newsletter-content .label {
  color: var(--gold-rich);
  margin-bottom: 1rem;
  display: block;
}

.newsletter-content .heading-lg {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
}

.newsletter-content .heading-lg em {
  font-style: italic;
  color: var(--gold-rich);
}

.newsletter-content p {
  color: rgba(255,255,255,0.6);
}

.newsletter-form {
  position: relative;
}

.newsletter-input-wrap {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.newsletter-input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-rich);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-btn {
  white-space: nowrap;
}

.newsletter-disclaimer {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-input-wrap {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 1px solid rgba(255,255,255,0.2);
  }
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  background: var(--pure-white);
  position: relative;
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.news-header-left .label {
  color: var(--gold-rich);
  margin-bottom: 1rem;
  display: block;
}

.news-header-left .heading-lg {
  color: var(--green-dark);
}

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

.news-card {
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.news-card-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 0.75rem;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.news-card:hover .news-card-title {
  color: var(--gold-rich);
}

.news-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
}


/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(200, 164, 92, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200, 164, 92, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
}

.contact-info {
  position: relative;
}

.contact-info .label {
  color: var(--gold-rich);
  margin-bottom: 1rem;
  display: block;
}

.contact-info .heading-lg {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 164, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-rich);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 0.3rem;
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.contact-form {
  position: relative;
}

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

.form-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 0.75rem;
  display: block;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: all var(--duration-fast) var(--ease-smooth);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold-rich);
  background: rgba(255,255,255,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

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

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

.form-select option {
  background: var(--green-dark);
  color: var(--pure-white);
}

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

.form-submit {
  margin-top: 0.5rem;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0a1f14;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(200, 164, 92, 0.15);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 45px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo-text span {
  color: var(--gold-rich);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-social-link:hover {
  border-color: var(--gold-rich);
  color: var(--gold-rich);
  background: rgba(200, 164, 92, 0.1);
}

.footer-column-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 1.5rem;
}

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

.footer-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-link:hover {
  color: var(--gold-rich);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

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

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--duration-fast) var(--ease-smooth);
}

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


/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.8s var(--ease-smooth),
              visibility 0.8s var(--ease-smooth);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  height: 60px;
  opacity: 0;
  animation: preloaderFade 1s 0.2s var(--ease-out) forwards;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: preloaderFade 1s 0.4s var(--ease-out) forwards;
}

.preloader-text span {
  color: var(--gold-rich);
}

.preloader-line {
  width: 60px;
  height: 2px;
  background: var(--gold-rich);
  opacity: 0;
  animation: preloaderFade 1s 0.6s var(--ease-out) forwards,
             preloaderPulse 1.5s 0.8s infinite;
}

@keyframes preloaderFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.5); opacity: 0.5; }
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green-dark);
  border: 1px solid var(--gold-rich);
  color: var(--gold-rich);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-rich);
  color: var(--green-deep);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .divisions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .leader-card:nth-child(4) {
    display: none;
  }

  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-top > div:last-child {
    display: none;
  }
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 65px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--green-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: right var(--duration-medium) var(--ease-smooth);
  }

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

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-title .display-xl {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-slider-controls {
    display: none;
  }

  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .division-card-image {
    aspect-ratio: 4/3;
  }

  .division-card-desc {
    max-height: 200px;
    opacity: 1;
  }

  .division-card-link {
    opacity: 1;
    transform: translateY(0);
  }

  .division-featured {
    height: 400px;
  }

  .division-featured-overlay {
    background: rgba(13, 40, 24, 0.85);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: none;
    border-bottom: 1px solid var(--gold-pale);
  }

  .value-item:last-child {
    border-bottom: none;
  }

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

  .leader-card:nth-child(4) {
    display: block;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-item.tall {
    grid-row: span 1;
  }

  .intro-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat-item {
    flex: 1;
    min-width: 120px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section-pad {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.75rem;
  }
}

/* ============================================
   PREMIUM ENHANCEMENTS
   ============================================ */

/* Smooth image loading */
img {
  transition: opacity 0.6s var(--ease-smooth), transform var(--duration-slow) var(--ease-smooth);
}

img.loaded {
  opacity: 1;
}

/* Ensure critical images are always visible */
.hero-slide img,
.nav-logo-img,
.footer-logo-img,
.preloader-logo {
  opacity: 1;
}

/* Gold shimmer animation on hero title */
.hero-title .display-xl em {
  position: relative;
  background: linear-gradient(
    90deg,
    var(--gold-rich) 0%,
    var(--gold-light) 25%,
    #f0d890 50%,
    var(--gold-light) 75%,
    var(--gold-rich) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Divider ornament */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider-ornament .line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
}

.divider-ornament .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-rich);
  transform: rotate(45deg);
}

/* Section transition decorations */
.section-top-border {
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold-pale) 20%, 
    var(--gold-rich) 50%, 
    var(--gold-pale) 80%, 
    transparent 100%
  );
  opacity: 0.4;
}

/* Enhanced form focus states */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold-rich);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.1);
}

/* Leader card enhanced hover */
.leader-card:hover .leader-image-wrap::after {
  background: linear-gradient(transparent, rgba(200, 164, 92, 0.2));
}

/* Enhanced footer decoration */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold-rich) 30%, 
    var(--gold-light) 50%, 
    var(--gold-rich) 70%, 
    transparent 100%
  );
}

/* Smooth page transitions */
main {
  opacity: 0;
  animation: pageReveal 1s 1.5s var(--ease-out) forwards;
}

@keyframes pageReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Division card border glow on hover */
.division-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color var(--duration-medium) var(--ease-smooth);
  z-index: 5;
  pointer-events: none;
}

.division-card:hover::after {
  border-color: rgba(200, 164, 92, 0.3);
}

/* Portfolio item number overlay */
.portfolio-item-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  z-index: 2;
  transition: color var(--duration-medium) var(--ease-smooth);
}

.portfolio-item:hover .portfolio-item-number {
  color: rgba(200, 164, 92, 0.4);
}

/* Contact form floating label effect */
.form-group {
  position: relative;
}

.form-input,
.form-textarea {
  position: relative;
  z-index: 1;
}

/* Footer brand decorative line */
.footer-brand::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-rich);
  margin-top: 1.5rem;
  opacity: 0.5;
}

/* Nav menu mobile overlay */
.nav-menu::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200, 164, 92, 0.05), transparent 70%);
  pointer-events: none;
}

/* Values section decorative background */
.values-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200, 164, 92, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* Smooth scrolling body enhancement */
html {
  scroll-behavior: smooth;
}

/* Custom selection color for gold sections */
.bg-green-deep ::selection {
  background: var(--gold-rich);
  color: var(--green-deep);
}

/* Hover underline animation for footer links */
.footer-link {
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-rich);
  transition: width var(--duration-fast) var(--ease-smooth);
}

.footer-link:hover::after {
  width: 100%;
}

/* Leader card subtle border on hover */
.leader-card {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--duration-medium) var(--ease-smooth);
}

.leader-card:hover {
  border-bottom-color: var(--gold-rich);
}

/* Back to top pulse */
.back-to-top.visible {
  animation: backToTopPulse 3s infinite;
}

@keyframes backToTopPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 164, 92, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(200, 164, 92, 0); }
}

/* Enhanced hero scroll indicator */
.hero-scroll:hover .hero-scroll-line {
  animation-duration: 1s;
}

.hero-scroll:hover span {
  color: var(--gold-rich);
}

/* Portfolio section subtle pattern */
.portfolio-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(transparent, var(--ivory));
  pointer-events: none;
  z-index: 1;
}

/* News card bottom border animation */
.news-card {
  position: relative;
  padding-bottom: 2rem;
}

.news-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-rich);
  transition: width var(--duration-medium) var(--ease-smooth);
}

.news-card:hover::after {
  width: 100%;
}

/* Intro section decorative circle */
.intro-section::after {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(200, 164, 92, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
