/* ===== 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;
  --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: 500;
  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;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1;
}
.logo-img { height: 80px; 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;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.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; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  display: block;
  transition: transform 0.3s, opacity 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.90) 0%,
    rgba(10,25,15,0.72) 55%,
    rgba(10,25,15,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 680px;
  width: 100%;
}
.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(28px, 4.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: 8px; 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;
}

/* ===== 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: 12px 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(24px, 3vw, 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-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.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;
}
.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: 340px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.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;
  flex-wrap: wrap;
  gap: 0;
}
.process-step {
  flex: 1 1 160px;
  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;
}
.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(26px, 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;
  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: 80px; 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); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.7s ease 0.1s both; }
.hero-title   { animation: fadeUp 0.7s ease 0.25s both; }
.hero-desc    { animation: fadeUp 0.7s ease 0.4s both; }
.hero-ctas    { animation: fadeUp 0.7s ease 0.55s both; }
.hero-badges  { animation: fadeUp 0.7s ease 0.7s both; }

.reveal { opacity: 0; transform: translateY(28px); 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: 16px;
  backdrop-filter: blur(4px);
  animation: overlayIn 0.4s ease both;
}
.disclaimer-overlay.hidden { display: none; }

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

.disclaimer-modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  animation: modalUp 0.4s ease both;
}
@keyframes modalUp {
  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; }
.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; }
.disclaimer-list { list-style: none; margin: 10px 0 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;
  align-items: center;
}
.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;
  white-space: nowrap;
}
.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;
  white-space: nowrap;
}
.btn-disclaimer-agree:hover { background: var(--green-mid); transform: translateY(-1px); }

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

/* --- Tablet landscape / small desktop (≤1100px) --- */
@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; }
  .main-nav a    { font-size: 13px; padding: 6px 7px; }
}

/* --- Tablet portrait (≤960px) --- */
@media (max-width: 960px) {
  :root { --section-py: 64px; }
  .practice-grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-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); }
  .stat-item:nth-child(odd)     { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child         { border-bottom: none; }
  .stat-item:nth-last-child(2)  { border-bottom: none; }
  .step-connector { display: none; }
  .process-steps  { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .process-step   { flex: 1 1 45%; max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* --- Mobile landscape / large phone (≤768px) --- */
@media (max-width: 768px) {
  :root { --section-py: 52px; }

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

  /* --- Hero --- */
  .hero { min-height: 88vh; }
  .hero-content { padding-top: 48px; padding-bottom: 48px; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(10,25,15,0.88) 0%, rgba(10,25,15,0.78) 100%);
  }
  .hero-title { font-size: clamp(26px, 6vw, 38px); }
  .hero-desc  { font-size: 15px; }

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

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

  /* --- Team photo smaller on tablet --- */
  .team-photo { height: 260px; }

  /* --- Process steps vertical --- */
  .process-steps { flex-direction: column; align-items: stretch; gap: 8px; }
  .process-step {
    max-width: 100%;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .step-num { font-size: 28px; min-width: 44px; margin-bottom: 0; opacity: 0.8; }

  /* --- Sig --- */
  .sig-inner { grid-template-columns: 1fr; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-about { grid-column: span 1; }
  .cta-banner { padding: 56px 0; }
}

/* --- Small phones (≤540px) --- */
@media (max-width: 540px) {
  :root { --section-py: 44px; }
  .container { padding: 0 16px; }

  .utility-tagline { display: none; }

  /* Hero */
  .hero { min-height: 82vh; }
  .hero-title { font-size: clamp(24px, 7.5vw, 32px); line-height: 1.25; }
  .hero-desc  { font-size: 14.5px; }
  .hero-ctas  { flex-direction: column; gap: 10px; }
  .hero-ctas a { text-align: center; padding: 14px 20px; }
  .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 — all single column */
  .practice-grid     { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }

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

  /* Logo */
  .logo-tagline { display: none; }
  .logo-name    { font-size: 15px; }

  /* Section sub */
  .section-sub { font-size: 14.5px; margin-bottom: 32px; }

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

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

/* --- Very small phones (≤380px) --- */
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-right: none !important; }
  .why-grid   { grid-template-columns: 1fr; }
  .logo-img   { height: 36px; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--green-dark);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== ABOUT PAGE ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: var(--section-py) 0;
}
.about-split img { border-radius: 10px; width: 100%; }
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 24px 20px;
}
.vm-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--green-dark); margin-bottom: 12px; }
.vm-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.approach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.approach-card:hover { box-shadow: 0 6px 24px rgba(45,90,61,0.1); transform: translateY(-2px); }
.approach-icon { font-size: 28px; margin-bottom: 12px; }
.approach-card h3 { font-family: var(--font-display); font-size: 16px; color: var(--green-dark); margin-bottom: 8px; }
.approach-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== PRACTICE AREAS PAGE ===== */
.pa-list { display: flex; flex-direction: column; gap: 0; margin-top: 16px; }
.pa-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.pa-item:first-child { border-top: 1px solid var(--border); }
.pa-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
  padding-top: 4px;
}
.pa-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.pa-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.pa-flagship-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 10px;
}
.pa-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-primary);
  border: 1px solid rgba(45,90,61,0.3);
  padding: 8px 16px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: 4px;
}
.pa-link:hover { background: var(--green-primary); color: var(--white); }

