/*
Theme Name: URI Mining
Theme URI: https://www.universalresources.com
Author: Universal Resources International
Author URI: https://www.universalresources.com
Description: A premium, minimal, corporate WordPress theme for Universal Resources International — a Kenya-based manganese mining and exploration company. Built for Elementor compatibility with full-width templates, custom header/footer support, and investment-grade brand credibility.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Private
License URI: #
Text Domain: uri-mining
Tags: elementor, full-width, corporate, mining, one-page, business, professional

*/

/* ============================================================
   CSS CUSTOM PROPERTIES — URI BRAND SYSTEM
   ============================================================ */
:root {
  /* Brand Colors */
  --uri-navy:        #0A254A;
  --uri-navy-light:  #0e2f60;
  --uri-navy-dark:   #061830;
  --uri-gold:        #D4A537;
  --uri-gold-light:  #e8be5a;
  --uri-gold-dark:   #b88a28;

  /* Neutral Palette */
  --uri-white:       #FFFFFF;
  --uri-off-white:   #F4F5F7;
  --uri-light-gray:  #E8EAED;
  --uri-mid-gray:    #9AA3AF;
  --uri-dark-gray:   #3D4754;
  --uri-charcoal:    #1A2433;

  /* Semantic */
  --uri-text-primary:   #1A2433;
  --uri-text-secondary: #4A5568;
  --uri-text-muted:     #7A8694;
  --uri-border:         #DDE1E7;
  --uri-divider:        rgba(10, 37, 74, 0.08);

  /* Typography */
  --font-display:   'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-heading:   'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-body:      'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:      'JetBrains Mono', 'Courier New', monospace;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-sm:   640px;
  --container-md:   768px;
  --container-lg:   1024px;
  --container-xl:   1280px;
  --container-2xl:  1440px;
  --container-max:  1600px;

  /* Effects */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(10,37,74,0.08), 0 1px 2px rgba(10,37,74,0.04);
  --shadow-md:   0 4px 16px rgba(10,37,74,0.10), 0 2px 4px rgba(10,37,74,0.06);
  --shadow-lg:   0 10px 40px rgba(10,37,74,0.14), 0 4px 12px rgba(10,37,74,0.08);
  --shadow-xl:   0 20px 60px rgba(10,37,74,0.18), 0 8px 20px rgba(10,37,74,0.10);
  --shadow-gold: 0 4px 20px rgba(212, 165, 55, 0.30);

  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Header */
  --header-height: 80px;
  --header-height-scrolled: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--uri-text-primary);
  background-color: var(--uri-white);
  overflow-x: hidden;
}

body.admin-bar {
  margin-top: 0 !important;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--uri-navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, var(--text-6xl)); }
h2 { font-size: clamp(1.875rem, 3.5vw, var(--text-5xl)); }
h3 { font-size: clamp(1.5rem, 2.5vw, var(--text-3xl)); }
h4 { font-size: clamp(1.25rem, 2vw, var(--text-2xl)); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--uri-text-secondary);
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

strong { font-weight: 700; color: var(--uri-text-primary); }
em { font-style: italic; }

/* Eyebrow label — small uppercase label above headings */
.uri-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--uri-gold);
  margin-bottom: var(--space-4);
  position: relative;
  padding-left: var(--space-8);
}

.uri-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: var(--uri-gold);
}

/* ============================================================
   LAYOUT — CONTAINERS & GRID
   ============================================================ */
.uri-container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.uri-container--wide {
  max-width: var(--container-2xl);
}

.uri-container--narrow {
  max-width: var(--container-md);
}

.uri-section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.uri-section--sm {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.uri-section--lg {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

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

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

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background var(--transition-base),
              height var(--transition-base),
              box-shadow var(--transition-base);
}

#site-header.is-scrolled {
  height: var(--header-height-scrolled);
  background: var(--uri-navy);
  box-shadow: 0 2px 20px rgba(10,37,74,0.20);
}

