/* ===== CSS RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1a2f1f;
  --green-primary: #2d5a3d;
  --green-mid: #3d7a52;
  --green-light: #4a9463;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --cream: #f8f5f0;
  --cream-dark: #f0ebe2;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-muted: #666666;
  --text-light: #999999;
  --border: #e0dbd2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --section-py: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: var(--green-dark);
  color: #a8c4b0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 8px 0;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.utility-tagline { font-style: italic; }

.utility-phones {
  display: flex;
  gap: 6px;
  align-items: center;
}

.utility-phones a {
  color: #d4e8da;
  font-weight: 500;
  transition: color 0.2s;
}
.utility-phones a:hover { color: var(--gold); }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--green-primary);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--green-primary); }

.btn-book {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  transition: background 0.2s !important;
}

.btn-book:hover { background: var(--green-mid) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  display: block;
  transition: transform 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 25, 15, 0.88) 0%,
    rgba(10, 25, 15, 0.70) 50%,
    rgba(10, 25, 15, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 5px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
  font-weight: 500;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 5px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

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

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--green-primary);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
  max-width: 160px;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.gold-eyebrow { color: var(--gold) !important; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ===== SIGNATURE PRACTICE ===== */
.signature-practice {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.sig-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sig-image img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  max-height: 480px;
}

.sig-content .section-eyebrow { text-align: left; }
.sig-content .section-title { text-align: left; margin-bottom: 18px; }

.sig-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sig-list {
  list-style: none;
  margin-bottom: 28px;
}

.sig-list li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 15px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

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

.sig-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.btn-green {
  display: inline-block;
  color: var(--green-primary);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid var(--green-primary);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-green:hover { color: var(--gold); border-color: var(--gold); }

/* ===== PRACTICE AREAS ===== */
.practice-areas {
  padding: var(--section-py) 0;
  background: var(--white);
}

.practice-areas .section-title { margin-bottom: 16px; }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.practice-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.2s;
}

.practice-card:hover {
  box-shadow: 0 6px 24px rgba(45, 90, 61, 0.12);
  transform: translateY(-3px);
}

.practice-card.flagship {
  border-color: var(--gold);
  background: #fffdf6;
  grid-column: span 1;
}

.practice-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.practice-card h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.practice-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.flagship-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.btn-outline-dark {
  display: inline-block;
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 28px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-dark:hover { background: var(--green-primary); color: var(--white); }

/* ===== TEAM ===== */
.team-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.team-photo-wrap {
  position: relative;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(20%);
}

.photo-coming {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.team-info { padding: 22px; }

.team-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-credential {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.team-bio {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-tags span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--green-primary);
  background: rgba(45, 90, 61, 0.08);
  border: 1px solid rgba(45, 90, 61, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
}

/* ===== LEGAL PROCESS ===== */
.legal-process {
  padding: var(--section-py) 0;
  background: var(--green-dark);
}

.legal-process .section-eyebrow { color: var(--gold); }
.legal-process .section-title { color: var(--white); }
.legal-process .section-sub { color: rgba(255,255,255,0.65); }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 10px;
}

.process-step {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  text-align: center;
  padding: 20px 16px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 14px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: rgba(201, 168, 76, 0.3);
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}

/* ===== WHY US ===== */
.why-us {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.why-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 22px;
  text-align: center;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.2s;
}

.why-card:hover {
  box-shadow: 0 6px 24px rgba(45,90,61,0.1);
  transform: translateY(-2px);
}

.why-icon { font-size: 32px; margin-bottom: 14px; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.author-title {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--green-primary);
  padding: 72px 0;
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16.5px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(1.4);
}

.footer-firm-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.footer-firm-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-bio {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.4);
}

.footer-col ul li + li { margin-top: 10px; }

.footer-col ul a,
.footer-col address a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
}

.footer-col ul a:hover,
.footer-col address a:hover { color: var(--gold); }

.footer-col address p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

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

/* Large tablets / small desktops */
@media (max-width: 1100px) {
  .practice-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: span 2; }
}

