/* ============================================
   AskMeGraphic - Shared Styles
   ============================================ */

:root {
  --purple-deepest: #0f0418;
  --purple-deep: #1a0a2e;
  --purple-mid: #2d1248;
  --purple-rich: #3d1860;
  --purple-glow: #5a2a8a;
  --gold: #d4af6a;
  --gold-light: #e8c987;
  --gold-deep: #a8854c;
  --cream: #f5ecd9;
  --white-soft: #f8f4ed;
  --ink: #0a0210;
  --serif: 'Cormorant Garamond', 'IBM Plex Sans Thai', serif;
  --thai: 'IBM Plex Sans Thai', sans-serif;
  --sans: 'Inter', 'IBM Plex Sans Thai', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--thai);
  background: var(--purple-deepest);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 300;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(90, 42, 138, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(61, 24, 96, 0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.83 0 0 0 0 0.69 0 0 0 0 0.42 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 2; }

/* NAVBAR */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(15, 4, 24, 0.85);
  border-bottom: 1px solid rgba(212, 175, 106, 0.12);
  transition: all 0.4s ease;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 1.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--cream); }
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-text .tagline {
  font-family: var(--sans); font-size: 0.625rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(245, 236, 217, 0.5); margin-top: 4px;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(245, 236, 217, 0.75); text-decoration: none;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  position: relative; padding: 0.5rem 0; transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent); transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.75rem 1.5rem; border: 1px solid var(--gold);
  color: var(--gold-light) !important; border-radius: 2px; transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--purple-deepest) !important; }
.nav-cta::after { display: none; }

/* COMMON SECTION ELEMENTS */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.875rem;
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--white-soft); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-intro {
  font-size: 1.0625rem; color: rgba(245, 236, 217, 0.65);
  max-width: 620px; line-height: 1.8;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.875rem;
  padding: 1.1rem 2.25rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--purple-deepest); text-decoration: none;
  font-family: var(--sans); font-weight: 500; font-size: 0.875rem;
  letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.4s ease; box-shadow: 0 10px 40px rgba(212, 175, 106, 0.15);
  position: relative; overflow: hidden;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 50px rgba(212, 175, 106, 0.3); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.875rem;
  color: var(--cream); text-decoration: none;
  font-family: var(--sans); font-size: 0.875rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1.1rem 0; transition: color 0.3s ease;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost .arrow {
  width: 32px; height: 1px; background: currentColor;
  position: relative; transition: width 0.3s ease;
}
.btn-ghost .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-ghost:hover .arrow { width: 48px; }

/* FOOTER */
footer.main-footer {
  padding: 4rem 0 2rem;
  background: var(--purple-deepest);
  border-top: 1px solid rgba(212, 175, 106, 0.15);
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: rgba(245, 236, 217, 0.5); font-size: 0.875rem; line-height: 1.7; margin-top: 1.25rem; }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a {
  color: rgba(245, 236, 217, 0.6); text-decoration: none;
  font-size: 0.9rem; transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(212, 175, 106, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(245, 236, 217, 0.4); font-size: 0.8rem; font-family: var(--sans); letter-spacing: 0.1em; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(212, 175, 106, 0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none; font-size: 0.875rem; transition: all 0.3s ease;
}
.footer-socials a:hover { background: var(--gold); color: var(--purple-deepest); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* PAGE HEADER (for inner pages) */
.page-header { padding: 11rem 0 5rem; text-align: center; position: relative; }
.breadcrumb {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(245, 236, 217, 0.5); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 0.75rem; color: rgba(212, 175, 106, 0.4); }
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--white-soft); margin-bottom: 1.5rem;
}
.page-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-subtitle {
  font-size: 1.0625rem; color: rgba(245, 236, 217, 0.7);
  max-width: 600px; margin: 0 auto; line-height: 1.8;
}

/* HOME-SPECIFIC */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 5rem; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 5rem; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.875rem;
  font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.9s ease 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.75rem);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.02em;
  color: var(--white-soft); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-title .accent { position: relative; display: inline-block; }
