/* =====================================================
   Rechtszaid Law, P.C. — Static Site Stylesheet
   Design: "The Liner Notes" / Contemporary Editorial Noir
   Colors: Charcoal #2e2e2e | Forest #3e6b4e | Sage #7da58a | Mint #ecf2ec | Blush #f7af70
   Fonts: Playfair Display (headings) | Lato (body)
   ===================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #2e2e2e;
  --forest:   #3e6b4e;
  --sage:     #7da58a;
  --mint:     #ecf2ec;
  --blush:    #f7af70;
  --border:   #d4e0d6;
  --radius:   0.375rem;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--mint);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* --- Skip to Content --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--forest);
  color: var(--mint);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* --- Container --- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; max-width: 1280px; } }

/* --- Grain Overlay --- */
.grain-overlay { position: relative; }
.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  z-index: 1;
}
.grain-overlay > * { position: relative; z-index: 2; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; }
.animate-in.visible { animation: fadeInUp 0.5s ease-out forwards; }
.animate-in.visible.delay-1 { animation-delay: 0.1s; }
.animate-in.visible.delay-2 { animation-delay: 0.2s; }
.animate-in.visible.delay-3 { animation-delay: 0.3s; }

/* --- Header --- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(46, 46, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header-inner { height: 80px; } }

.header-logo img { height: 40px; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 48px; } }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: rgba(236,242,236,0.8);
  transition: color 0.2s;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--sage); }

.btn-nav {
  margin-left: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--forest);
  color: var(--mint) !important;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: #4a7d5a !important; transform: scale(1.02); }

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--mint);
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-toggle svg { display: block; }

/* Mobile nav */
#mobile-nav {
  display: none;
  background: rgba(46,46,46,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(125,165,138,0.2);
}
#mobile-nav.open { display: block; }

.mobile-nav-inner {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-inner a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: rgba(236,242,236,0.8);
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-nav-inner a:hover,
.mobile-nav-inner a.active { color: var(--sage); }
.mobile-nav-inner .btn-nav {
  margin-left: 0;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--forest);
  color: var(--mint);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: #4a7d5a; transform: scale(1.02); color: var(--mint); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--sage);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid rgba(125,165,138,0.4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--sage); background: rgba(125,165,138,0.08); color: var(--mint); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid rgba(46,46,46,0.3);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-outline-dark:hover { border-color: var(--forest); background: rgba(62,107,78,0.05); }

/* --- Section Label --- */
.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--mint);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,46,46,0.9) 0%, rgba(62,107,78,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--mint);
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(236,242,236,0.75);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--charcoal);
  color: var(--mint);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46,46,46,0.85), rgba(46,46,46,0.95));
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--mint);
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.125rem;
  color: rgba(236,242,236,0.75);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Sections --- */
section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 6rem 0; } }

.section-dark {
  background: var(--charcoal);
  color: var(--mint);
}
.section-light { background: var(--mint); }
.section-off { background: #e4ede6; }

/* --- Divider --- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.15;
}

/* --- Service Cards / Accordion --- */
.accordion { border-top: 1px solid rgba(0,0,0,0.1); }
.accordion-dark { border-top: 1px solid rgba(236,242,236,0.15); }

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
}
.accordion-dark .accordion-item { border-bottom: 1px solid rgba(236,242,236,0.15); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.accordion-trigger-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}
.accordion-dark .accordion-trigger-title { color: var(--mint); }

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--forest);
  transition: transform 0.2s;
}
.accordion-dark .accordion-icon { color: var(--sage); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-content { max-height: 2000px; }

.accordion-body {
  padding: 0 0 1.5rem;
  color: rgba(46,46,46,0.8);
  line-height: 1.75;
}
.accordion-dark .accordion-body { color: rgba(236,242,236,0.75); }

/* --- Tag Grid --- */
.tag-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(62,107,78,0.1);
  color: var(--forest);
  border: 1px solid rgba(62,107,78,0.2);
}
.tag-dark {
  background: rgba(125,165,138,0.15);
  color: var(--sage);
  border-color: rgba(125,165,138,0.3);
}

/* --- Cards --- */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125,165,138,0.2);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: background 0.2s, border-color 0.2s;
}
.card-dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(125,165,138,0.4);
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  background: white;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.pricing-card.featured {
  border-color: var(--forest);
  box-shadow: 0 4px 20px rgba(62,107,78,0.15);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}
.pricing-price-note {
  font-size: 0.875rem;
  color: rgba(46,46,46,0.5);
  margin-bottom: 1rem;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(46,46,46,0.8);
}
.pricing-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--forest);
  margin-top: 2px;
}

/* --- Form Styles --- */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-label .req { color: var(--forest); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: white;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(62,107,78,0.15);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #c0392b;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237da58a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-error {
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: 0.375rem;
}

