/* landing-a.css — Hero, Opportunity, Deal Structure styles for the BridgeVest one-pager */

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.55) 0%,
    rgba(13,27,42,0.72) 60%,
    rgba(13,27,42,0.88) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.hero-text { max-width: 680px; }

.hero-headline {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  color: var(--sand);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-dark);
  opacity: 0.7;
  display: block;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 20px;
  color: var(--sand-dark);
  margin-bottom: 36px;
  font-weight: 300;
  font-family: 'Cormorant Garant', serif;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-cta:hover { background: #236a7a; }

.hero-cta-secondary {
  display: inline-block;
  color: var(--sand-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(228,212,184,0.3);
  transition: border-color 0.2s, color 0.2s;
}

.hero-cta-secondary:hover { color: var(--sand); border-color: var(--sand); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-value {
  font-family: 'Cormorant Garant', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 10px;
  color: var(--sand-dark);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 100px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(228,212,184,0.2);
}

/* === OPPORTUNITY === */
.opp-section {
  background: var(--off-white);
  padding: var(--section-pad);
}

.opp-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}

.opp-body {
  font-size: 16px;
  color: #5a5048;
  line-height: 1.75;
}

.opp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.opp-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42,124,140,0.08);
  border: 1px solid rgba(42,124,140,0.2);
  border-radius: 3px;
  padding: 4px 10px;
}

.opp-stats-card {
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
}

.opp-stat {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(228,212,184,0.08);
}

.opp-stat--last { border-bottom: none; }

.opp-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(228,212,184,0.4);
  margin-bottom: 4px;
}

.opp-stat-value {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--sand);
}

/* === DEAL STRUCTURE === */
.deals-section {
  background: var(--sand);
  padding: var(--section-pad);
}

.deals-intro {
  font-size: 16px;
  color: #7a6a5a;
  margin-bottom: 48px;
  margin-top: 8px;
}

.deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.deal-card-lp {
  background: var(--navy);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.deal-card-lp--alt { background: #0f2133; }

.deal-option {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: block;
  margin-bottom: 8px;
}

.deal-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--sand);
  line-height: 1.1;
}

.deal-desc {
  font-size: 14px;
  color: rgba(228,212,184,0.6);
  line-height: 1.7;
}

.deal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.deal-col-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 12px;
}

.deal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deal-list li {
  font-size: 13px;
  color: var(--sand-dark);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.deal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-size: 11px;
}

.deal-metric-row {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(228,212,184,0.1);
  margin-top: auto;
}

.deal-metric-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(228,212,184,0.35);
  margin-bottom: 4px;
}

.deal-metric-val {
  font-family: 'Cormorant Garant', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--teal-light);
}

.deals-note {
  margin-top: 24px;
  font-size: 13px;
  font-style: italic;
  color: #7a6a5a;
  border-left: 2px solid var(--teal);
  padding-left: 16px;
}