.hero-title .accent::after {
  content: ''; position: absolute; bottom: 8px; left: 0; right: 0; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.hero-desc {
  font-size: 1.0625rem; line-height: 1.8;
  color: rgba(245, 236, 217, 0.7); max-width: 540px; margin-bottom: 2.75rem;
  opacity: 0; animation: fadeUp 1s ease 0.6s forwards;
}
.hero-cta-group {
  display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease 0.8s forwards;
}
.hero-visual { position: relative; aspect-ratio: 3/4; opacity: 0; animation: fadeUp 1.2s ease 0.6s forwards; }
.hero-card {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--purple-rich) 0%, var(--purple-deep) 100%);
  border: 1px solid rgba(212, 175, 106, 0.2);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.hero-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 175, 106, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(90, 42, 138, 0.3), transparent 50%);
}
.hero-card-content {
  position: absolute; inset: 0; padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.hero-card-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.hero-card-num { font-family: var(--serif); font-size: 0.875rem; color: rgba(245, 236, 217, 0.5); font-style: italic; }
.hero-card-center { text-align: center; }
.hero-card-center svg { width: 60%; height: auto; opacity: 0.9; }
.hero-card-bottom { font-family: var(--serif); font-style: italic; font-size: 1.125rem; color: rgba(245, 236, 217, 0.7); text-align: center; line-height: 1.5; }
.hero-card-bottom span { display: block; font-family: var(--sans); font-style: normal; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 0.75rem; }
.hero-ornament {
  position: absolute; width: 120px; height: 120px;
  border: 1px solid var(--gold); border-radius: 50%;
  top: -40px; right: -40px; opacity: 0.3;
  animation: rotate 30s linear infinite;
}
.hero-ornament::before { content: ''; position: absolute; inset: 15px; border: 1px dashed var(--gold); border-radius: 50%; }
.hero-stats {
  margin-top: 5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(212, 175, 106, 0.15);
  opacity: 0; animation: fadeUp 1s ease 1s forwards;
}
.stat-num { font-family: var(--serif); font-size: 2.75rem; font-weight: 400; color: var(--gold-light); line-height: 1; margin-bottom: 0.5rem; }
.stat-num sup { font-size: 1.25rem; color: var(--gold); }
.stat-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(245, 236, 217, 0.5); }

section { padding: 7rem 0; position: relative; }

.brands {
  padding: 5rem 0;
  border-top: 1px solid rgba(212, 175, 106, 0.1);
  border-bottom: 1px solid rgba(212, 175, 106, 0.1);
  background: rgba(15, 4, 24, 0.5); overflow: hidden;
}
.brands-label { text-align: center; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(212, 175, 106, 0.6); margin-bottom: 3rem; }
.brands-track { display: flex; gap: 5rem; animation: marquee 35s linear infinite; width: max-content; }
.brand-item { font-family: var(--serif); font-size: 2rem; font-style: italic; color: rgba(245, 236, 217, 0.4); white-space: nowrap; letter-spacing: 0.05em; transition: color 0.3s ease; display: flex; align-items: center; gap: 1rem; }
.brand-item:hover { color: var(--gold-light); }
.brand-item::after { content: '✦'; color: var(--gold); font-size: 1rem; opacity: 0.6; }
.brand-item:last-child::after { display: none; }