/* Checkboxes */
.checkbox-group { display: flex; flex-direction: column; gap: 0.625rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: rgba(46,46,46,0.85);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Toggle switch */
.toggle-group {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
}
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 999px;
  transition: background 0.2s;
  cursor: pointer;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle-slider { background: var(--forest); }
.toggle input:checked + .toggle-slider::before { transform: translateX(22px); }

/* Form grid */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.form-submit-btn {
  width: 100%;
  padding: 0.875rem 2rem;
  background: var(--forest);
  color: var(--mint);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit-btn:hover:not(:disabled) { background: #4a7d5a; }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-disclaimer {
  font-size: 0.8125rem;
  color: rgba(46,46,46,0.5);
  line-height: 1.6;
  margin-top: 1rem;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.visible { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(62,107,78,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--forest);
}
.booking-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: left;
}
@media (min-width: 640px) { .booking-cards { grid-template-columns: repeat(2, 1fr); } }

.booking-card {
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-card:hover {
  border-color: var(--forest);
  box-shadow: 0 4px 16px rgba(62,107,78,0.12);
}
.booking-card h4 {
  font-size: 1.0625rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.booking-card p {
  font-size: 0.875rem;
  color: rgba(46,46,46,0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* --- Press --- */
.press-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.press-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.press-source {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage);
}
.press-date {
  font-size: 0.8125rem;
  color: rgba(46,46,46,0.5);
}
.press-type {
  display: inline-block;
  padding: 0.125rem 0.625rem;
  border-radius: 999px;
  background: rgba(62,107,78,0.08);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
}
.press-headline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.3;
}
.press-byline {
  font-size: 0.875rem;
  color: rgba(46,46,46,0.6);
}
.press-excerpt {
  font-size: 0.9375rem;
  color: rgba(46,46,46,0.75);
  line-height: 1.7;
  font-style: italic;
}

/* --- Resource Sections --- */
.resource-section {
  margin-bottom: 2.5rem;
}
.resource-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(125,165,138,0.25);
}
.resource-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.resource-item:last-child { border-bottom: none; }
.resource-link {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.resource-link:hover { color: #2d5038; }
.resource-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.resource-desc {
  font-size: 0.875rem;
  color: rgba(46,46,46,0.7);
  margin-top: 0.25rem;
  line-height: 1.6;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: var(--charcoal);
  color: var(--mint);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.newsletter-content { position: relative; z-index: 2; }
.beehiiv-embed {
  width: 100%;
  height: 320px;
  border: 2px solid rgba(125,165,138,0.3);
  border-radius: 4px;
  margin-top: 1.5rem;
}

/* --- Guide Cards --- */
.guide-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.guide-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.guide-card-body { padding: 2rem; }
.guide-tag {
  display: inline-block;
  background: rgba(62,107,78,0.08);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* --- Deal Type Cards (Record Deals Guide) --- */
.deal-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.deal-card-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.deal-card-header-text h3 {
  font-size: 1.25rem;
  color: white;
}
.deal-card-header-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}
.deal-card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: white;
  transition: transform 0.2s;
}
.deal-card.open .deal-card-icon { transform: rotate(45deg); }

.deal-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.deal-card.open .deal-card-content { max-height: 1500px; }

.deal-card-body {
  padding: 2rem;
  background: white;
}
.deal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .deal-grid { grid-template-columns: repeat(2, 1fr); } }

.deal-field { }
.deal-field-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(46,46,46,0.4);
  margin-bottom: 0.25rem;
}
.deal-field-value {
  font-size: 0.9375rem;
  color: rgba(46,46,46,0.85);
  line-height: 1.5;
}

/* --- Two-column grid --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .two-col { grid-template-columns: repeat(2, 1fr); } }

.three-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .three-col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .three-col { grid-template-columns: repeat(3, 1fr); } }

/* --- "Why" section points --- */
.why-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(62,107,78,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
}

/* --- Pull Quote --- */
.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4em;
  color: var(--blush);
  position: absolute;
  top: -0.3em;
  left: -0.15em;
  line-height: 1;
  opacity: 0.7;
}

/* --- Fractal counsel box --- */
.fractional-box {
  background: rgba(62,107,78,0.06);
  border: 1.5px solid rgba(62,107,78,0.2);
  border-radius: 0.75rem;
  padding: 2.5rem;
  margin-top: 3rem;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--forest);
  color: var(--mint);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--mint); margin-bottom: 1rem; }
.cta-section p { color: rgba(236,242,236,0.8); font-size: 1.125rem; margin-bottom: 2rem; }
.cta-section .btn-primary {
  background: var(--mint);
  color: var(--forest);
}
.cta-section .btn-primary:hover { background: white; color: var(--forest); transform: scale(1.02); }

/* --- Footer --- */
#site-footer {
  background: var(--charcoal);
  color: var(--mint);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.footer-logo { height: 40px; width: auto; margin-bottom: 0.75rem; }
.footer-tagline { color: var(--sage); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }

.social-links { display: flex; gap: 1rem; }
.social-link { color: var(--sage); transition: color 0.2s; }
.social-link:hover { color: var(--mint); }

.footer-heading {
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: var(--sage); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--mint); }

.footer-address { color: var(--sage); font-size: 0.875rem; line-height: 1.7; font-style: normal; }
.footer-address a { color: var(--sage); transition: color 0.2s; }
.footer-address a:hover { color: var(--mint); }

.footer-bottom {
  margin-top: 3.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(125,165,138,0.15);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--sage);
  line-height: 1.7;
  max-width: 64rem;
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(125,165,138,0.7);
}

/* --- Legal pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0 6rem;
}
.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  color: var(--charcoal);
}
.legal-content p {
  color: rgba(46,46,46,0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: rgba(46,46,46,0.8);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.375rem;
}
.legal-content a { color: var(--forest); }
.legal-content a:hover { text-decoration: underline; }
.legal-effective {
  font-size: 0.875rem;
  color: rgba(46,46,46,0.5);
  margin-bottom: 2rem;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-sage { color: var(--sage); }
.text-forest { color: var(--forest); }
.text-blush { color: var(--blush); }
.text-mint { color: var(--mint); }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }

/* --- 404 --- */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.not-found-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: rgba(62,107,78,0.15);
  line-height: 1;
  margin-bottom: -1rem;
}
