/* ===========================================================
   Vulcan Tax & Accounting — Law-firm grade
   Navy + warm paper + brass · serif display / sans body
   Hairline rules · max 2px radii · no gradients, no shadows
   =========================================================== */

:root {
  --paper:        #ffffff;
  --warm:         #f4f1ea;      /* warm neutral, "old paper" cue */
  --warm-2:       #ede8de;
  --navy:         #0a1f3d;      /* primary brand */
  --navy-2:       #14304f;
  --ink:          #0b0b0b;      /* body text, true near-black */
  --slate:        #4a4a4a;
  --slate-2:      #6e6e6e;      /* metadata, secondary */
  --muted:        #9a958c;
  --line:         #d9d5cb;      /* hairline rules */
  --line-2:       #e6e2d6;
  --brass:        #c9b074;      /* the only decorative color */
  --brass-deep:   #a98e54;

  --radius:       2px;
  --max:          1240px;
  --measure:      680px;
  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--brass-deep); }

::selection { background: var(--warm); color: var(--navy); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: "Source Serif 4", "Source Serif Pro", "Lora", Georgia, serif;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.6rem, 5.2vw, 3.85rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 400;
}
h3 {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-2);
}
em, h1 em, h2 em { font-style: italic; color: var(--navy); }

p { margin: 0 0 1em; }

.measure { max-width: var(--measure); }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-size: 1.18rem;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.brand small {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--slate-2);
  text-transform: uppercase;
  margin-top: 4px;
}
.brand-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--navy);
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn):not(.lang-switch) {
  color: var(--ink);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  position: relative;
}
.nav-links a:not(.btn):not(.lang-switch):hover { color: var(--brass-deep); }
.nav-links a:not(.btn):not(.lang-switch).active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -28px;
  height: 2px;
  background: var(--brass);
}

/* ---------- Buttons (kept minimal — most CTAs are link-arrows) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.btn-primary {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-2); color: var(--paper); border-color: var(--navy-2); }
.btn-accent {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-accent:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--warm); color: var(--navy); border-color: var(--navy); }
.btn-lg { padding: 14px 28px; font-size: 0.9rem; }
.btn .arrow { display: inline-block; transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Quiet link-style CTAs (the main hero affordance) ---------- */
.link-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 8px 0 10px;
  border-bottom: 1px solid var(--navy);
  transition: gap 0.25s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-cta::after { content: "→"; transition: transform 0.25s var(--ease); }
.link-cta:hover { color: var(--brass-deep); border-bottom-color: var(--brass-deep); gap: 18px; }
.link-cta:hover::after { transform: translateX(2px); }
.link-cta.muted { color: var(--slate); border-bottom-color: var(--line); }
.link-cta.muted:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* ---------- Eyebrow / metadata label ---------- */
.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--slate-2);
  margin-bottom: 24px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--brass);
}
.eyebrow.no-rule { border-bottom: 0; padding-bottom: 0; }
.date-line {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 16px;
  display: inline-block;
}
.date-line .sep { color: var(--brass); margin: 0 8px; }

/* ---------- Hero ---------- */
.hero {
  padding: 140px 0 120px;
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero h1 { margin-bottom: 32px; max-width: 920px; }
.hero p.lead {
  font-size: 1.18rem;
  color: var(--slate);
  max-width: 620px;
  margin: 0 0 44px;
  font-weight: 400;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Sections ---------- */
.section { padding: 112px 0; position: relative; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: 0; }
.section-alt { background: var(--warm); }
.section-head {
  margin-bottom: 72px;
  max-width: 720px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { border-bottom: 0; padding-bottom: 0; position: relative; }
.section-head.center .eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 12px auto 0;
}
.section-head p { font-size: 1.05rem; color: var(--slate); max-width: 560px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Principles row (replaces stats) ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
}
.principle:last-child { border-right: 0; padding-right: 0; }
.principle .n {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--brass-deep);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.principle h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.2;
}
.principle p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--slate);
  line-height: 1.55;
}