.process { background: linear-gradient(180deg, transparent 0%, rgba(45, 18, 72, 0.3) 50%, transparent 100%); }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 4rem; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent); opacity: 0.3; z-index: 0; }
.process-step { position: relative; padding: 3rem 2rem; background: rgba(26, 10, 46, 0.6); border: 1px solid rgba(212, 175, 106, 0.1); border-radius: 4px; transition: all 0.5s ease; backdrop-filter: blur(10px); z-index: 1; }
.process-step:hover { border-color: rgba(212, 175, 106, 0.4); transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); }
.step-num-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; }
.step-circle { width: 80px; height: 80px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; background: var(--purple-deepest); }
.step-circle::before { content: ''; position: absolute; inset: -6px; border: 1px dashed rgba(212, 175, 106, 0.4); border-radius: 50%; }
.step-num { font-family: var(--serif); font-style: italic; font-size: 2.25rem; background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step-title { font-family: var(--serif); font-size: 1.75rem; font-weight: 500; color: var(--cream); margin-bottom: 1rem; text-align: center; }
.step-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.step-desc { font-size: 0.95rem; color: rgba(245, 236, 217, 0.65); line-height: 1.75; text-align: center; }

.pricing { padding-top: 9rem; }
.pricing-header { text-align: center; margin-bottom: 5rem; }
.pricing-header .section-eyebrow { justify-content: center; }
.pricing-header .section-eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
.pricing-header .section-intro { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: stretch; }
.price-card { position: relative; padding: 3rem 2.5rem; background: linear-gradient(180deg, rgba(45, 18, 72, 0.7) 0%, rgba(26, 10, 46, 0.5) 100%); border: 1px solid rgba(212, 175, 106, 0.15); border-radius: 4px; backdrop-filter: blur(10px); transition: all 0.5s ease; display: flex; flex-direction: column; }
.price-card:hover { border-color: rgba(212, 175, 106, 0.4); transform: translateY(-6px); }
.price-card.featured { background: linear-gradient(180deg, rgba(61, 24, 96, 0.85) 0%, rgba(45, 18, 72, 0.7) 100%); border-color: var(--gold); box-shadow: 0 30px 80px rgba(212, 175, 106, 0.12); transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 0.4rem 1.25rem; background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); color: var(--purple-deepest); font-family: var(--sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; border-radius: 2px; }
.price-tier { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.price-name { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: var(--cream); margin-bottom: 1rem; line-height: 1; }
.price-name em { font-style: italic; }
.price-desc { font-size: 0.875rem; color: rgba(245, 236, 217, 0.6); margin-bottom: 2rem; line-height: 1.6; min-height: 3rem; }
.price-cost { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(212, 175, 106, 0.15); }
.price-currency { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--gold); }
.price-amount { font-family: var(--serif); font-size: 3.5rem; font-weight: 400; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.price-unit { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245, 236, 217, 0.5); }
.price-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; }
.price-features li { padding: 0.75rem 0; color: rgba(245, 236, 217, 0.8); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.875rem; border-bottom: 1px solid rgba(212, 175, 106, 0.06); }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✦'; color: var(--gold); font-size: 0.875rem; flex-shrink: 0; margin-top: 2px; }
.price-btn { display: block; text-align: center; padding: 1rem 1.5rem; border: 1px solid var(--gold); color: var(--gold-light); text-decoration: none; font-family: var(--sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; transition: all 0.3s ease; }
.price-btn:hover { background: var(--gold); color: var(--purple-deepest); }
.price-card.featured .price-btn { background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); color: var(--purple-deepest); }

/* Mobile */
@media (max-width: 968px) {
  .nav-inner { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.5rem; }
  .hero { padding: 7rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 5rem 0; }
  .page-header { padding: 8rem 0 3rem; }
}

/* ============================================
   ADDITIONS v2 — Logo image + Mobile menu + Team photos
   ============================================ */

/* Logo image variant - บังคับใช้รูป */
.logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  background: transparent;
  display: block;
}

/* Logo placeholder ถ้ายังไม่อัพโหลด */
.logo-placeholder {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  border-radius: 50%;
  color: var(--purple-deepest);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  border: 1px dashed rgba(212, 175, 106, 0.5);
}

/* Mobile hamburger */
.nav-mobile-toggle {
  display: none;
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-mobile-toggle span {
  width: 22px; height: 1px;
  background: var(--gold-light);
  transition: all 0.3s;
}

@media (max-width: 968px) {
  .nav-mobile-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(15, 4, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 106, 0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 106, 0.08);
  }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 0.5rem; text-align: center; }
}

/* Team member photos handled in styles-pages.css */

/* Founder photo */
.founder-card.has-photo {
  background: var(--purple-deepest);
  padding: 0;
  overflow: hidden;
}
.founder-card.has-photo::before { display: none; }
.founder-photo-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
