/* ============================================
   AMS Capital LLC — Global Stylesheet
   Colors: #1a1f2e (navy), #c9a84c (gold), #fff
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1a1f2e;
  --navy-light: #232a3d;
  --navy-dark: #12161f;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-dark: #a88838;
  --white: #ffffff;
  --white-muted: rgba(255,255,255,0.7);
  --white-dim: rgba(255,255,255,0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  background: rgba(18, 22, 31, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.85rem 5%;
  background: rgba(18, 22, 31, 0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}

.nav-logo-icon {
  height: 36px;
  width: auto;
  opacity: 0.92;
  flex-shrink: 0;
}

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

.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-logo .logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s, transform 0.1s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ===== HAMBURGER (MOBILE) ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #12161f 0%, #1a1f2e 50%, #1e2438 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black, transparent);
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero p {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--white-dim);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.3rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

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

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 600px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-header { margin-bottom: 3.5rem; }

.section-header p {
  color: var(--white-muted);
  max-width: 520px;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
}

/* ===== MISSION SECTION ===== */
.mission {
  background: var(--navy-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-visual {
  position: relative;
}

.mission-card {
  background: var(--navy-dark);
  border: 1px solid var(--white-dim);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

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

.mission-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.mission-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mission-avatar {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
}

.mission-author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
}

.mission-author-info .title {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.mission-floating {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.2rem 1.5rem;
  border-radius: 3px;
  text-align: center;
  min-width: 120px;
}

.mission-floating .big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.mission-floating .small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ===== PROCESS ===== */
.process { background: var(--navy); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--white-dim);
  border: 1px solid var(--white-dim);
  border-radius: 4px;
  overflow: hidden;
}

.process-item {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}

.process-item:hover { background: var(--navy-light); }

.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.process-item:hover .process-num { color: rgba(201,168,76,0.3); }

.process-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.process-item p {
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ===== WHY INVEST ===== */
.why { background: var(--navy-dark); }

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

.why-card {
  background: var(--navy);
  border: 1px solid var(--white-dim);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1e2438 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.06), transparent);
}

.cta-section .section-title,
.cta-section p { max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-section p { margin-top: 1rem; margin-bottom: 2.5rem; font-size: 1rem; color: var(--white-muted); font-weight: 300; }

.cta-section .section-title { margin-bottom: 0; }

.cta-section .btn-group { justify-content: center; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--white-dim);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: 0.825rem;
  color: var(--white-muted);
  max-width: 280px;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--white-muted);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  color: var(--white-muted);
}

.footer-contact-item svg {
  width: 14px; height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--white-dim);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.6;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 10rem 5% 5rem;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.06), transparent),
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  position: relative;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 540px;
  margin-top: 1rem;
  font-weight: 300;
  position: relative;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--navy-light);
  border: 1px solid var(--white-dim);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.blog-card-body { padding: 1.75rem; }

.blog-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.blog-card:hover h3 { color: var(--gold); }

.blog-card p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.blog-header-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* ===== TEAM CARD ===== */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.team-photo {
  background: var(--navy-light);
  border: 1px solid var(--white-dim);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}

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

.team-initials {
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 1.25rem;
}

.team-photo h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-photo .role {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.team-bio h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.team-bio p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ===== DIVIDER ===== */
.gold-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ===== STRATEGY ===== */
.strategy-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.strategy-block:last-child { margin-bottom: 0; }

.strategy-block.reverse { direction: rtl; }
.strategy-block.reverse > * { direction: ltr; }

.strategy-visual {
  background: var(--navy-light);
  border: 1px solid var(--white-dim);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.strategy-icon {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.strategy-visual h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-align: center;
  color: var(--gold);
}

.strategy-visual p {
  font-size: 0.82rem;
  text-align: center;
  color: var(--white-muted);
}

.criteria-list { list-style: none; margin-top: 1.5rem; }

.criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: var(--white-muted);
}

.criteria-list li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .mission { grid-template-columns: 1fr; }
  .mission-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .strategy-block { grid-template-columns: 1fr; }
  .strategy-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 4rem 5%; }
  .page-header { padding: 8rem 5% 3.5rem; }
}


