/* ============================================================
   JESSICA CRAIG PSYCH TESTING — Main Stylesheet
   ============================================================ */

/* Fonts loaded via <link> in HTML <head> for performance */

:root {
  --jc-navy: #122040;          /* Darker navy for stronger headlines */
  --jc-navy-dark: #0a1430;
  --jc-gold: #7a5f17;           /* WCAG AA passes 5.65:1 on cream */
  --jc-gold-deep: #7a5f17;      /* Even darker for emphasis */
  --jc-gold-light: #d4b85a;     /* Lighter gold (only for use on dark backgrounds) */
  --jc-gold-bright: #e8cc6a;    /* Brightest — for hover states on dark */
  --jc-cream: #f9f7f3;
  --jc-cream-dark: #f5edd8;
  --jc-terracotta: #b87560;
  --jc-terracotta-light: #e0a990;
  --jc-terracotta-soft: #faf0ea;
  --jc-darkred: #8b0000;
  --jc-darkred-light: #a82020;
  --jc-darkred-soft: #f5e8e8;
  --jc-text: #1a2438;
  --jc-text-soft: #2e3e58;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--jc-text);
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── TOP NAVIGATION (preview switcher style — gold pills, one row) ── */
.jc-topnav {
  background: #0f1a33;
  padding: 14px 24px;
  border-bottom: 2px solid var(--jc-gold);
  position: sticky;
  top: 0;
  z-index: 200;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.jc-topnav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: max-content;
  justify-content: center;
}
.jc-topnav-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(226,196,122,0.9);
  font-weight: 600;
  margin-right: 10px;
  white-space: nowrap;
}
.jc-topnav-link {
  background: transparent;
  color: #f9f7f3;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.2s;
  font-family: 'Source Sans 3', sans-serif;
  white-space: nowrap;
  display: inline-block;
}
.jc-topnav-link:hover {
  border-color: var(--jc-gold);
  color: var(--jc-gold-light);
}
.jc-topnav-link.active {
  background: var(--jc-gold);
  color: var(--jc-navy-dark);
  border-color: var(--jc-gold);
  font-weight: 600;
}
.jc-topnav-cta-call {
  background: rgba(139,0,0,0.2);
  color: #ffd0d0;
  border: 1px solid rgba(139,0,0,0.5);
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  white-space: nowrap;
  transition: all 0.2s;
}
.jc-topnav-cta-call:hover {
  background: var(--jc-darkred);
  color: #ffffff;
  border-color: var(--jc-darkred);
}
.jc-topnav-cta-book {
  background: var(--jc-gold);
  color: var(--jc-navy-dark);
  border: 1px solid var(--jc-gold);
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  white-space: nowrap;
  transition: all 0.2s;
}
.jc-topnav-cta-book:hover {
  background: var(--jc-gold-light);
}

@media (max-width: 1100px) {
  .jc-topnav { padding: 14px 16px; }
  .jc-topnav-inner { justify-content: flex-start; }
  .jc-topnav-label { display: none; }
}

