/* ============================================================
   Lee Giordano — Home page styles
   Inherits chrome from _shared.css. Adds the home-specific
   hero variant + two-paths block + about teaser + trust strip
   + testimonial pull-quote.
   ============================================================ */

@import url("_shared.css");

/* =============================================================
   Hero — two-block layout: text column (eyebrow, headline, sub,
   slim credential line, CTAs) on the left, editorial portrait on
   the right. The 3-block stat/monogram composition is retired;
   the monogram now lives in the nav.
   ============================================================= */
.hero-grid {
  grid-template-columns: 1.18fr 1fr;
  grid-template-rows: 1fr;
  height: 470px;
}
.hero-left { grid-row: 1; justify-content: center; gap: 2.25rem; }
.hero-left-top { flex: none; }
.hero-headline {
  font-size: 46px;
  font-weight: 600;
  color: var(--lg-cream);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 1.25rem;
  text-wrap: balance;
  max-width: 16ch;
}
.hero-sub { margin-bottom: 0; }

/* Slim credential line under the sub */
.hero-credential {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-on-dark);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-on-dark-3);
  font-weight: 500;
  max-width: 42ch;
}

/* Right block — editorial portrait */
.hero-portrait {
  border-radius: 16px;
  background-color: var(--lg-deep-teal);
  background-image: url("../assets/headshot-duotone.jpg");
  background-size: cover;
  background-position: center 18%;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }
  .hero-headline { font-size: 36px; }
  .hero-portrait { min-height: 320px; aspect-ratio: 4 / 3; }
}

/* =============================================================
   Two-Paths — equal-weight cards, no visual hierarchy.
   The framing copy in each card does the sorting.
   ============================================================= */
.twopath-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (max-width: 920px) {
  .twopath-header { grid-template-columns: 1fr; gap: 1rem; }
}
.twopath-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 920px) { .twopath-grid { grid-template-columns: 1fr; } }
.path-card {
  background: var(--lg-white);
  border: 1px solid var(--border-hair);
  border-radius: 16px;
  padding: 2.5rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color var(--dur-base) var(--ease-out);
  min-height: 480px;
  text-decoration: none;
}
.path-card:hover { border-color: rgba(15,45,39,0.32); }
.path-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lg-sage);
  display: flex;
  align-items: center;
  gap: 14px;
}
.path-num {
  color: var(--lg-mint);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.path-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--lg-deep-teal);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.path-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 44ch;
}
.path-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.path-meta-chip {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--lg-deep-teal);
  background: var(--bg-cream);
  border: 1px solid var(--border-hair);
  border-radius: 100px;
  padding: 6px 12px;
  font-weight: 500;
}
.path-divider {
  height: 1px;
  background: var(--border-hair);
  margin: 0.25rem 0;
}
.path-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lg-deep-teal);
  cursor: pointer;
  margin-top: auto;
  padding-top: 0.25rem;
  background: none;
  border: none;
  text-align: left;
  letter-spacing: 0.01em;
}
.path-action .arrow {
  color: var(--lg-mint);
  font-size: 15px;
  line-height: 1;
  transition: transform var(--dur-base) var(--ease-out);
}
.path-action:hover .arrow { transform: translateX(3px); }

/* =============================================================
   About teaser — portrait + body
   ============================================================= */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 920px) {
  .about-teaser-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.about-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--lg-deep-teal);
  background-size: cover;
  background-position: center 22%;
  border-radius: 12px;
  filter: grayscale(100%) contrast(1.04);
}
.about-body {
  font-size: 18px;
  color: var(--lg-deep-teal);
  line-height: 1.6;
  max-width: 56ch;
  letter-spacing: -0.005em;
}
.about-body p + p { margin-top: 1rem; }
.about-body strong { font-weight: 600; }
.about-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2.25rem;
  border-top: 1px solid var(--border-hair);
  max-width: 480px;
}
.about-cred {
  padding: 1.25rem 1.5rem 1.25rem 0;
  border-right: 1px solid var(--border-hair);
}
.about-cred:last-child { border-right: none; padding-right: 0; }
.about-cred-value {
  font-size: 26px;
  font-weight: 600;
  color: var(--lg-deep-teal);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 4px;
}
.about-cred-label {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--lg-sage);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lg-deep-teal);
  cursor: pointer;
  margin-top: 2rem;
  letter-spacing: 0.01em;
}
.about-link .arrow {
  color: var(--lg-mint);
  transition: transform var(--dur-base) var(--ease-out);
}
.about-link:hover .arrow { transform: translateX(3px); }

/* =============================================================
   Trust strip — placeholder partner-logo wall
   Monogram cells in a hairline grid. Honest about being placeholders.
   ============================================================= */
.trust-strip { padding: 3.5rem 3rem; background: var(--bg-cream); border-top: 1px solid var(--border-hair); border-bottom: 1px solid var(--border-hair); }
.trust-inner { max-width: var(--container-max); margin: 0 auto; }
.trust-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.trust-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--lg-mint);
  text-transform: uppercase;
  font-weight: 500;
}
.trust-title {
  font-size: 17px;
  color: var(--lg-deep-teal);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-top: 6px;
}
.trust-foot-note {
  font-size: 12px;
  color: var(--lg-sage);
  font-style: italic;
}
.trust-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-hair);
  border-left: 1px solid var(--border-hair);
}
@media (max-width: 920px) { .trust-rail { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .trust-rail { grid-template-columns: repeat(2, 1fr); } }
.trust-cell {
  border-right: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 130px;
}
.trust-mono {
  font-size: 24px;
  font-weight: 600;
  color: var(--lg-deep-teal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-org {
  font-size: 11px;
  color: var(--lg-sage);
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* =============================================================
   Testimonial — pulled quote, cream bg, large display
   ============================================================= */
.testimonial-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.testimonial-mark {
  font-size: 80px;
  color: var(--lg-mint);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.testimonial-quote {
  font-size: 32px;
  font-weight: 500;
  color: var(--lg-deep-teal);
  line-height: 1.32;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.testimonial-quote em {
  font-style: normal;
  background: linear-gradient(transparent 62%, rgba(181, 97, 58, 0.18) 62%);
  padding: 0 2px;
}
.testimonial-attrib {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-hair);
  flex-wrap: wrap;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--lg-deep-teal);
  letter-spacing: -0.005em;
}
.testimonial-role {
  font-size: 13px;
  color: var(--lg-sage);
}
.testimonial-source {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lg-sage);
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 760px) {
  .testimonial-quote { font-size: 24px; }
  .testimonial-mark { font-size: 56px; }
}
