/* ============================================
   COLONELIDREES.COM — Master Stylesheet
   Warm, Elegant, Professional Design
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #FAFAF6;
  --bg-secondary: #F3F0E8;
  --bg-accent: #EAE5DA;
  --bg-warm: #F7F4ED;
  --navy: #1C2637;
  --navy-light: #243044;
  --navy-mid: #2A3650;
  --gold: #B08D57;
  --gold-light: #C4A56E;
  --gold-dark: #8C6F3E;
  --gold-pale: #F0E6D2;
  --ivory: #FAFAF6;
  --text-heading: #1A1F2E;
  --text-primary: #2D3344;
  --text-secondary: #5A6275;
  --text-muted: #8A8F9E;
  --text-light: #C8C4BA;
  --border-light: #E0DAD0;
  --border-gold: rgba(176, 141, 87, 0.3);
  --shadow-soft: 0 2px 20px rgba(28, 38, 55, 0.06);
  --shadow-card: 0 8px 40px rgba(28, 38, 55, 0.08);
  --shadow-img: 0 12px 48px rgba(28, 38, 55, 0.12);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 6px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--gold-dark);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-heading);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 250, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
}

/* On hero (dark bg), nav text is light; when scrolled, it becomes dark */
.nav.scrolled .nav-logo-text { color: var(--text-heading); }
.nav.scrolled .nav-logo-mark { border-color: var(--gold); color: var(--gold); }
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--gold); }
.nav.scrolled .nav-toggle span { background: var(--text-heading); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: all var(--transition);
  border-radius: 4px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
  font-weight: 500;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  border-radius: 1px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* Mobile Nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    border-left: 1px solid var(--border-light);
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 14px;
    color: var(--text-secondary) !important;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold) !important;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle.open span {
    background: var(--text-heading);
  }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
  filter: grayscale(20%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 38, 55, 0.93) 0%,
    rgba(28, 38, 55, 0.82) 50%,
    rgba(28, 38, 55, 0.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 800px;
  color: white;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hero-decorations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 40px;
}

.hero-decoration-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(196, 165, 110, 0.35);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  border-radius: var(--radius);
}

.hero-decoration-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176, 141, 87, 0.3);
}

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

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

/* On light bg, outline button needs darker look */
.section-light .btn-outline,
.section-warm .btn-outline {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background: var(--bg-primary);
}

.section-warm {
  background: var(--bg-secondary);
}

.section-cream {
  background: var(--bg-accent);
}

/* Dark sections (used sparingly) */
.section-dark {
  background: var(--navy);
}

.section-darker {
  background: var(--navy-light);
}

.section-accent {
  background: var(--navy-mid);
}

/* Dark section overrides for text */
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.section-darker h1, .section-darker h2, .section-darker h3, .section-darker h4,
.section-accent h1, .section-accent h2, .section-accent h3, .section-accent h4 {
  color: white;
}

.section-dark p, .section-darker p, .section-accent p {
  color: rgba(255,255,255,0.6);
}

.section-dark .styled-list li,
.section-darker .styled-list li,
.section-accent .styled-list li {
  color: rgba(255,255,255,0.6);
}

.section-dark .section-eyebrow,
.section-darker .section-eyebrow,
.section-accent .section-eyebrow {
  color: var(--gold-light);
}

.section-dark .text-secondary,
.section-darker .text-secondary {
  color: rgba(255,255,255,0.6);
}

.section-header {
  margin-bottom: 60px;
  max-width: 640px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}

.section-header.center .section-eyebrow::before {
  display: none;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
  border-radius: 1px;
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: white;
  border: 1px solid var(--border-light);
  padding: 40px;
  transition: all var(--transition);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

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

/* Dark section cards */
.section-dark .card,
.section-darker .card,
.section-accent .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.section-dark .card:hover,
.section-darker .card:hover,
.section-accent .card:hover {
  border-color: var(--border-gold);
  background: rgba(255,255,255,0.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--gold-pale);
}

.section-dark .card-icon,
.section-darker .card-icon,
.section-accent .card-icon {
  background: rgba(176, 141, 87, 0.1);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card h4 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   EXECUTIVE STRIP
   ============================================ */
.exec-strip {
  padding: 48px 0;
  background: var(--navy);
  border-top: none;
  border-bottom: none;
}

.exec-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}

.exec-strip-item {
  text-align: center;
  min-width: 160px;
}

.exec-strip-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.exec-strip-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-gold);
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.section-dark .timeline-item,
.section-darker .timeline-item {
  border-bottom-color: rgba(255,255,255,0.08);
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  background: var(--bg-primary);
  border-radius: 50%;
  transition: all var(--transition);
}

.section-dark .timeline-item::before,
.section-darker .timeline-item::before {
  background: var(--navy);
}

