/* ══════════════════════════════════════════════
   DBA Legal — Boutique editorial design system
   ══════════════════════════════════════════════ */
:root {
  --ink: #141918;
  --ink-soft: #2a322f;
  --muted: #5a6760;
  --ivory: #f7f2e8;
  --paper: #ebe2d0;
  --white: #fffdf9;
  --line: #d2c5ae;
  --line-soft: rgba(210, 197, 174, 0.5);

  --forest: #0c2e26;
  --forest-mid: #164539;
  --forest-light: #1e5a4c;
  --forest-dark: #051412;
  --slate: #1e3347;
  --clay: #8f4a36;
  --brass: #a67f3d;
  --brass-light: #c9a862;
  --brass-pale: #e8d5a8;
  --brass-glow: rgba(166, 127, 61, 0.22);

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --shadow-xs: 0 2px 8px rgba(12, 30, 26, 0.04);
  --shadow-sm: 0 10px 30px rgba(12, 30, 26, 0.07);
  --shadow-md: 0 20px 50px rgba(12, 30, 26, 0.11);
  --shadow-lg: 0 32px 70px rgba(12, 30, 26, 0.15);
  --shadow-xl: 0 48px 90px rgba(12, 30, 26, 0.18);

  --max: 1200px;
  --header-h: 108px;
  --radius: 1px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { overflow-wrap: anywhere; margin: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6.8vw, 5.75rem); line-height: 0.96; }
h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.06; }
h3 { font-size: 1.3rem; line-height: 1.22; font-weight: 600; }

/* ── Utilities ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--brass);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-mark {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
}

.section-num,
.guide-num,
.card-label,
.auth-num {
  display: block;
  margin-bottom: 1.75rem;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.band {
  padding: clamp(5.5rem, 10vw, 8.5rem) clamp(1.25rem, 5vw, 4.5rem);
}

.section-heading { max-width: 780px; margin-bottom: 3rem; }
.section-heading.wide { max-width: 920px; }
.section-heading.compact { max-width: 700px; }
.section-heading.centered { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus { top: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--brass-light), var(--brass));
  color: #1a1408;
  box-shadow: 0 6px 20px var(--brass-glow);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px var(--brass-glow);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
  color: var(--forest);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-light:hover { box-shadow: var(--shadow-lg); }

.btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline {
  margin-top: 2rem;
  color: #fff;
  border-color: rgba(201, 168, 98, 0.5);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(201, 168, 98, 0.12);
  border-color: var(--brass-light);
}

/* ── Header ── */
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-h);
  background: rgba(247, 242, 232, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.2);
  transition: background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.site-header.is-scrolled {
  background: rgba(247, 242, 232, 0.96);
  border-bottom-color: var(--line-soft);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  max-width: calc(var(--max) + 10rem);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: min(420px, 46vw);
  min-width: 260px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 2.8vw, 2.5rem);
}

.nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a.is-active { color: var(--forest); }

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta-mobile { display: none; }

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1.35rem;
  background: var(--forest);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}

.header-cta:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12, 46, 38, 0.25);
}

.nav-toggle { display: none; }

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 46px;
  height: 46px;
  padding: 12px;
  cursor: pointer;
}

.nav-toggle-btn span {
  display: block;
  height: 2px;
  background: var(--forest);
  transition: transform 0.35s var(--ease);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--forest-dark);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.78) contrast(1.06) brightness(0.92);
  transform: scale(1.02);
  animation: heroZoom 20s var(--ease-out) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(5, 20, 18, 0.95) 0%, rgba(5, 20, 18, 0.78) 38%, rgba(5, 20, 18, 0.15) 68%, rgba(5, 20, 18, 0.45) 100%),
    linear-gradient(0deg, rgba(5, 20, 18, 0.6) 0%, transparent 45%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  max-width: calc(var(--max) + 10rem);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) clamp(1.25rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
}

.hero-main { display: flex; flex-direction: column; gap: 2.5rem; }

.hero-content { color: #fff; max-width: 680px; }

.hero-eyebrow { color: var(--brass-light); }

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero-title.is-loaded .hero-line:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.hero-title.is-loaded .hero-line:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}

.hero-line--accent {
  font-style: italic;
  color: var(--brass-pale);
  font-weight: 500;
}

.hero-copy {
  max-width: 540px;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.55s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}