/* ── PROMINENT NAME / LEP HEADER (above hero) ──────────────── */
.jc-name-header {
  background: linear-gradient(180deg, var(--jc-cream) 0%, #ffffff 100%);
  padding: 36px 32px 28px;
  text-align: center;
  border-top: 4px solid var(--jc-darkred);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.jc-name-header-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--jc-navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.jc-name-header-credentials {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jc-gold);
  margin: 0 0 10px;
}
.jc-name-header-company {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--jc-navy);
  margin: 0;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.jc-section { padding: 96px 40px; }
.jc-section-light { background: #ffffff; }
.jc-section-offwhite { background: var(--jc-cream); }
.jc-section-dark { background: linear-gradient(145deg, var(--jc-navy-dark) 0%, var(--jc-navy) 100%); }
.jc-section-inner { max-width: 1160px; margin: 0 auto; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.jc-tag { display: block; font-family: 'Source Sans 3', sans-serif; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--jc-gold); margin-bottom: 22px; }
.jc-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 700; color: var(--jc-navy); line-height: 1.2; margin-bottom: 28px; letter-spacing: -0.01em; }
.jc-title-light { color: #ffffff; }
.jc-body { font-family: 'Source Sans 3', sans-serif; font-size: 1.12rem; line-height: 1.75; color: var(--jc-text); max-width: 780px; margin-bottom: 20px; font-weight: 400; }
.jc-body-light { color: rgba(255,255,255,0.92); }

/* ── HERO ────────────────────────────────────────────────── */
.jc-hero {
  background: linear-gradient(145deg, #122040 0%, #1a2d4f 45%, #8b5a4c 100%);
  padding: 80px 40px 100px;
  color: #ffffff;
}
.jc-hero-inner { max-width: 1160px; margin: 0 auto; }
.jc-hero-content { max-width: 860px; }
.jc-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--jc-gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 22px;
  border-radius: 100px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  font-family: 'Source Sans 3', sans-serif;
}
.jc-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.jc-hero-sub {
  font-size: 1.18rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
  max-width: 760px;
  font-weight: 400;
  font-family: 'Source Sans 3', sans-serif;
}
.jc-hero-tag {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--jc-gold-light);
  margin-bottom: 36px;
  line-height: 1.5;
  max-width: 720px;
  font-style: italic;
}
.jc-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero split (text left, photo right) */
.jc-hero-split .jc-hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.jc-hero-split .jc-hero-content { max-width: 700px; }
.jc-hero-portrait {
  display: flex;
  justify-content: center;
  align-items: center;
}
.jc-portrait-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 5;
  border-radius: 50% / 14%;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 0 2px rgba(201,168,76,0.5), 0 0 0 8px rgba(201,168,76,0.08);
  background: rgba(255,255,255,0.04);
}
.jc-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ── DARK RED ACCENTS ────────────────────────────────────── */
.jc-btn-darkred {
  background: var(--jc-darkred);
  color: #ffffff;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.jc-btn-darkred:hover {
  background: var(--jc-darkred-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(139,0,0,0.3);
}
/* Hero "Call Now" button gets dark red */
.jc-hero .jc-btn-call {
  background: var(--jc-darkred);
  color: #ffffff;
  border-color: var(--jc-darkred);
}
.jc-hero .jc-btn-call:hover {
  background: var(--jc-darkred-light);
  border-color: var(--jc-darkred-light);
}
/* Pillar hover gets a darkred underline */
.jc-pillar:hover .jc-pillar-arrow {
  color: var(--jc-darkred);
  border-bottom-color: var(--jc-darkred);
}
/* Testimonials quote mark already terracotta — that's good */
/* Final CTA call button */
.jc-cta-final .jc-btn-call {
  background: var(--jc-darkred);
  border-color: var(--jc-darkred);
  color: #ffffff;
}
.jc-cta-final .jc-btn-call:hover {
  background: var(--jc-darkred-light);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.jc-btn-primary {
  background: var(--jc-gold);
  color: var(--jc-navy-dark);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.jc-btn-primary:hover {
  background: var(--jc-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.3);
}
.jc-btn-secondary {
  background: transparent;
  color: #ffffff;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.jc-btn-secondary:hover {
  border-color: var(--jc-gold);
  color: var(--jc-gold-light);
}
.jc-btn-secondary-dark {
  color: var(--jc-navy);
  border: 1px solid rgba(26,45,79,0.3);
  background: transparent;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.jc-btn-secondary-dark:hover {
  border-color: var(--jc-navy);
  background: rgba(26,45,79,0.05);
}
.jc-btn-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jc-gold);
  text-decoration: none;
  border-bottom: 1.5px solid var(--jc-gold);
  padding-bottom: 3px;
  transition: all 0.25s;
}
.jc-btn-text:hover {
  color: var(--jc-navy);
  border-bottom-color: var(--jc-navy);
}

/* ── PHOTO BAND ──────────────────────────────────────────── */
.jc-photo-band {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}
.jc-photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jc-photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,45,79,0.15) 0%, rgba(26,45,79,0.35) 100%);
}
.jc-photo-band-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── SECTION DIVIDERS (with dark red accent option) ──────── */
.jc-section-divider {
  height: 80px;
  background: linear-gradient(180deg, var(--jc-cream) 0%, var(--jc-terracotta-soft) 50%, var(--jc-cream) 100%);
}
.jc-section-divider-red {
  height: 6px;
  background: var(--jc-darkred);
}
.jc-accent-bar-red {
  height: 4px;
  background: linear-gradient(90deg, var(--jc-darkred) 0%, var(--jc-gold) 100%);
}

/* ── HOME ABOUT ──────────────────────────────────────────── */
.jc-home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.jc-home-about-portrait { display: flex; justify-content: center; }
.jc-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--jc-cream-dark);
  display: block;
  width: 100%;
  max-width: 340px;
  border: 2px solid rgba(184,117,96,0.4);
}
.jc-photo-frame-portrait { aspect-ratio: 2 / 3; }
.jc-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jc-pullquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--jc-navy);
  margin: 0 0 32px 0;
  padding-left: 24px;
  border-left: 3px solid var(--jc-terracotta);
  font-style: italic;
}
.jc-credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 36px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(26,45,79,0.1);
  border-bottom: 1px solid rgba(26,45,79,0.1);
}
.jc-credential-badge {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jc-navy);
  padding: 7px 14px;
  background: transparent;
  border: 1px solid rgba(26,45,79,0.2);
  border-radius: 100px;
  white-space: nowrap;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.jc-testimonials-section { padding: 100px 40px; background: var(--jc-cream); }
