/* ============================================================
   PARAGON INVESTMENT HOLDINGS — v2 Design System
   UI/UX Pro Max · Premium Luxury · 2026
   Design: Bodoni Moda + Jost · Enterprise Gateway Pattern
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand */
  --red:          #C8102E;
  --red-dark:     #A00D25;
  --red-subtle:   rgba(200, 16, 46, 0.08);
  --gold:         #A16207;
  --gold-light:   #CA8A04;
  --gold-subtle:  rgba(161, 98, 7, 0.1);

  /* Neutrals — warm premium scale */
  --ink:          #0C0A09;
  --charcoal:     #1C1917;
  --charcoal-mid: #44403C;
  --mid:          #57534E;
  --light-mid:    #A8A29E;
  --border:       #D6D3D1;
  --border-light: #E7E5E4;
  --bg-warm:      #F7F5F2;
  --bg-light:     #FAFAF9;
  --white:        #FFFFFF;

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  /* Layout */
  --max-w:        1200px;
  --max-w-text:   720px;

  /* Motion — UI/UX Pro Max: 150-300ms, ease-out enter, ease-in exit */
  --t-fast:       150ms ease-out;
  --t-base:       220ms ease-out;
  --t-slow:       350ms ease-out;
  --transition:   220ms ease-out;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }

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

/* ── Typography Scale ── */
.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 7.5vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.25vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}
.heading {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 1vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-mid);
}
.body-lg { font-size: 1.125rem; line-height: 1.75; color: var(--mid); }
.body-sm { font-size: 0.875rem; color: var(--mid); }

.text-red     { color: var(--red); }
.text-gold    { color: var(--gold); }
.text-charcoal{ color: var(--charcoal); }
.text-mid     { color: var(--mid); }

/* ── Layout ── */
.container        { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container-narrow { width: 100%; max-width: var(--max-w-text); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 9rem 0; }

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

/* ── Dividers ── */
.divider        { width: 2.5rem; height: 2px; background: var(--red); margin: 1.5rem 0; }
.divider-gold   { width: 2.5rem; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--charcoal); color: var(--white); }
.btn-primary:hover { background: var(--red); box-shadow: 0 4px 20px rgba(200,16,46,0.25); }

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(161,98,7,0.3); }

.btn-ghost {
  padding: 0;
  background: none;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: gap var(--t-base), color var(--t-base);
}
.btn-ghost::after { content: '→'; transition: transform var(--t-base); }
.btn-ghost:hover  { color: var(--red); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost-red { color: var(--red); }
.btn-ghost-red:hover { color: var(--red-dark); }

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--light-mid);
}
.tag-red  { border-color: var(--red);  color: var(--red); }
.tag-gold { border-color: var(--gold); color: var(--gold); }

/* ── ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--t-base);
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(28,25,23,0.07); }

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

.nav-logo { display: flex; align-items: center; flex-shrink: 0; cursor: pointer; }
.nav-logo img { height: 54px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--t-base);
  position: relative;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t-base);
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: var(--t-base); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 78px; left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: color var(--t-base), padding-left var(--t-base);
}
.nav-mobile a:hover { color: var(--red); padding-left: 0.5rem; }
.nav-mobile a:last-child { border-bottom: none; }

/* ── ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://aviation.paragonnamibia.com/wp-content/uploads/2025/02/2M2A9574_websize.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.3;
  transition: opacity 1s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(12,10,9,0.15) 0%,
    rgba(28,25,23,0.45) 35%,
    rgba(12,10,9,0.92) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.75rem, 10vw, 9.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2.25rem;
}
.hero-title .accent { color: var(--red); }
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 6rem; right: 2rem;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 2.5rem;
  z-index: 2;
}
.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.35rem;
  text-align: right;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  z-index: 2;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 0.2; }
  50% { transform: scaleY(0.4); opacity: 0.08; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border-light);
}
.page-hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.5rem; height: 1px;
  background: var(--gold);
}

/* ── ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  padding: 0.875rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: tickerScroll 35s linear infinite;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  white-space: nowrap;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.ticker-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-strip-text {
  padding: 6rem 5rem 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}
.about-strip-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-strip-image:hover img { transform: scale(1.04); }

/* ── ============================================================
   BRANDS GRID (logo wall)
   ============================================================ */