.hero-trust {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.85s forwards;
}

.btn-block {
  width: 100%;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.85s forwards;
}

.hero-chips span {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(201, 168, 98, 0.35);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid rgba(210, 197, 174, 0.6);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
}

.hero-panel-head {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--white), var(--ivory));
}

.panel-kicker {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel-head p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-panel-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.4rem 1.75rem;
  border-top: 1px solid var(--line-soft);
  transition: background 0.3s;
}

.hero-panel-item:hover { background: var(--ivory); }

.panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
}

.hero-panel-item strong {
  display: block;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-panel-item span:not(.panel-icon) {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: clamp(1.25rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.hero-scroll:hover { color: var(--brass-light); }

.hero-scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── Situations (new) ── */
.situations {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}

.situations-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.situations-lead {
  max-width: 680px;
  margin-bottom: 3rem;
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.situation-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.85rem;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.35s var(--ease), box-shadow 0.35s;
}

.situation-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

.situation-cta {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.situation-cta::after {
  content: " →";
  color: var(--brass);
}

.situation-cta:hover,
.situation-card:hover .situation-cta {
  color: var(--brass);
}

.situations-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  background: var(--forest);
  color: #fff;
}

.situations-cta p {
  max-width: 620px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.situations-cta .btn-primary {
  flex-shrink: 0;
}

.situation-card:hover {
  background: var(--ivory);
  box-shadow: inset 0 0 0 1px var(--brass-pale);
  z-index: 1;
  position: relative;
}

.situation-icon {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.situation-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
}

/* ── Signature strip ── */
.signature-strip {
  position: relative;
  margin-top: -3rem;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem) clamp(4.5rem, 8vw, 7rem);
  z-index: 3;
}

.signature-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.signature-strip article {
  padding: 2.25rem 2rem;
  background: var(--white);
  border-right: 1px solid var(--line);
  transition: background 0.35s, transform 0.35s var(--ease);
}

.signature-strip article:last-child { border-right: 0; }

.signature-strip article:hover {
  background: var(--paper);
  transform: translateY(-3px);
}

.signature-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.12;
}

.signature-strip p {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Vision ── */
.vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 0;
  align-items: start;
}

.vision-lead h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 2rem;
  background: linear-gradient(90deg, var(--brass), transparent);
}

.pullquote {
  margin: 0 0 1.75rem;
  padding: 0 0 0 1.5rem;
  border-left: 3px solid var(--brass);
}

.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: var(--forest);
}

.vision-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.25rem;
}

.proof-row span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── Principles ── */
.principles { padding-top: 0; }

.principles-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.principles article {
  position: relative;
  min-height: 320px;
  padding: 2.5rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.principles article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.principles article::after {
  content: attr(data-num);
  position: absolute;
  right: -0.15em;
  bottom: -0.2em;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 600;
  line-height: 1;
  color: var(--forest);
  opacity: 0.03;
  pointer-events: none;
}

.principles article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.principles article:hover::before { transform: scaleX(1); }

.principles article:nth-child(2) { background: linear-gradient(165deg, #faf6ed, var(--white)); }
.principles article:nth-child(3) { background: linear-gradient(165deg, #edf1ec, var(--white)); }

.principles h3 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest);
}

.principles p { color: var(--muted); font-size: 0.94rem; }

/* ── Specialties ── */
.specialties {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.specialties::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(166, 127, 61, 0.06), transparent 70%);
  pointer-events: none;
}

.specialties .section-heading,
.guides .section-heading {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.specialty-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.specialty-feature {
  position: relative;
  padding: clamp(2.25rem, 4vw, 3.25rem);
  color: #fff;
  background: linear-gradient(160deg, var(--forest) 0%, var(--slate) 85%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.specialty-feature::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 98, 0.15), transparent 65%);
}

.specialty-feature::after {
  content: "§";
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.card-label {
  display: inline-block;
  margin-bottom: 2.25rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(201, 168, 98, 0.45);
}

.specialty-feature h3 {
  position: relative;
  max-width: 380px;
  margin-bottom: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.5vw, 2.9rem);
  font-weight: 600;
  line-height: 1.02;
}

.specialty-feature p {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-tags li {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201, 168, 98, 0.3);
  color: var(--brass-pale);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.specialty-grid article {
  position: relative;
  padding: 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
}

.specialty-grid article:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.spec-icon {
  display: block;
  margin-bottom: 1rem;
  color: var(--brass);
  font-size: 0.55rem;
}

.specialty-grid h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
}

.specialty-grid p { color: var(--muted); font-size: 0.9rem; }

/* ── Process ── */
.process {
  padding: clamp(5.5rem, 10vw, 8.5rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--forest-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(166, 127, 61, 0.1), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(30, 90, 76, 0.15), transparent 40%);
  pointer-events: none;
}

.process-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.process-copy { align-self: center; }
.process-copy .eyebrow { color: var(--brass-light); }

.process-copy p {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 0 0 1.5rem;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, var(--brass), rgba(201, 168, 98, 0.2));
}

.timeline li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 2.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 0 4px rgba(201, 168, 98, 0.2);
  transform: translateX(-4px);
}

.timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 168, 98, 0.4);
  background: rgba(255, 255, 255, 0.04);
  color: var(--brass-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.timeline-body strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
}

.timeline-body p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Authority ── */
.authority {
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory) 100%);
}

.authority-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.authority-panel {
  padding: clamp(2.25rem, 4vw, 3.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.authority-panel p {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.authority-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.authority-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
}

.authority-card:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.authority-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, var(--ivory), var(--paper));
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.authority-visual svg {
  display: block;
  width: 100%;
  height: 100%;
}

.authority-card-body {
  padding: 1.5rem 1.65rem 1.65rem;
}

/* Authority infographics — motion */
.auth-bar {
  transform-origin: center bottom;
  transform: scaleY(0);
  animation: authBarGrow 1.1s var(--ease) forwards;
}

.auth-bar-1 { animation-delay: 0.15s; }
.auth-bar-2 { animation-delay: 0.4s; }

@keyframes authBarGrow {
  to { transform: scaleY(1); }
}

.auth-pulse {
  transform-origin: center;
  animation: authPulse 2.8s ease-in-out infinite;
}

@keyframes authPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

.auth-split {
  animation: authSplit 2.4s ease-in-out infinite;
}

@keyframes authSplit {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(3px); opacity: 0.7; }
}

.auth-node {
  animation: authNodeIn 0.8s var(--ease) forwards;
  opacity: 0;
}

.auth-node-1 { animation-delay: 0.2s; }
.auth-node-2 { animation-delay: 0.45s; }

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

.auth-link {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: authDraw 1s var(--ease) forwards;
}

.auth-link:nth-of-type(1) { animation-delay: 0.5s; }
.auth-link:nth-of-type(2) { animation-delay: 0.7s; }

@keyframes authDraw {
  to { stroke-dashoffset: 0; }
}

.auth-sign {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: authDraw 1.4s var(--ease) forwards;
}

.auth-sign-1 { animation-delay: 0.25s; }
.auth-sign-2 { animation-delay: 0.55s; }

.auth-dispute {
  animation: authDispute 2.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes authDispute {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.auth-org {
  opacity: 0;
  transform: translateY(10px);
  animation: authOrgIn 0.7s var(--ease) forwards;
}

.auth-org-root { animation-delay: 0.1s; }
.auth-org-1 { animation-delay: 0.35s; }
.auth-org-2 { animation-delay: 0.5s; }
.auth-org-3 { animation-delay: 0.65s; }

@keyframes authOrgIn {
  to { opacity: 1; transform: translateY(0); }
}

.auth-tree {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: authDraw 1.2s var(--ease) forwards;
}

.auth-tree:nth-of-type(1) { animation-delay: 0.25s; }
.auth-tree:nth-of-type(2) { animation-delay: 0.4s; }
.auth-tree:nth-of-type(3) { animation-delay: 0.55s; }

.authority-card.is-visible .auth-bar,
.authority-card.is-visible .auth-pulse,
.authority-card.is-visible .auth-split,
.authority-card.is-visible .auth-node,
.authority-card.is-visible .auth-link,
.authority-card.is-visible .auth-sign,
.authority-card.is-visible .auth-dispute,
.authority-card.is-visible .auth-org,
.authority-card.is-visible .auth-tree {
  animation-play-state: running;
}

.auth-bar,
.auth-pulse,
.auth-split,
.auth-node,
.auth-link,
.auth-sign,
.auth-dispute,
.auth-org,
.auth-tree {
  animation-play-state: paused;
}

.auth-num {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brass);
  letter-spacing: 0;
  text-transform: none;
}

.authority-list strong {
  display: block;
  color: var(--forest);
  font-size: 1.05rem;
}

.authority-list span:not(.auth-num) {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── Case lens ── */
.case-lens {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.case-lens-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.case-lens-copy p {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.case-lens-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-lens-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.65rem 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--clay);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.case-lens-list > div:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.lens-label {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.2rem;
}

.case-lens-list strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--forest);
  font-size: 1.08rem;
}

.case-lens-list p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ── Guides ── */
.guides { background: var(--white); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.guide-grid article,
.guide-grid .guide-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 1.85rem;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.35s;
}

.guide-grid article:hover,
.guide-grid .guide-card:hover {
  background: var(--ivory);
}

.guide-num { margin-bottom: 2.25rem; }

.guide-grid h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.28;
  flex: 1;
}

