/* =====================================================================
   LEE & CO. LAW FIRM — Master Stylesheet
   Premium Ontario law firm design system
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --forest:        #141B11;
  --forest-deep:   #0E140C;
  --forest-soft:   #1F2818;
  --gold:          #B8964E;
  --gold-light:    #D4AF6A;
  --gold-pale:     #E8D5A8;
  --cream:         #F5F1E8;
  --cream-soft:    #FAF6EC;
  --white:         #FFFFFF;
  --charcoal:      #2A2A2A;
  --grey-soft:     #6A6A6A;
  --grey-line:     #E3DDD0;

  --font-display:  'Cinzel', 'Trajan Pro', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-serif:    'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Source Sans 3', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm:     0 2px 8px rgba(31, 42, 31, 0.06);
  --shadow-md:     0 10px 30px rgba(31, 42, 31, 0.10);
  --shadow-lg:     0 20px 60px rgba(31, 42, 31, 0.18);

  --max-w:         1200px;
  --radius-sm:     4px;
  --radius-md:     6px;
  --transition:    250ms cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
.hidden { display: none !important; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--forest);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
}
h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.2rem; margin: 0 0 1.2em; }
li { margin-bottom: 0.45em; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 2.2rem;
  gap: 14px;
}
.divider-ornament::before,
.divider-ornament::after {
  content: "";
  height: 1px;
  width: 50px;
  background: var(--gold);
}
.divider-ornament span {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--forest);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--forest);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold-light);
}
.btn-outline-light:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--gold); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184, 150, 78, 0.2);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--gold-light); }
.topbar-left, .topbar-right {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-right span.sep {
  color: var(--gold);
  opacity: 0.5;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: var(--forest);
  z-index: 100;
  box-shadow: 0 2px 0 var(--gold), 0 4px 24px rgba(0,0,0,0.18);
  transition: padding var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.logo-link img,
.site-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.main-nav .nav-cta {
  background: var(--gold);
  color: var(--forest);
  border-radius: var(--radius-sm);
  margin-left: 12px;
  padding: 12px 22px;
  font-weight: 600;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover {
  background: var(--gold-light);
  color: var(--forest);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.mobile-call {
  display: none;
  background: var(--gold);
  color: var(--forest);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(135deg, rgba(31,42,31,0.94) 0%, rgba(21,32,26,0.88) 100%),
    radial-gradient(ellipse at top right, rgba(184,150,78,0.18), transparent 60%),
    var(--forest);
  color: var(--cream);
  padding: clamp(70px, 11vw, 140px) 0 clamp(80px, 12vw, 150px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,106,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border: 1px solid rgba(184,150,78,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  margin-bottom: 1.2rem;
  letter-spacing: 0.005em;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(245,241,232,0.85);
  max-width: 680px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }

/* Page hero (sub-pages) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(31,42,31,0.95) 0%, rgba(21,32,26,0.92) 100%),
    var(--forest);
  color: var(--cream);
  padding: clamp(70px, 10vw, 120px) 0 clamp(70px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,106,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero p {
  color: rgba(245,241,232,0.85);
  font-size: 1.12rem;
  max-width: 680px;
  margin: 0;
}
.breadcrumbs {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.6);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.breadcrumbs a { color: var(--gold-light); }
.breadcrumbs span { margin: 0 8px; color: var(--gold); }

/* ---------- Sections ---------- */
section { padding: clamp(60px, 8vw, 100px) 0; }
.bg-cream { background: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }
.bg-white { background: var(--white); }
.bg-forest {
  background: var(--forest);
  color: var(--cream);
}
.bg-forest h2, .bg-forest h3, .bg-forest h4 { color: var(--cream); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head p {
  color: var(--grey-soft);
  font-size: 1.05rem;
}

/* ---------- Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  padding: 38px 30px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 22px;
  font-style: italic;
}
.card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.card p {
  color: var(--grey-soft);
  font-size: 0.97rem;
  margin-bottom: 18px;
}
.card a.card-link {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card a.card-link::after {
  content: "→";
  transition: transform var(--transition);
}
.card a.card-link:hover::after { transform: translateX(4px); }

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col h2 { margin-bottom: 1.2rem; }
.two-col p { color: var(--grey-soft); }

.stat-block {
  background: var(--forest);
  color: var(--cream);
  padding: 50px 40px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,150,78,0.25);
}
.stat-block::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  border: 1px solid rgba(184,150,78,0.15);
  border-radius: 50%;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.7);
  position: relative;
  z-index: 2;
}
.stat-block p {
  color: rgba(245,241,232,0.85);
  position: relative;
  z-index: 2;
  margin-top: 1.4rem;
  margin-bottom: 0;
}

/* ---------- Practice list (sub-page bullets) ---------- */
.practice-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.practice-list li {
  padding: 16px 20px 16px 44px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  position: relative;
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}
.practice-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px; height: 6px;
  background: var(--gold);
}