.brands-section { background: var(--bg-warm); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.brand-cell {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  text-align: center;
  transition: background var(--t-base);
  cursor: pointer;
  min-height: 130px;
  position: relative;
  overflow: hidden;
}
.brand-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t-slow);
}
.brand-cell:hover { background: var(--white); }
.brand-cell:hover::after { width: 100%; }
.brand-cell img {
  height: 34px; width: auto;
  max-width: 115px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--t-base), transform var(--t-base);
}
.brand-cell:hover img { filter: none; transform: scale(1.05); }
.brand-cell-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-mid);
  transition: color var(--t-base);
}
.brand-cell:hover .brand-cell-label { color: var(--gold); }

/* ── ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 3.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: background var(--t-base);
  cursor: default;
  overflow: hidden;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease, left 0.4s ease;
}
.stat-item:hover { background: var(--bg-warm); }
.stat-item:hover::after { width: 100%; left: 0; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.625rem;
  letter-spacing: -0.03em;
  transition: color var(--t-base);
}
.stat-item:hover .stat-number { color: var(--gold); }
.stat-number span { color: var(--red); }
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-mid);
  transition: color var(--t-base);
}
.stat-item:hover .stat-label { color: var(--mid); }

/* ── ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
}
.news-card {
  background: var(--white);
  padding: 2.75rem;
  transition: background var(--t-base);
  cursor: pointer;
}
.news-card:hover { background: var(--bg-warm); }
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.news-card-date {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--light-mid);
  letter-spacing: 0.04em;
}
.news-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: color var(--t-base);
}
.news-card:hover .news-card-title { color: var(--red); }
.news-card-excerpt { font-size: 0.875rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.75rem; }

/* ── ============================================================
   CAREERS BANNER
   ============================================================ */
.careers-banner {
  background: var(--ink);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.careers-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(161,98,7,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 5.5rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}
.footer-logo { margin-bottom: 1.5rem; display: inline-block; background: #fff; padding: 0.5rem 0.75rem; }
.footer-logo img { height: 44px; width: auto; display: block; }
.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 300px;
  margin-bottom: 1.75rem;
}
.footer-contact-detail {
  display: flex;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 0.625rem;
  color: rgba(255,255,255,0.4);
  align-items: flex-start;
}
.footer-contact-detail a { color: rgba(255,255,255,0.4); transition: color var(--t-base); }
.footer-contact-detail a:hover { color: var(--gold); }
.footer-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-base), padding-left var(--t-base);
  display: inline-block;
}
.footer-links a:hover { color: var(--white); padding-left: 0.25rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }
.footer-tagline-bottom { font-size: 0.7rem; font-style: italic; color: rgba(255,255,255,0.15); }

