/* ============================================
   V7 HOMEPAGE — Additional Styles
   ============================================ */

/* --- Hero Overlay Fix (face not covered) --- */
.hero-fullbleed__overlay--v7 {
  background: linear-gradient(
    to right,
    rgba(15, 26, 46, 0.96) 0%,
    rgba(15, 26, 46, 0.90) 35%,
    rgba(15, 26, 46, 0.65) 55%,
    rgba(15, 26, 46, 0.20) 72%,
    rgba(15, 26, 46, 0) 85%
  );
}

.hero-fullbleed__content h1,
.hero-fullbleed__content p,
.hero-fullbleed__content .hero-gold-line,
.hero-fullbleed__content .hero-micro {
  text-shadow: 0 1px 6px rgba(0,0,0,0.55), 0 2px 16px rgba(0,0,0,0.35);
}

.hero-gold-line {
  color: var(--gold-accent);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-micro {
  font-size: 0.75rem;
  color: rgba(250,248,245,0.35);
  max-width: 420px;
}

@media (max-width: 768px) {
  .hero-fullbleed__overlay--v7 {
    background: linear-gradient(
      to bottom,
      rgba(15, 26, 46, 0.78) 0%,
      rgba(15, 26, 46, 0.88) 50%,
      rgba(15, 26, 46, 0.72) 100%
    );
  }
}

/* --- Nik Testimonial Bar --- */
.nik-bar {
  background: var(--ivory);
  padding: 44px 0;
}

.nik-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.nik-bar__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nik-bar__quote {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--navy-primary);
  line-height: 1.5;
  margin-bottom: 4px;
}

.nik-bar__attr {
  font-size: 0.78rem;
  color: var(--slate-light);
}

/* --- Category Declaration --- */
.category-declaration {
  padding: 100px 0;
}

.category-declaration__anchor {
  color: var(--gold-accent);
  font-weight: 500;
  font-size: 1.15rem;
  font-family: var(--font-heading);
}

/* --- Book Section --- */
.book-section {
  padding: 120px 0;
}

/* --- Gold Pull Quote --- */
.gold-pull-quote {
  padding-left: 24px;
  border-left: 2px solid var(--gold-accent);
  margin: 24px 0;
}

.gold-pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy-primary);
  line-height: 1.5;
}

.gold-pull-quote--wide {
  margin: 32px 0;
}

.gold-pull-quote--wide p {
  font-family: var(--font-body);
  font-size: inherit;
  font-style: normal;
  line-height: 1.8;
  color: var(--text-body);
}