.jc-testimonials-header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.jc-google-header-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.jc-google-stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbc05;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.jc-google-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--jc-text-soft);
}
.jc-google-label strong { color: var(--jc-navy); font-weight: 600; }
.jc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.jc-testimonial-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 36px 32px 28px;
  border: 1px solid rgba(26,45,79,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}
.jc-testimonial-card:hover {
  border-color: var(--jc-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,45,79,0.06);
}
.jc-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: var(--jc-terracotta);
  opacity: 0.2;
  line-height: 1;
}
.jc-testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbc05;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.jc-testimonial-quote {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--jc-text);
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.jc-testimonial-quote em { font-style: italic; color: var(--jc-navy); }
.jc-testimonial-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(26,45,79,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.jc-testimonial-name {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jc-navy);
}
.jc-testimonial-meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jc-text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.jc-google-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(26,45,79,0.15);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #4285f4;
}
.jc-testimonials-cta { text-align: center; margin-top: 48px; }
.jc-testimonials-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jc-navy);
  text-decoration: none;
  padding: 12px 24px;
  border: 1.5px solid rgba(26,45,79,0.2);
  border-radius: 100px;
  transition: all 0.25s;
}
.jc-testimonials-cta-link:hover {
  border-color: var(--jc-terracotta);
  color: var(--jc-terracotta);
  background: var(--jc-terracotta-soft);
}

/* ── PILLARS ─────────────────────────────────────────────── */
.jc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.jc-pillar {
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 8px;
  border: 1px solid rgba(26,45,79,0.08);
  border-top: 3px solid transparent;
  box-shadow: 0 1px 3px rgba(26,45,79,0.04), 0 8px 24px rgba(26,45,79,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.jc-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(26,45,79,0.06), 0 16px 40px rgba(26,45,79,0.08);
  border-color: rgba(201,168,76,0.3);
  border-top-color: var(--jc-darkred);
}
.jc-pillar-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--jc-gold);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  font-style: italic;
}
.jc-pillar h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--jc-navy);
  margin: 0 0 16px 0;
  line-height: 1.3;
}
.jc-pillar p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--jc-text-soft);
  margin: 0 0 24px 0;
}
.jc-pillar-arrow {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jc-gold);
  border-bottom: 1.5px solid var(--jc-gold);
  align-self: flex-start;
}

/* ── FOCUS GRID (specialty care) ─────────────────────────── */
.jc-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(26,45,79,0.12);
  border: 1px solid rgba(26,45,79,0.12);
  margin-top: 56px;
}
.jc-focus-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
  padding: 36px 28px 32px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  min-height: 160px;
}
.jc-focus-card:hover { background: var(--jc-terracotta-soft); }
.jc-focus-card:hover h3 { color: var(--jc-terracotta); }
.jc-focus-label {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jc-gold);
}
.jc-focus-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--jc-navy);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* ── WHY CARDS (dark section) ────────────────────────────── */
.jc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.jc-why-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 34px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 3px solid var(--jc-gold);
}
.jc-why-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--jc-gold-light);
  margin: 0 0 16px 0;
}
.jc-why-card p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.jc-cta-final { text-align: center; padding: 100px 40px; }
.jc-cta-inner { max-width: 820px; margin: 0 auto; }
.jc-cta-final .jc-body { margin-left: auto; margin-right: auto; }

/* ── FEES PAGE ───────────────────────────────────────────── */
.jc-fees-header { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.jc-fee-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26,45,79,0.12);
}
.jc-fee-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(26,45,79,0.12);
  align-items: center;
}
.jc-fee-main h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--jc-navy);
  margin: 0 0 10px 0;
}
.jc-fee-main p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--jc-text-soft);
  margin: 0;
}
.jc-fee-price { text-align: right; }
.jc-fee-from {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jc-text-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.jc-fee-amount {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--jc-navy);
}

