/* =========================================================================
   O&G INDUSTRIES — SHARED DESIGN SYSTEM
   Palette: O&G Gold + Charcoal (kept from original ogind.com brand)
   Structural patterns inspired by kiewit.com (mega-menu, hero carousel,
   icon-links, overlay cards, stat counters, tabbed content, CTA banners)
   ========================================================================= */

:root {
  /* --- O&G Brand Palette --- */
  --og-gold: #b9975b;
  --og-gold-dark: #96793f;
  --og-gold-light: #d8c295;
  --og-charcoal: #1e1c1a;
  --og-charcoal-2: #2b2825;
  --og-charcoal-3: #3d3936;
  --og-white: #ffffff;
  --og-off-white: #f7f5f1;
  --og-gray: #6b6660;
  --og-gray-light: #e6e2db;
  --og-line: #d9d3c7;

  /* --- Type --- */
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;

  /* --- Layout --- */
  --container: 1280px;
  --header-h: 96px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--og-charcoal);
  background: var(--og-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  color: var(--og-charcoal);
  font-weight: 600;
  line-height: 1.15;
}
p { margin: 0 0 16px; color: var(--og-gray); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--og-gold);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--og-gold);
  color: #fff;
  border-color: var(--og-gold);
}
.btn-gold:hover { background: var(--og-gold-dark); border-color: var(--og-gold-dark); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: #fff; color: var(--og-charcoal); border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--og-charcoal);
  border-color: var(--og-charcoal);
}
.btn-outline-dark:hover { background: var(--og-charcoal); color: #fff; }
.btn i { transition: transform var(--transition); }
.btn:hover i { transform: translateX(4px); }

/* Icon-link pattern (Kiewit style: text + arrow, underline grows on hover) */
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--og-charcoal);
  position: relative;
  padding-bottom: 4px;
}
.icon-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--og-gold);
  transition: width var(--transition);
}
.icon-link:hover::after { width: 100%; }
.icon-link i { font-size: 12px; transition: transform var(--transition); }
.icon-link:hover i { transform: translateX(4px); }
.icon-link.light { color: #fff; }
.icon-link.light::after { background: var(--og-gold-light); }

/* =========================================================================
   TOP UTILITY BAR
   ========================================================================= */
.utility-bar {
  background: var(--og-charcoal);
  color: #cfc9bf;
  font-size: 12px;
}
.utility-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.utility-bar a { color: #cfc9bf; transition: color var(--transition); }
.utility-bar a:hover { color: var(--og-gold-light); }
.utility-bar .social a { margin-left: 14px; font-size: 13px; }

/* =========================================================================
   HEADER + MEGA MENU
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }
.brand-text { font-family: var(--font-head); line-height: 1.1; }
.brand-text strong { display: block; font-size: 16px; letter-spacing: 0.05em; color: var(--og-charcoal); }
.brand-text span { display: block; font-size: 10px; letter-spacing: 0.15em; color: var(--og-gold-dark); }

.main-nav { display: flex; align-items: center; height: 100%; }
.main-nav > ul { display: flex; height: 100%; }
.main-nav > ul > li { position: relative; display: flex; align-items: stretch; }
.main-nav > ul > li > a,
.main-nav > ul > li > button.nav-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--og-charcoal);
  background: none;
  border: none;
  height: 100%;
  position: relative;
  transition: color var(--transition);
}
.main-nav > ul > li > a::after,
.main-nav > ul > li > button.nav-toggle::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 0;
  height: 3px;
  background: var(--og-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav > ul > li:hover > a,
.main-nav > ul > li.open > button.nav-toggle,
.main-nav > ul > li > a.active {
  color: var(--og-gold-dark);
}
.main-nav > ul > li:hover > a::after,
.main-nav > ul > li.open > button.nav-toggle::after,
.main-nav > ul > li > a.active::after {
  transform: scaleX(1);
}
.main-nav > ul > li > button.nav-toggle i { font-size: 10px; transition: transform var(--transition); }
.main-nav > ul > li.open > button.nav-toggle i { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 12px 22px; }
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--og-charcoal);
  padding: 8px;
}

/* Mega menu panel */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--og-gold);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 999;
}
.main-nav > ul > li.has-mega:hover .mega-panel,
.main-nav > ul > li.has-mega.open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-panel .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.mega-col h4 {
  font-size: 12px;
  color: var(--og-gold-dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--og-line);
}
.mega-col ul li { margin-bottom: 10px; }
.mega-col ul li a {
  font-size: 14px;
  color: var(--og-charcoal-2);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.mega-col ul li a:hover { color: var(--og-gold-dark); padding-left: 4px; }
.mega-feature {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 180px;
}
.mega-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega-feature::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,28,26,0) 30%, rgba(30,28,26,0.85) 100%);
}
.mega-feature-text {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  color: #fff;
}
.mega-feature-text span { font-family: var(--font-head); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Mobile nav drawer */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(360px, 88vw);
  background: var(--og-charcoal);
  z-index: 1200;
  transition: right var(--transition);
  overflow-y: auto;
  padding: 20px 0 60px;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 0 20px 20px; border-bottom: 1px solid var(--og-charcoal-3); }