.courts-section {
  background: var(--green-dark);
  padding: var(--section-py) 0;
}
.courts-section .section-title { color: var(--white); }
.courts-section .section-sub { color: rgba(255,255,255,0.65); }
.courts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.court-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
}
.court-card .ci { font-size: 28px; margin-bottom: 12px; }
.court-card h4 { font-family: var(--font-display); font-size: 15px; color: var(--white); margin-bottom: 6px; }
.court-card p { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ===== PERSONALITY RIGHTS PAGE ===== */
.threat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}
.threat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.threat-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.threat-card ul { display: flex; flex-direction: column; gap: 10px; }
.threat-card ul li {
  font-size: 14.5px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.threat-card ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-size: 8px;
  top: 5px;
}

.precedents-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14.5px;
}
.precedents-table th {
  background: var(--green-primary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.precedents-table td {
  padding: 14px 18px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.precedents-table tr:nth-child(even) td { background: var(--cream); }
.precedents-table tr:hover td { background: rgba(45,90,61,0.05); }

.infringement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.infringement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
}
.infringement-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.infringement-card ul { display: flex; flex-direction: column; gap: 8px; }
.infringement-card ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.infringement-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
  top: 1px;
}

.remedies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.remedy-card {
  background: var(--green-dark);
  border-radius: 8px;
  padding: 26px 22px;
}
.remedy-card h3 { font-family: var(--font-display); font-size: 16px; color: var(--gold); margin-bottom: 10px; }
.remedy-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; }

.why-bnk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.why-bnk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-mid);
}
.why-bnk-item::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  padding: var(--section-py) 0;
}
.contact-info-card {
  background: var(--green-dark);
  border-radius: 12px;
  padding: 36px 32px;
  position: sticky;
  top: 88px;
}
.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-detail { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-detail-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-detail h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 6px; }
.contact-detail p, .contact-detail a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  display: block;
}
.contact-detail a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.contact-form-wrap .form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; }
.btn-submit {
  width: 100%;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(45,90,61,0.06);
  border-radius: 8px;
  margin-top: 16px;
}
.form-success.show { display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 22px; color: var(--green-primary); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--text-muted); }

/* ===== TEAM PAGE ===== */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}

/* ===== PROCESS (personality page) ===== */
.engagement-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.engagement-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.engagement-step:last-child { border-bottom: none; }
.e-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.engagement-step h3 { font-family: var(--font-display); font-size: 18px; color: var(--green-dark); margin-bottom: 6px; }
.engagement-step p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

/* ===== CTA STRIP (reusable) ===== */
.cta-strip {
  background: var(--green-dark);
  padding: 60px 0;
  text-align: center;
}
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); color: var(--white); margin-bottom: 14px; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE additions for inner pages ===== */
@media (max-width: 960px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .infringement-grid { grid-template-columns: repeat(2, 1fr); }
  .remedies-grid { grid-template-columns: repeat(2, 1fr); }
  .courts-grid { grid-template-columns: repeat(2, 1fr); }
  .threat-grid { grid-template-columns: 1fr; }
  .team-page-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}
@media (max-width: 768px) {
  .pa-item { grid-template-columns: 40px 1fr; }
  .pa-link { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .why-bnk-grid { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .page-hero { padding: 52px 0 48px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions a { text-align: center; }
}
@media (max-width: 540px) {
  .approach-grid { grid-template-columns: 1fr; }
  .infringement-grid { grid-template-columns: 1fr; }
  .remedies-grid { grid-template-columns: 1fr; }
  .courts-grid { grid-template-columns: repeat(2, 1fr); }
  .team-page-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .precedents-table { font-size: 13px; }
  .precedents-table th, .precedents-table td { padding: 10px 12px; }
}

/* ===== ACTIVE NAV STATE ===== */
.main-nav a.nav-active {
  color: var(--green-primary) !important;
  font-weight: 600 !important;
}

/* ===== PERSONALITY RIGHTS HERO ===== */
.pr-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pr-hero-bg { position: absolute; inset: 0; z-index: 0; }
.pr-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pr-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,25,15,0.93) 0%, rgba(10,25,15,0.75) 55%, rgba(10,25,15,0.35) 100%);
}
.pr-hero-content {
  position: relative; z-index: 1;
  padding-top: 72px; padding-bottom: 72px;
  max-width: 700px;
}

/* ===== ABOUT SPLIT FIX ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-col img { border-radius: 10px; width: 100%; }
.about-text-col .section-eyebrow { text-align: left; }
.about-text-col .section-title { text-align: left; }

/* ===== CONTACT LEFT COLUMN ===== */
.contact-left { display: flex; flex-direction: column; gap: 0; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 960px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .pr-hero { min-height: 55vh; }
  .pr-hero-content { padding-top: 52px; padding-bottom: 52px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}
@media (max-width: 768px) {
  .pr-hero { min-height: 80vh; }
  .pr-hero-overlay {
    background: linear-gradient(to bottom, rgba(10,25,15,0.90) 0%, rgba(10,25,15,0.80) 100%);
  }
  .page-hero-actions { flex-direction: column; align-items: flex-start; }
  .page-hero-actions a { text-align: center; width: 100%; }
}
@media (max-width: 540px) {
  .pr-hero-content { padding-top: 44px; padding-bottom: 44px; }
  .contact-form-wrap { padding: 24px 16px; }
  .contact-info-card { padding: 24px 16px; }
}


/* ===== 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: 80px;
  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: 80px;
  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; }
}