@media (max-width: 960px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .sig-inner { grid-template-columns: 1fr; gap: 36px; }
  .sig-image img { max-height: 360px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px; }
  .stat-item:last-child { border-bottom: none; }
  .step-connector { display: none; }
  .process-steps { gap: 12px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root { --section-py: 52px; }

  /* Mobile nav */
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 2px;
    z-index: 200;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    font-size: 15px;
    padding: 11px 8px;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .main-nav a:last-child { border-bottom: none; }
  .btn-book {
    margin-top: 8px;
    text-align: center !important;
    padding: 12px 18px !important;
    border-radius: 5px !important;
    border-bottom: none !important;
  }
  .hamburger { display: flex; }
  .site-header { position: sticky; top: 0; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-content { padding-top: 48px; padding-bottom: 48px; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,25,15,0.85) 0%,
      rgba(10,25,15,0.75) 100%
    );
  }
  .hero-desc { font-size: 15.5px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 32px; }

  /* Grids */
  .practice-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-about { grid-column: span 1; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; gap: 8px; }
  .process-step { max-width: 100%; width: 100%; text-align: left; display: flex; gap: 18px; align-items: flex-start; padding: 16px; background: rgba(255,255,255,0.05); border-radius: 8px; }
  .step-num { font-size: 28px; min-width: 48px; margin-bottom: 0; }

  /* Section titles */
  .section-title { font-size: clamp(22px, 4vw, 32px); }
}

/* Mobile */
@media (max-width: 540px) {
  :root { --section-py: 44px; }
  .utility-tagline { display: none; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-title { font-size: clamp(26px, 7vw, 36px); }
  .hero-desc { font-size: 14.5px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .hero-badges { gap: 6px; }
  .hero-badges span { font-size: 11px; padding: 4px 10px; }

  /* Stats */
  .stats-bar { padding: 28px 0; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 12px; }

  /* Grids collapse to 1 col on small phones */
  .practice-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* Team photo smaller */
  .team-photo { height: 200px; }

  /* Nav logo text hide on very small */
  .logo-tagline { display: none; }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 4px; }
  .cta-title { font-size: clamp(22px, 6vw, 32px); }
}

/* Very small phones */
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .logo-name { font-size: 15px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow, .hero-title, .hero-desc, .hero-ctas, .hero-badges {
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.25s; }
.hero-desc { animation-delay: 0.4s; }
.hero-ctas { animation-delay: 0.55s; }
.hero-badges { animation-delay: 0.7s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DISCLAIMER MODAL ===== */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 20, 12, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: overlayFadeIn 0.4s ease both;
}

.disclaimer-overlay.hidden {
  display: none;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.disclaimer-modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  animation: modalSlideUp 0.4s ease both;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.disclaimer-header {
  background: var(--green-dark);
  padding: 28px 32px 24px;
  flex-shrink: 0;
}

.disclaimer-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.disclaimer-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.disclaimer-rule {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  letter-spacing: 0.02em;
}

.disclaimer-body {
  padding: 28px 32px;
  overflow-y: auto;
  flex: 1;
  background: var(--cream);
}

.disclaimer-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.disclaimer-body p:last-child { margin-bottom: 0; }

.disclaimer-acknowledge {
  margin-top: 20px !important;
  color: var(--green-dark) !important;
  font-size: 14px !important;
}

.disclaimer-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.65;
}

.disclaimer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.disclaimer-footer {
  display: flex;
  gap: 12px;
  padding: 20px 32px;
  background: var(--white);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  justify-content: flex-end;
}

.btn-disclaimer-decline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-disclaimer-decline:hover {
  border-color: #999;
  color: var(--text-dark);
}

.btn-disclaimer-agree {
  background: var(--green-primary);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-disclaimer-agree:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* Disclaimer mobile */
@media (max-width: 540px) {
  .disclaimer-header { padding: 22px 20px 18px; }
  .disclaimer-title { font-size: 22px; }
  .disclaimer-body { padding: 20px; }
  .disclaimer-footer { flex-direction: column; padding: 16px 20px; }
  .btn-disclaimer-decline,
  .btn-disclaimer-agree { width: 100%; text-align: center; padding: 13px; }
  .btn-disclaimer-agree { order: -1; }
}