/* ---------- Practice list (replaces service cards) ---------- */
.practice-list {
  border-top: 1px solid var(--line);
}
.practice-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding 0.3s var(--ease);
}
.practice-row:hover { padding-left: 14px; padding-right: 14px; background: var(--warm); }
.practice-row .n {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--brass-deep);
  text-transform: uppercase;
}
.practice-row h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.practice-row p {
  margin: 0;
  font-size: 1rem;
  color: var(--slate);
  max-width: 520px;
}
.practice-row .more {
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
  justify-self: end;
}
.practice-row .more::after { content: "→"; }
.practice-row:hover .more { gap: 14px; color: var(--brass-deep); }

/* ---------- Service detail blocks (services page) ---------- */
.service-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 56px;
  align-items: baseline;
}
.service-block:first-of-type { padding-top: 0; }
.service-block:last-child { border-bottom: 0; }
.service-block .num-lg {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.2rem;
  color: var(--brass-deep);
  line-height: 1;
  font-weight: 400;
  font-style: italic;
}
.service-block h3 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Source Serif 4", Georgia, serif;
}
.service-block > div > p { font-size: 1.05rem; max-width: 620px; margin-bottom: 28px; color: var(--slate); }
.service-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  border-top: 1px solid var(--line);
}
.service-block li {
  padding: 12px 0;
  font-size: 0.94rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}

/* ---------- Pull quote (manifesto) ---------- */
.pullquote {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  position: relative;
  text-align: left;
}
.pullquote::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 32px;
}
.pullquote q {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  color: var(--navy);
  line-height: 1.4;
  display: block;
  margin: 0 0 28px;
  letter-spacing: -0.005em;
  quotes: none;
}
.pullquote q::before, .pullquote q::after { content: ""; }
.pullquote cite {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--slate-2);
  text-transform: uppercase;
}

/* ---------- CTA band (quiet, not flashy) ---------- */
.cta-band {
  background: var(--navy);
  color: var(--paper);
  padding: 88px 56px;
  position: relative;
  border-radius: var(--radius);
}
.cta-band .eyebrow {
  color: rgba(255,255,255,0.6);
  border-bottom-color: var(--brass);
}
.cta-band h2 {
  color: var(--paper);
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  max-width: 640px;
}
.cta-band h2 em { color: var(--brass); font-style: italic; }
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 36px;
  max-width: 560px;
  font-size: 1rem;
}
.cta-band .link-cta {
  color: var(--paper);
  border-bottom-color: var(--brass);
}
.cta-band .link-cta:hover { color: var(--brass); border-bottom-color: var(--brass); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 120px 0 100px;
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 24px; max-width: 920px; }
.page-hero p {
  max-width: 620px;
  font-size: 1.15rem;
  color: var(--slate);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
}
.form-row { margin-bottom: 28px; position: relative; }
.form-row label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 12px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 1.02rem;
  color: var(--ink);
  background: transparent;
  transition: border-color 0.2s var(--ease);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--muted); font-style: italic; }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
.form-row textarea { min-height: 130px; resize: vertical; padding-top: 14px; }

.info-card {
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.info-card h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 28px;
  color: var(--navy);
}
.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: baseline;
}
.info-row:last-child { border-bottom: 0; }
.info-row .label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--slate-2);
  text-transform: uppercase;
}
.info-row .value { color: var(--ink); font-size: 0.98rem; }
.info-row .value a { color: var(--navy); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.info-row .value a:hover { color: var(--brass-deep); border-bottom-color: var(--brass-deep); }

/* ---------- Portal ---------- */
.portal-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.mock-portal {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  position: relative;
}
.mock-portal-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}
.mock-portal-bar > span:not(.url) {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.mock-portal-bar .url {
  margin-left: 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  color: var(--slate-2);
  letter-spacing: 0.04em;
  background: none;
  width: auto; height: auto;
  border-radius: 0;
}
.mock-portal .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.mock-portal .row:last-child { border: 0; }
.mock-portal .meta {
  color: var(--slate-2);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.mock-portal .badge {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}
.mock-portal .badge-gold {
  background: var(--brass);
  color: var(--navy);
}

.step-list { counter-reset: step; padding: 0; list-style: none; margin: 0 0 48px; border-top: 1px solid var(--line); }
.step-list li {
  position: relative;
  padding: 28px 0 28px 80px;
  border-bottom: 1px solid var(--line);
  min-height: 60px;
}
.step-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 32px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.4rem;
  color: var(--brass-deep);
  font-style: italic;
  font-weight: 400;
}
.step-list h4 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--navy);
  margin: 0 0 6px;
}
.step-list p { margin: 0; font-size: 0.96rem; color: var(--slate); }