.mobile-nav-header img { height: 40px; }
.mobile-close { background: none; border: none; color: #fff; font-size: 22px; }
.mobile-nav ul.mobile-top > li { border-bottom: 1px solid var(--og-charcoal-3); }
.mobile-nav ul.mobile-top > li > a,
.mobile-nav ul.mobile-top > li > button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  padding: 16px 20px;
  background: none; border: none;
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  background: var(--og-charcoal-2);
}
.mobile-submenu.open { max-height: 1000px; }
.mobile-submenu li a {
  display: block;
  padding: 12px 20px 12px 36px;
  color: #cfc9bf;
  font-size: 13px;
  border-top: 1px solid var(--og-charcoal-3);
}
.mobile-nav-actions { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

/* =========================================================================
   HERO / CAROUSEL
   ========================================================================= */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  height: 88vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.hero-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,18,16,0.88) 0%, rgba(20,18,16,0.35) 55%, rgba(20,18,16,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--og-gold-light);
  font-family: var(--font-head);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
  border-left: 3px solid var(--og-gold);
  padding-left: 10px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 62px);
  color: #fff;
  margin-bottom: 18px;
}
.hero-sub { color: #e9e5dc; font-size: 17px; max-width: 620px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-quicklinks {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 40px;
}
.hero-quicklinks a {
  flex: 1 1 auto;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.25);
  transition: background var(--transition);
  text-align: center;
}
.hero-quicklinks a:hover { background: rgba(185,151,91,0.85); }

/* Hero Video Background (Vimeo embed, cropped to fill like object-fit: cover) */
.hero-video-wrap { background: var(--og-charcoal); }
.hero-video-slide {
  position: relative;
  height: 88vh;
  min-height: 560px;
  z-index: 1;
  overflow: hidden;
}
.hero-video-embed-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
}
.hero-video-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,18,16,0.88) 0%, rgba(20,18,16,0.35) 55%, rgba(20,18,16,0.15) 100%);
  z-index: 1;
}
.hero-video-slide .container { position: relative; z-index: 2; height: 100%; display: flex; align-items: flex-end; }
.hero-video-slide .hero-content { padding-bottom: 90px; }

.swiper-pagination { z-index: 3 !important; bottom: 20px !important; }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.6; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--og-gold) !important; }
.hero .swiper-button-next, .hero .swiper-button-prev { color: #fff !important; }
.hero .swiper-button-next:after, .hero .swiper-button-prev:after { font-size: 22px !important; }

/* Page (interior) hero - shorter */
.page-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  color: #fff;
  display: flex;
  align-items: center;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,18,16,0.92) 15%, rgba(20,18,16,0.55) 65%, rgba(20,18,16,0.3) 100%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero .breadcrumb { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--og-gold-light); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: #cfc9bf; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 4.5vw, 48px); margin-bottom: 12px; }
