/*
 * lt-audience-lane.css  v4 - lean, brand-disciplined
 *
 * Per STYLE-GUIDE v4.6:
 *   - The product is the value. Photos do the work.
 *   - Palette: ink/navy/slate text, berry/crimson action moments, warm-white
 *     grounds. Brass for thin linework ONLY (no brass gradients, no brown).
 *   - No chunky dark bands. No oversized info sections. No competing height
 *     with the hero (220/250/280 contract).
 *
 * Audience-lane pages now render:
 *   1. Hero (compact)
 *   2. Thin brass ribbon - "Installed for ... names ..." (one editorial line)
 *   3. FAQ - compressed accordion for the curious only
 *   4. Closing CTA (existing brand-standard dark band)
 *
 * Photo wall is delivered by the EXISTING .lt-audience-gallery section in the
 * shared template (already brand-correct, already covered by gates). This file
 * only owns the ribbon and the FAQ.
 */

/* ============================================================
   Thin name ribbon - editorial credit strip
   ============================================================ */

.lt-lane-orgs {
  background: #fff;
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(184, 154, 91, 0.4);
  /* Fixed container height so every audience-lane ribbon renders in the same
     vertical space, regardless of how many names the page lists. */
  min-height: 96px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .lt-lane-orgs {
    min-height: 80px;
  }
}

.lt-lane-orgs__inner {
  box-sizing: border-box;
  width: min(100%, 1160px);
  margin: 0 auto;
}

/* Ribbon is the only thing in this section. */
.lt-lane-orgs__ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.9rem;
}

.lt-lane-orgs__ribbon-label {
  color: var(--lt-navy);
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.lt-lane-orgs__ribbon-names:focus-visible {
  outline: 2px solid var(--lt-berry);
  outline-offset: 4px;
}

/* Desktop / tablet: wrapping flex row, centered. */
.lt-lane-orgs__ribbon-names {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  color: var(--lt-navy);
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

.lt-lane-orgs__ribbon-name {
  display: inline-block;
  white-space: nowrap;
}

.lt-lane-orgs__ribbon-dot {
  color: var(--lt-brass);
  font-weight: 700;
  user-select: none;
}

/* Mobile: touch-swipe horizontal scroller. JS clones the names list 2x and
   teleports scrollLeft when the user nears either edge so the loop never ends. */
@media (max-width: 767.98px) {
  .lt-lane-orgs__ribbon {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }

  .lt-lane-orgs__ribbon-names {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;     /* IE / Edge legacy */
    /* Brass-tinted fade masks at left/right edges so the strip implies "more". */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 24px,
      #000 calc(100% - 24px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 24px,
      #000 calc(100% - 24px),
      transparent 100%
    );
  }

  .lt-lane-orgs__ribbon-names::-webkit-scrollbar {
    display: none;
  }
}

/* Active-drag affordance on touch devices. */
.lt-lane-orgs__ribbon-names.is-dragging {
  cursor: grabbing;
}

/* ============================================================
   FAQ - compressed accordion (white ground, brand-disciplined)
   For buyers who care about terms. Closed by default; opens on demand.
   ============================================================ */

.lt-lane-faq {
  background: #fff;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem);
}

.lt-lane-faq__inner {
  box-sizing: border-box;
  width: min(100%, 880px);
  margin: 0 auto;
}

.lt-lane-faq__heading {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.6rem);
}

.lt-lane-faq__heading h2 {
  margin: 0;
  color: var(--lt-ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
}

.lt-lane-faq__heading p {
  display: none; /* lede removed - heading carries enough */
}

.lt-lane-faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(14, 34, 64, 0.12);
}

.lt-lane-faq__item {
  background: transparent;
  border-bottom: 1px solid rgba(14, 34, 64, 0.12);
}

.lt-lane-faq__item summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0.5rem;
  color: var(--lt-ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.3;
}

.lt-lane-faq__item summary::-webkit-details-marker {
  display: none;
}

.lt-lane-faq__item summary::after {
  content: "+";
  color: var(--lt-brass);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 0.8;
}

.lt-lane-faq__item[open] summary::after {
  content: "\2212";
}

.lt-lane-faq__item:hover summary {
  color: var(--lt-berry);
}

.lt-lane-faq__item summary:focus-visible {
  outline: 3px solid var(--lt-berry);
  outline-offset: 3px;
  background: rgba(179, 27, 52, 0.06);
}

.lt-lane-faq__answer {
  padding: 0 0.5rem 1rem;
  color: var(--lt-ink);
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.97rem;
  line-height: 1.65;
}

.lt-lane-faq__answer p {
  margin: 0 0 0.5rem;
  max-width: 64ch;
}

.lt-lane-faq__answer p:last-child {
  margin-bottom: 0;
}