.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  margin: 0;
  transition: none;
}
.faq details[open] { background: transparent; }
.faq summary {
  cursor: pointer;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 36px;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: -2px;
  font-size: 1.3rem;
  color: var(--brass-deep);
  font-weight: 300;
  font-family: "Inter", sans-serif;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  color: var(--slate);
  max-width: 720px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: start;
}
.about-grid .about-text p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.65;
}
.about-aside {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.about-aside .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: baseline;
  font-size: 0.96rem;
}
.about-aside .row:last-child { border-bottom: 0; }
.about-aside .row .k {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.about-aside .row .v {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--navy);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.value-card {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.value-card:nth-child(2n) { padding-left: 32px; padding-right: 0; border-right: 0; }
.value-card:nth-last-child(-n+2) { border-bottom: 0; }
.value-card .num {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--brass-deep);
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 400;
  font-family: "Source Serif 4", Georgia, serif;
  letter-spacing: -0.005em;
}
.value-card p { margin: 0; font-size: 0.96rem; color: var(--slate); }

/* ---------- Policies ---------- */
.policies-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 96px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 110px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.toc h4 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--slate-2);
  margin: 24px 0 16px;
  text-transform: uppercase;
}
.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.toc li {
  counter-increment: toc;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--line-2);
}
.toc li a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px;
  padding: 12px 0;
  color: var(--ink);
  align-items: baseline;
}
.toc li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--brass-deep);
}
.toc li a:hover { color: var(--brass-deep); }
.policy-section {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.policy-section:last-child { border-bottom: 0; }
.policy-section h2 {
  font-size: 1.65rem;
  margin-bottom: 18px;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.policy-section h2 .n {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--brass-deep);
  text-transform: uppercase;
  display: inline-block;
  margin-right: 14px;
  vertical-align: middle;
}
.policy-section p, .policy-section li { font-size: 1rem; color: var(--ink); line-height: 1.65; max-width: var(--measure); }
.policy-section ul li { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper);
  color: var(--slate);
  padding: 88px 0 36px;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.site-footer h4 {
  color: var(--slate-2);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brass);
  display: inline-block;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 11px; font-size: 0.92rem; }
.site-footer a { color: var(--ink); }
.site-footer a:hover { color: var(--brass-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 0.82rem;
  color: var(--slate-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Nav toggle ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
}

/* ---------- Lang switch ---------- */
.lang-switch {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-2) !important;
  background: transparent;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}
.lang-switch:hover {
  color: var(--navy) !important;
  border-color: var(--navy);
}

/* ---------- Motion (scroll reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
.reveal-delay-5 { transition-delay: 0.30s; }
.reveal-delay-6 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .contact-grid,
  .portal-grid,
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principle { padding: 28px 24px 28px 0; }
  .principle:nth-child(2n) { padding-right: 0; border-right: 0; }
  .principle:nth-child(2n+1) { border-right: 1px solid var(--line); }
  .principle:nth-last-child(-n+2) { border-bottom: 0; }
  .practice-row { grid-template-columns: 60px 1fr; gap: 28px; }
  .practice-row .more { grid-column: 1 / -1; padding-left: 60px; padding-top: 8px; justify-self: start; text-align: left; }
  .feature-grid, .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 32px 0; border-right: 0; }
  .value-card:nth-child(2n) { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; padding: 40px 0; gap: 24px; }
  .service-block ul { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 90px; }
  .section { padding: 80px 0; }
  .policies-layout { grid-template-columns: 1fr; gap: 48px; }
  .toc { position: relative; top: auto; }
  .nav { padding: 18px 28px; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links .btn { width: 100%; text-align: center; margin-top: 6px; justify-content: center; }
  .nav-toggle { display: block; }
  .principles { grid-template-columns: 1fr; }
  .principle { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .container { padding: 0 22px; }
  .cta-band { padding: 56px 28px; }
  .info-row { grid-template-columns: 1fr; gap: 4px; }
}
