/* ==========================================================================
   PAGE HERO (about)
   ========================================================================== */
.page-hero { position: relative; padding: 96px 0 80px; color: var(--white); overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: -2; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(4, 12, 24, 0.85) 0%, rgba(4, 12, 24, 0.5) 55%, rgba(4, 12, 24, 0.35) 100%); z-index: -1; }
.page-hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.page-hero__copy { max-width: 600px; }
.page-hero__breadcrumbs { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.page-hero__breadcrumbs a { color: rgba(255,255,255,0.75); }
.page-hero__breadcrumbs a:hover { color: var(--white); }
.page-hero__breadcrumbs [aria-current] { color: var(--white); font-weight: 600; }
.page-hero__title { font-size: 68px; font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 18px; }
.page-hero__lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 480px; }

.page-hero__card { background: var(--brand-accent); color: var(--white); border-radius: 16px; padding: 28px 28px 32px; box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3); max-width: 420px; width: 100%; justify-self: end; }
.page-hero__card-title { font-size: 22px; font-weight: 700; color: var(--white); text-align: center; margin-bottom: 18px; }
.page-hero__form { display: grid; gap: 12px; }
.page-hero__field input, .page-hero__field textarea { width: 100%; padding: 12px 14px; border: none; border-radius: 6px; font-family: inherit; font-size: 15px; background: var(--white); color: var(--text-primary); resize: vertical; }
.page-hero__field input::placeholder, .page-hero__field textarea::placeholder { color: #9aa5b1; }
.page-hero__field input:focus, .page-hero__field textarea:focus { outline: 2px solid var(--brand-primary); outline-offset: 1px; }
.page-hero__form-submit { background: var(--brand-primary); color: var(--white); box-shadow: none; margin-top: 6px; width: 100%; }
.page-hero__form-submit:hover { background: var(--brand-primary-hover); }

@media (max-width: 1024px) {
  .page-hero { padding: 72px 0 56px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero__card { justify-self: stretch; max-width: none; }
  .page-hero__title { font-size: 52px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 48px 0 40px; }
  .page-hero__title { font-size: 36px; }
  .page-hero__card { padding: 22px 20px 26px; }
}

/* ==========================================================================
   ABOUT COPY
   ========================================================================== */
.about-copy { padding: 80px 0 88px; background: var(--white); }
.about-copy__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.about-copy__inner p { font-size: 17px; line-height: 1.75; color: var(--text-primary); margin-bottom: 22px; }
.about-copy__inner p a { color: var(--brand-accent); text-decoration: underline; text-underline-offset: 3px; }
.about-copy__inner p a:hover { color: var(--brand-accent-hover); }
.about-copy__actions { margin-top: 14px; }

@media (max-width: 768px) {
  .about-copy { padding: 56px 0 64px; }
  .about-copy__inner p { font-size: 15px; }
}

/* ==========================================================================
   MISSION INTRO
   ========================================================================== */
.mission-intro { padding: 72px 0 32px; background: var(--bg-soft); }
.mission-intro__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.mission-intro__eyebrow { display: inline-block; color: var(--brand-primary); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.mission-intro__title { font-size: 40px; font-weight: 700; line-height: 1.2; color: var(--text-primary); margin-bottom: 16px; }
.mission-intro__lead { font-size: 16px; line-height: 1.65; color: var(--text-muted); }

@media (max-width: 768px) {
  .mission-intro { padding: 48px 0 24px; }
  .mission-intro__title { font-size: 28px; }
}

/* ==========================================================================
   VALUES (three cards: Honesty / Integrity / Professionalism)
   ========================================================================== */
.values { padding: 32px 0 96px; background: var(--bg-soft); }
.values__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }

.value-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12); }
.value-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-light); }
.value-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.value-card:hover .value-card__media img { transform: scale(1.04); }
.value-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.value-card__title { font-size: 24px; font-weight: 700; color: var(--brand-primary); line-height: 1.2; }
.value-card__body p { color: var(--text-muted); line-height: 1.7; font-size: 15px; }

@media (max-width: 1024px) {
  .values__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .values { padding: 24px 0 72px; }
}
@media (max-width: 768px) {
  .values { padding: 16px 0 56px; }
  .value-card__body { padding: 22px 20px 26px; }
  .value-card__title { font-size: 20px; }
}

/* ==========================================================================
   CLOSING CTA (about)
   ========================================================================== */
.closing-cta { padding: 88px 0 96px; background: var(--brand-primary); color: var(--white); }
.closing-cta__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.closing-cta__copy { max-width: 680px; }
.closing-cta__eyebrow { display: inline-block; padding: 6px 14px; background: rgba(255, 255, 255, 0.22); color: var(--white); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; margin-bottom: 18px; }
.closing-cta__title { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.closing-cta__copy > p { color: rgba(255, 255, 255, 0.94); line-height: 1.7; margin-bottom: 16px; font-size: 16px; }
.closing-cta__copy > p a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.closing-cta__copy > p a:hover { opacity: 0.8; }

.closing-cta__card { justify-self: end; width: 100%; max-width: 380px; background: var(--white); color: var(--text-primary); padding: 32px 28px; border-radius: 16px; box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25); text-align: center; position: sticky; top: 24px; }
.closing-cta__card-title { font-size: 22px; font-weight: 700; color: var(--brand-primary); margin-bottom: 6px; }
.closing-cta__card-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.closing-cta__card-phone { display: block; font-size: 32px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; letter-spacing: 0.01em; }
.closing-cta__card-phone:hover { color: var(--brand-primary); }
.closing-cta__card-btn { width: 100%; }
.closing-cta__card-address { margin-top: 18px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 1024px) {
  .closing-cta__grid { grid-template-columns: 1fr; gap: 40px; }
  .closing-cta__card { justify-self: center; position: static; }
}
@media (max-width: 768px) {
  .closing-cta { padding: 64px 0 72px; }
  .closing-cta__title { font-size: 26px; }
}
