/* ==========================================================================
   Schultz Incorporated — Design System
   Editorial, white-shoe firm aesthetic. Deep forest green, gold, cream.
   Fonts: Cormorant Garamond (display) + Inter (text)
   ========================================================================== */

:root {
  /* Palette */
  --green-950: #081b16;
  --green-900: #0d241e;
  --green-850: #102b23;
  --green-800: #14332a;
  --green-700: #1d4638;
  --gold: #c9a84c;
  --gold-300: #e6cf8a;
  --gold-600: #8f7130;
  --cream: #f5f1e6;
  --paper: #fcfaf4;
  --ink: #17201c;
  --muted: #4e5a53;
  --line: #e4dfd0;
  --line-dark: rgba(230, 207, 138, 0.16);
  --on-dark: #e0dccc;
  --on-dark-strong: #f4f0e3;

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Segoe UI", -apple-system, sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --wrap-wide: 1360px;
  --section-y: clamp(72px, 10vw, 130px);
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--gold); color: var(--green-950); }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: inherit;
}
h3 { font-weight: 500; }
h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h1 em, h2 em { font-style: italic; color: var(--gold); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section { padding: var(--section-y) 0; }
.section-dark { background: var(--green-900); color: var(--on-dark); }
.section-cream { background: var(--cream); }

/* Kicker — small uppercase label with gold rule */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 22px;
}
.section-dark .kicker, .hero .kicker, .page-hero .kicker { color: var(--gold); }
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.8; }

.section-intro { max-width: 720px; margin-bottom: clamp(40px, 6vw, 70px); }
.section-intro p { color: var(--muted); margin-top: 18px; font-size: 1.08rem; max-width: 60ch; }
.section-dark .section-intro p { color: var(--on-dark); }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro.centered .kicker { justify-content: center; }
.section-intro.centered p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-gold {
  background: linear-gradient(180deg, #dabd68, var(--gold));
  color: var(--green-950);
  border: 1px solid #b3913c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold:hover { background: var(--gold-300); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(201, 168, 76, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn-outline { border: 1px solid rgba(230, 207, 138, 0.45); color: var(--on-dark-strong); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-300); transform: translateY(-2px); }
.btn-outline-dark { border: 1px solid rgba(23, 32, 28, 0.35); color: var(--ink); }
.btn-outline-dark:hover { border-color: var(--green-800); background: var(--green-900); color: var(--on-dark-strong); transform: translateY(-2px); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-600); padding-bottom: 4px; border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
.text-link:hover { border-color: var(--gold-600); color: var(--green-800); }
.section-dark .text-link { color: var(--gold-300); }
.section-dark .text-link:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header.scrolled {
  height: 68px;
  background: rgba(8, 27, 22, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(230, 207, 138, 0.14), 0 18px 40px -24px rgba(0, 0, 0, 0.6);
}
.header-inner {
  width: 100%; max-width: var(--wrap-wide);
  margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo img { height: 54px; width: auto; transition: height 0.4s var(--ease); }
.site-header.scrolled .logo img { height: 44px; }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); }
.main-nav a {
  position: relative;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark); padding: 8px 0;
  transition: color 0.25s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-300); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-cta {
  border: 1px solid rgba(230, 207, 138, 0.5);
  padding: 11px 24px; border-radius: 2px; color: var(--gold-300);
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--gold); color: var(--green-950); border-color: var(--gold); }