.timeline-year {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.section-dark .timeline-title,
.section-darker .timeline-title {
  color: white;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.section-dark .timeline-desc,
.section-darker .timeline-desc {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   QUOTE BLOCK
   ============================================ */
.quote-block {
  position: relative;
  padding: 40px 48px;
  background: white;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section-dark .quote-block,
.section-darker .quote-block,
.section-accent .quote-block {
  background: rgba(255,255,255,0.05);
}

.quote-block p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.7;
  margin-bottom: 20px;
}

.section-dark .quote-block p,
.section-darker .quote-block p,
.section-accent .quote-block p {
  color: rgba(255,255,255,0.8);
}

.quote-block cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ============================================
   IMAGE HANDLING — No Cropping, Elegant Frames
   ============================================ */

/* Natural image with shadow frame */
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-img);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.img-frame:hover {
  box-shadow: 0 16px 56px rgba(28, 38, 55, 0.16);
  transform: translateY(-4px);
}

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

/* For portrait/headshot — slight cover is OK */
.img-reveal {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-img);
}

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

.img-reveal:hover img {
  transform: scale(1.03);
}

/* Split image — keep it proportional */
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-img);
  border: 1px solid var(--border-light);
}

.split-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.6s ease;
}

.split-image:hover img {
  transform: scale(1.02);
}

.split-image .accent-border {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--border-gold);
  pointer-events: none;
  z-index: -1;
  border-radius: var(--radius-lg);
}

.section-dark .split-image {
  border-color: rgba(255,255,255,0.1);
}

/* Gallery items — show full image */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  background: white;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
  padding: 0;
}

/* For medal images that need contain */
.gallery-item.contain-img {
  background: var(--bg-secondary);
  padding: 20px;
}

.gallery-item.contain-img img {
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(28, 38, 55, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateY(8px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
}

.section-dark .gallery-item,
.section-darker .gallery-item,
.section-accent .gallery-item {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

/* ============================================
   HONOUR ITEMS
   ============================================ */
.honour-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--border-light);
  background: white;
  transition: all var(--transition);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.honour-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.section-dark .honour-item,
.section-darker .honour-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.section-dark .honour-item:hover,
.section-darker .honour-item:hover {
  border-color: var(--border-gold);
  background: rgba(255,255,255,0.08);
}

.honour-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--gold-pale);
}

.section-dark .honour-icon,
.section-darker .honour-icon {
  background: rgba(176, 141, 87, 0.1);
}

.honour-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.honour-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.section-dark .honour-title,
.section-darker .honour-title {
  color: white;
}

.honour-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-dark .honour-desc,
.section-darker .honour-desc {
  color: rgba(255,255,255,0.55);
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-reverse {
    direction: ltr;
  }
}

/* ============================================
   VENTURE CARDS
   ============================================ */
.venture-card {
  padding: 40px;
  border: 1px solid var(--border-light);
  background: white;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.venture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

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

.section-dark .venture-card,
.section-darker .venture-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.venture-role {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.venture-card h3 {
  margin-bottom: 16px;
}

.venture-card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================
   SIGNATURE / CTA SECTION
   ============================================ */
.signature-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.signature-section.section-dark {
  background: var(--navy);
}

.signature-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(176, 141, 87, 0.06) 0%, transparent 70%);
}

.signature-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-dark .signature-text,
.section-darker .signature-text {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   PAGE HEADER (inner pages — dark)
   ============================================ */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: grayscale(30%);
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 38, 55, 0.7) 0%,
    rgba(28, 38, 55, 0.95) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: 16px;
  color: white;
}

.page-header p {
  font-size: 1.05rem;
  max-width: 600px;
  color: rgba(255,255,255,0.6);
}

.page-header .section-eyebrow {
  color: var(--gold-light);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  border-radius: var(--radius);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.1);
}

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

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--gold-pale);
  transition: background var(--transition);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info-value {
  color: var(--text-primary);
  font-size: 1rem;
}

.contact-info-value a {
  color: var(--text-primary);
}

.contact-info-value a:hover {
  color: var(--gold);
}

/* ============================================
   FOOTER (Dark)
   ============================================ */
.footer {
  background: var(--navy);
  border-top: none;
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 360px;
  margin-top: 16px;
  color: rgba(255,255,255,0.45);
}

.footer .nav-logo-text {
  color: white;
}

.footer .nav-logo-mark {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

.footer h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

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

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

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   PILLAR NUMBERS
   ============================================ */
.pillar-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: rgba(176, 141, 87, 0.2);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

/* ============================================
   STYLED LIST
   ============================================ */
.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ============================================
   PORTRAIT FRAME
   ============================================ */
.portrait-frame {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border-gold);
  margin: 0 auto 32px;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(28, 38, 55, 0.1);
  transition: all var(--transition);
}

