/* ==========================================================================
   Mawela Zwane Attorneys — styles.css
   Palette: #B8A579 · #757367 · #773816 · #1E1C1A · #DBD9C6
   ========================================================================== */

:root {
  --tan:         #B8A579;
  --stone:       #757367;
  --sienna:      #773816;
  --ink:         #1E1C1A;
  --parchment:   #DBD9C6;

  /* Derived */
  --bg:          #1E1C1A;
  --surface:     #252320;
  --surface-2:   #2d2b28;
  --text:        #DBD9C6;
  --muted:       #B8A579;
  --dim:         rgba(184,165,121,0.35);
  /* Body copy colour — lighter than --stone for WCAG AA contrast on --bg */
  --text-soft:   #a3a08f;
  --danger:      #d98b6a;

  --sienna-dim:  rgba(119,56,22,0.15);
  --sienna-bdr:  rgba(119,56,22,0.4);
  --tan-bdr:     rgba(184,165,121,0.2);
  --tan-dim:     rgba(184,165,121,0.08);
  --stone-bdr:   rgba(117,115,103,0.25);

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;

  --nav-h:  70px;
  --pad:    6rem 4rem;
  --wide:   1200px;

  --fast:   0.18s ease;
  --base:   0.28s ease;
  --slow:   0.45s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Accessibility: visible keyboard focus ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--tan);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ── Type ── */
.sh {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.sh em { font-style: italic; color: var(--tan); }

.eyebrow {
  font-size: 0.59rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sienna);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--sienna);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn-p {
  background: var(--sienna);
  color: var(--parchment);
  border: 1.5px solid var(--sienna);
  padding: 0.85rem 2rem;
  font-family: var(--font-b);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: opacity var(--fast);
}
.btn-p:hover { opacity: 0.82; }

.btn-g {
  background: transparent;
  color: var(--tan);
  border: 1.5px solid var(--tan-bdr);
  padding: 0.85rem 2rem;
  font-family: var(--font-b);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: border-color var(--base), color var(--base);
}
.btn-g:hover { border-color: var(--tan); color: var(--parchment); }
.btn-full { width: 100%; justify-content: center; padding: 1rem 2rem; }

/* Corners */
.corner { position: absolute; width: 44px; height: 44px; border-color: var(--tan-bdr); border-style: solid; }
.corner.tl { top: -12px; left: -12px; border-width: 1px 0 0 1px; }
.corner.br { bottom: -12px; right: -12px; border-width: 0 1px 1px 0; }


/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  height: var(--nav-h);
  background: rgba(30,28,26,0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(219,217,198,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px;
  border: 1px solid var(--tan-bdr);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(45deg);
  transition: border-color var(--base);
}
.logo-mark:hover { border-color: var(--tan); }
.logo-mark span {
  transform: rotate(-45deg);
  font-family: var(--font-d);
  font-size: 0.9rem; font-weight: 600;
  color: var(--tan);
}
.logo-text strong { display: block; font-family: var(--font-b); font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: 0.06em; white-space: nowrap; }
.logo-text small  { font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  text-decoration: none; color: var(--stone);
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400;
  position: relative; transition: color var(--base);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--sienna);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--parchment); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--sienna); color: var(--parchment);
  border: 1.5px solid var(--sienna);
  padding: 0.62rem 1.4rem;
  font-family: var(--font-b); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: opacity var(--fast);
}
.nav-cta:hover { opacity: 0.82; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--tan-bdr);
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 18px; height: 1.5px;
  margin: 0 auto;
  background: var(--tan);
  transition: transform var(--base), opacity var(--base);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 790;
  background: rgba(30,28,26,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--tan-bdr);
  padding: 1.5rem 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.4rem;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--base), transform var(--base), visibility var(--base);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-links { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-links a {
  display: block;
  padding: 0.9rem 0.2rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400;
  border-bottom: 1px solid rgba(117,115,103,0.15);
  transition: color var(--fast);
}
.mobile-links a:hover { color: var(--tan); }
.mobile-cta { justify-content: center; width: 100%; }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg svg {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 3rem 5rem 4rem;
  border-left: 2px solid var(--sienna);
  margin-left: 4rem;
}

.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.59rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: slideR 0.7s ease 0.2s forwards;
}
.hero-tag-bar { width: 20px; height: 1px; background: var(--sienna); flex-shrink: 0; }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1;
  color: var(--text);
  margin-bottom: 2rem;
}
.hero-line { display: block; overflow: hidden; }
.hero-line-inner { display: block; transform: translateY(110%); animation: lineUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
.l1 .hero-line-inner { animation-delay: 0.35s; }
.l2 .hero-line-inner { animation-delay: 0.55s; }
.l3 .hero-line-inner { animation-delay: 0.75s; }
.hero-em { font-style: italic; color: var(--tan); }

.hero-rule {
  width: 56px; height: 1px;
  background: var(--sienna);
  margin-bottom: 1.6rem;
  opacity: 0; animation: fadeIn 0.6s ease 1s forwards;
}
.hero-sub {
  font-size: 0.84rem; line-height: 1.82; color: var(--text-soft);
  max-width: 440px; margin-bottom: 2.8rem; font-weight: 300;
  opacity: 0; animation: slideR 0.7s ease 1.1s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
  opacity: 0; animation: slideR 0.7s ease 1.25s forwards;
}
.hero-stats {
  display: flex; align-items: center; gap: 2.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--tan-bdr);
  opacity: 0; animation: fadeIn 0.7s ease 1.5s forwards;
}
.hs { display: flex; flex-direction: column; gap: 0.25rem; }
.hs-n {
  font-family: var(--font-d); font-size: 2.2rem; font-weight: 300;
  color: var(--tan); line-height: 1;
}
.hs-l { font-size: 0.54rem; letter-spacing: 0.18em; color: var(--stone); text-transform: uppercase; }
.hs-div { width: 1px; height: 36px; background: var(--tan-bdr); flex-shrink: 0; }

