/* ============================================================
   For The Love of Culture — Shared Stylesheet
   Mobile-first | CSS Variables | No external dependencies
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:       #1a2744;
  --navy-dark:  #111b33;
  --navy-mid:   #243156;
  --gold:       #c9973e;
  --gold-light: #ddb06a;
  --bg:         #faf8f5;
  --gold-wash:  rgba(201,151,62,.05);
  --white:      #ffffff;
  --text:       #2c2c2c;
  --text-muted: #5a5a5a;
  --border:     #e0d8ce;

  --faith-color:   #7c4db8;
  --finance-color: #2a7a4b;
  --health-color:  #c0392b;
  --work-color:    #1a6fa8;

  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
               Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;

  --nav-h:     120px;
  --max-w:     1140px;
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --shadow:    0 1px 12px rgba(0,0,0,.07), 0 0 1px rgba(0,0,0,.03);
  --shadow-md: 0 8px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
  --trans:     0.22s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

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

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  position: relative;
  padding-top: .85rem;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2rem;
  background: rgba(201,151,62,.12);
  color: var(--gold);
  margin-bottom: 1.1rem;
}

/* ── Section Divider ───────────────────────────────────────── */
.section-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--border) 25%, var(--border) 75%, transparent 100%);
  margin: 4.5rem auto;
  max-width: 480px;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
}

/* ── Navigation ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(201,151,62,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  flex-shrink: 0;
  margin-top: 60px;
}
.nav-logo img {
  max-height: 99px;
  max-width: 436px;
  width: auto;
  height: auto;
}
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy-dark);
  padding: 1rem 1.25rem 1.5rem;
  gap: .25rem;
  border-top: 2px solid var(--gold);
}

.nav-links.open { display: flex; }

.nav-links a {
  color: var(--navy);
  font-size: .95rem;
  font-weight: 500;
  padding: .55rem .5rem;
  border-radius: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--trans), border-color var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: transparent;
  border-bottom-color: var(--gold);
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  border-radius: 4px;
  transition: background var(--trans);
}
.nav-hamburger:hover { background: rgba(0,0,0,.06); }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-hamburger { display: none; }

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    border: none;
    gap: .25rem;
    align-items: center;
  }

  .nav-links a { padding: .4rem .75rem; }
}

/* ── Hero — Home ───────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,151,62,.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(201,151,62,.08) 50%,
    rgba(255,255,255,.04) 52%,
    transparent 64%
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,151,62,.45);
  padding: .35rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.hero-eyebrow {
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.13;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

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

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Inner Page Hero ───────────────────────────────────────── */
.page-hero {
  padding: 3.5rem 0 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(201,151,62,.10) 50%,
    rgba(255,255,255,.05) 52%,
    transparent 64%
  );
  pointer-events: none;
}

.page-hero .container { position: relative; }

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: .75rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
}

