@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand: #fdf6ee;
  --white: #ffffff;
  --dark: #2b1a10;
  --terra: #c4572a;
  --terra-muted: #e8956d;
  --muted-text: #6b5245;
  --border: #e8d8c8;
  --card-bg: #fff9f4;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--sand);
  color: var(--dark);
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--terra);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ── LAYOUT ── */
.layout-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.page-root {}
.top-nav {
  background: var(--white);
  border-bottom: 3px solid var(--terra);
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0;
}
.top-nav__wrap {
  display: flex;
  align-items: center;
}
.top-nav__logo {}
.top-nav__logo-link {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--terra);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.top-nav__logo-link:hover { color: var(--dark); }

/* ── HERO ── */
.spotlight-hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  min-height: 360px;
}
.spotlight-hero__left {
  background: var(--dark);
  padding: 64px 48px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-hero__left .layout-wrap { padding-right: 0; }
.spotlight-hero__right {
  background: var(--terra);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra-muted);
  margin-bottom: 12px;
}
.spotlight-hero__h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.spotlight-hero__lead {
  font-size: 1rem;
  color: #d4c4b8;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.spotlight-hero__note {
  font-size: 0.85rem;
  color: #a8988e;
  line-height: 1.6;
  max-width: 520px;
}

/* ── INFO CAPSULE ── */
.info-capsule {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  width: 100%;
}
.info-capsule__title {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.info-capsule__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-capsule__item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.4);
}

/* ── CATALOG ── */
.catalog-section {
  padding: 60px 0;
}
.catalog-header {
  margin-bottom: 32px;
}
.catalog-header__h2 {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.catalog-header__note {
  font-size: 0.9rem;
  color: var(--muted-text);
  max-width: 700px;
  line-height: 1.6;
}

/* ── BROKER ENTRY ── */
.broker-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.broker-entry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: box-shadow 0.25s;
}
.broker-entry:hover {
  box-shadow: 0 6px 24px rgba(196, 87, 42, 0.12);
}
.broker-entry__number {
  background: var(--terra);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  width: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.broker-entry__inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  width: 100%;
}
.broker-entry__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.entry-logo { max-height: 48px; width: auto; }
.entry-stars { max-height: 20px; width: auto; }

.broker-entry__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.entry-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.metric-pair {
  background: #fdf0e8;
  border-radius: 6px;
  padding: 8px 14px;
  min-width: 130px;
}
.metric-pair__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-text);
  margin-bottom: 2px;
}
.metric-pair__value {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--terra);
}
.entry-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.entry-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted-text);
  line-height: 1.5;
}
.entry-point__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.entry-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.entry-cta__link {
  background: var(--terra);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.entry-cta__link:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* ── Q&A / FAQ ── */
.qa-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.qa-section__h2 {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.qa-section__note {
  font-size: 0.9rem;
  color: var(--muted-text);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.qa-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qa-item {
  border-bottom: 1px solid var(--border);
}
.qa-item__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
  text-align: left;
  font-family: inherit;
}
.qa-item__question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
}
.qa-item__indicator {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--terra);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.qa-item--expanded .qa-item__indicator {
  background: var(--terra);
  color: #fff;
  transform: rotate(45deg);
}
.qa-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  font-size: 0.94rem;
  color: var(--muted-text);
  line-height: 1.7;
  padding-bottom: 0;
}
.qa-item--expanded .qa-item__answer {
  padding-bottom: 18px;
}

/* ── FOOTER ── */
.ground-floor {
  background: var(--dark);
  color: #c8b8a8;
  padding: 56px 0 0;
}
.gf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.gf-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--terra-muted);
}
.gf-partners {
  display: flex;
  gap: 16px;
  align-items: center;
}
.gf-partner-img { height: 36px; width: auto; opacity: 0.6; }
.gf-partner-link:hover .gf-partner-img { opacity: 1; }
.gf-warnings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.gf-warning {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #a89888;
}
.gf-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.gf-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.gf-nav__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #a89888;
  transition: color 0.2s;
}
.gf-nav__link:hover { color: var(--terra-muted); }
.gf-copy {
  font-size: 0.82rem;
  color: #7a6a5a;
}

/* ── DOCUMENT PAGES ── */
.doc-page {
  padding: 64px 0;
  min-height: 60vh;
}
.doc-page__wrap { max-width: 800px; }
.doc-page__h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--terra);
}
.doc-section {
  margin-bottom: 28px;
}
.doc-section__h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 8px;
}
.doc-section__body {
  font-size: 0.95rem;
  color: var(--muted-text);
  line-height: 1.75;
}
.doc-section__body a {
  color: var(--terra);
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .spotlight-hero {
    grid-template-columns: 1fr 280px;
  }
  .broker-entry__inner {
    grid-template-columns: 140px 1fr auto;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .spotlight-hero {
    grid-template-columns: 1fr;
  }
  .spotlight-hero__left {
    padding: 48px 0;
  }
  .spotlight-hero__right {
    padding: 36px 24px;
  }
  .broker-entry {
    flex-direction: column;
  }
  .broker-entry__number {
    width: 100%;
    min-width: unset;
    height: 40px;
    flex-direction: row;
  }
  .broker-entry__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .broker-entry__media {
    flex-direction: row;
    justify-content: center;
  }
  .entry-cta { justify-content: center; }
  .gf-top { flex-direction: column; align-items: flex-start; }
  .gf-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .layout-wrap { padding: 0 16px; }
  .spotlight-hero__left { padding: 36px 0; }
}
