/* ==========================================================================
   KE GODWIN'S BUSINESS SOLUTIONS LTD - SECTIONS STYLES
   Editorial, Industrial, Bespoke Layouts
   ========================================================================== */

/* ==========================================================================
   1. NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 24px 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.brand-monogram {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e2638 0%, #111620 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-base);
}

.brand-logo:hover .brand-monogram {
  transform: rotate(4deg) scale(1.05);
  border-color: var(--color-gold-300);
}

.brand-monogram span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-ivory);
  line-height: 1.2;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-gold-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Mobile Hamburger */
.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all var(--transition-base);
  z-index: var(--z-header) + 1;
}

.mobile-nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--color-ivory);
  transition: all var(--transition-base);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-drawer.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-ivory-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.mobile-contact-card {
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-top: 24px;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 20%, rgba(201, 156, 83, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(23, 30, 44, 0.8) 0%, transparent 50%),
              var(--bg-primary);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-canvas);
  pointer-events: none;
  opacity: 0.45;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: var(--z-base);
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: var(--z-card);
}

.hero-content {
  max-width: 680px;
}

.hero-headline {
  margin-bottom: var(--space-6);
  line-height: 1.08;
}

.hero-headline .title-line {
  display: block;
}

.hero-subtext {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--color-ivory-muted);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

/* Hero Live Verified Badges */
.hero-badges-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.hero-badge-item strong {
  color: var(--color-ivory);
  font-weight: 600;
}

.hero-badge-item .badge-icon {
  color: var(--color-gold-400);
}

/* Hero Visual Composition */
.hero-visual-composition {
  position: relative;
}

.hero-main-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-deep);
  aspect-ratio: 4/3;
  background: var(--bg-surface);
}

.hero-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: rgba(17, 22, 32, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-deep);
  max-width: 280px;
  z-index: 3;
}

.hero-floating-card .card-metric {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-gold-300);
  line-height: 1;
}

.hero-floating-card .card-caption {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-hub-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--color-ivory);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

/* ==========================================================================
   3. COMPANY INTRODUCTION (WHO WE ARE)
   ========================================================================== */
.about-section {
  background: var(--bg-secondary);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-16);
  align-items: center;
}

.about-visual-cluster {
  position: relative;
}

.about-image-primary {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4/4;
}

.about-image-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-seal {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--color-gold-400);
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  z-index: 3;
}

.about-badge-seal .seal-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-gold-300);
  line-height: 1;
}

.about-badge-seal .seal-label {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--color-ivory-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.about-narrative {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-narrative p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Timeline Milestone Track */
.about-timeline-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.timeline-item {
  position: relative;
}

.timeline-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--color-gold-300);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ivory);
  margin-bottom: 2px;
}

.timeline-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.services-section {
  background: var(--bg-primary);
  position: relative;
}

.services-grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
  position: relative;
  min-height: 380px;
}

.service-card:nth-child(2) {
  transform: translateY(20px);
}

.service-card:hover {
  border-color: var(--border-gold);
  background: #141b27;
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.service-card:nth-child(2):hover {
  transform: translateY(12px);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-8);
}

.service-number {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gold-400);
  letter-spacing: 0.1em;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-300);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon-box {
  background: var(--color-gold-subtle-gradient);
  border-color: var(--color-gold-400);
  color: var(--color-gold-300);
  transform: scale(1.08);
}

.service-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--color-ivory);
}

.service-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.service-footer {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-action-btn {
  background: transparent;
  border: none;
  color: var(--color-gold-300);
  font-size: var(--text-xs);
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color var(--transition-fast);
}

.service-action-btn:hover {
  color: var(--color-ivory);
}

/* ==========================================================================
   5. PRODUCT SECTION (HARDWOOD CHARCOAL)
   ========================================================================== */
.spec-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d121c 100%);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.spec-editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
}

.spec-visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-deep);
}

.spec-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spec-visual-overlay-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.spec-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.spec-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.spec-feature-icon {
  color: var(--color-gold-300);
  margin-top: 2px;
  flex-shrink: 0;
}

.spec-feature-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-ivory);
  margin-bottom: 4px;
}

.spec-feature-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Machinery Sourcing Selector / Interactive Explorer */
.machinery-selector-box {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
}

.machinery-selector-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ivory);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.machinery-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-4);
}