#site-header.is-solid {
  background: var(--uri-navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-8);
  max-width: var(--container-2xl);
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.site-logo:hover img {
  opacity: 0.85;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-text .logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--uri-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.site-logo-text .logo-tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--uri-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Primary Navigation */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.primary-nav > ul > li {
  position: relative;
}

.primary-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.primary-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-4);
  right: var(--space-4);
  height: 2px;
  background: var(--uri-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current-menu-ancestor > a {
  color: var(--uri-white);
}

.primary-nav > ul > li > a:hover::after,
.primary-nav > ul > li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Dropdown */
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  min-width: 220px;
  background: var(--uri-navy);
  border: 1px solid rgba(212, 165, 55, 0.20);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .sub-menu li a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  transition: color var(--transition-fast), padding var(--transition-fast);
}

.primary-nav .sub-menu li a:hover {
  color: var(--uri-gold);
  padding-left: var(--space-8);
}

/* Has-submenu indicator */
.primary-nav .menu-item-has-children > a .nav-arrow {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.primary-nav .menu-item-has-children:hover > a .nav-arrow {
  transform: rotate(180deg);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--uri-gold);
  color: var(--uri-navy) !important;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-left: var(--space-4);
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--uri-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--uri-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

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

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

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

.uri-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.uri-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 24, 48, 0.85) 0%,
    rgba(10, 37, 74, 0.70) 50%,
    rgba(6, 24, 48, 0.60) 100%
  );
}

.uri-hero__bg--overlay-strong::after {
  background: linear-gradient(
    to right,
    rgba(6, 24, 48, 0.92) 0%,
    rgba(6, 24, 48, 0.75) 50%,
    rgba(6, 24, 48, 0.45) 100%
  );
}

.uri-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-32) var(--space-8) var(--space-16);
  width: 100%;
}

.uri-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.uri-hero__label span {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--uri-gold);
}

.uri-hero__label::before,
.uri-hero__label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--uri-gold);
}

.uri-hero__label::after {
  width: 20px;
  opacity: 0.5;
}

.uri-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--uri-white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.uri-hero__heading em {
  font-style: normal;
  color: var(--uri-gold);
  position: relative;
}

.uri-hero__subtext {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

.uri-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}

.uri-hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.uri-hero__scroll span {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.uri-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--uri-gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Primary Button */
.btn-primary {
  background: var(--uri-gold);
  color: var(--uri-navy);
  border-color: var(--uri-gold);
}

.btn-primary:hover {
  background: var(--uri-gold-light);
  border-color: var(--uri-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--uri-navy);
}

/* Outline Button (white) */
.btn-outline-white {
  background: transparent;
  color: var(--uri-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--uri-white);
  color: var(--uri-white);
}

/* Outline Button (navy) */
.btn-outline-navy {
  background: transparent;
  color: var(--uri-navy);
  border-color: var(--uri-navy);
}

.btn-outline-navy:hover {
  background: var(--uri-navy);
  color: var(--uri-white);
}

/* Secondary (text) Button */
.btn-text {
  background: transparent;
  color: var(--uri-gold);
  border: none;
  padding: var(--space-2) 0;
  gap: var(--space-2);
  letter-spacing: 0.06em;
}

.btn-text:hover {
  gap: var(--space-4);
  color: var(--uri-gold-dark);
}

/* Arrow Icon in buttons */
.btn-arrow {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================================
   STATS / METRICS BAR
   ============================================================ */
.uri-stats-bar {
  background: var(--uri-navy);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.uri-stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--uri-gold), transparent);
}

.uri-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.uri-stat {
  padding: var(--space-6) var(--space-8);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  position: relative;
  transition: background var(--transition-base);
}

.uri-stat:last-child {
  border-right: none;
}

.uri-stat:hover {
  background: rgba(212, 165, 55, 0.06);
}