.page-hero p { color: #e9e5dc; font-size: 16px; max-width: 640px; margin-bottom: 0; }

/* =========================================================================
   SECTION HEADERS
   ========================================================================= */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-header { max-width: 720px; margin-bottom: 50px; }
.section-eyebrow {
  display: inline-block;
  color: var(--og-gold-dark);
  font-family: var(--font-head);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(26px, 3.5vw, 40px); }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-charcoal { background: var(--og-charcoal); color: #fff; }
.bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 { color: #fff; }
.bg-charcoal p { color: #cfc9bf; }
.bg-off { background: var(--og-off-white); }
.bg-gold { background: var(--og-gold); color: #fff; }
.bg-gold h2 { color: #fff; }

/* =========================================================================
   STATS BAND
   ========================================================================= */
.stats-band {
  background: var(--og-charcoal);
  color: #fff;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 0 10px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--og-gold);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}
.stat-label { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: #cfc9bf; margin-top: 8px; }

/* =========================================================================
   ABOUT / STAGGERED IMAGE STACK
   ========================================================================= */
.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.stagger-stack { position: relative; height: 520px; }
.stagger-stack img {
  position: absolute;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.stagger-stack .img-a { width: 58%; top: 0; left: 0; height: 60%; z-index: 2; }
.stagger-stack .img-c { width: 39%; top: 8%; right: 0; height: 50%; z-index: 2; }
.stagger-stack .img-b { width: 60%; bottom: 0; left: 12%; height: 46%; z-index: 3; }
.about-copy .lead { font-size: 19px; color: var(--og-charcoal-2); }
.about-list { margin-top: 26px; }
.about-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--og-line);
}
.about-list li:first-child { border-top: none; }
.about-list i { color: var(--og-gold); font-size: 18px; margin-top: 3px; }
.about-list strong { display: block; color: var(--og-charcoal); font-family: var(--font-head); font-size: 14px; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 4px; }

/* =========================================================================
   TABS (division/service tabbed content)
   ========================================================================= */
.tabs-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 50px; }
.tabs-nav { display: flex; flex-direction: column; border-top: 1px solid var(--og-line); }
.tabs-nav button {
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--og-line);
  padding: 18px 4px;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--og-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.tabs-nav button i { color: var(--og-gold); opacity: 0; transition: opacity var(--transition); font-size: 13px; }
.tabs-nav button.active { color: var(--og-charcoal); }
.tabs-nav button.active i { opacity: 1; }
.tabs-nav button:hover { color: var(--og-gold-dark); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; animation: fadeIn 0.4s ease; }
.tab-panel img { border-radius: 4px; box-shadow: var(--shadow-md); width: 100%; height: 360px; object-fit: cover; }
.tab-panel h3 { font-size: 26px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

/* Mobile tab arrow-nav fallback */
.tabs-mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-top: 1px solid var(--og-line);
  border-bottom: 1px solid var(--og-line);
  margin-bottom: 24px;
}
.tabs-mobile-nav .tabs-mobile-label {
  flex: 1;
  text-align: center;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--og-charcoal);
}
.tabs-mobile-nav button {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--og-line);
  background: #fff;
  color: var(--og-charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.tabs-mobile-nav button:hover { background: var(--og-gold); border-color: var(--og-gold); color: #fff; }

/* =========================================================================
   CARD GRIDS / OVERLAY CARDS (markets, news)
   ========================================================================= */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.overlay-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.overlay-card:hover { box-shadow: var(--shadow-md); }
.overlay-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.overlay-card:hover img { transform: scale(1.08); }
.overlay-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,18,16,0.92) 0%, rgba(20,18,16,0.35) 55%, rgba(20,18,16,0.05) 100%);
}
.overlay-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px;
  color: #fff;
}
.overlay-card-body h3 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.overlay-card-body .icon-link { opacity: 0.9; }

.simple-card {
  background: #fff;
  border: 1px solid var(--og-line);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.simple-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.simple-card img { height: 210px; width: 100%; object-fit: cover; }
.simple-card-body { padding: 22px; }
.simple-card-body .meta { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--og-gold-dark); margin-bottom: 8px; }
.simple-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.simple-card-body p { font-size: 14px; margin-bottom: 14px; }

/* Carousel (Swiper) for markets/news */
.card-swiper { padding-bottom: 50px !important; }
.card-swiper .swiper-pagination-bullet { background: var(--og-gray); }
.card-swiper .swiper-pagination-bullet-active { background: var(--og-gold); }
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrows button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--og-line);
  background: #fff;
  color: var(--og-charcoal);
  transition: all var(--transition);
}
.carousel-arrows button:hover { background: var(--og-gold); color: #fff; border-color: var(--og-gold); }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }

/* =========================================================================
   CTA BANNER
   ========================================================================= */
.cta-banner {
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-banner::before { content:''; position:absolute; inset:0; background: rgba(20,18,16,0.72); z-index: 1; }
.cta-banner-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #e9e5dc; font-size: 17px; }

/* =========================================================================
   VIDEO SPOTLIGHT
   ========================================================================= */
.video-spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.video-frame { position: relative; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-md); }
.video-frame img { width: 100%; height: 380px; object-fit: cover; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(185,151,91,0.92);
  color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(255,255,255,0.7);
  transition: transform var(--transition);
}
.video-frame:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }

/* =========================================================================
   VIDEO MODAL (small popup window triggered by [data-video-play] buttons)
   ========================================================================= */
.video-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,13,11,0.82);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: video-modal-fade-in 0.2s ease;
}
@keyframes video-modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
.video-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--og-charcoal);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.video-modal-body { position: relative; width: 100%; padding-top: 56.25%; }
.video-modal-body iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
.video-modal-close {
  position: absolute; top: -42px; right: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--og-charcoal);
  border: none; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--transition), color var(--transition);
}
.video-modal-close:hover { background: var(--og-gold); color: #fff; }
@media (max-width: 640px) {
  .video-modal { max-width: 92vw; }
  .video-modal-close { top: -40px; right: 4px; }
}

/* =========================================================================
   TIMELINE (About / History)
   ========================================================================= */
.timeline { position: relative; padding-left: 40px; border-left: 2px solid var(--og-line); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -46px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--og-gold); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--og-gold);
}
.timeline-item .year { font-family: var(--font-head); color: var(--og-gold-dark); font-size: 22px; margin-bottom: 6px; }

