/* Phase 24L — vision restoration, isolated from the preserved foundation */

/* Compact official brand treatment: real compass artwork + crisp live type. */
.brand {
  flex: 0 0 auto;
  gap: 10px;
  min-width: 270px;
}

.brand-mark {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: transparent;
  font-size: 0;
  background-color: #fbf7ef;
  background-image: url("../assets/brand/truenorth-capital-advisory-logo.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 183px 64px;
}

.brand-type {
  line-height: 1;
}

.brand-type strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: none;
  white-space: nowrap;
}

.brand-type strong span {
  color: var(--green-dark);
}

.brand-type small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3.5px;
  white-space: nowrap;
}

/* Premium feedback presentation approved previously, without screenshot clutter. */
.feedback-revamp {
  background: radial-gradient(circle at 50% 0%, #124d3f 0, #0b3a31 48%, #082e27 100%);
  padding-top: 54px;
}

.feedback-heading {
  max-width: 1050px;
  margin: 0 auto 34px;
  text-align: center;
}

.feedback-heading .section-kicker {
  color: var(--gold-light);
}

.feedback-heading h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(40px, 4vw, 66px);
}

.feedback-heading > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.feedback-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.feedback-card {
  display: flex;
  min-height: 345px;
  margin: 0;
  padding: 28px 38px 30px;
  flex-direction: column;
  color: var(--green-dark);
  background: #fffdf8;
  border: 1px solid rgba(189,138,56,.28);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}

.feedback-stars {
  color: #b8802f;
  letter-spacing: 8px;
  text-align: center;
  font-size: 22px;
}

.feedback-quote {
  height: 58px;
  color: #bd8a38;
  font: 700 72px/1 "Cormorant Garamond", serif;
}

.feedback-card > p {
  margin: 0 0 26px;
  font: 600 26px/1.28 "Cormorant Garamond", serif;
}

.feedback-card footer {
  display: flex;
  margin-top: auto;
  padding-top: 19px;
  flex-direction: column;
  border-top: 2px solid #bd8a38;
}

.feedback-card footer strong {
  font-size: 20px;
}

.feedback-card footer span {
  margin-top: 4px;
  color: #66736d;
}

.feedback-verification {
  display: flex;
  margin: 22px auto 18px;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.7);
}

.feedback-proof-link {
  padding: 12px 28px;
  color: #e3b35f;
  border: 1px solid #bd8a38;
  border-radius: 7px;
  font-weight: 750;
}

.feedback-proof-link:hover {
  background: #bd8a38;
  color: #092f27;
}

.feedback-cta {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--green-dark);
  background: #fffdf8;
  border-radius: 10px;
}

.feedback-cta > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.feedback-cta img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.feedback-cta p {
  margin: 0;
  font: 600 clamp(26px, 2.5vw, 39px)/1.1 "Cormorant Garamond", serif;
}

.feedback-cta .btn {
  min-width: 280px;
  text-align: center;
}

/* Keep the restored hero readable while allowing the compass to remain visible. */
.premium-fullwidth-hero-v20 .landscape-first-visual img {
  object-position: center center;
}

.premium-fullwidth-hero-v20 .landscape-first-visual::before {
  background:
    linear-gradient(90deg,
      rgba(4,28,22,.94) 0%,
      rgba(4,31,24,.83) 24%,
      rgba(4,31,24,.49) 42%,
      rgba(4,31,24,.10) 62%,
      rgba(4,31,24,.02) 100%);
}

@media (max-width: 1100px) {
  .brand {
    min-width: 235px;
  }

  .brand-mark {
    flex-basis: 55px;
    width: 55px;
    height: 55px;
    background-size: 157px 55px;
  }

  .brand-type strong {
    font-size: 21px;
  }

  .feedback-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-card:last-child {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 650px;
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .brand {
    min-width: 0;
    gap: 7px;
  }

  .brand-mark {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    background-size: 137px 48px;
  }

  .brand-type strong {
    font-size: 18px;
  }

  .brand-type small {
    font-size: 7px;
    letter-spacing: 2.2px;
  }

  .feedback-heading {
    text-align: left;
  }

  .feedback-card-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 1px 18px;
  }

  .feedback-card,
  .feedback-card:last-child {
    min-width: 88%;
    min-height: 340px;
    scroll-snap-align: start;
  }

  .feedback-card > p {
    font-size: 23px;
  }

  .feedback-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .feedback-cta > div {
    align-items: flex-start;
  }

  .feedback-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .premium-fullwidth-hero-v20 .landscape-first-visual::before {
    background:
      linear-gradient(180deg,
        rgba(4,31,24,.08) 0%,
        rgba(4,31,24,.28) 34%,
        rgba(4,31,24,.89) 70%,
        rgba(4,31,24,.99) 100%);
  }

  .premium-fullwidth-hero-v20 .landscape-first-visual img {
    object-position: 40% center;
  }
}