.portrait-frame:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(176, 141, 87, 0.15);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   QUOTE GRID
   ============================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quote-grid-item {
  padding: 32px;
  border: 1px solid var(--border-light);
  background: white;
  transition: all var(--transition);
  border-radius: var(--radius-lg);
}

.section-dark .quote-grid-item,
.section-darker .quote-grid-item,
.section-accent .quote-grid-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

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

.quote-grid-item p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-heading);
  line-height: 1.7;
  margin-bottom: 12px;
}

.section-dark .quote-grid-item p,
.section-accent .quote-grid-item p {
  color: rgba(255,255,255,0.8);
}

.quote-grid-item span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

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

/* ============================================
   SEPARATOR
   ============================================ */
.sep {
  width: 100%;
  height: 1px;
  background: var(--border-light);
}

.section-dark .sep,
.section-darker .sep {
  background: rgba(255,255,255,0.08);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border-light);
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.scroll-top:hover svg {
  stroke: white;
}

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

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28, 38, 55, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 20px;
  transition: var(--transition);
  border-radius: var(--radius);
}

.lightbox-close:hover {
  background: white;
  color: var(--navy);
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-enter {
  animation: fadeInUp 0.5s ease forwards;
}

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

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */

/* Subtle glow behind hero */
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 165, 110, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -40px) scale(1.15); }
}

/* Gold line draw on honour items */
.honour-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s ease;
  border-radius: 0 0 0 var(--radius-lg);
}

.honour-item:hover::before {
  height: 100%;
}

/* Button ripple */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Quote block shimmer border */
.quote-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
  background-size: 100% 200%;
  animation: shimmerBorder 3s ease infinite;
}

@keyframes shimmerBorder {
  0% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

/* Nav logo hover */
.nav-logo:hover .nav-logo-mark {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.nav-logo-mark {
  transition: all var(--transition);
}

/* Timeline dot pulse */
.timeline-item:hover::before {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(176, 141, 87, 0.4);
}

/* Exec strip value glow */
.exec-strip-value {
  transition: text-shadow 0.5s ease;
}

.exec-strip-item:hover .exec-strip-value {
  text-shadow: 0 0 20px rgba(196, 165, 110, 0.4);
}

/* Stagger animation children */
[data-stagger] > .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-stagger] > .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold divider expand */
.gold-divider {
  transition: width 0.6s ease;
}

.reveal.visible .gold-divider {
  animation: expandLine 0.8s ease forwards;
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 60px; }
}

/* Contact hover */
.contact-info-item:hover .contact-info-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.contact-info-item:hover .contact-info-icon svg {
  stroke: white;
}

/* Venture card glow */
.venture-card:hover .pillar-number {
  color: rgba(176, 141, 87, 0.35);
  transition: color var(--transition);
}

/* ============================================
   RESPONSIVE — Mobile First
   ============================================ */
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 120px 20px 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-decorations {
    flex-direction: column;
  }

  .card {
    padding: 28px;
  }

  .quote-block {
    padding: 24px 28px;
  }

  .page-header {
    padding: 130px 0 60px;
  }

  .signature-section {
    padding: 80px 0;
  }

  .honour-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .exec-strip-inner {
    gap: 24px;
  }

  .exec-strip-item {
    min-width: 120px;
  }

  .exec-strip-value {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero-content {
    padding: 110px 16px 48px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .page-header {
    padding: 110px 0 48px;
  }

  .nav-logo-text {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .nav-logo-mark {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .exec-strip {
    padding: 32px 0;
  }

  .exec-strip-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .exec-strip-item {
    min-width: 45%;
    margin-bottom: 16px;
  }

  .timeline {
    padding-left: 28px;
  }

  .timeline-item::before {
    left: -32px;
  }

  .footer {
    padding: 40px 0 24px;
  }

  .signature-section {
    padding: 60px 0;
  }

  .signature-text {
    font-size: 1.1rem;
  }

  .portrait-frame {
    width: 140px;
    height: 140px;
  }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 900px) {
  .hero-content {
    padding: 140px 24px 70px;
  }

  .split {
    gap: 32px;
  }

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

/* Touch devices */
@media (hover: none) {
  .card:hover,
  .venture-card:hover,
  .honour-item:hover,
  .quote-grid-item:hover {
    transform: none;
    box-shadow: none;
  }

  .gallery-item .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(28, 38, 55, 0.6) 0%, transparent 40%);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Print */
@media print {
  .nav, .scroll-top, .lightbox, .nav-overlay {
    display: none !important;
  }

  body {
    background: white;
    color: #222;
  }

  .section, .page-header, .hero {
    padding: 32px 0;
  }
}
