/*
 * ============================================================
 * SERRA — TAX RISK PAGE
 * Requires: serra-base.css
 * File:     tax-risk.html
 * ============================================================
 *
 * TABLE OF CONTENTS
 * 1. Page Header
 * 2. Core Principle Band (contrast)
 * 3. Six Components — Risk Rows
 * 4. How Serra Applies Band (contrast)
 * 5. Closing CTA
 * ============================================================
 */


/* ============================================================
   1. PAGE HEADER
   ============================================================
   Full-width single-column. Title stands alone.
   ============================================================ */

.page-header-wrap {
  border-bottom: 0.5px solid var(--border);
}

.page-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5.5rem var(--page-gutter) 5rem;
}

.page-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: block;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.08;
  margin-bottom: 1.75rem;
}

.page-deck {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.5;
  max-width: 580px;
}


/* ============================================================
   2. CORE PRINCIPLE BAND — sage contrast
   ============================================================
   Label in left column, text in right column.
   Same structural pattern as applies band below.
   ============================================================ */

.principle-band {
  background: var(--contrast-bg);
  border-bottom: 0.5px solid var(--border);
}

.principle-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
}

.principle-label-col {
  padding: 3.5rem var(--page-gutter);
  border-right: 0.5px solid var(--border-contrast);
}

.principle-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--contrast-body);
  opacity: 0.7;
}

.principle-text-col {
  padding: 3.5rem var(--page-gutter) 3.5rem 4rem;
}

.principle-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--contrast-text);
  max-width: 620px;
}


/* ============================================================
   3. SIX COMPONENTS — Risk Rows
   ============================================================
   Large serif number as visual anchor per row.
   ============================================================ */

.components-wrap {
  border-bottom: 0.5px solid var(--border);
}

.components-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem var(--page-gutter) 0;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
}

.risk-rows {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  flex-direction: column;
}

.risk-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  padding: 2.75rem 0;
  border-bottom: 0.5px solid var(--border-light);
  align-items: start;
}

/* Top border on first row, spacing from header label above */
.risk-row:first-child {
  border-top: 0.5px solid var(--border-light);
  margin-top: 2.5rem;
}

/* Gold number — large serif, acts as visual anchor */
.risk-row-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.01em;
  display: block;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.risk-row-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.4;
  display: block;
}

.risk-row-body {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 560px;
  padding-top: 0.5rem;
}


/* ============================================================
   4. HOW SERRA APPLIES BAND — sage contrast
   ============================================================
   Mirrors principle band structure above.
   ============================================================ */

.applies-band {
  background: var(--contrast-bg);
  border-bottom: 0.5px solid var(--border);
}

.applies-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
}

.applies-label-col {
  padding: 3.5rem var(--page-gutter);
  border-right: 0.5px solid var(--border-contrast);
}

.applies-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--contrast-body);
  opacity: 0.7;
}

.applies-text-col {
  padding: 3.5rem var(--page-gutter) 3.5rem 4rem;
}

.applies-text {
  font-size: 15px;
  color: var(--contrast-body);
  line-height: 1.8;
  max-width: 620px;
}


/* ============================================================
   5. CLOSING CTA
   ============================================================ */

.cta-outer {
  border-top: 0.5px solid var(--border);
}

.cta-section {
  padding: 5rem var(--page-gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
  max-width: 520px;
}

.cta-btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  border: 0.5px solid var(--sage);
  background: transparent;
  padding: 15px 32px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  flex-shrink: 0;
}

.cta-btn:hover {
  background: rgba(122, 140, 112, 0.08);
}