/* ── ============================================================
   ABOUT PAGE — VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  padding: 3rem 2.25rem;
  text-align: center;
  transition: background var(--t-base);
  cursor: default;
}
.value-card:hover { background: var(--bg-warm); }
.value-letter {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.18;
  transition: opacity var(--t-base);
}
.value-card:hover .value-letter { opacity: 0.3; }
.value-word {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.value-desc { font-size: 0.875rem; color: var(--mid); line-height: 1.7; }

/* ── Founders ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-light);
}
.founder-card {
  background: var(--bg-warm);
  padding: 4.5rem 3.5rem;
  transition: background var(--t-base);
}
.founder-card:hover { background: var(--bg-light); }
.founder-initials {
  width: 60px; height: 60px;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.founder-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}
.founder-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.founder-bio { font-size: 0.9375rem; color: var(--mid); line-height: 1.8; font-weight: 300; }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0;
  top: 0.5rem; bottom: 0.5rem;
  width: 1px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 3.25rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.375rem; top: 0.4rem;
  width: 10px; height: 10px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  transition: border-color var(--t-base), background var(--t-base);
}
.timeline-item:hover .timeline-dot { background: var(--gold); border-color: var(--gold); }
.timeline-year {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.timeline-milestone {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.timeline-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.7; font-weight: 300; }

/* ── Sectors Grid ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.sector-card {
  background: rgba(255,255,255,0.02);
  padding: 2.75rem 2.25rem;
  transition: background var(--t-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t-slow);
}
.sector-card:hover { background: rgba(255,255,255,0.06); }
.sector-card:hover::before { width: 100%; }
.sector-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 1.625rem;
  opacity: 0.7;
  transition: opacity var(--t-base), transform var(--t-base);
}
.sector-card:hover .sector-icon { opacity: 1; transform: translateY(-3px); }
.sector-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.875rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.sector-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}

/* ── ============================================================
   BRANDS PAGE — list view
   ============================================================ */
.brands-list { display: flex; flex-direction: column; }
.brand-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-base), padding-left var(--t-base), padding-right var(--t-base);
  cursor: pointer;
}
.brand-row:first-child { border-top: 1px solid var(--border-light); }
.brand-row:hover {
  background: var(--bg-warm);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 -1.25rem;
}
.brand-row-logo {
  height: 40px; width: 140px;
  display: flex; align-items: center;
}
.brand-row-logo img {
  max-height: 40px; max-width: 140px;
  width: auto; object-fit: contain;
}
.brand-row-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
  transition: color var(--t-base);
}
.brand-row:hover .brand-row-name { color: var(--red); }
.brand-row-desc { font-size: 0.875rem; color: var(--mid); line-height: 1.65; max-width: 540px; font-weight: 300; }
.brand-row-action { flex-shrink: 0; }

/* Sector filter */
.sector-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.sector-btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--border);
  color: var(--mid);
  cursor: pointer;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
}
.sector-btn.active, .sector-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* ── ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-detail { margin-bottom: 2.25rem; }
.contact-detail-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 0.5rem;
}
.contact-detail-value { font-size: 1rem; color: var(--charcoal); font-weight: 400; }

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.125rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 0;
  outline: none;
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── ============================================================
   CAREERS PAGE
   ============================================================ */
.vacancy-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-base);
  cursor: pointer;
}
.vacancy-row:first-child { border-top: 1px solid var(--border-light); }
.vacancy-row:hover { background: var(--bg-warm); }
.vacancy-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.vacancy-meta { font-size: 0.8rem; color: var(--light-mid); font-weight: 400; }
.vacancy-company {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: right;
}

/* ── ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem}
.mt-4{margin-top:2rem}  .mt-5{margin-top:2.5rem} .mt-6{margin-top:3rem} .mt-8{margin-top:4rem}
.mb-1{margin-bottom:.5rem} .mb-2{margin-bottom:1rem} .mb-3{margin-bottom:1.5rem}
.mb-4{margin-bottom:2rem} .mb-5{margin-bottom:2.5rem} .mb-6{margin-bottom:3rem}
.bg-warm { background: var(--bg-warm); }
.bg-charcoal { background: var(--charcoal); }

/* ── ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-text { padding: 4rem 0; }
  .about-strip-image { min-height: 400px; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { display: none; }
  .hero-title { font-size: clamp(2.75rem, 11vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .news-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .brand-row { grid-template-columns: 1fr; gap: 1rem; }
  .brand-row:hover { margin: 0; padding-left: 0; padding-right: 0; }
  .vacancy-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .founder-card { padding: 3rem 2rem; }
  .page-hero { padding: 8rem 0 3.5rem; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .sectors-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