/* ── BLOG ───────────────────────────────────────────────── */
.jc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}
.jc-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(26,45,79,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.jc-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,45,79,0.08);
  border-color: rgba(201,168,76,0.3);
}
.jc-blog-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #f5edd8 0%, #e8dcbf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.jc-blog-meta {
  display: flex;
  justify-content: space-between;
  padding: 20px 28px 10px;
}
.jc-blog-category {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jc-gold);
}
.jc-blog-date {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  color: var(--jc-text-soft);
  font-style: italic;
}
.jc-blog-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--jc-navy);
  margin: 0 28px 12px;
  line-height: 1.35;
}
.jc-blog-card p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--jc-text-soft);
  margin: 0 28px 20px;
}
.jc-blog-read {
  display: block;
  padding: 0 28px 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jc-gold);
}

/* ── FOOTER (CTA + serving + main + bottom — all seamless) ── */
.jc-footer {
  background: linear-gradient(145deg, #122040 0%, #1a2d4f 50%, #0f1a33 100%);
  color: rgba(255,255,255,0.85);
  padding: 0;
}

/* TOP: CTA section (merged into footer) */
.jc-footer-cta {
  text-align: center;
  padding: 100px 40px 80px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.jc-footer-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}
.jc-footer-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--jc-gold-light);
  margin: 0 0 12px;
  line-height: 1.5;
}
.jc-footer-quote-attr {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 40px;
  letter-spacing: 0.06em;
}
.jc-footer-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.jc-footer-cta-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto 32px;
}
.jc-footer-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SERVING band (horizontal) */
.jc-footer-serving {
  text-align: center;
  padding: 24px 40px;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.jc-footer-serving-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jc-gold);
  white-space: nowrap;
}
.jc-footer-serving-cities {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  text-align: center;
}

/* MAIN: text columns (left) + big photo (right) */
.jc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
  padding: 80px 40px 60px;
  align-items: stretch;
}
.jc-footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}
.jc-footer-brand h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.jc-footer-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--jc-gold-light);
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
  font-style: italic;
}
.jc-footer-credentials {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.jc-footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jc-gold);
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.jc-footer-link {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.jc-footer-link:hover { color: var(--jc-gold-light); }

/* BIG photo on right */
.jc-footer-image {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.jc-footer-image-wrap {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.jc-footer-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BOTTOM: copyright */
.jc-footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 28px 40px;
}
.jc-footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.jc-footer-bottom p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* Responsive: tablet */
@media (max-width: 1100px) {
  .jc-footer-inner { grid-template-columns: 1fr 0.5fr; gap: 40px; padding: 60px 30px 40px; }
  .jc-footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .jc-footer-brand { grid-column: 1 / -1; }
}

/* Responsive: mobile */
@media (max-width: 700px) {
  .jc-footer-cta { padding: 60px 24px 50px; }
  .jc-footer-cta-btns { flex-direction: column; gap: 10px; }
  .jc-footer-cta-btns a { width: 100%; text-align: center; }
  .jc-footer-serving { padding: 20px 24px; flex-direction: column; gap: 8px; }
  .jc-footer-serving-cities { font-size: 0.85rem; line-height: 1.7; }
  .jc-footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 50px 24px 30px; }
  .jc-footer-content { grid-template-columns: 1fr; gap: 28px; }
  .jc-footer-image { justify-content: center; }
  .jc-footer-image-wrap { max-width: 320px; }
  .jc-footer-bottom { padding: 24px; }
}

/* ── CONTACT FORM ────────────────────────────────────────── */
.jc-contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.jc-form-row { margin-bottom: 20px; }
.jc-form-row label {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jc-navy);
  margin-bottom: 8px;
}
.jc-form-row input,
.jc-form-row textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  border: 1px solid rgba(26,45,79,0.25);
  border-radius: 6px;
  background: #ffffff;
  color: var(--jc-text);
  transition: border-color 0.2s;
}
.jc-form-row input:focus,
.jc-form-row textarea:focus {
  outline: none;
  border-color: var(--jc-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.jc-form-row textarea { min-height: 140px; resize: vertical; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .jc-hero-split .jc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .jc-hero-portrait { order: -1; max-width: 280px; margin: 0 auto; }
  .jc-pillars, .jc-why-grid { grid-template-columns: 1fr; }
  .jc-section { padding: 56px 20px; }
  .jc-hero { padding: 60px 20px 70px; }
  .jc-blog-grid { grid-template-columns: 1fr; }
  .jc-fee-row { grid-template-columns: 1fr; gap: 16px; }
  .jc-fee-price { text-align: left; }
  .jc-home-about-grid { grid-template-columns: 1fr; gap: 44px; }
  .jc-home-about-portrait { max-width: 280px; margin: 0 auto; }
  .jc-focus-grid { grid-template-columns: repeat(2, 1fr); }
  .jc-testimonials-grid { grid-template-columns: 1fr; }
  .jc-name-header { padding: 24px 20px 20px; }
}