.hero-faith   { background: linear-gradient(135deg, #3b1f6b 0%, #6b3aaa 50%, #8b5cc8 100%); }
.hero-finance { background: linear-gradient(135deg, #0d3d22 0%, #1e6b3a 50%, #2f8a54 100%); }
.hero-health  { background: linear-gradient(135deg, #6b1212 0%, #a82a2a 50%, #cc3f3f 100%); }
.hero-work    { background: linear-gradient(135deg, #0b3558 0%, #155d8e 50%, #1e7bbf 100%); }

/* ── Pillars Section ───────────────────────────────────────── */
.pillars {
  padding: 5rem 0;
  background: var(--gold-wash);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 540px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2.25rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
}

.pillar-card.faith   { border-top-color: var(--faith-color); }
.pillar-card.finance { border-top-color: var(--finance-color); }
.pillar-card.health  { border-top-color: var(--health-color); }
.pillar-card.work    { border-top-color: var(--work-color); }

.pillar-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(201,151,62,.09);
  padding: 10px;
}

.pillar-card.faith   .pillar-icon { background: rgba(124,77,184,.09); }
.pillar-card.finance .pillar-icon { background: rgba(42,122,75,.09); }
.pillar-card.health  .pillar-icon { background: rgba(192,57,43,.09); }
.pillar-card.work    .pillar-icon { background: rgba(26,111,168,.09); }

.pillar-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: .6rem;
}

.pillar-card p {
  font-size: .95rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.pillar-link {
  font-size: .88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--navy);
  transition: color var(--trans), gap var(--trans);
}
.pillar-link:hover { color: var(--gold); gap: .55rem; }

/* ── Speaker Section ───────────────────────────────────────── */
.speaker {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
}

.speaker-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .speaker-inner { grid-template-columns: 1fr 1fr; }
}

.speaker-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-inline: auto;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-content .section-title { color: var(--white); }

.speaker-bio {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.speaker-topics {
  margin: 1.25rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.topic-tag {
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 2rem;
  background: rgba(201,151,62,.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,151,62,.3);
}

/* ── Publications Section ──────────────────────────────────── */
.publications {
  padding: 5rem 0;
  background: var(--white);
}

.pub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .pub-grid { grid-template-columns: repeat(3, 1fr); }
}

.pub-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg);
  border-left: 3px solid transparent;
  transition: box-shadow var(--trans), border-color var(--trans);
  display: flex;
  flex-direction: column;
}

.pub-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.pub-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  letter-spacing: .04em;
}

.pub-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pub-card-cat {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.pub-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.pub-card p {
  font-size: .9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.pub-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color var(--trans), gap var(--trans);
}
.pub-card-link:hover { color: var(--gold); gap: .5rem; }

/* ── Article Cards (inner pages) ───────────────────────────── */
.articles {
  padding: 5rem 0;
  background: var(--gold-wash);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 540px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .articles-grid { grid-template-columns: repeat(3, 1fr); }
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-left: 3px solid transparent;
  transition: box-shadow var(--trans), border-color var(--trans);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.article-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  letter-spacing: .04em;
}

.article-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-meta {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
}

.article-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.article-card p {
  font-size: .9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

/* ── Intro Section (inner pages) ───────────────────────────── */
.page-intro {
  padding: 4rem 0;
  background: var(--white);
}

.page-intro-inner {
  max-width: 760px;
}

.page-intro h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.page-intro p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.page-intro-inner > p:first-of-type {
  border-left: 2px solid rgba(201,151,62,.5);
  padding-left: 1.5rem;
  font-size: 1.08rem;
  color: var(--text);
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,151,62,.13) 0%, transparent 68%);
  pointer-events: none;
}

.cta-banner .container { position: relative; }

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-section {
  padding: 5rem 0;
}

.contact-section:nth-child(even) {
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-inner { grid-template-columns: 1fr 1.4fr; }
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-detail {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--gold);
}

.contact-detail p {
  margin: 0;
  font-size: .95rem;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,62,.2);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.form-submit {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-feedback {
  font-size: .9rem;
  font-weight: 600;
  color: var(--finance-color);
  display: none;
}

.form-feedback.visible { display: block; }

/* ── General Contact Cards ─────────────────────────────────── */
.contact-cards {
  background: var(--bg);
  color: var(--navy);
  padding: 5rem 0;
}

.contact-cards h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: .75rem;
}

.contact-cards-sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 540px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .contact-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: background var(--trans), box-shadow var(--trans);
}

.info-card:hover { box-shadow: var(--shadow-md); }

.info-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,151,62,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.info-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: .4rem;
  color: var(--navy);
}

.info-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Per-page colour overrides ─────────────────────────────── */
.page-faith   .btn-primary { background: var(--faith-color);   border-color: var(--faith-color);   color: var(--white); }
.page-faith   .btn-primary:hover { background: #9b68d4; border-color: #9b68d4; }

.page-finance .btn-primary { background: var(--finance-color); border-color: var(--finance-color); color: var(--white); }
.page-finance .btn-primary:hover { background: #37a062; border-color: #37a062; }

.page-health  .btn-primary { background: var(--health-color);  border-color: var(--health-color);  color: var(--white); }
.page-health  .btn-primary:hover { background: #d9534f; border-color: #d9534f; }

.page-work    .btn-primary { background: var(--work-color);    border-color: var(--work-color);    color: var(--white); }
.page-work    .btn-primary:hover { background: #2589cc; border-color: #2589cc; }

.page-faith   .cta-banner { background: var(--faith-color); }
.page-finance .cta-banner { background: var(--finance-color); }
.page-health  .cta-banner { background: var(--health-color); }
.page-work    .cta-banner { background: var(--work-color); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  color: var(--text);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--border);
}

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

@media (min-width: 540px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; }
}

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

.footer-logo img {
  max-height: 74px;
  max-width: 260px;
  width: auto;
  height: auto;
}

.footer-links h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  color: var(--navy);
  font-size: .92rem;
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold); }

.footer-newsletter h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .6rem;
}