.guide-grid p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.guide-link {
  margin-top: auto;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.guide-card:hover .guide-link {
  color: var(--forest);
}

.guide-link::after {
  content: " →";
}

/* ── CTA band ── */
.cta-band {
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 4.5rem);
  background:
    linear-gradient(135deg, var(--slate) 0%, var(--forest) 50%, var(--forest-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 98, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.cta-band .eyebrow { color: var(--brass-light); }

.cta-band h2 {
  max-width: 680px;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
}

.cta-band p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact {
  padding: clamp(5.5rem, 10vw, 8.5rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--ivory);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.contact-panel {
  padding: clamp(2.25rem, 4vw, 3.25rem);
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-panel .eyebrow { color: var(--brass-light); }

.contact-panel h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.contact-panel > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-panel address {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2.25rem;
  font-style: normal;
}

.contact-panel address strong {
  font-size: 1.2rem;
  color: var(--brass-pale);
}

.contact-panel address .domain {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.contact-panel address .address-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-panel address a {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.25s;
}

.contact-panel address a:hover { color: var(--brass-light); }

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-meta span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.contact-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass-light);
  flex-shrink: 0;
}

.contact-benefits {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-benefits li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass-light);
  flex-shrink: 0;
}

.contact-form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.85rem, 3vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  align-self: center;
}

.form-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.15rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--line-soft);
}

.form-header strong {
  color: var(--forest);
  font-size: 1.2rem;
}

.form-header span {
  color: var(--muted);
  font-size: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color 0.25s, box-shadow 0.25s;
}

input::placeholder, textarea::placeholder { color: #9a9488; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px var(--brass-glow);
}

textarea { resize: vertical; min-height: 130px; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: normal;
}

/* ── Caso pages ── */
.caso-page {
  padding-top: calc(var(--header-h) + 2rem);
}

.caso-breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem) 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.caso-breadcrumb a {
  color: var(--forest);
  font-weight: 600;
}

.caso-breadcrumb a:hover {
  color: var(--brass);
}

.caso-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem) clamp(3rem, 6vw, 4.5rem);
}

.caso-hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.caso-lead {
  max-width: 720px;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.caso-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.caso-body {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}

.caso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4.5rem);
}

.caso-block h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--forest);
}

.caso-block p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.caso-block p + p {
  margin-top: 1rem;
}

.caso-list {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.caso-list li {
  margin-bottom: 0.65rem;
  line-height: 1.6;
}

.caso-steps {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.caso-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.caso-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.caso-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--forest);
}

.caso-steps span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.caso-highlight {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--forest), var(--slate));
  color: #fff;
}

.caso-highlight-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem);
}

.caso-highlight h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.caso-highlight p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.caso-result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.caso-result-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.caso-result-card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--brass-light);
  font-size: 0.95rem;
}

.caso-result-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.caso-related {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4.5rem);
}

.caso-related h2 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--forest);
}

.caso-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.caso-related-grid a {
  display: block;
  padding: 1.25rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.caso-related-grid a:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}

.caso-related-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--forest);
  font-size: 0.95rem;
}

.caso-related-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.caso-final-cta {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}