/* Quote panel — right column over the SVG scene */
.hero-quote-panel {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 3rem 3rem 2rem;
  opacity: 0; animation: fadeIn 1s ease 1.6s forwards;
}
.hqp-inner {
  max-width: 340px;
  position: relative;
}
.hqp-line {
  width: 2px; height: 60px;
  background: var(--sienna);
  margin-bottom: 2rem;
}
.hqp-text {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-style: italic; font-weight: 300;
  color: var(--parchment);
  line-height: 1.38;
  margin-bottom: 1.4rem;
}
.hqp-cite {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 400;
  color: var(--tan); font-style: normal; display: block;
  margin-bottom: 0.3rem;
}
.hqp-role {
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone);
}


/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about { background: var(--surface); padding: var(--pad); }
.about-inner {
  max-width: var(--wide); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center;
}
.about-vis { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg);
  border: 1px solid var(--tan-bdr);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; }
.ph { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: var(--dim); }
.ph svg { opacity: 0.25; }
.ph p { font-size: 0.57rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.about-badge {
  position: absolute; bottom: -1.6rem; right: -1.6rem;
  background: var(--sienna); padding: 1.2rem 1.7rem; z-index: 3;
}
.ab-n { font-family: var(--font-d); font-size: 2.4rem; font-weight: 300; color: var(--parchment); line-height: 1; display: block; }
.ab-l { font-size: 0.49rem; letter-spacing: 0.14em; color: rgba(219,217,198,0.65); text-transform: uppercase; }
.about-text {}
.about-name { font-family: var(--font-d); font-size: 1.9rem; font-weight: 400; color: var(--text); margin: 1.5rem 0 0.2rem; }
.about-role { font-size: 0.57rem; letter-spacing: 0.22em; color: var(--sienna); text-transform: uppercase; margin-bottom: 1.8rem; }
.about-body { font-size: 0.84rem; line-height: 1.85; color: var(--text-soft); margin-bottom: 2rem; }
.about-body p + p { margin-top: 0.9rem; }
.quals { margin-bottom: 2.5rem; }
.qual {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.71rem; color: var(--stone);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(117,115,103,0.15);
  font-weight: 300;
}
.qual::before { content: ''; width: 12px; height: 1px; background: var(--sienna); flex-shrink: 0; }


/* ══════════════════════════════════════════════
   PRACTICE
══════════════════════════════════════════════ */
.practice { background: var(--bg); padding: var(--pad); }
.practice-inner { max-width: var(--wide); margin-inline: auto; }
.practice-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.pgrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(117,115,103,0.12);
}
.pc {
  background: var(--bg);
  padding: 2.5rem 2rem 2rem;
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: background var(--slow), border-color var(--slow);
  cursor: default;
}
.pc::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--sienna);
  transition: height var(--slow);
}
.pc:hover { background: var(--surface); border-color: var(--sienna-bdr); }
.pc:hover::before { height: 100%; }
.pc-icon { width: 32px; height: 32px; color: var(--tan); margin-bottom: 1.3rem; opacity: 0.65; transition: opacity var(--base); }
.pc:hover .pc-icon { opacity: 1; }
.pc h3 { font-family: var(--font-d); font-size: 1.3rem; color: var(--text); margin-bottom: 0.6rem; font-weight: 500; }
.pc p  { font-size: 0.77rem; line-height: 1.75; color: var(--text-soft); font-weight: 300; }
.pc-arrow {
  margin-top: 1.3rem;
  font-size: 0.57rem; letter-spacing: 0.18em; color: var(--sienna);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity var(--base), transform var(--base);
}
.pc:hover .pc-arrow { opacity: 1; transform: translateX(0); }