.machinery-chip {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.machinery-chip:hover,
.machinery-chip.active {
  background: var(--color-gold-subtle-gradient);
  border-color: var(--color-gold-400);
  color: var(--color-gold-300);
}

/* ==========================================================================
   6. STATS & VERIFIED METRICS SECTION
   ========================================================================== */
.stats-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat-block {
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-4);
  border-left: 2px solid var(--border-gold);
  transition: transform var(--transition-base);
}

.stat-block:hover {
  transform: translateY(-4px);
}

.stat-counter-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-ivory);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-gold-300);
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ivory-muted);
  margin-bottom: 2px;
}

.stat-sublabel {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ==========================================================================
   7. WHY CHOOSE US (EDITORIAL BENTO GRID)
   ========================================================================== */
.why-section {
  background: var(--bg-primary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.bento-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.bento-card.featured {
  background: linear-gradient(135deg, #151d2c 0%, #111620 100%);
  border-color: var(--border-medium);
}

.bento-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-300);
  margin-bottom: var(--space-6);
}

.bento-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-ivory);
}

.bento-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   8. GLOBAL BUSINESS & NETWORK SECTION
   ========================================================================== */
.global-section {
  background: radial-gradient(circle at 50% 50%, #131926 0%, var(--bg-primary) 80%);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.global-network-container {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-2xl);
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.global-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
}

.global-network-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.global-hub-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(11, 14, 20, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-gold-300);
  margin-bottom: var(--space-4);
}

.global-corridors-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.global-corridor-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.global-corridor-item .route-badge {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-gold-400);
}

/* ==========================================================================
   9. LEADERSHIP & CEO SECTION
   ========================================================================== */
.leadership-section {
  background: var(--bg-primary);
}

.leadership-card-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-12);
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-2xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-deep);
}

.leadership-portrait-wrapper {
  position: relative;
}

.leadership-image-frame {
  aspect-ratio: 4/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-deep);
  position: relative;
}

.leadership-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leadership-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-deep);
}

.leadership-monogram-large {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--color-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-gold-300);
  flex-shrink: 0;
}

.leadership-portrait-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #18202e 0%, #0d121c 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.leadership-portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201, 156, 83, 0.15) 0%, transparent 60%);
}

.leadership-monogram-large {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--color-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--color-gold-300);
}

.leadership-badge-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-gold-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.leadership-name {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-ivory);
  line-height: 1.15;
}

.leadership-designation {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-gold-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.leadership-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-ivory-muted);
  line-height: 1.6;
  border-left: 2px solid var(--color-gold-400);
  padding-left: var(--space-4);
  margin: var(--space-2) 0;
}

/* ==========================================================================
   10. TRUST & QUALITY SECTION
   ========================================================================== */
.quality-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quality-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.quality-step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-base);
}

.quality-step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.quality-step-badge {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold-400);
  margin-bottom: var(--space-4);
  display: block;
}

/* ==========================================================================
   11. CLOSING HIGH-IMPACT CTA SECTION
   ========================================================================== */
.closing-cta-section {
  background: radial-gradient(circle at 50% 50%, #1a2233 0%, var(--bg-primary) 100%);
  position: relative;
  text-align: center;
}

.closing-cta-box {
  background: linear-gradient(135deg, rgba(23, 30, 44, 0.95) 0%, rgba(17, 22, 32, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 4rem);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}

.closing-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 156, 83, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.closing-cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: var(--space-4);
  color: var(--color-ivory);
}

.closing-cta-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.closing-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ==========================================================================
   12. CONTACT SECTION & LEKKI MAP
   ========================================================================== */
.contact-section {
  background: var(--bg-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-12);
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-card-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-300);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-ivory);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-detail-value:hover {
  color: var(--color-gold-300);
}

/* Interactive Map Container */
.map-embed-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  height: 240px;
  position: relative;
  background: #111620;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-badge-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--color-gold-300);
  border: 1px solid var(--border-gold);
}

/* Contact Form Styling */
.contact-form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-deep);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--color-ivory-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold-400);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px var(--color-gold-glow);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

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

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.site-footer {
  background: #07090d;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  color: var(--text-muted);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-ivory);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-gold-300);
}

.footer-bottom {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: 0.85rem;
  color: #e6e3da;
}

.footer-copyright-text {
  color: #ffffff;
  font-size: 0.825rem;
  line-height: 1.6;
}

.footer-copyright-text .company-highlight {
  color: #dfb76c;
  font-weight: 600;
}

.footer-copyright-text .designer-highlight {
  color: #dfb76c;
  font-weight: 600;
}

.footer-copyright-text a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-copyright-text a:hover {
  color: #dfb76c;
}

.footer-partner-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.footer-partner-logo-link:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.footer-partner-logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
