
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/PlayfairDisplay-Bold.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 900; font-display: swap; src: url('/fonts/PlayfairDisplay-Black.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/DMSans-Light.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/DMSans-Regular.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 400; font-display: swap; src: url('/fonts/DMSans-Italic.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/DMSans-Medium.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/DMSans-SemiBold.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/DMSans-Bold.woff2') format('woff2'); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --bg: #eef4f4;
  --bg-dark: #0e1516;
  --bg-card: #ffffff;
  --text: #1a2828;
  --text-muted: #466060;
  --accent: #1a7a7a;
  --accent-hover: #229696;
  --border: #c8dada;
  --border-light: #deeaea;
  --max-w: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--text); line-height: 1.2; }

/* Layout */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(238,244,244,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.logo span { color: var(--accent); }
nav { display: flex; gap: 0.25rem; align-items: center; }
nav a { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); padding: 0.4rem 0.75rem; border-radius: 8px; transition: all 0.2s; }
nav a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
nav .cta { background: var(--accent); color: #fff; font-weight: 600; }
nav .cta:hover { background: var(--accent-hover); color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; }

/* ── HERO (split layout — completely different) ──────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  gap: 0;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(3rem, 8vw, 6rem) clamp(2rem, 6vw, 5rem);
  max-width: 650px; margin-left: auto;
}
.hero-tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--accent); }
.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.04em; line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-content h1 em { color: var(--accent); font-style: normal; }
.hero-desc {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-muted);
  margin-bottom: 2rem; max-width: 480px;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 1.75rem; font-size: 0.875rem; font-weight: 600;
  font-family: var(--ff-body); border-radius: var(--radius);
  transition: all 0.25s; cursor: pointer; text-decoration: none; border: none;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-image {
  background: url('/images/hero-homepage.png') center/cover no-repeat;
  position: relative;
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 20%);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border-top: 1px solid var(--border);
}
.hero-stat {
  background: var(--bg-card); padding: 1.5rem 1.25rem; text-align: center;
}
.hero-stat .num { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 900; color: var(--accent); display: block; }
.hero-stat .label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; display: block; }

/* ── TOPIC CARDS (modern card grid) ──────────────────────── */
.topics-section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--accent); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--accent); }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.03em; margin-bottom: 2rem; }
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.topic-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.topic-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.topic-card:hover::before { transform: scaleX(1); }
.topic-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: transparent; }
.topic-card-num {
  font-size: 0.65rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.topic-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.topic-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.topic-card-link {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.topic-card-link:hover { gap: 0.5rem; }

/* ── CONTENT SECTIONS ────────────────────────────────────── */
.content-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.content-section.alt { background: var(--bg-card); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.content-narrow { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.content-narrow h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin-bottom: 1rem; letter-spacing: -0.02em; color: var(--text) !important; }
.content-narrow p { color: var(--text-muted) !important; margin-bottom: 1rem; }
.content-narrow li { color: var(--text-muted) !important; margin-bottom: 0.5rem; }
.content-narrow strong { color: var(--text) !important; }
.content-narrow a { color: var(--accent) !important; }

/* Statute callout */
.statute-box {
  background: var(--bg); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem; margin: 1.5rem 0; font-size: 0.875rem;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem; font-weight: 600; font-size: 0.95rem;
  color: var(--text); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  min-height: 44px;
}
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--accent); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { background: var(--bg); border-bottom: 1px solid var(--border-light); }
.faq-item div { padding: 1rem 1.25rem; }
.faq-item p { color: var(--text-muted) !important; font-size: 0.9rem; }

/* ── FORM ────────────────────────────────────────────────── */
.form-section {
  background: var(--bg-dark); color: #fff; padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
}
.form-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 80%, rgba(26,122,122,0.12) 0%, transparent 60%);
}
.form-section .wrap { position: relative; z-index: 1; }
.form-section h2 { color: #fff; font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin-bottom: 0.5rem; }
.form-section .form-lead { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.75rem 1rem; color: #fff; font-family: var(--ff-body); font-size: 0.9rem;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); outline: none; background: rgba(255,255,255,0.08); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%; padding: 0.9rem; font-size: 0.9rem; font-weight: 700;
  background: var(--accent); color: #fff; border: none; border-radius: var(--radius);
  cursor: pointer; font-family: var(--ff-body); transition: background 0.2s;
}
.form-submit:hover { background: var(--accent-hover); }
.form-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 1rem; line-height: 1.5; }
.form-tcpa { font-size: 0.65rem; color: rgba(255,255,255,0.25); margin-top: 0.75rem; line-height: 1.5; }
.form-tcpa a { color: rgba(255,255,255,0.35); }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section { padding: clamp(2rem, 4vw, 3rem) 0; background: var(--bg-card); border-top: 1px solid var(--border-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { background: var(--bg); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.5rem; }
.review-card .stars { color: #e6a817; font-size: 0.85rem; display: block; margin-bottom: 0.75rem; }
.review-card blockquote { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.review-card cite { font-size: 0.78rem; color: var(--text-muted); font-style: normal; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.5); padding: 3rem 0 2rem; font-size: 0.82rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .logo { color: #fff; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.8rem; line-height: 1.6; }
.footer-col-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 2rem; padding-top: 1.5rem; }
.footer-disclaimer { color: rgba(255,255,255,0.25); font-size: 0.75rem; line-height: 1.6; }
.footer-sb37 { font-size: 0.68rem; color: rgba(255,255,255,0.15); margin-top: 1rem; padding: 0.75rem; border: 1px solid rgba(255,255,255,0.04); border-radius: 6px; }

/* ── RELATED CARDS ───────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.related-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 1.25rem; text-decoration: none;
  transition: all 0.25s;
}
.related-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-card h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.3rem; }
.related-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ── DISCLAIMER BAR ──────────────────────────────────────── */
.disclaimer-bar { background: var(--bg-card); border-bottom: 1px solid var(--border-light); padding: 0.5rem 0; text-align: center; }
.disclaimer-bar p { font-size: 0.72rem; color: var(--text-muted); }
.disclaimer-bar strong { color: var(--accent); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb { padding: 0.75rem 0; }
.breadcrumb ol { display: flex; gap: 0.3rem; list-style: none; font-size: 0.78rem; color: var(--text-muted); }
.breadcrumb a { color: var(--accent); }
.breadcrumb li + li::before { content: '/'; margin-right: 0.3rem; color: var(--border); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.hero-content { animation: fadeUp 0.7s ease-out; }
.topic-card { animation: fadeUp 0.5s ease-out both; }
.topic-card:nth-child(1) { animation-delay: 0.05s; }
.topic-card:nth-child(2) { animation-delay: 0.1s; }
.topic-card:nth-child(3) { animation-delay: 0.15s; }
.topic-card:nth-child(4) { animation-delay: 0.2s; }
.topic-card:nth-child(5) { animation-delay: 0.25s; }
.topic-card:nth-child(6) { animation-delay: 0.3s; }
.topic-card:nth-child(7) { animation-delay: 0.35s; }
.topic-card:nth-child(8) { animation-delay: 0.4s; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; padding: clamp(2rem, 6vw, 4rem) var(--gutter); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hamburger { display: block; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat .num { font-size: 1.2rem; }
}