/* ══════════════════════════════════════════════
   BIG QUOTE
══════════════════════════════════════════════ */
.big-quote {
  background: var(--surface-2);
  padding: var(--pad);
  border-top: 1px solid rgba(117,115,103,0.12);
  border-bottom: 1px solid rgba(117,115,103,0.12);
}
.bq-inner { max-width: 780px; margin-inline: auto; text-align: center; }
.bq-text {
  font-family: var(--font-d);
  font-size: clamp(1.55rem, 2.8vw, 2.6rem);
  font-weight: 300; font-style: italic;
  color: var(--text); line-height: 1.38; margin-bottom: 2rem;
}
.bq-text em { font-style: normal; color: var(--tan); }
.bq-attr {
  font-size: 0.57rem; letter-spacing: 0.28em; color: var(--stone);
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 1.4rem;
}
.bq-attr::before, .bq-attr::after { content: ''; width: 28px; height: 1px; background: var(--tan-bdr); }


/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why { background: var(--bg); padding: var(--pad); }
.why-inner { max-width: var(--wide); margin-inline: auto; }
.why-top { margin-bottom: 3.5rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.wf { display: flex; gap: 1.4rem; margin-bottom: 2.8rem; }
.wf-n {
  font-family: var(--font-d); font-size: 2.8rem; font-weight: 300;
  color: var(--tan); opacity: 0.18; line-height: 1; flex-shrink: 0; min-width: 2.8rem;
  transition: opacity var(--base);
}
.wf:hover .wf-n { opacity: 0.75; }
.wf h3 { font-family: var(--font-d); font-size: 1.25rem; color: var(--text); margin-bottom: 0.45rem; font-weight: 500; }
.wf p  { font-size: 0.79rem; line-height: 1.75; color: var(--text-soft); font-weight: 300; }
.why-box {
  background: var(--surface);
  border: 1px solid var(--tan-bdr);
  border-left: 3px solid var(--sienna);
  padding: 2.8rem;
}
.why-box blockquote { font-family: var(--font-d); font-size: 1.3rem; font-style: italic; color: var(--text); line-height: 1.55; margin-bottom: 1.3rem; font-weight: 300; }
.why-box cite { font-size: 0.57rem; letter-spacing: 0.18em; color: var(--sienna); text-transform: uppercase; font-style: normal; display: block; margin-bottom: 2.2rem; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; padding-top: 1.8rem; border-top: 1px solid rgba(184,165,121,0.1); }
.ws-n { font-family: var(--font-d); font-size: 2.4rem; font-weight: 300; color: var(--tan); line-height: 1; margin-bottom: 0.25rem; }
.ws-l { font-size: 0.53rem; letter-spacing: 0.15em; color: var(--stone); text-transform: uppercase; }


/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testi { background: var(--surface); padding: var(--pad); }
.testi-inner { max-width: var(--wide); margin-inline: auto; }
.testi-hdr { text-align: center; margin-bottom: 3.8rem; }
.testi-eyebrow { justify-content: center; }
.testi-eyebrow::before { display: none; }
.testi-eyebrow::after { content: ''; width: 22px; height: 1px; background: var(--sienna); }
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.tc {
  background: var(--bg);
  border: 1px solid rgba(117,115,103,0.14);
  padding: 2.1rem;
  transition: border-color var(--base);
  cursor: default;
}
.tc:hover { border-color: var(--sienna-bdr); }
.tc-stars { color: var(--tan); font-size: 0.84rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.tc blockquote { font-family: var(--font-d); font-size: 1.05rem; font-style: italic; line-height: 1.65; color: var(--text); margin-bottom: 1.6rem; font-weight: 300; }
.tc-author { display: flex; align-items: center; gap: 0.9rem; padding-top: 1.2rem; border-top: 1px solid rgba(117,115,103,0.12); }
.tc-av { width: 35px; height: 35px; background: var(--sienna); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 0.88rem; color: var(--parchment); font-weight: 500; flex-shrink: 0; }
.tc-name { font-size: 0.72rem; font-weight: 500; color: var(--text); }
.tc-case { font-size: 0.56rem; letter-spacing: 0.1em; color: var(--stone); text-transform: uppercase; margin-top: 0.12rem; }


/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.cta {
  background: var(--bg);
  padding: var(--pad);
  border-top: 2px solid var(--sienna);
}
.cta-inner { max-width: 680px; margin-inline: auto; text-align: center; }
.cta-inner h2 { font-family: var(--font-d); font-size: clamp(2.1rem, 4vw, 3.8rem); font-weight: 300; color: var(--text); margin-bottom: 1.2rem; line-height: 1.08; }
.cta-inner h2 em { font-style: italic; color: var(--tan); }
.cta-inner p  { font-size: 0.82rem; color: var(--text-soft); line-height: 1.75; max-width: 460px; margin: 0 auto 2.4rem; font-weight: 300; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact { background: var(--surface); padding: var(--pad); }
.contact-inner { max-width: 1080px; margin-inline: auto; }
.cgrid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; margin-top: 3.2rem; }
.cd { display: flex; gap: 1.1rem; margin-bottom: 1.9rem; align-items: flex-start; }
.cd-icon { width: 38px; height: 38px; flex-shrink: 0; border: 1px solid var(--tan-bdr); display: flex; align-items: center; justify-content: center; color: var(--tan); }
.cd-label { font-size: 0.53rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.22rem; }
.cd-val { font-size: 0.87rem; color: var(--text); font-weight: 300; }
.cd-val a { text-decoration: none; transition: color var(--fast); }
.cd-val a:hover { color: var(--tan); }
.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: 0.42rem; }
.fg label { font-size: 0.53rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); font-weight: 400; }
.fg input, .fg textarea, .fg select {
  background: var(--bg);
  border: 1px solid var(--tan-bdr);
  padding: 0.82rem 1.05rem;
  color: var(--text);
  font-family: var(--font-b); font-size: 0.82rem; font-weight: 300;
  outline: none;
  transition: border-color var(--base), box-shadow var(--base);
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--sienna);
  box-shadow: 0 0 0 3px var(--sienna-dim);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(117,115,103,0.45); }
