/* =============================================
   ATARAXIA PARTNERS — STYLESHEET
   ============================================= */

:root {
  --navy:    #0f1623;
  --navy-2:  #1a2535;
  --navy-3:  #243044;
  --gold:    #c9a84c;
  --gold-lt: #e4c97a;
  --white:   #ffffff;
  --off-white: #f7f5f0;
  --text:    #2c2c2c;
  --text-lt: #6b7280;
  --border:  rgba(201,168,76,0.2);
  --radius:  4px;
  --radius-lg: 12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --trans:   0.3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--trans);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.3); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.6); }

.btn-large { padding: 18px 48px; font-size: 1rem; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section common */
section { padding: 100px 0; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-header h2 em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-lt);
  line-height: 1.75;
}

/* =============================================
   NAVIGATION
   ============================================= */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}

#nav.scrolled {
  background: rgba(15, 22, 35, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

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

#nav.scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 2px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

.lang-switch {
  font-size: 0.8rem !important;
  letter-spacing: 0.05em;
  opacity: 0.7;
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 5px 12px !important;
  border-radius: var(--radius) !important;
  transition: opacity var(--trans), border-color var(--trans) !important;
}
.lang-switch:hover { opacity: 1 !important; border-color: var(--gold) !important; color: var(--gold) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--trans);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s ease;
  border-left: 1px solid var(--border);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 28px; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  transition: color var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 32px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(36,48,68,0.8) 0%, transparent 60%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 80px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 48px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  white-space: nowrap;
}

.stat-num--sm {
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-align: center;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* =============================================
   CLIENTS
   ============================================= */
#clients {
  padding: 48px 0;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.clients-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 24px;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.clients-logos span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.clients-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 24px 0;
}

.affiliation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: rgba(201,168,76,0.06);
  transition: all var(--trans);
}
.affiliation-badge:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.credential-link {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color var(--trans);
}
.credential-link:hover { color: var(--gold-lt); text-decoration: underline; }

/* =============================================
   SERVICES
   ============================================= */
#services {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--trans);
}

.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* =============================================
   ABOUT
   ============================================= */
#about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-wrap {
  margin-bottom: 36px;
}

.about-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  filter: grayscale(20%);
}

.about-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-title {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.6;
}

.about-bio {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-statement {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 76, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.mission-statement p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
}

.mission-statement p + p {
  margin-top: 16px;
}

.about-credentials {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 32px;
}

.credential {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.credential-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.credential span {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.5;
}

/* Career Timeline */
.career-timeline {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.career-timeline h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 32px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.1);
}

.tl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.15);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.timeline-item.current .tl-dot {
  border-color: var(--gold);
  background: var(--gold);
}

.tl-content { flex: 1; }

.tl-period {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-lt);
  margin-bottom: 4px;
}

.tl-content strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}

.tl-org {
  display: block;
  font-size: 0.8125rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.tl-content p {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.6;
}

/* =============================================
   VENTURES
   ============================================= */
#ventures {
  background: var(--navy);
}

#ventures .section-eyebrow { color: var(--gold); }

#ventures .section-header h2 {
  color: var(--white);
}
#ventures .section-header h2 em { color: var(--gold); }
#ventures .section-sub { color: rgba(255,255,255,0.55); }

.ventures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.venture-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
  transition: all var(--trans);
}

.venture-card:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 60px rgba(201,168,76,0.08);
}

.venture-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.venture-logo-wrap {
  display: flex;
  flex-direction: column;
}

.venture-logo-text {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.venture-logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

.venture-badge {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
}

.venture-card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.venture-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
}

.venture-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.05);
}

.vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.vs strong {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.vs span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.04em;
}

.venture-operator-note {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 32px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

/* =============================================
   WHY ATARAXIA
   ============================================= */
#why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0;
}
.why-left h2 em { font-style: italic; color: var(--gold); }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.why-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1.3;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--text-lt);
  line-height: 1.75;
}

/* =============================================
   PHILOSOPHY / ETYMOLOGY
   ============================================= */
#philosophy {
  background: var(--navy);
  padding: 120px 0;
  overflow: hidden;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.philosophy-word {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 8px;
}

.greek-word {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.greek-romanised {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Etymology breakdown */
.etymology-block {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.etymology-parts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.etym-part {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.etym-glyph {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}

.etym-meaning {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.etym-plus {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  align-self: flex-start;
  padding-top: 2px;
}

.etym-result .etym-glyph {
  color: var(--gold);
}

.etym-result .etym-meaning {
  color: rgba(201,168,76,0.6);
}

/* Philosophy prose */
.philosophy-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophy-text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}

.philosophy-text p em {
  color: var(--gold);
  font-style: italic;
}

.philosophy-text p:nth-child(2) {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* Blockquote */
.philosophy-quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 0;
}

.philosophy-quote p {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 12px;
}

.philosophy-quote cite {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  font-style: normal;
}

@media (max-width: 900px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .philosophy-word {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
  }
  .greek-word { font-size: 3rem; }
}

@media (max-width: 600px) {
  .etymology-parts { gap: 12px; }
  .etym-glyph { font-size: 1.25rem; }
  .philosophy-word { flex-direction: column; gap: 8px; }
}

/* =============================================
   CONTACT
   ============================================= */
#contact {
  background: var(--off-white);
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 1.0625rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-decoration: none;
  transition: all var(--trans);
}

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

.contact-card.no-link { cursor: default; }

.contact-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.cc-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
}

.cc-value {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  word-break: break-all;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--navy);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-brand > .nav-logo + p,
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .why-grid { gap: 48px; }
  .stat { padding: 0 16px; }
  .stat-label { white-space: normal; text-align: center; max-width: 100px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 20px 24px; }

  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 28px 32px;
    margin-top: 48px;
  }
  .stat { padding: 0; }
  .stat-divider { width: 40px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 32px 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  .venture-card { padding: 32px 24px; }
  .venture-stats { grid-template-columns: 1fr; gap: 16px; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-methods { grid-template-columns: 1fr; }

  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .venture-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