.uri-stat__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--uri-gold);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.uri-stat__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.uri-stat__sub {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  margin-top: var(--space-1);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.uri-section-header {
  margin-bottom: var(--space-16);
}

.uri-section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-16);
}

.uri-section-header h2 {
  margin-bottom: var(--space-4);
}

.uri-section-header p {
  font-size: var(--text-lg);
  color: var(--uri-text-muted);
  line-height: 1.7;
}

.uri-divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--uri-gold), transparent);
  margin: var(--space-6) 0;
  border-radius: var(--radius-full);
}

.uri-section-header--center .uri-divider-gold {
  margin: var(--space-6) auto;
  background: var(--uri-gold);
  width: 48px;
}

/* ============================================================
   ABOUT SPLIT SECTION
   ============================================================ */
.uri-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: stretch;
}

.uri-about-split__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.uri-about-split__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.uri-about-split:hover .uri-about-split__image img {
  transform: scale(1.03);
}

.uri-about-split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,74,0.20), rgba(10,37,74,0.05));
}

.uri-about-split__content {
  padding: var(--space-20) var(--space-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--uri-white);
}

.uri-about-split__content--navy {
  background: var(--uri-navy);
  color: var(--uri-white);
}

.uri-about-split__content--navy h2,
.uri-about-split__content--navy h3,
.uri-about-split__content--navy p {
  color: var(--uri-white);
}

.uri-about-split__content--navy p {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   FEATURE CARDS / SERVICE CARDS
   ============================================================ */
.uri-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.uri-card {
  background: var(--uri-white);
  border: 1px solid var(--uri-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.uri-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--uri-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.uri-card:hover::before {
  transform: scaleX(1);
}

.uri-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(10, 37, 74, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: background var(--transition-base);
}

.uri-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--uri-navy);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition-fast);
}

.uri-card:hover .uri-card__icon {
  background: var(--uri-navy);
}

.uri-card:hover .uri-card__icon svg {
  stroke: var(--uri-gold);
}

.uri-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--uri-navy);
  margin-bottom: var(--space-3);
}

.uri-card__text {
  font-size: var(--text-base);
  color: var(--uri-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Navy card variant */
.uri-card--navy {
  background: var(--uri-navy);
  border-color: rgba(255,255,255,0.08);
}

.uri-card--navy .uri-card__icon {
  background: rgba(212, 165, 55, 0.15);
}

.uri-card--navy .uri-card__icon svg {
  stroke: var(--uri-gold);
}

.uri-card--navy .uri-card__title {
  color: var(--uri-white);
}

.uri-card--navy .uri-card__text {
  color: rgba(255,255,255,0.60);
}

.uri-card--navy::before {
  background: var(--uri-gold);
}

/* ============================================================
   FULL-WIDTH IMAGE BREAK
   ============================================================ */
.uri-parallax-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uri-parallax-section__bg {
  position: absolute;
  inset: -60px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.uri-parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 48, 0.72);
}

.uri-parallax-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--uri-white);
  max-width: 700px;
  padding: 0 var(--space-8);
}

.uri-parallax-section__content h2 {
  color: var(--uri-white);
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
}

.uri-parallax-section__content p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
}

/* ============================================================
   COMPLIANCE BADGES
   ============================================================ */
.uri-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.uri-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--uri-white);
  border: 1px solid var(--uri-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--uri-navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.uri-badge:hover {
  border-color: var(--uri-gold);
  box-shadow: var(--shadow-gold);
}

.uri-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--uri-gold);
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   LEADERSHIP TEAM CARDS
   ============================================================ */
.uri-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.uri-team-card {
  background: var(--uri-white);
  border: 1px solid var(--uri-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.uri-team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.uri-team-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--uri-off-white);
  position: relative;
}

.uri-team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.uri-team-card:hover .uri-team-card__image img {
  transform: scale(1.05);
}

.uri-team-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--uri-navy), var(--uri-navy-light));
}

