/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b2e;
  --navy-mid:   #162740;
  --navy-light: #1e3555;
  --gold:       #c9a84c;
  --gold-light: #e8c96b;
  --white:      #ffffff;
  --off-white:  #f5f3ef;
  --gray-100:   #f0eff0;
  --gray-300:   #d1d0d4;
  --gray-500:   #878690;
  --gray-700:   #4a4851;
  --gray-900:   #1c1b22;
  --text:       #2a2836;
  --text-light: #5a5868;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-w:      1200px;
  --radius:     6px;
  --shadow:     0 2px 12px rgba(13,27,46,0.10);
  --shadow-lg:  0 8px 40px rgba(13,27,46,0.18);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; color: var(--text-light); }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--navy); }
.section--dark h2, .section--dark h3, .section--dark .section-eyebrow { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--light { background: var(--off-white); }
.center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: all 0.2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-light); }
.btn-ghost { background: transparent; color: var(--gray-500); border-color: var(--gray-300); }
.btn-ghost:hover { background: var(--gray-100); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-danger { background: #dc2626; color: #fff; border-color: #dc2626; }
.btn-danger:hover { background: #b91c1c; }

/* ── Section labels ───────────────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.6rem;
}
.section-intro { font-size: 1.1rem; color: var(--text-light); max-width: 700px; line-height: 1.7; }
.section-divider { border: none; border-top: 1px solid var(--gray-300); margin: 4rem 0; }
.gold { color: var(--gold); }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 0.85rem; padding-bottom: 0.85rem; }
.logo { display: flex; align-items: baseline; gap: 0; text-decoration: none; }
.logo-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.logo-speaks { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--gold); }
.main-nav ul { list-style: none; padding: 0; display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  padding: 0.5rem 0.85rem; border-radius: var(--radius); transition: all 0.15s;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.2s; border-radius: 2px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { background: var(--navy); position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 5rem 1.5rem; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image img { border-radius: 12px; box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ── Proof strip ──────────────────────────────────────────────────────────── */
.proof-strip { background: var(--gold); padding: 1.5rem 0; }
.proof-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.proof-stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--navy); font-family: var(--font-serif); }
.proof-stat span { font-size: 0.85rem; font-weight: 500; color: var(--navy-mid); }
.proof-divider { width: 1px; height: 40px; background: rgba(13,27,46,0.2); }
.proof-reviews { display: flex; align-items: center; gap: 0.5rem; color: var(--navy); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.proof-reviews:hover { text-decoration: underline; }

/* ── Bio intro ────────────────────────────────────────────────────────────── */
.bio-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.bio-image img { border-radius: 12px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.bio-text h2 { margin-bottom: 1.25rem; }
.bio-text p { margin-bottom: 1rem; }

/* ── Topics grid ──────────────────────────────────────────────────────────── */
.topics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.topic-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 2rem; transition: border-color 0.2s; }
.topic-card:hover { border-color: var(--gold); }
.topic-icon { font-size: 2rem; margin-bottom: 1rem; }
.topic-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.1rem; }
.topic-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ── Podcast teaser ───────────────────────────────────────────────────────── */
.podcast-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.podcast-text h2 { margin-bottom: 1.25rem; }
.yt-thumb { position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--gray-900); aspect-ratio: 16/9; }
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.yt-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: white; background: rgba(0,0,0,0.35); transition: background 0.2s;
}
.yt-thumb:hover .yt-play-btn { background: rgba(0,0,0,0.55); }

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.cta-band { background: var(--navy); padding: 5rem 0; text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.1rem; }

/* ── Page hero ────────────────────────────────────────────────────────────── */
.page-hero { background: var(--navy); padding: 5rem 0; }
.page-hero--short { padding: 3.5rem 0; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-sub { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 620px; }

/* ── Topics page ──────────────────────────────────────────────────────────── */
.topics-list { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.topic-item { display: flex; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--gray-300); }
.topic-item:last-child { border-bottom: none; }
.topic-number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--gold); opacity: 0.5; min-width: 60px; line-height: 1; }
.topic-body h3 { margin-bottom: 0.6rem; }
.topic-tag { display: inline-block; background: var(--navy); color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; padding: 0.25rem 0.6rem; border-radius: 4px; margin-right: 0.4rem; margin-top: 0.75rem; }