.nav-toggle { display: none; z-index: 102; width: 44px; height: 44px; position: relative; }
.nav-toggle span {
  position: absolute; left: 10px; width: 24px; height: 1.6px;
  background: var(--gold-300); transition: transform 0.35s var(--ease), opacity 0.25s, top 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.active span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 1000px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--green-950);
  color: var(--on-dark);
  padding: calc(var(--header-h) + 40px) 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(52% 44% at 78% 18%, rgba(201, 168, 76, 0.13), transparent 66%),
    radial-gradient(60% 54% at 12% 88%, rgba(29, 70, 56, 0.55), transparent 70%),
    linear-gradient(168deg, #0a201a 0%, var(--green-950) 55%, #071511 100%);
}
/* faint architectural grid */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(230, 207, 138, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 207, 138, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(75% 75% at 60% 40%, black 0%, transparent 100%);
  mask-image: radial-gradient(75% 75% at 60% 40%, black 0%, transparent 100%);
}
/* Signature — notarial seal */
.hero-seal {
  position: absolute; z-index: -1;
  right: clamp(-160px, -6vw, -60px); top: 50%;
  width: min(44vw, 600px); height: auto;
  transform: translateY(-58%);
  color: var(--gold); opacity: 0.16;
  pointer-events: none; user-select: none;
}
.hero-seal .seal-ring { animation: sealspin 240s linear infinite; transform-origin: 200px 200px; }
@keyframes sealspin { to { transform: rotate(360deg); } }
.hero-layout { max-width: 900px; }
.hero h1 { color: var(--on-dark-strong); margin-bottom: 28px; }
.hero-lead {
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.75; max-width: 56ch; color: #e9e5d6; font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 44px; }

/* entrance animation */
.hero .fade-up { opacity: 0; transform: translateY(26px); animation: fadeUp 1s var(--ease) forwards; }
.hero .fade-up.d1 { animation-delay: 0.1s; }
.hero .fade-up.d2 { animation-delay: 0.25s; }
.hero .fade-up.d3 { animation-delay: 0.4s; }
.hero .fade-up.d4 { animation-delay: 0.55s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* hero stats strip */
.hero-stats {
  margin-top: clamp(56px, 8vh, 110px);
  border-top: 1px solid var(--line-dark);
}
.hero-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 30px clamp(12px, 2vw, 34px);
  border-right: 1px solid var(--line-dark);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: 0; }
.hero-stat strong {
  display: block;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  color: var(--gold); line-height: 1;
}
.hero-stat strong span { font: inherit; color: inherit; }
.hero-stat > span {
  display: block; margin-top: 8px;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold); color: var(--green-950);
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(8, 27, 22, 0.15);
}
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 36s linear infinite;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track em { font-style: normal; opacity: 0.55; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Numbered editorial list (problems) ---------- */
.num-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 90px); }
.num-item {
  padding: 34px 0 30px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
}
.num-item .num {
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold-600);
  font-style: italic; line-height: 1.3;
  transition: transform 0.35s var(--ease);
}
.num-item:hover .num { transform: translateY(-4px); }
.num-item h3 { margin-bottom: 10px; font-size: 1.35rem; }
.num-item p { color: var(--muted); font-size: 1rem; max-width: 46ch; }
.num-item .text-link { margin-top: 14px; }

/* ---------- Practice accordion ---------- */
.practice-list { border-top: 1px solid var(--line-dark); }
.practice-item { border-bottom: 1px solid var(--line-dark); }
.practice-head {
  width: 100%; display: grid;
  grid-template-columns: 90px 1fr 60px;
  align-items: center; gap: 24px;
  padding: clamp(24px, 3.4vw, 40px) 0;
  text-align: left;
  transition: padding 0.4s var(--ease);
}
.practice-head .p-index {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--gold); opacity: 0.7;
}
.practice-head .p-name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  color: var(--on-dark-strong); line-height: 1.1;
  transition: color 0.3s, transform 0.45s var(--ease);
}
.practice-head:hover .p-name { color: var(--gold-300); transform: translateX(10px); }
.practice-head .p-toggle {
  justify-self: end;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  color: var(--gold-300); font-size: 1.2rem; font-weight: 300;
  transition: transform 0.45s var(--ease), background 0.3s, color 0.3s;
}
.practice-item.open .p-toggle { transform: rotate(45deg); background: var(--gold); color: var(--green-950); border-color: var(--gold); }
.practice-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.practice-body-inner {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px;
  padding: 0 0 clamp(30px, 4vw, 48px);
}
.practice-body-inner > div { max-width: 720px; }
.practice-body p { color: var(--on-dark); margin-bottom: 16px; font-weight: 400; }
.practice-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 22px; }
.practice-tags li {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--line-dark); border-radius: 999px;
  color: var(--gold-300);
}

/* ---------- Feature split (about preview / services detail) ---------- */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.feature-media { position: relative; }
.feature-media img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 4.6;
  filter: saturate(0.86) contrast(1.02);
}
.feature-media::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold); z-index: -1; opacity: 0.55;
}
.feature-media.frame-left::after { inset: 18px 18px -18px -18px; }
.feature-body p { color: var(--muted); margin-bottom: 18px; }
.section-dark .feature-body p { color: var(--on-dark); }
.feature-body h2 { margin-bottom: 26px; }

