/* ============================================
   TAX STRATEGY PAGE
   Art as a Business Investment
   ============================================ */

/* ---- Hero ---- */
.tax-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--text-primary);
  padding-top: 80px;
}

.tax-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%),
    url('https://images.squarespace-cdn.com/content/v1/5fdbe3e1bfbfd77e8d65d2a8/1608347237148-5W2F7XZSEQA0X75MZZJ8/aZ1004545.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.5;
}

.tax-hero .container {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.tax-hero-content {
  max-width: 720px;
}

.tax-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 1rem 0 1.5rem;
}

.tax-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.tax-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Disclaimer Banner ---- */
.tax-disclaimer-section {
  background: #fffbf0;
  border-bottom: 1px solid #e8dfc0;
  padding: 1.25rem 0;
}

.tax-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #b8960c;
  flex-shrink: 0;
  line-height: 1.4;
}

.tax-disclaimer p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #6b5a1f;
  line-height: 1.65;
  margin: 0;
}

/* ---- Intro Section ---- */
.tax-intro-section {
  padding: 6rem 0;
  background: var(--white);
}

.tax-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.tax-lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tax-intro-right p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

/* ---- Strategy Cards Section ---- */
.tax-strategies-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.tax-section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tax-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.tax-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.tax-card-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.tax-card-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: #e8f4e8;
  color: #2d6e2d;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.tax-card-badge--caution {
  background: #fef3e2;
  color: #7a4f10;
}

.tax-card-badge--solid {
  background: var(--text-primary);
  color: var(--white);
}

.tax-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.tax-card-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.tax-card-details {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.tax-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  gap: 1rem;
}

.tax-detail-row:last-child {
  border-bottom: none;
}

.tax-detail-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.tax-detail-value {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
}

.tax-card-note {
  background: var(--off-white);
  border-left: 3px solid var(--text-primary);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.tax-card-note strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ---- IRS Rules Section ---- */
.tax-irs-section {
  padding: 6rem 0;
  background: var(--white);
}

.tax-irs-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.tax-irs-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tax-irs-block h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.tax-irs-block p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.tax-irs-block p:last-child {
  margin-bottom: 0;
}

/* ---- Charitable Section ---- */
.tax-charitable-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.tax-charitable-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tax-charitable-header {
  margin-bottom: 3.5rem;
}

.tax-charitable-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.tax-charitable-text p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.tax-charitable-callout {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
}

.tax-charitable-callout h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.tax-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.tax-list li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  padding-left: 1.25rem;
  position: relative;
}

.tax-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.tax-list li:last-child {
  border-bottom: none;
}

.tax-charitable-note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* ---- How We Help Section ---- */
.tax-howwe-section {
  padding: 6rem 0;
  background: var(--white);
}

.tax-howwe-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tax-howwe-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.tax-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tax-step {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--text-primary);
}

.tax-step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--border-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.tax-step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tax-step p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
}

/* ---- FAQ Section ---- */
.tax-faq-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.tax-faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tax-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.tax-faq-item {
  background: var(--white);
  padding: 2.5rem;
}

.tax-faq-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tax-faq-item p {
  font-family: var(--font-sans);
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

/* ---- CTA Section ---- */
.tax-cta-section {
  padding: 7rem 0;
  background: var(--text-primary);
}

.tax-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.tax-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
}

.tax-cta-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.tax-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-outline-white {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

.tax-cta-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .tax-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .tax-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .tax-intro-grid,
  .tax-irs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tax-cards-grid {
    grid-template-columns: 1fr;
  }

  .tax-charitable-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tax-faq-grid {
    grid-template-columns: 1fr;
  }

  .tax-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .tax-hero-title {
    font-size: 2.75rem;
  }

  .tax-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .tax-steps-grid {
    grid-template-columns: 1fr;
  }

  .tax-card {
    padding: 1.75rem;
  }

  .tax-faq-item {
    padding: 1.75rem;
  }

  .tax-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