.uri-team-card__placeholder svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255,255,255,0.20);
  fill: none;
}

.uri-team-card__body {
  padding: var(--space-6);
  border-top: 3px solid var(--uri-gold);
}

.uri-team-card__name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--uri-navy);
  margin-bottom: var(--space-1);
}

.uri-team-card__role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--uri-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.uri-team-card__bio {
  font-size: var(--text-sm);
  color: var(--uri-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.uri-cta-section {
  background: var(--uri-navy);
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.uri-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 165, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.uri-cta-section h2 {
  color: var(--uri-white);
  margin-bottom: var(--space-4);
}

.uri-cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  max-width: 500px;
  margin: 0 auto var(--space-10);
}

/* Contact Form */
.uri-contact-form {
  max-width: 680px;
  margin: 0 auto;
}

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

.uri-form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.uri-form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.04em;
}

.uri-form-field input,
.uri-form-field textarea,
.uri-form-field select {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--uri-white);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  outline: none;
}

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

.uri-form-field input:focus,
.uri-form-field textarea:focus {
  border-color: var(--uri-gold);
  background: rgba(255,255,255,0.12);
}

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

.uri-form-full {
  grid-column: 1 / -1;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--uri-charcoal);
  color: var(--uri-white);
  padding: var(--space-20) 0 0;
}

.footer-top {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8) var(--space-16);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand__logo {
  margin-bottom: var(--space-6);
}

.footer-brand__logo img {
  height: 48px;
  width: auto;
}

.footer-brand__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: var(--space-6);
}

.footer-brand__social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: rgba(255,255,255,0.55);
}

.footer-social-link:hover {
  background: var(--uri-gold);
  border-color: var(--uri-gold);
  color: var(--uri-navy);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uri-gold);
  margin-bottom: var(--space-6);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  transition: color var(--transition-fast), padding var(--transition-fast);
}

.footer-col__links a:hover {
  color: var(--uri-gold);
  padding-left: var(--space-2);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  margin-bottom: var(--space-4);
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: rgba(255,255,255,0.80);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--uri-gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.30);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.30);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--uri-gold);
}

/* ============================================================
   PAGE LAYOUTS — INNER PAGES
   ============================================================ */
.uri-page-hero {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  background: var(--uri-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.uri-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212,165,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,165,55,0.05) 0%, transparent 60%);
}

.uri-page-hero h1 {
  color: var(--uri-white);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-4);
}

.uri-page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-xl);
  max-width: 55ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.uri-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.uri-breadcrumb a,
.uri-breadcrumb span {
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  transition: color var(--transition-fast);
}

.uri-breadcrumb a:hover {
  color: var(--uri-gold);
}

.uri-breadcrumb .sep {
  color: rgba(255,255,255,0.20);
}

/* ============================================================
   OPERATIONS — PHASE TIMELINE
   ============================================================ */
.uri-timeline {
  position: relative;
  padding-left: var(--space-12);
}

.uri-timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--uri-gold), var(--uri-border));
}

.uri-timeline-item {
  position: relative;
  padding-bottom: var(--space-12);
}

.uri-timeline-item:last-child {
  padding-bottom: 0;
}

.uri-timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-12) + 8px);
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--uri-gold);
  border: 3px solid var(--uri-white);
  box-shadow: 0 0 0 3px var(--uri-gold);
  z-index: 1;
}

.uri-timeline-item__phase {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--uri-gold);
  margin-bottom: var(--space-2);
}

.uri-timeline-item h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.uri-timeline-item p {
  color: var(--uri-text-muted);
}

/* ============================================================
   MARKET OPPORTUNITY — DATA DISPLAY
   ============================================================ */
.uri-market-stat {
  padding: var(--space-8);
  background: var(--uri-off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--uri-gold);
  transition: all var(--transition-base);
}

.uri-market-stat:hover {
  background: var(--uri-white);
  box-shadow: var(--shadow-md);
}