/* portrait variant — smaller, framed like a gallery portrait */
.feature-media.portrait { max-width: 400px; justify-self: center; align-self: center; width: 100%; }
.feature-media.portrait::after { display: none; }
.feature-media.portrait figure {
  background: #fff; border: 1px solid var(--line);
  padding: 14px 14px 0;
  box-shadow: 0 34px 70px -34px rgba(13, 36, 30, 0.35);
}
.feature-media.portrait img {
  aspect-ratio: 4 / 4.4;
  filter: saturate(0.8) contrast(1.03);
}
.feature-media.portrait figcaption {
  padding: 14px 6px 16px;
  text-align: center;
}
.feature-media.portrait figcaption strong {
  display: block; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--ink);
}
.feature-media.portrait figcaption span {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* checklist */
.check-list { margin: 22px 0 8px; }
.check-list li {
  position: relative; padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem; color: var(--ink);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold-600);
}
.section-dark .check-list li { border-color: var(--line-dark); color: var(--on-dark); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 42px);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.card::before {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 30px 60px -30px rgba(13, 36, 30, 0.25);
}
.card h3 { font-size: 1.4rem; }
.card p { color: var(--muted); font-size: 1rem; flex: 1; }
.card .card-index {
  font-family: var(--serif); font-style: italic;
  color: var(--gold-600); font-size: 1.05rem;
}

/* ---------- Stats band ---------- */
.stats-band { background: var(--green-950); color: var(--on-dark); position: relative; overflow: hidden; }
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 85% 100%, rgba(201, 168, 76, 0.1), transparent 70%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.stat-cell {
  padding: clamp(36px, 4vw, 60px) clamp(18px, 2.6vw, 44px);
  border-left: 1px solid var(--line-dark);
}
.stat-cell:first-child { border-left: 0; }
.stat-cell strong {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; color: var(--gold);
}
.stat-cell strong span { font: inherit; color: inherit; }
.stat-cell > span {
  display: block; margin-top: 12px;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65;
}