/* ── Podcast page ─────────────────────────────────────────────────────────── */
.podcast-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; }
.podcast-card { border: 1px solid var(--gray-300); border-radius: 10px; overflow: hidden; }
.yt-embed-wrap { position: relative; aspect-ratio: 16/9; }
.yt-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.podcast-card-body { padding: 1.5rem; }
.podcast-card-body h3 { margin-bottom: 0.75rem; }
.podcast-card--info { display: flex; flex-direction: column; justify-content: center; }
.platform-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; background: var(--navy); color: var(--white); border-radius: var(--radius); font-weight: 500; font-size: 0.9rem; margin-right: 0.5rem; margin-top: 0.5rem; }
.platform-link:hover { background: var(--navy-light); text-decoration: none; color: var(--white); }

/* ── Schedule page ────────────────────────────────────────────────────────── */
.schedule-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--gray-300); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--text); background: var(--white);
  transition: border-color 0.15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.required { color: #dc2626; }

.sidebar-card { background: var(--off-white); border-radius: 10px; padding: 1.5rem; margin-bottom: 1.25rem; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--navy); }
.checklist { list-style: none; padding: 0; }
.checklist li { padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; font-size: 0.92rem; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.plain-list { list-style: none; padding: 0; }
.plain-list li { font-size: 0.92rem; margin-bottom: 0.4rem; padding-left: 0; }
.icon-list li { padding-left: 0; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.95rem; }
.alert--success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.alert--error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── Articles ─────────────────────────────────────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.article-card { border: 1px solid var(--gray-300); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.article-card-body { padding: 1.75rem; }
.article-date { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.article-title { font-size: 1.2rem; margin-bottom: 0.75rem; }
.article-title a { color: var(--navy); }
.article-title a:hover { color: var(--gold); text-decoration: none; }
.article-excerpt { font-size: 0.92rem; color: var(--text-light); margin-bottom: 1rem; }
.article-read-more { font-size: 0.9rem; font-weight: 600; color: var(--gold); }

/* ── Single article ───────────────────────────────────────────────────────── */
.article-content-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start; }
.article-body.prose { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.article-body.prose h2 { margin: 2.5rem 0 1rem; }
.article-body.prose h3 { margin: 2rem 0 0.75rem; }
.article-body.prose p { margin-bottom: 1.4rem; }
.article-body.prose ul, .article-body.prose ol { margin-bottom: 1.4rem; }
.article-meta { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 0.5rem; }

/* ── About ────────────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.about-image img { border-radius: 12px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-text h2 { margin-bottom: 1.25rem; }
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.credential-card { background: var(--white); border-radius: 10px; padding: 2rem; box-shadow: var(--shadow); text-align: center; }
.credential-icon { font-size: 2rem; margin-bottom: 1rem; }
.credential-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }

/* ── Real estate page ─────────────────────────────────────────────────────── */
.re-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: center; }
.re-image img { border-radius: 12px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── Empty state ──────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 0; color: var(--gray-500); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 0.75rem; }
.footer-logo .logo-name, .footer-logo .logo-speaks { font-size: 1.3rem; }
.footer-nav ul { list-style: none; padding: 0; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 0.9rem; display: block; padding: 0.3rem 0; }
.footer-nav a:hover { color: var(--gold); text-decoration: none; }
.footer-social p { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.social-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { display: none; }
  .bio-grid, .about-grid, .re-grid { grid-template-columns: 1fr; gap: 2rem; }
  .podcast-inner { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .article-content-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  .nav-toggle { display: flex; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-mid); padding: 1rem 1.5rem 1.5rem; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 0.75rem 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
  .booking-form .form-row { grid-template-columns: 1fr; }
  .proof-inner { gap: 1rem; }
  .proof-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .topic-item { flex-direction: column; gap: 0.5rem; }
  .topic-number { font-size: 1.5rem; min-width: auto; }
}
