﻿/* ==================
   ABOUT PAGE — additive styles
   ================== */

/* Page hero (compact, homepage-style aesthetic) */
.about-hero {
  position: relative;
  padding: 80px 32px 90px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(201, 164, 92, 0.10), transparent 60%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.about-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.about-hero .hero-eyebrow::before,
.about-hero .hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.about-hero .hero-eyebrow::after { opacity: 0.4; }
.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 18px;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.about-hero p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

/* Sticky sub-navigation */
.subnav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
}
.subnav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.subnav a {
  position: relative;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  transition: color 0.25s;
}
.subnav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: center;
}
.subnav a:hover { color: var(--gold); }
.subnav a:hover::after,
.subnav a.active::after { transform: scaleX(1); }
.subnav a.active { color: var(--gold); }

/* Section wrapper */
.section {
  padding: 110px 32px;
  position: relative;
}
.section.alt-bg { background: var(--bg-2); }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section divider line between sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--cream);
  margin-bottom: 36px;
  max-width: 720px;
}
.section h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.prose p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 22px;
  max-width: 800px;
}

/* Value-prop cards under About Us */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 36px 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}
.value-card:hover {
  border-color: rgba(201, 164, 92, 0.35);
  transform: translateY(-2px);
}
.value-card:hover::before { width: 100%; }
.value-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1;
}
.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.value-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  font-weight: 300;
}

/* License highlight card in Regulation section */
.license-card {
  margin-top: 48px;
  padding: 40px 44px;
  background: linear-gradient(135deg, rgba(201, 164, 92, 0.06), rgba(201, 164, 92, 0.02));
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-left: 3px solid var(--gold);
  max-width: 820px;
  position: relative;
}
.license-card::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 2px;
}
.license-card .lc-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.license-card .lc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.license-card .lc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.license-card .lc-meta {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  font-weight: 300;
}

/* Career placeholder + CTA */
.career-callout {
  margin-top: 48px;
  padding: 56px 44px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 820px;
  position: relative;
  overflow: hidden;
}
.career-callout::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.06), transparent 60%);
  pointer-events: none;
}
.career-callout > * { position: relative; }
.career-callout .cc-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.career-callout h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.career-callout h3 em { font-style: italic; color: var(--gold); }
.career-callout p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.career-callout .apply-meta {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.career-callout .apply-meta span { color: var(--gold); }

/* ==================
   ABOUT PAGE — RESPONSIVE
   ================== */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .about-hero { padding: 60px 24px 70px; }
  .section { padding: 80px 24px; }
  .section h2 { margin-bottom: 28px; }
  .value-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .value-card { padding: 30px 26px; }
  .license-card { padding: 32px 28px; margin-top: 36px; }
  .license-card .lc-title { font-size: 24px; }
  .career-callout { padding: 44px 28px; margin-top: 36px; }
  .career-callout h3 { font-size: 26px; }
  .subnav { padding: 12px 16px; }
  .subnav-inner { gap: 0; }
  .subnav a { padding: 8px 14px; font-size: 11px; letter-spacing: 1.5px; }
}
@media (max-width: 480px) {
  .about-hero { padding: 50px 20px 60px; }
  .about-hero h1 { font-size: 36px; }
  .about-hero p { font-size: 14px; }
  .section { padding: 64px 20px; }
  .section h2 { font-size: 32px; }
  .prose p { font-size: 15px; line-height: 1.75; }
  .license-card { padding: 28px 22px; }
  .license-card .lc-title { font-size: 22px; }
  .license-card .lc-num { font-size: 18px; }
  .career-callout h3 { font-size: 22px; }
  .career-callout p { font-size: 14px; }
  .subnav a { padding: 8px 10px; font-size: 10px; letter-spacing: 1px; }
  .btn-large { padding: 14px 26px; font-size: 13px; }
}