/* ---------- Reviews / testimonial carousel ---------- */
.quote-carousel { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: var(--serif); font-size: 6.4rem; line-height: 0.5;
  color: var(--gold); opacity: 0.55; display: block; margin-bottom: 26px;
}
.quote-slide { display: none; }
.quote-slide.active { display: block; animation: fadeUp 0.7s var(--ease); }
.quote-text {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.4; font-weight: 500; color: var(--on-dark-strong);
}
.quote-meta { margin-top: 30px; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); }
.quote-meta small { display: block; margin-top: 6px; color: var(--on-dark); opacity: 0.6; letter-spacing: 0.14em; }
.quote-stars { color: var(--gold); letter-spacing: 6px; margin-top: 18px; font-size: 0.95rem; }
.quote-dots { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.quote-dots button {
  width: 34px; height: 2px; background: var(--line-dark);
  transition: background 0.3s;
}
.quote-dots button.active { background: var(--gold); }

/* ---------- Insights (articles) ---------- */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.insight-card {
  position: relative;
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.insight-card::before {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.insight-card:hover::before { transform: scaleX(1); }
.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 30px 60px -30px rgba(13, 36, 30, 0.25);
}
.insight-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 18px;
}
.insight-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
.insight-meta time { color: var(--muted); font-weight: 500; }
.insight-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.insight-card h3 a::after { content: ""; position: absolute; inset: 0; }
.insight-card p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.insight-card .text-link { margin-top: 22px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--green-900); color: var(--on-dark);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(46% 90% at 50% 115%, rgba(201, 168, 76, 0.16), transparent 72%);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: var(--on-dark-strong); max-width: 22ch; margin: 0 auto 20px; }
.cta-band p { color: var(--on-dark); max-width: 54ch; margin: 0 auto 38px; font-weight: 400; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: var(--green-950); color: var(--on-dark);
  padding: calc(var(--header-h) + clamp(56px, 9vw, 110px)) 0 clamp(56px, 8vw, 96px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(46% 60% at 84% 20%, rgba(201, 168, 76, 0.1), transparent 68%),
    linear-gradient(165deg, #0a201a, var(--green-950));
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--on-dark-strong); max-width: 20ch; }
.page-hero p { margin-top: 22px; max-width: 58ch; color: #e2ddcd; font-weight: 400; font-size: 1.1rem; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-300); opacity: 0.85; margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* ---------- Values grid (about) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* credentials strip */
.cred-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.cred {
  border-top: 2px solid var(--gold);
  padding-top: 18px;
}
.cred strong { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.cred span { color: var(--muted); font-size: 0.88rem; }
.section-dark .cred span { color: var(--on-dark); opacity: 0.7; }

/* ---------- Calculators ---------- */
.calc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.calc-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(30px, 3.4vw, 48px);
}
.calc-card > h3 { margin-bottom: 8px; }
.calc-card .calc-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 15px 16px;
  font: inherit; font-size: 0.98rem;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 2px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}
.calc-rows { margin-top: 10px; }
.calc-row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.calc-row span { color: var(--muted); }
.calc-result {
  margin-top: 22px; padding: 26px;
  background: var(--green-900); color: var(--on-dark);
  display: flex; flex-direction: column; gap: 6px;
}
.calc-result .amount { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; color: var(--gold); line-height: 1; }
.calc-result .label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.calc-note { font-size: 0.8rem; color: var(--muted); margin-top: 18px; line-height: 1.6; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 80px); }
.contact-info > p { color: var(--muted); margin: 0 0 34px; }
.contact-item {
  display: grid; grid-template-columns: 20px 1fr; gap: 18px;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.contact-item .ci-icon { color: var(--gold-600); padding-top: 3px; }
.contact-item .ci-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.contact-item strong {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span { font-size: 1rem; color: var(--ink); }
.contact-item a:hover { color: var(--gold-600); }
.contact-form-panel {
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(30px, 3.4vw, 48px);
}
.contact-form-panel h3 { margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.map-section { line-height: 0; filter: grayscale(0.5) sepia(0.12); }
.map-section iframe { width: 100%; height: 420px; border: 0; }

/* ---------- Articles listing ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: clamp(34px, 4vw, 52px);
}
.filter-chip {
  padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  transition: all 0.25s;
}
.filter-chip:hover { border-color: var(--gold-600); color: var(--gold-600); }
.filter-chip.active { background: var(--green-900); border-color: var(--green-900); color: var(--gold-300); }
.filter-search { margin-left: auto; min-width: 240px; flex: 0 1 300px; }
.filter-search input {
  width: 100%; padding: 12px 18px;
  border: 1px solid var(--line); border-radius: 999px;
  font: inherit; font-size: 0.9rem; background: #fff;
}
.filter-search input:focus { outline: none; border-color: var(--gold-600); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-grid .insight-card.hidden { display: none; }
.no-results { text-align: center; color: var(--muted); padding: 60px 0; display: none; }

/* ---------- Article page ---------- */
.article-hero {
  background: var(--green-950); color: var(--on-dark);
  padding: calc(var(--header-h) + clamp(50px, 8vw, 96px)) 0 clamp(48px, 7vw, 80px);
  position: relative; overflow: hidden;
}
.article-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 88% 10%, rgba(201, 168, 76, 0.1), transparent 65%),
    linear-gradient(165deg, #0a201a, var(--green-950));
}
.article-hero .wrap { position: relative; max-width: 900px; }
.article-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); color: var(--on-dark-strong); }
.article-hero .article-meta {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-top: 26px;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-300);
}
.article-hero .article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(230,207,138,0.4); }
.article-hero .article-meta time, .article-hero .article-meta .rt { color: var(--on-dark); opacity: 0.7; }

.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px; width: 0; background: var(--gold);
}

.article-layout { max-width: 760px; margin: 0 auto; padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 48px); }
.article-body { font-size: 1.06rem; line-height: 1.85; color: #2a332e; }
.article-body > p:first-of-type {
  font-size: 1.22rem; line-height: 1.7; color: var(--ink); font-weight: 350;
}
.article-body > p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.4em; float: left;
  line-height: 0.82; padding: 6px 12px 0 0; color: var(--gold-600);
}
.article-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
  margin: 2.2em 0 0.7em; color: var(--ink);
}
.article-body h3 { font-size: 1.3rem; margin: 1.8em 0 0.6em; }
.article-body p { margin-bottom: 1.2em; }
.article-body ul, .article-body ol { margin: 0 0 1.4em; padding-left: 2px; }
.article-body ul li, .article-body ol li {
  position: relative; padding: 6px 0 6px 30px;
}
.article-body ul li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold-600);
}
.article-body ol { counter-reset: oln; }
.article-body ol li { counter-increment: oln; }
.article-body ol li::before {
  content: counter(oln, decimal-leading-zero);
  position: absolute; left: 0; top: 8px;
  font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--gold-600);
}
.article-body blockquote {
  margin: 2em 0; padding: 6px 0 6px 28px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; color: var(--green-800);
}
.article-body strong { color: var(--ink); }
.article-body a { color: var(--gold-600); border-bottom: 1px solid rgba(201,168,76,0.4); }
.article-body a:hover { color: var(--green-800); border-color: var(--green-800); }

