/* ================================
   PAGE-SPECIFIC CSS: ABOUT PAGE
   ================================ */

/* Breadcrumb */
.breadcrumb {
  background: var(--cream);
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--sand);
}
.breadcrumb a { color: var(--dark-blue); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--deepest-blue); text-decoration: underline; }
.breadcrumb-sep { margin: 0 0.5rem; color: var(--text-lighter); }

/* Page hero — smaller than homepage hero, editorial */
.page-hero {
  position: relative;
  background: var(--deepest-blue);
  color: white;
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(124,181,214,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 80% 70%, rgba(43,90,140,0.3) 0%, transparent 70%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: var(--font-accent); font-style: italic;
  color: var(--light-blue); font-size: 1rem;
  letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: white; line-height: 1.15;
  font-weight: 500; margin-bottom: var(--space-sm);
  max-width: 900px;
}
.page-hero h1 em { color: var(--light-blue); font-style: italic; }
.page-hero-lede {
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 720px;
}

/* Eyebrow */
.eyebrow {
  font-family: var(--font-accent); font-style: italic;
  color: var(--green-accent-text); font-size: 1rem;
  letter-spacing: 0.08em; margin-bottom: 0.75rem;
  text-transform: none;
}

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--deepest-blue);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.section-title em { color: var(--dark-blue); font-style: italic; }

/* Bio section */
.bio-section { padding: var(--space-xl) 0; background: var(--warm-white); }
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items: start;
}
.bio-photo-wrap {
  position: relative;
}
.bio-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(27,58,92,0.18);
}
.bio-photo-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--light-blue);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.bio-credentials {
  margin-top: 2rem;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--green-accent-text);
}
.bio-credentials h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--deepest-blue);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.bio-credentials ul { list-style: none; }
.bio-credentials li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.3rem 0;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.bio-credentials li::before {
  content: '✓';
  color: var(--green-accent-text);
  font-weight: 700;
  flex-shrink: 0;
}
.bio-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--deepest-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 500;
}
.bio-text h2 em { color: var(--dark-blue); font-style: italic; }
.bio-text p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.bio-text p strong {
  color: var(--deepest-blue);
  font-weight: 600;
}
.bio-pullquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--dark-blue);
  line-height: 1.4;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 3px solid var(--green-accent-text);
  margin: 1.5rem 0;
}

/* Broker definition — the hero educational block */
.broker-def {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ice-blue) 100%);
  position: relative;
  overflow: hidden;
}
.broker-def::before {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 460px; height: 460px;
  background: url('../images/linda-lemay-icon-watermark.png') center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.broker-def-inner {
  max-width: 960px;
  position: relative;
  z-index: 1;
}
.broker-def-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-accent-text);
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--green-accent-text);
  border-radius: 100px;
  background: white;
}
.broker-def h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--deepest-blue);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.broker-def h2 em { color: var(--dark-blue); font-style: italic; }
.broker-def-intro {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.broker-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.broker-compare-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(27,58,92,0.06);
  position: relative;
}
.broker-compare-card.broker-card {
  border-top: 4px solid var(--green-accent-text);
}
.broker-compare-card.agent-card {
  border-top: 4px solid var(--text-lighter);
}
.broker-compare-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--deepest-blue);
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.broker-compare-card .role-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-lighter);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}
.broker-compare-card.broker-card .role-label { color: var(--green-accent-text); }
.broker-compare-card ul { list-style: none; }
.broker-compare-card li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--sand);
}
.broker-compare-card li:last-child { border-bottom: none; }
.broker-compare-card li::before {
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.broker-compare-card.broker-card li::before {
  content: '✓';
  color: var(--green-accent-text);
}
.broker-compare-card.agent-card li::before {
  content: '—';
  color: var(--text-lighter);
}
.broker-def-note {
  background: var(--deepest-blue);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.broker-def-note svg {
  width: 32px; height: 32px;
  stroke: var(--light-blue);
  fill: none; stroke-width: 1.5;
  flex-shrink: 0;
}
.broker-def-note-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: white;
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.broker-def-note-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* Stats strip */
.stats-strip {
  background: var(--cream);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--deepest-blue);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Values strip */
.values-strip {
  background: var(--deepest-blue);
  color: white;
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.values-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/linda-lemay-icon-watermark.png') center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.values-strip-inner { position: relative; z-index: 1; }
.values-strip .eyebrow { color: var(--light-blue); }
.values-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: white;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.values-slogan-dot {
  color: var(--light-blue);
  margin: 0 1rem;
  font-weight: 400;
}
.values-strip-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* Testimonials */
.testimonials-section { padding: var(--space-xl) 0; background: var(--warm-white); }
.testimonials-header { text-align: center; margin-bottom: var(--space-lg); }
.testimonials-header .eyebrow { display: block; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--lightest-blue);
  line-height: 1;
}
.testimonial-card blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--deepest-blue);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  padding-top: 0.75rem;
  border-top: 1px solid var(--sand);
}
.testimonial-stars {
  color: #F5A623;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* CTA Section */
.cta-section {
  padding: var(--space-xl) 0;
  background: var(--deepest-blue);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,181,214,0.15) 0%, transparent 70%);
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: white;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-section h2 em { color: var(--light-blue); font-style: italic; }
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.cta-section .btn-warm { border: none; background: white; }
.cta-ctas {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .bio-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .bio-photo-frame { display: none; }
  .broker-compare { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-hero { padding: var(--space-lg) 0; }
}
