/* THE AGLER GROUP — Shared Design System */

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

:root {
  --navy:   #0D1B2A;
  --gold:   #B8972B;
  --gold-lt:#D4AF47;
  --cream:  #F7F4EE;
  --mid:    #6B7280;
  --white:  #FFFFFF;
  --rule:   rgba(184,151,43,0.25);
}

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

html { scroll-behavior: smooth; }

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(184,151,43,0.07) 100%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  max-width: 760px;
  margin-bottom: 24px;
}

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

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ── Section headings ── */
.section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-heading.light { color: var(--white); }

.section-intro {
  font-size: 17px;
  color: var(--mid);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.8;
}

.section-intro.light { color: rgba(255,255,255,0.65); }

/* ── Gold rule divider ── */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 40px;
}

/* ── Three column grid ── */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar-card {
  border-top: 2px solid var(--gold);
  padding-top: 28px;
}

.pillar-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--navy);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ── CTA band ── */
.cta-band {
  background: var(--cream);
  text-align: center;
  padding: 96px 0;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 17px;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ── Bio section ── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.bio-block { }

.bio-block h3 {
  font-size: 28px;
  margin-bottom: 4px;
}

.bio-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.bio-block p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.bio-leads {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-top: 8px;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}

.value-item p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
}

/* ── Services cards ── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.service-card {
  border: 1px solid #E5E0D5;
  border-radius: 4px;
  padding: 40px;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.08);
}

.service-card.featured {
  border-color: var(--gold);
  background: #FDFBF7;
}

.service-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,151,43,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin: 20px 0 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.service-card ul {
  list-style: none;
  margin: 16px 0;
}

.service-card ul li {
  font-size: 14px;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 1px solid #F0EBE2;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.service-card ul li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Talk cards ── */
.talk-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.talk-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px;
  border: 1px solid #E5E0D5;
  border-radius: 4px;
  align-items: start;
}

.talk-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(184,151,43,0.2);
  line-height: 1;
}

.talk-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.talk-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.talk-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── Footer ── */
footer {
  background: var(--navy);
  padding: 48px 0;
  border-top: 1px solid var(--rule);
}

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

footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .three-col { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .service-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .talk-card { grid-template-columns: 1fr; }
  .talk-num { font-size: 36px; }
  footer .container { flex-direction: column; gap: 12px; text-align: center; }
}