/* ---------- Feature row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature {
  text-align: left;
}
.feature-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
}
.feature h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.feature p {
  color: var(--grey-soft);
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(31,42,31,0.95), rgba(21,32,26,0.95)),
    var(--forest);
  color: var(--cream);
  padding: clamp(60px, 8vw, 90px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,106,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-band-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-band h2 { color: var(--cream); }
.cta-band p {
  color: rgba(245,241,232,0.85);
  font-size: 1.08rem;
  margin-bottom: 2rem;
}
.cta-band .hero-actions { justify-content: center; }

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  line-height: 1.35;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--forest);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--grey-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.form-section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest);
  margin: 2.4rem 0 1.2rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  letter-spacing: 0.02em;
}
.form-section-title:first-child { margin-top: 0; }
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
label .req { color: var(--gold); margin-left: 2px; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,78,0.15);
}
textarea { resize: vertical; min-height: 120px; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.55;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 16px; height: 16px;
}
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.radio-row label {
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.radio-row input[type="radio"] { accent-color: var(--gold); }

.form-submit {
  margin-top: 2rem;
  text-align: center;
}
.form-confirmation {
  display: none;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 1.5rem;
  color: var(--forest);
}
.form-confirmation.show { display: block; }

/* ---------- Contact info grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-card .ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
}
.contact-card h4 {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-card p, .contact-card a {
  color: var(--charcoal);
  font-size: 1rem;
  margin: 0;
}
.contact-card a:hover { color: var(--gold); }

/* ---------- Disclaimer box ---------- */
.disclaimer {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  font-size: 0.92rem;
  color: var(--grey-soft);
  line-height: 1.7;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.disclaimer strong {
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ---------- Prose ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 2.4rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; color: var(--forest); }
.prose ul li::marker { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(245,241,232,0.78);
  padding: 70px 0 0;
  font-size: 0.93rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(184,150,78,0.2);
}
.footer-brand img,
.footer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p { color: rgba(245,241,232,0.7); font-size: 0.92rem; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: rgba(245,241,232,0.78);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item .lbl {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: 42px;
  flex-shrink: 0;
  padding-top: 2px;
}
.footer-contact-item span { color: rgba(245,241,232,0.85); font-size: 0.92rem; }
.footer-contact-item a { color: rgba(245,241,232,0.85); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-legal-aid {
  background: rgba(184,150,78,0.08);
  border: 1px solid rgba(184,150,78,0.25);
  padding: 16px 20px;
  margin: 30px 0;
  font-size: 0.88rem;
  text-align: center;
  color: rgba(245,241,232,0.85);
  border-radius: var(--radius-sm);
}
.footer-legal-aid strong { color: var(--gold-light); }

.footer-disclaimer {
  padding: 30px 0;
  font-size: 0.82rem;
  color: rgba(245,241,232,0.55);
  line-height: 1.7;
  border-bottom: 1px solid rgba(184,150,78,0.15);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(245,241,232,0.6);
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(245,241,232,0.7); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ---------- Why-Choose & accent blocks ---------- */
.bullet-list-elegant {
  list-style: none;
  padding: 0;
}
.bullet-list-elegant li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.bullet-list-elegant li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 1px;
  background: var(--gold);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 800ms cubic-bezier(.4,0,.2,1) both;
}
.fade-up.delay-1 { animation-delay: 100ms; }
.fade-up.delay-2 { animation-delay: 250ms; }
.fade-up.delay-3 { animation-delay: 400ms; }
.fade-up.delay-4 { animation-delay: 550ms; }

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-call { display: inline-flex; align-items: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--forest-deep);
    padding: 20px 24px 32px;
    border-top: 1px solid rgba(184,150,78,0.2);
    box-shadow: var(--shadow-lg);
    align-items: stretch;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 4px;
    width: 100%;
    border-bottom: 1px solid rgba(184,150,78,0.1);
  }
  .main-nav a::after { display: none; }
  .main-nav .nav-cta {
    margin: 16px 0 0;
    text-align: center;
  }
  .header-inner { gap: 12px; padding: 14px 0; position: relative; }
  .logo-link img,
  .site-logo { width: 150px; }
  .footer-brand img,
  .footer-logo { width: 150px; }
  .header-actions { display: flex; gap: 8px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions .btn { width: 100%; }
  .hero { padding: 60px 0 70px; }
  .form-wrap { padding: 24px 20px; }
  .logo-link img,
  .site-logo,
  .footer-brand img,
  .footer-logo { width: 140px; }
}