.caso-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.caso-final-cta h2 {
  max-width: 560px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.caso-final-cta p {
  max-width: 520px;
  margin-top: 0.75rem;
  color: var(--muted);
}

.authority-card-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.authority-card-link::after {
  content: " →";
  color: var(--brass);
}

.authority-card-link:hover {
  color: var(--brass);
}

/* ── Lead float (sticky CTA) ── */
.lead-float {
  position: fixed;
  z-index: 45;
  left: 50%;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  transform: translate(-50%, 120%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
}

.lead-float.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.lead-float-phone,
.lead-float-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.lead-float-phone {
  color: var(--forest);
  border: 1px solid var(--line);
  background: var(--white);
}

.lead-float-cta {
  color: #fff;
  background: var(--forest);
}

.lead-float-cta:hover {
  background: var(--forest-mid);
}

/* ── Footer ── */
.footer {
  padding: 3.5rem clamp(1.25rem, 5vw, 4.5rem);
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-logo {
  width: 260px;
  margin-bottom: 1.15rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  margin: 0;
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-address {
  margin-top: 0.75rem !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
}

.footer-domain {
  margin-top: 0.75rem !important;
  color: var(--brass-light) !important;
  font-weight: 700;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav strong,
.footer-legal strong {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s;
}

.footer-nav a:hover { color: var(--brass-light); }

.footer-legal p { margin: 0; font-size: 0.84rem; }

.footer-legal a {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-grid,
  .vision,
  .principles-inner,
  .specialty-layout,
  .process-inner,
  .authority-inner,
  .case-lens-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .signature-strip-inner { grid-template-columns: 1fr; }
  .signature-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .signature-strip article:last-child { border-bottom: 0; }
  .signature-strip { margin-top: 0; padding-top: 3rem; }

  .situations-grid { grid-template-columns: 1fr; }

  .situations-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .situations-cta .btn-primary {
    width: 100%;
  }

  .lead-float {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    transform: translateY(120%);
    width: auto;
  }

  .lead-float.is-visible {
    transform: translateY(0);
  }

  .lead-float-phone,
  .lead-float-cta {
    flex: 1;
    font-size: 0.78rem;
    padding: 0 0.75rem;
  }

  body {
    padding-bottom: 5.5rem;
  }

  .guide-grid { grid-template-columns: repeat(2, 1fr); }

  .caso-grid,
  .caso-result-cards,
  .caso-related-grid {
    grid-template-columns: 1fr;
  }

  .caso-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-scroll { display: none; }
}

@media (max-width: 820px) {
  :root { --header-h: 86px; }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
  }

  .nav-toggle-btn { display: flex; order: 2; }
  .header-cta { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1.25rem 0;
    background: rgba(247, 242, 232, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
  }

  .nav a {
    padding: 0.9rem 1.75rem;
    font-size: 0.92rem;
  }

  .nav a::after { display: none; }

  .nav-cta-mobile {
    display: block;
    margin: 0.75rem 1.75rem 0;
    padding: 0.9rem 1.35rem;
    background: var(--forest);
    color: #fff;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .nav-toggle:checked ~ .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle:checked + .nav-toggle-btn span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-btn span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero { min-height: auto; }
  .hero-grid { padding-bottom: 2.5rem; }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 20, 18, 0.25) 0%, rgba(5, 20, 18, 0.94) 58%),
      linear-gradient(0deg, rgba(5, 20, 18, 0.55) 0%, transparent 40%);
  }

  .hero-media img { object-position: 65% center; }

  .principles-inner,
  .specialty-grid,
  .authority-list {
    grid-template-columns: 1fr;
  }

  .guide-grid { grid-template-columns: 1fr; }

  .case-lens-list > div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .timeline { padding-left: 0; }
  .timeline::before,
  .timeline li::before { display: none; }

  .caso-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .caso-hero-actions .btn {
    width: 100%;
  }

  .brand {
    width: min(320px, 58vw);
    min-width: 220px;
  }

  .brand-logo {
    max-height: 76px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.6rem; }

  .hero-actions,
  .cta-band-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-band-actions .btn {
    width: 100%;
  }

  .brand {
    width: min(300px, 62vw);
    min-width: 200px;
  }

  .brand-logo {
    max-height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .hero-line,
  .hero-copy,
  .hero-actions,
  .hero-chips {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .hero-media img { animation: none; transform: none; }
  .hero-scroll svg { animation: none; }

  .btn, .principles article, .case-lens-list > div, .nav a::after,
  .auth-bar, .auth-pulse, .auth-split, .auth-node, .auth-link,
  .auth-sign, .auth-dispute, .auth-org, .auth-tree {
    transition: none;
    animation: none !important;
  }
}