/* ===== MOUNTAIN HERO (real photo) ===== */
.mountain-hero {
  position: relative;
  overflow: hidden;
}
.mountain-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1800&q=80');
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}
.mountain-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(18,22,31,0.85) 0%, rgba(18,22,31,0.60) 55%, rgba(18,22,31,0.30) 100%),
    linear-gradient(to top, rgba(18,22,31,0.65) 0%, transparent 45%);
}
/* Mountain icon used as decorative BG on inner sections */
.mountain-icon-section-bg {
  position: relative;
  overflow: hidden;
}
.mountain-icon-section-bg > *:not(img[aria-hidden]) {
  position: relative;
  z-index: 1;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header-mountain {
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header-mountain-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1800&q=80');
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}
.page-header-mountain-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(18,22,31,0.70) 0%, rgba(18,22,31,0.80) 100%);
}
.page-header-mountain-content {
  position: relative;
  z-index: 2;
}
.page-header-mountain h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}
.page-header-mountain p {
  color: var(--white-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== FOUNDER INTRO ===== */
.founder-intro {
  background: var(--navy-light);
  padding: 5rem 5%;
  border-bottom: 1px solid var(--white-dim);
}
.founder-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  pointer-events: none;
}
.founder-photo-wrap::after {
  content: '';
  position: absolute;
  top: -6px; left: -6px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.founder-photo {
  width: 100%;
  border-radius: 3px;
  display: block;
}
.founder-blurb .section-label { margin-bottom: 0.75rem; }
.founder-blurb h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.founder-blurb h2 em { font-style: normal; color: var(--gold); }
.founder-blurb p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.founder-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--white-dim);
  flex-wrap: wrap;
}
.founder-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.founder-stat .lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.3rem;
}
@media (max-width: 768px) {
  .founder-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo-wrap { max-width: 260px; margin: 0 auto; }
}



/* ===== ABOUT PAGE TWO-COLUMN LAYOUT ===== */
.about-two-col {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 0;
  align-items: start;
  background: var(--navy-light);
}

.about-photos-col {
  padding: 4rem 2rem 4rem 5%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-photo-card {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.about-photo-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.about-photo-card:hover img {
  transform: scale(1.03);
}

.about-bio-col {
  padding: 4rem 5% 4rem 3rem;
  border-left: 1px solid var(--white-dim);
}

.about-bio-col p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-bio-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.about-bio-col h2 em {
  font-style: normal;
  color: var(--gold);
}

.about-quote {
  background: var(--navy-dark);
  border: 1px solid var(--white-dim);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  border-radius: 3px;
  margin-top: 1.75rem;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  margin: 0 !important;
  line-height: 1.6;
}

.about-quote .quote-attr {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.75rem;
  font-weight: 600;
}

.about-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white-dim);
  flex-wrap: wrap;
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat .lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.3rem;
}

@media (max-width: 960px) {
  .about-two-col {
    grid-template-columns: 1fr;
  }
  .about-photos-col {
    flex-direction: row;
    overflow-x: auto;
    padding: 2rem 5%;
    gap: 1rem;
  }
  .about-photo-card {
    flex-shrink: 0;
    width: 330px;
  }
  .about-photo-card img {
    height: 360px;
  }
  .about-bio-col {
    padding: 2rem 5%;
    border-left: none;
    border-top: 1px solid var(--white-dim);
  }
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  background: var(--navy-dark);
  padding: 5rem 5%;
  text-align: center;
}

.testimonial-card {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding: 3rem 3.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  background: var(--navy);
}

.testimonial-card::before {
  content: 'C';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  line-height: 1;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testimonial-avatar-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  text-align: left;
}

.testimonial-name strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.testimonial-name span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