.uri-market-stat__value {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--uri-navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.uri-market-stat__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--uri-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   SUSTAINABILITY — IMPACT ITEMS
   ============================================================ */
.uri-impact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.uri-impact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--uri-white);
  border: 1px solid var(--uri-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.uri-impact-item:hover {
  border-color: var(--uri-gold);
  box-shadow: var(--shadow-md);
}

.uri-impact-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(10, 37, 74, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uri-impact-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--uri-navy);
  fill: none;
  stroke-width: 1.5;
}

.uri-impact-item__content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.uri-impact-item__content p {
  font-size: var(--text-sm);
  color: var(--uri-text-muted);
  margin: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

/* Scroll-triggered fade-in */
.uri-fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.uri-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.uri-fade-in--delay-1 { transition-delay: 0.1s; }
.uri-fade-in--delay-2 { transition-delay: 0.2s; }
.uri-fade-in--delay-3 { transition-delay: 0.3s; }
.uri-fade-in--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */
.elementor-section.elementor-section-full_width .elementor-container {
  max-width: 100%;
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3 {
  font-family: var(--font-heading);
}

.elementor-widget-text-editor p {
  font-family: var(--font-body);
  color: var(--uri-text-secondary);
}

/* Elementor default button override */
.elementor-button {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Full width page layout override for Elementor */
.page-template-elementor_header_footer,
.page-template-elementor_canvas {
  /* Remove all padding/margins for full Elementor control */
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-navy   { color: var(--uri-navy); }
.text-gold   { color: var(--uri-gold); }
.text-white  { color: var(--uri-white); }
.text-muted  { color: var(--uri-text-muted); }

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

.mt-auto { margin-top: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   WORDPRESS SPECIFICS
   ============================================================ */
.wp-block-image img {
  border-radius: var(--radius-lg);
}

.aligncenter {
  display: block;
  margin: 0 auto var(--space-6);
}

.alignleft {
  float: left;
  margin: 0 var(--space-6) var(--space-4) 0;
}

.alignright {
  float: right;
  margin: 0 0 var(--space-4) var(--space-6);
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: var(--text-sm);
  color: var(--uri-text-muted);
  text-align: center;
  margin-top: var(--space-2);
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--uri-gold);
  color: var(--uri-navy);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .uri-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .uri-stat:nth-child(2) {
    border-right: none;
  }

  .uri-stat:nth-child(1),
  .uri-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .uri-about-split {
    grid-template-columns: 1fr;
  }

  .uri-about-split__image {
    min-height: 350px;
  }

  .uri-about-split__content {
    padding: var(--space-12) var(--space-10);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

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

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

  .uri-impact-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
    --header-height-scrolled: 60px;
  }

  .header-inner {
    padding: 0 var(--space-5);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--uri-navy-dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: var(--space-8) var(--space-6);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    z-index: 999;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .primary-nav > ul > li > a {
    padding: var(--space-5) var(--space-4);
    font-size: var(--text-lg);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .primary-nav > ul > li > a::after {
    display: none;
  }

  .primary-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.20);
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .primary-nav .sub-menu li a {
    padding: var(--space-4) var(--space-8);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .uri-hero__heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .uri-hero__subtext {
    font-size: var(--text-base);
  }

  .uri-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .uri-stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 var(--space-4);
  }

  .uri-stat {
    padding: var(--space-5) var(--space-4);
    border-right: none;
  }

  .uri-stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .uri-section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .uri-grid-2,
  .uri-grid-3,
  .uri-grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-10);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer-bottom-links {
    gap: var(--space-4);
  }

  .uri-about-split__content {
    padding: var(--space-10) var(--space-6);
  }

  .uri-parallax-section {
    height: 360px;
  }

  .uri-cta-section {
    padding: var(--space-16) 0;
  }

  .uri-container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }
}

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

  .uri-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .uri-stat:last-child {
    border-bottom: none;
  }
}