.footer-newsletter p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: .6rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  font-family: var(--font-body);
  transition: border-color var(--trans);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form button {
  padding: .6rem 1.1rem;
  font-size: .88rem;
}

.newsletter-success {
  font-size: .88rem;
  color: var(--gold);
  margin-top: .5rem;
  display: none;
}
.newsletter-success.visible { display: block; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 540px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: .82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  font-size: .82rem;
  transition: color var(--trans);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── Offerings Carousel ─────────────────────────────────────── */
.carousel {
  position: relative;
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
}

.carousel-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  padding: 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 480px) {
  .carousel-card {
    padding: 2rem 1.75rem;
    gap: 1.75rem;
  }
}

@media (min-width: 640px) {
  .carousel-card {
    grid-template-columns: 200px 1fr;
    padding: 3rem 2.5rem;
    gap: 2rem;
  }
}

.carousel-card--no-visual {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-inline: auto;
}

.carousel-card-visual .article-card-img {
  aspect-ratio: unset;
  height: 100%;
}

.carousel-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 140px;
}

.carousel-card-visual iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-thumb-wrap {
  position: relative;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  transition: transform .2s;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@media (min-width: 640px) {
  .carousel-card-visual {
    height: 200px;
  }
}

.carousel-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.carousel-book-cover {
  max-width: 110px;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .carousel-book-cover { max-width: 150px; }
}

.carousel-card-body .offering-type {
  margin-bottom: .5rem;
}

.carousel-card-body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 4vw, 1.75rem);
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.carousel-card-body > p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .carousel-card-body > p { font-size: 1rem; margin-bottom: 1.5rem; }
}


.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.25rem;
}

@media (min-width: 480px) {
  .carousel-nav { gap: 1.25rem; margin-top: 1.5rem; }
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans), color var(--trans);
}

@media (min-width: 480px) {
  .carousel-btn { width: 44px; height: 44px; font-size: 1.6rem; }
}

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

.carousel-dots {
  display: flex;
  gap: .4rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(201,151,62,.3);
  cursor: pointer;
  padding: 0;
  transition: background var(--trans), transform var(--trans);
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ── Podcast Links ───────────────────────────────────────────── */
.podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.podcast-link {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .4rem 1rem;
  border-radius: 2rem;
  border: 2px solid var(--gold);
  color: var(--navy);
  background: transparent;
  transition: background var(--trans), color var(--trans);
}

.podcast-link:hover {
  background: var(--gold);
  color: var(--navy);
}

/* podcast-links on navy background (faith feature card) */
.page-faith .podcast-link {
  border-color: var(--faith-color);
  color: var(--faith-color);
}

.page-faith .podcast-link:hover {
  background: var(--faith-color);
  color: var(--white);
}

/* ── Pillar Feature Section ─────────────────────────────────── */
.pillar-feature {
  padding: 4rem 0;
  background: var(--bg);
}

.pillar-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .pillar-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card-type {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: .95rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2rem;
  background: rgba(201,151,62,.12);
  color: var(--gold);
  border: 1px solid rgba(201,151,62,.3);
  width: fit-content;
}

.feature-logo {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: var(--radius);
  margin: 0 auto 1.5rem;
}

.page-faith   .feature-card { border-top-color: var(--faith-color); }
.page-finance .feature-card { border-top-color: var(--finance-color); }
.page-health  .feature-card { border-top-color: var(--health-color); }
.page-work    .feature-card { border-top-color: var(--work-color); }

.page-faith   .feature-card-type { color: var(--faith-color); }
.page-finance .feature-card-type { color: var(--finance-color); }
.page-health  .feature-card-type { color: var(--health-color); }
.page-work    .feature-card-type { color: var(--work-color); }

/* ── Offerings Section (home page) ─────────────────────────── */
.offerings {
  padding: 5rem 0;
  background: var(--white);
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 540px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .offerings-grid { grid-template-columns: repeat(4, 1fr); }
}

.offering-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--trans), transform var(--trans);
  display: flex;
  flex-direction: column;
}