/* --- Endorsement Cards --- */
.endorsement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.endorsement-card {
  padding: 36px;
  border-left: 2px solid var(--gold-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.endorsement-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(15, 26, 46, 0.06);
}

.endorsement-card__quote {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--navy-primary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.endorsement-card__name {
  font-weight: 600;
  color: var(--navy-primary);
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.endorsement-card__role {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .endorsement-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .endorsement-card {
    padding: 24px;
  }
}

/* --- Editorial Section --- */
.editorial-section {
  padding: 120px 0;
}

/* --- Operating Capability Pillars --- */
.operating-capability {
  padding: 120px 0;
}

.capability-pillars {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.capability-pillar {
  text-align: center;
}

.capability-pillar__title {
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.capability-pillar__sub {
  font-size: 0.88rem;
  color: var(--text-on-dark);
}

/* --- Deploy Cards --- */
.deployment-section {
  padding: 120px 0;
}

.deploy-card {
  padding: 40px 32px;
  border: 1px solid rgba(196,162,101,0.18);
  border-radius: 3px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.deploy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,162,101,0.4);
  box-shadow: 0 12px 40px rgba(196,162,101,0.08);
}

.deploy-card__title {
  font-family: var(--font-heading);
  color: var(--gold-accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.deploy-card__text {
  color: var(--text-on-dark);
  font-size: 0.92rem;
  line-height: 1.7;
}

.deploy-card__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.72rem;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.deploy-card__link:hover {
  color: var(--gold-hover);
}

/* --- Client Results --- */
.results-section {
  padding: 120px 0;
}

/* --- Testimonial Carousel --- */
.testimonial-carousel {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.testimonial-carousel__viewport {
  overflow: hidden;
  border-radius: 3px;
}

.testimonial-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-carousel__slide {
  min-width: 100%;
  padding: 48px 56px;
  text-align: center;
  flex-shrink: 0;
}

.testimonial-carousel__quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy-primary);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-carousel__name {
  font-weight: 600;
  color: var(--navy-primary);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testimonial-carousel__role {
  font-size: 0.8rem;
  color: var(--slate);
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.testimonial-carousel__btn {
  background: none;
  border: 1px solid var(--border-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy-primary);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.testimonial-carousel__btn:hover {
  background: var(--navy-primary);
  color: var(--ivory);
  border-color: var(--navy-primary);
}

.testimonial-carousel__dots {
  display: flex;
  gap: 8px;
}

.testimonial-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-carousel__dot--active {
  background: var(--gold-accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-carousel__slide {
    padding: 24px 16px;
  }
  .testimonial-carousel__quote {
    font-size: 0.95rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .testimonial-carousel {
    max-width: 100%;
    overflow: hidden;
  }
  .testimonial-carousel__viewport {
    overflow: hidden;
    max-width: 100%;
  }
}

/* --- Advisory Section --- */
.advisory-section {
  padding: 120px 0;
}

/* --- Speaker Section --- */
.speaker-section {
  padding: 100px 0;
}

/* --- Briefing Section --- */
.briefing-section {
  padding: 100px 0;
}

/* --- Teams Teaser --- */
.teams-teaser {
  padding: 80px 0;
}

/* --- Nav Dropdown --- */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(15, 26, 46, 0.1);
  padding: 12px 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 100;
  border-radius: 3px;
  margin-top: 8px;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu li {
  list-style: none;
}

.nav__dropdown-menu a {
  display: block;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav__dropdown-menu a:hover {
  color: var(--navy-primary);
  background: rgba(196, 162, 101, 0.06);
}

/* Dark nav dropdown override */
.ft-page .nav__dropdown-menu {
  background: var(--navy-soft);
  border-color: rgba(250, 248, 245, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ft-page .nav__dropdown-menu a {
  color: var(--text-on-dark);
}

.ft-page .nav__dropdown-menu a:hover {
  color: var(--text-on-dark-bright);
  background: rgba(250, 248, 245, 0.05);
}

@media (max-width: 768px) {
  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
    margin-top: 0;
    background: transparent;
  }
  .nav__dropdown-menu a {
    padding: 6px 0;
    font-size: 0.78rem;
  }
  .ft-page .nav__dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

/* --- Section Rhythm Overrides --- */
.c3-section {
  padding: 120px 0;
}

/* ========== MICRO TESTIMONIAL 2x2 ========== */
.micro-testimonials-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.micro-testimonials-wrap h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--navy-primary);
}
.micro-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(15, 26, 46, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.micro-t {
  background: var(--navy-primary);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
}
.micro-t__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.micro-t__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(196,162,101,0.4);
}
.micro-t__meta { display: flex; flex-direction: column; }
.micro-t__quote {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-on-dark);
  font-style: italic;
  flex: 1;
}
.micro-t__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.micro-t__role {
  font-size: 0.72rem;
  color: rgba(250,248,245,0.45);
  margin-top: 1px;
}
@media (max-width: 640px) {
  .micro-testimonial-grid { grid-template-columns: 1fr; }
}

/* ========== ENDORSED-BY LOGO MARQUEE ========== */
.endorsed-bar {
  padding: 40px 0 32px;
  background: var(--ivory-light);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.endorsed-bar__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-light);
  margin-bottom: 24px;
  display: block;
}
.endorsed-bar__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: endorsedScroll 32s linear infinite;
  padding: 0 24px;
}
.endorsed-bar__track img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}
.endorsed-bar__track img:hover {
  filter: grayscale(0%) opacity(1);
}
@keyframes endorsedScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SPEAKING FULL BLEED ========== */
.speaking-fullbleed {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.speaking-fullbleed__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.speaking-fullbleed__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.speaking-fullbleed__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(15,26,46,0.92) 0%,
    rgba(15,26,46,0.75) 45%,
    rgba(15,26,46,0.35) 75%,
    rgba(15,26,46,0.1) 100%
  );
}
.speaking-fullbleed__content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  max-width: 540px;
}
.speaking-fullbleed__content h2 {
  color: #ffffff;
}

/* ========== ENDORSEMENT CARD PHOTO ========== */
.endorsement-card__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 14px;
  border: 2px solid rgba(196,162,101,0.3);
  display: block;
}