.takeaways {
  background: var(--cream); border: 1px solid var(--line); border-top: 2px solid var(--gold);
  padding: 30px 34px; margin: 2.4em 0;
}
.takeaways h2, .takeaways h3 { margin: 0 0 14px !important; font-size: 1.25rem !important; }
.takeaways ul { margin-bottom: 0 !important; }
.takeaways li { font-size: 0.97rem; }

.disclaimer {
  margin-top: 3em; padding: 22px 26px;
  background: var(--cream); border-left: 2px solid var(--gold-600);
  font-size: 0.85rem; color: var(--muted); line-height: 1.7;
}

.author-card {
  display: flex; gap: 22px; align-items: center;
  margin-top: 3em; padding-top: 2.2em; border-top: 1px solid var(--line);
}
.author-card img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; object-position: top; }
.author-card strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; display: block; }
.author-card span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #071511; color: var(--on-dark);
  padding: clamp(64px, 8vw, 100px) 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer-brand .f-logo { font-family: var(--serif); font-size: 1.9rem; color: var(--on-dark-strong); }
.footer-brand .f-tag {
  margin-top: 6px; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.footer-brand p { margin-top: 20px; font-size: 0.94rem; opacity: 0.8; max-width: 34ch; font-weight: 400; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a, .footer-col span { font-size: 0.94rem; opacity: 0.88; font-weight: 400; transition: opacity 0.25s, color 0.25s; }
.footer-col a:hover { opacity: 1; color: var(--gold-300); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  padding: 26px 0;
  border-top: 1px solid rgba(230, 207, 138, 0.12);
  font-size: 0.78rem; opacity: 0.55;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.3s;
}
.footer-social a svg { width: 15px; height: 15px; fill: var(--on-dark); transition: fill 0.3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { fill: var(--green-950); }

/* ---------- WhatsApp widget ---------- */
.whatsapp-widget { position: fixed; bottom: 28px; right: 28px; z-index: 90; }
.whatsapp-btn {
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.35s var(--ease);
}
.whatsapp-btn:hover { transform: translateY(-4px) scale(1.05); }
.whatsapp-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--green-950); color: var(--on-dark-strong);
  padding: 9px 16px; border-radius: 3px; font-size: 0.78rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .card-grid, .insight-grid, .values-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid var(--line-dark); }
  .hero-stat:nth-child(2n) { border-right: 0; }
  .stat-cell { border-left: 0; border-top: 1px solid var(--line-dark); }
  .feature-split { grid-template-columns: 1fr; }
  .feature-media { max-width: 560px; }
  .contact-grid, .calc-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .num-list { grid-template-columns: 1fr; }
  .card-grid, .insight-grid, .values-grid, .article-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cred-strip { grid-template-columns: 1fr; }
  .practice-head { grid-template-columns: 44px 1fr 48px; gap: 14px; }
  .practice-body-inner { grid-template-columns: 1fr; padding-left: 0; }
  .filter-search { margin-left: 0; flex: 1 1 100%; }

  /* mobile nav overlay */
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 101;
    background: rgba(7, 21, 17, 0.98);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    flex-direction: column; justify-content: center; gap: 10px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a {
    font-family: var(--serif); font-size: 2rem; text-transform: none; letter-spacing: 0;
    color: var(--on-dark-strong);
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.25s;
  }
  .main-nav.open a { opacity: 1; transform: none; }
  .main-nav.open a:nth-child(1) { transition-delay: 0.05s; }
  .main-nav.open a:nth-child(2) { transition-delay: 0.1s; }
  .main-nav.open a:nth-child(3) { transition-delay: 0.15s; }
  .main-nav.open a:nth-child(4) { transition-delay: 0.2s; }
  .main-nav.open a:nth-child(5) { transition-delay: 0.25s; }
  .main-nav.open a:nth-child(6) { transition-delay: 0.3s; }
  .main-nav a::after { display: none; }
  .main-nav .nav-cta { margin-top: 18px; font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--sans); }

  .hero { min-height: 88svh; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .whatsapp-widget { bottom: 20px; right: 20px; }
  .map-section iframe { height: 320px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .fade-up { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-seal .seal-ring { animation: none; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* ---------- Print ---------- */
@media print {
  .site-header, .whatsapp-widget, .site-footer, .cta-band, .progress-bar { display: none; }
  .article-hero { background: none; color: #000; padding-top: 20px; }
}