.offering-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.offering-type {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.offering-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.offering-card p {
  font-size: .88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.offering-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color var(--trans), gap var(--trans);
}
.offering-link:hover { color: var(--gold); gap: .5rem; }

.offering-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.store-badge {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--trans);
}
.store-badge:hover { opacity: 0.85; }

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.offering-logo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: var(--radius);
  margin: 0 auto 1.25rem;
}

.offering-coming-soon {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 2rem;
  background: rgba(201,151,62,.12);
  color: var(--gold);
  border: 1px solid rgba(201,151,62,.3);
  width: fit-content;
}

/* Book card variant inside offerings — keeps image */
.offering-card.has-cover {
  padding: 0;
  overflow: hidden;
}

.offering-card.has-cover .offering-cover {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.offering-card.has-cover .offering-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offering-card.has-cover .offering-type { margin-bottom: .4rem; }
.offering-card.has-cover h3 { font-size: .98rem; margin-bottom: .4rem; }
.offering-card.has-cover p  { font-size: .85rem; margin-bottom: .75rem; }

/* ── About Page ─────────────────────────────────────────────── */
.hero-about {
  background: linear-gradient(135deg, #111b33 0%, #1a2744 55%, #243156 100%);
}

.about-mission {
  padding: 5rem 0;
  background: var(--white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.mission-block,
.vision-block {
  border-left: 2px solid rgba(201,151,62,.4);
  padding-left: 1.75rem;
}

.mission-block h2,
.vision-block h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--navy);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-top: .6rem;
}

.about-values {
  padding: 5rem 0;
  background: var(--gold-wash);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: .65rem;
}

.value-card > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
}

.value-card details {
  margin-top: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.value-card details summary {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--trans);
  user-select: none;
}

.value-card details summary::-webkit-details-marker { display: none; }
.value-card details summary::marker { display: none; }

.value-card details summary::after {
  content: '→';
  display: inline-block;
  transition: transform var(--trans);
}

.value-card details[open] summary::after {
  transform: rotate(90deg);
}

.value-card details[open] summary {
  color: var(--navy);
}

.value-card details > p {
  margin-top: 1rem;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.72;
  animation: fadeSlideIn .2s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-story {
  padding: 5rem 0;
  background: var(--white);
}

.about-story-inner {
  max-width: 760px;
}

.story-body {
  margin-top: .5rem;
}

.story-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 1.35rem;
}

.story-body p:first-child {
  font-size: 1.18rem;
  color: var(--text);
  font-family: var(--font-head);
  font-style: italic;
  line-height: 1.65;
  border-left: 2px solid rgba(201,151,62,.5);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .about-mission,
  .about-values,
  .about-story { padding: 6.5rem 0; }
}

/* ── Services Page ───────────────────────────────────────────── */
.hero-services {
  background: linear-gradient(135deg, #0e1a30 0%, #1a2744 55%, #2a3560 100%);
}

.services-intro {
  padding: 5rem 0;
  background: var(--white);
}

.align-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .align-pillars { grid-template-columns: repeat(3, 1fr); }
}

.align-pillar {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--gold);
}

.align-pillar h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: .6rem;
}

.align-pillar ul {
  padding-left: 1rem;
  list-style: disc;
}

.align-pillar ul li {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: .3rem;
}

.services-plans {
  padding: 5rem 0;
  background: var(--gold-wash);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-card--featured {
  border-top-color: var(--gold);
  box-shadow: 0 4px 32px rgba(201,151,62,.18), 0 1px 8px rgba(0,0,0,.06);
}

.plan-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 2rem;
  background: rgba(201,151,62,.12);
  color: var(--gold);
  border: 1px solid rgba(201,151,62,.3);
  margin-bottom: 1rem;
  width: fit-content;
}

.plan-card--featured .plan-badge {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.plan-audience {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  font-style: italic;
}

.plan-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: .25rem;
}

.plan-subtitle {
  font-size: .88rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.plan-duration {
  font-size: .88rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  margin-bottom: 1.5rem;
}

.plan-price-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.plan-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .2rem 0;
}

.plan-price-label {
  font-size: .88rem;
  color: var(--text-muted);
}