.fg textarea { min-height: 108px; resize: vertical; }
.fg select option { background: var(--surface); }
.form-disclaimer { font-size: 0.56rem; color: var(--dim); text-align: center; margin-top: 0.4rem; letter-spacing: 0.04em; line-height: 1.6; }

/* Inline validation + submit status */
.fg-err { font-size: 0.62rem; color: var(--danger); letter-spacing: 0.02em; min-height: 0; line-height: 1.4; }
.fg-err:empty { display: none; }
.fg input.invalid, .fg textarea.invalid, .fg select.invalid { border-color: var(--danger); }
.form-status { font-size: 0.72rem; text-align: center; margin-top: 0.2rem; min-height: 0; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status.ok  { color: var(--tan); }
.form-status.err { color: var(--danger); }


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: var(--bg); padding: 4rem 4rem 2.4rem; border-top: 1px solid rgba(117,115,103,0.12); }
.ft { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3rem; }
.ft-logo { text-decoration: none; display: flex; align-items: center; gap: 12px; margin-bottom: 1.4rem; }
.fb p { font-size: 0.76rem; line-height: 1.8; color: var(--text-soft); font-weight: 300; }
.fc h5 { font-size: 0.52rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sienna); margin-bottom: 1.2rem; font-weight: 500; }
.fc ul { display: flex; flex-direction: column; gap: 0.65rem; }
.fc ul a { font-size: 0.76rem; color: var(--text-soft); text-decoration: none; font-weight: 300; transition: color var(--base); }
.fc ul a:hover { color: var(--parchment); }
.fb-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.6rem; border-top: 1px solid rgba(117,115,103,0.08); }
.fb-bottom p { font-size: 0.58rem; color: rgba(117,115,103,0.4); letter-spacing: 0.03em; }


/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes lineUp  { to { transform: translateY(0); } }
@keyframes slideR  { from { opacity:0; transform:translateX(-22px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }

.reveal { opacity:0; transform:translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity:1; transform:translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-quote-panel { display: none; }
  .ft { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --pad: 4.5rem 2rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { margin-left: 2rem; padding: 3.5rem 2rem; }
  .about-inner, .cgrid, .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pgrid, .tgrid { grid-template-columns: 1fr; }
  .practice-hdr { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .fb-bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
}

@media (max-width: 600px) {
  .ft { grid-template-columns: 1fr; gap: 2rem; }
  .hero-btns, .cta-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { align-items: center; }
  .fr { grid-template-columns: 1fr; }
  .hero-content { margin-left: 1.2rem; }
  .hero-stats { gap: 1.5rem; }
}