/* =========================================================================
   VALUES / ICON GRID
   ========================================================================= */
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.icon-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.icon-box { text-align: center; padding: 30px 18px; }
.icon-box .ic {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--og-off-white);
  border: 1px solid var(--og-line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--og-gold-dark);
  font-size: 26px;
}
.icon-box h4 { font-size: 16px; }
.icon-box p { font-size: 14px; margin-bottom: 0; }

/* =========================================================================
   FORMS
   ========================================================================= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--og-charcoal-2); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px; border: 1px solid var(--og-line); border-radius: 2px; font-family: var(--font-body); font-size: 15px; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--og-gold); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--og-charcoal); color: #cfc9bf; padding-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; padding-bottom: 50px; border-bottom: 1px solid var(--og-charcoal-3); }
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: #a89f92; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--og-charcoal-3);
  display: flex; align-items: center; justify-content: center;
  color: #cfc9bf; transition: all var(--transition);
}
.footer-social a:hover { background: var(--og-gold); border-color: var(--og-gold); color: #fff; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: #a89f92; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--og-gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: #8b8377;
}
.footer-bottom a { color: #8b8377; }
.footer-bottom a:hover { color: var(--og-gold-light); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* =========================================================================
   BREADCRUMB SPACER / MISC
   ========================================================================= */
.divider { height: 1px; background: var(--og-line); margin: 60px 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--og-off-white);
  border: 1px solid var(--og-line);
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--og-gold-dark);
  margin-bottom: 10px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--og-charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--og-gold); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
  .mega-panel .container { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.15); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .icon-grid, .icon-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .main-nav, .header-actions .btn.desktop-only { display: none; }
  .menu-btn { display: block; }
  .about-split, .video-spotlight { grid-template-columns: 1fr; }
  .stagger-stack { height: 380px; margin-bottom: 20px; }
  .tabs-wrap { grid-template-columns: 1fr; }
  .tabs-nav { display: none; }
  .tabs-mobile-nav { display: flex; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-panel img { height: 240px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --header-h: 76px; }
  .brand img { height: 44px; }
  .brand-text strong { font-size: 13px; }
  .brand-text span { font-size: 9px; }
  .hero, .hero-slide { height: 78vh; }
  .hero-content { padding-bottom: 50px; }
  .hero-quicklinks { display: none; }
  .section-pad { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; }
  .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .icon-grid, .icon-grid.cols-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding-bottom: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { height: 40vh; min-height: 280px; }
  .utility-bar .container { justify-content: center; }
}