.plan-price-amount {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.plan-price-amount--featured {
  color: var(--gold);
}

.plan-price-save {
  font-size: .75rem;
  color: var(--finance-color);
  font-weight: 600;
  margin-left: .4rem;
}

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.75rem;
}

.plan-features li {
  font-size: .92rem;
  color: var(--text-muted);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
}

/* ── Focused Engagements Table ──────────────────────────────── */
.services-focused {
  padding: 5rem 0;
  background: var(--white);
}

.focused-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.focused-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .92rem;
  min-width: 580px;
}

.focused-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 1rem 1.25rem;
  text-align: left;
}

.focused-table th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.focused-table th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.focused-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

.focused-table tr:last-child td {
  border-bottom: none;
}

.focused-table tr:nth-child(even) td {
  background: var(--bg);
}

.focused-table .area-label {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--navy);
  font-weight: 700;
}

.focused-table .price-range {
  color: var(--navy);
  font-weight: 600;
}

.focused-timeline {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .2rem;
  font-style: italic;
}

/* ── Consultation Booking Page ──────────────────────────────── */
.hero-consultation {
  background: linear-gradient(135deg, #111b33 0%, #1a2744 55%, #243156 100%);
}

.consult-intro {
  padding: 4rem 0;
  background: var(--white);
}

.consult-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .consult-intro-grid { grid-template-columns: 1fr auto; gap: 4rem; }
}

.consult-intro p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .75rem;
}

.consult-price-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  text-align: center;
  flex-shrink: 0;
  min-width: 200px;
}

.consult-price-card .price-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.consult-price-card .price-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-top: .35rem;
}

.booking-section {
  padding: 5rem 0;
  background: var(--gold-wash);
}

.booking-success-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.booking-success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--finance-color);
}

.booking-success-card h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.booking-success-card p {
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: .75rem;
}

.booking-inner {
  max-width: 720px;
  margin: 0 auto;
}

.booking-step {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.booking-step h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

/* Calendar */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--trans), background var(--trans), color var(--trans);
}

.cal-nav-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.cal-nav-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

#cal-month {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}

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

.cal-header-cell {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .5rem 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: default;
  color: var(--text-muted);
  transition: background var(--trans), color var(--trans);
}

.cal-day--available {
  background: rgba(201,151,62,.1);
  color: var(--navy);
  cursor: pointer;
  font-weight: 600;
  border: 1.5px solid rgba(201,151,62,.3);
}

.cal-day--available:hover {
  background: rgba(201,151,62,.25);
  border-color: var(--gold);
}

.cal-day--selected {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  font-weight: 700;
}

.cal-day--past,
.cal-day--unavailable {
  opacity: .35;
}

.cal-day--other {
  opacity: .2;
}

.cal-legend {
  display: flex;
  gap: 1.25rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
}

.cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Time slots */
.step-intro {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.timeslots {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.timeslot {
  padding: .5rem 1.1rem;
  border-radius: 2rem;
  border: 2px solid var(--border);
  background: var(--bg);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans), color var(--trans);
}

.timeslot:hover {
  border-color: var(--gold);
  background: rgba(201,151,62,.08);
}

.timeslot--selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Booking form */
.booking-summary {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.booking-chip {
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 2rem;
  background: rgba(201,151,62,.12);
  color: var(--navy);
  border: 1px solid rgba(201,151,62,.3);
}

.booking-pay-note {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .75rem;
}

/* Expect section */
.consult-expect {
  padding: 5rem 0;
  background: var(--white);
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .expect-grid { grid-template-columns: repeat(3, 1fr); }
}

.expect-card {
  text-align: center;
  padding: 1.75rem 1.5rem;
}

.expect-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}

.expect-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.expect-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (min-width: 900px) {
  .services-intro,
  .services-plans,
  .services-focused,
  .consult-intro,
  .booking-section,
  .consult-expect { padding: 6.5rem 0; }
}

/* ── Desktop breathing room ─────────────────────────────────── */
@media (min-width: 900px) {
  .pillars,
  .articles,
  .publications,
  .offerings,
  .speaker { padding: 6.5rem 0; }

  .pillar-feature { padding: 5.5rem 0; }

  .page-intro { padding: 5.5rem 0; }

  .cta-banner { padding: 6.5rem 0; }

  .contact-section { padding: 6rem 0; }
}
