/* =====================================================================
   SELF-HOSTED FONTS  — files in /fonts/ (woff2, latin) from
   google-webfonts-helper. The -v9-/-v13-/-v19- version tokens vary by
   download; rename your files to match, or edit these src paths.
   ===================================================================== */
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/spectral-v9-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/spectral-v9-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/spectral-v9-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/spectral-v9-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-v13-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-v13-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-v13-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-v13-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-v19-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-v19-latin-600.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ink: #10261f;
  --forest: #16463a;
  --forest-2: #1f5b49;
  --forest-3: #0e3429;
  --brass: #b4924f;
  --brass-2: #c7a968;
  --brass-deep: #8a6d2f;
  --bone: #f6f2e8;
  --bone-2: #ede6d6;
  --paper: #ffffff;
  --text: #1a2a24;
  --text-2: #566962;
  --muted: #8b9790;
  --line: rgba(16, 38, 31, 0.12);
  --line-2: rgba(16, 38, 31, 0.2);
  --good: #2f7d58;
  --fs: "Spectral", Georgia, serif;
  --fb: "Inter", system-ui, sans-serif;
  --fm: "IBM Plex Mono", monospace;
  --r: 14px;
  --r-lg: 20px;
  --eo: cubic-bezier(0.22, 0.61, 0.36, 1);
  --sh: 0 22px 60px rgba(16, 38, 31, 0.14);
  --sh-sm: 0 6px 22px rgba(16, 38, 31, 0.08);
  --wrap: 1180px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bone);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.62;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 26px;
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
}
.skip:focus {
  left: 12px;
  top: 12px;
}
:focus-visible {
  outline: 2.5px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--fm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--brass);
  display: inline-block;
}
.kicker {
  font-family: var(--fm);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
h1,
h2,
h3 {
  font-family: var(--fs);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-xl {
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  font-weight: 600;
}
.h-lg {
  font-size: clamp(2rem, 3.8vw, 3rem);
}
.h-md {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.lead {
  font-size: 1.12rem;
  color: var(--text-2);
  line-height: 1.66;
}
.section {
  padding: 92px 0;
}
.center {
  text-align: center;
}
.muted {
  color: var(--text-2);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 14px 26px;
  border-radius: 11px;
  border: 1.6px solid transparent;
  cursor: pointer;
  transition: transform 0.16s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.btn-brass {
  background: var(--brass);
  color: #23190a;
  border-color: var(--brass);
}
.btn-brass:hover {
  background: var(--brass-2);
  border-color: var(--brass-2);
  transform: translateY(-2px);
}
.btn-forest {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.btn-forest:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--forest);
  color: var(--forest);
  transform: translateY(-2px);
}
.btn-ghost-l {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-l:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 17px 32px;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ---------- header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(246, 242, 232, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.hdr.solid {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(16, 38, 31, 0.06);
}
.hdr-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 26px;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.seal {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.brand b {
  font-family: var(--fs);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--fm);
  font-size: 0.54rem;
  letter-spacing: 0.26em;
  color: var(--brass-deep);
  margin-top: 3px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 9px 13px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fb);
}
.nav-link:hover {
  color: var(--forest);
  background: rgba(22, 70, 58, 0.06);
}
.nav-link.active {
  color: var(--forest);
}
.has-menu {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--sh);
  padding: 8px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s;
}
.has-menu:hover .dropdown,
.has-menu:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dd-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s;
}
.dd-item:hover {
  background: var(--bone);
}
.dd-item .di-ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(180, 146, 79, 0.14);
  color: var(--brass-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dd-item .di-ic svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.dd-item b {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--fb);
}
.dd-item span {
  font-size: 0.78rem;
  color: var(--text-2);
  display: block;
  line-height: 1.4;
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.hdr-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--forest);
  padding: 8px 10px;
  border-radius: 9px;
}
.hdr-phone:hover {
  background: rgba(22, 70, 58, 0.06);
}
.hdr-phone svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
/* language */
.lang {
  position: relative;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  padding: 8px 11px;
  font-family: var(--fb);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: 0.2s;
}
.lang-btn:hover {
  border-color: var(--forest);
}
.lang-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--sh);
  padding: 6px;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s;
  z-index: 95;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: none;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 0.88rem;
  color: var(--text);
  transition: 0.15s;
}
.lang-menu button:hover {
  background: var(--bone);
}
.lang-menu button .native {
  color: var(--text-2);
  font-size: 0.8rem;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* callback language banner */
.cb-banner {
  display: none;
  background: var(--forest-3);
  color: #fff;
  text-align: center;
  padding: 11px 18px;
  font-size: 0.92rem;
}
.cb-banner.show {
  display: block;
}
.cb-banner a {
  color: var(--brass-2);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 6px;
}
.cb-banner[dir="rtl"] {
  direction: rtl;
}

/* ---------- views ---------- */
.view {
  display: none;
}
.view.active {
  display: block;
  animation: viewIn 0.45s var(--eo);
}
@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      115deg,
      rgba(14, 42, 33, 0.95),
      rgba(16, 70, 58, 0.82) 52%,
      rgba(16, 70, 58, 0.55)
    ),
    url("/images/team/hero-bg.webp") center/cover no-repeat;
  background-color: var(--forest-3);
}
.hero .eyebrow {
  color: var(--brass-2);
}
.hero .eyebrow::before {
  background: var(--brass-2);
}
.hero h1 {
  color: #fff;
}
.hero .lead {
  margin: 22px 0 30px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.85);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.4rem;
  align-items: center;
  padding: 84px 0 92px;
}
.hero h1 {
  margin: 18px 0 0;
}
.hero-cta {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.hero-note svg {
  width: 16px;
  height: 16px;
  stroke: var(--good);
  fill: none;
  stroke-width: 2;
}
.hero-panel {
  position: relative;
  background: linear-gradient(160deg, var(--forest), var(--forest-3));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 38px 34px;
  color: #fff;
  box-shadow: var(--sh);
  overflow: hidden;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 70% at 100% 0,
    rgba(180, 146, 79, 0.22),
    transparent 60%
  );
  pointer-events: none;
}
.hero-panel .pk {
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-2);
  position: relative;
}
.hero-panel h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 8px 0 18px;
  position: relative;
}
.hp-areas {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.hp-area {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hp-area:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(199, 169, 104, 0.55);
  transform: translateX(4px);
}
.hp-area .ha-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(180, 146, 79, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hp-area .ha-ic svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--brass-2);
  stroke-width: 1.6;
}
.hp-area .ha-t {
  flex: 1;
  min-width: 0;
}
.hp-area .ha-t b {
  display: block;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  line-height: 1.25;
}
.hp-area .ha-t span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}
.hp-area .ha-ar {
  flex-shrink: 0;
  color: var(--brass-2);
  display: flex;
  transition: transform 0.2s;
}
.hp-area .ha-ar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.hp-area:hover .ha-ar {
  transform: translateX(4px);
}
.hp-stats {
  position: relative;
  display: flex;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hp-stat {
  flex: 1;
  text-align: center;
}
.hp-stat b {
  display: block;
  font-family: var(--fs);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--brass-2);
  line-height: 1;
}
.hp-stat span {
  display: block;
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 7px;
}

/* trust strip */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone-2);
}
.trust-in {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
  align-items: center;
  padding: 22px 26px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-2);
}
.badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* section heads */
.shead {
  max-width: 660px;
  margin-bottom: 46px;
}
.shead.center {
  margin-left: auto;
  margin-right: auto;
}
.shead h2 {
  margin-top: 14px;
}
.shead p {
  margin-top: 14px;
}

/* practice cards */
.pa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pa-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--eo), box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.pa-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
  border-color: var(--brass);
}
.pa-ic {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: linear-gradient(160deg, var(--forest), var(--forest-3));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.pa-ic svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--brass-2);
  stroke-width: 1.6;
}
.pa-code {
  font-family: var(--fm);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 8px;
}
.pa-card h3 {
  font-size: 1.42rem;
}
.pa-card .pa-desc {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 10px 0 16px;
}
.pa-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}
.pa-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pa-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brass);
  margin-top: 8px;
  flex-shrink: 0;
  transform: rotate(45deg);
}
.pa-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest);
}
.pa-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s;
}
.pa-card:hover .pa-more svg {
  transform: translateX(4px);
}

/* value band */
.band {
  background: var(--ink);
  color: #fff;
}
.band h2 {
  color: #fff;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 8px;
}
.val-item .vi-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(180, 146, 79, 0.16);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.val-item .vi-ic svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--brass-2);
  stroke-width: 1.7;
}
.val-item h3 {
  color: #fff;
  font-size: 1.18rem;
  font-family: var(--fb);
  font-weight: 600;
}
.val-item p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  margin-top: 7px;
}

/* process */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.proc {
  position: relative;
  padding-top: 20px;
  border-top: 2px solid var(--line);
}
.proc.lit {
  border-top-color: var(--brass);
}
.proc .pn {
  font-family: var(--fm);
  font-size: 0.8rem;
  color: var(--brass-deep);
  font-weight: 600;
}
.proc h3 {
  font-size: 1.18rem;
  font-family: var(--fb);
  font-weight: 600;
  margin: 10px 0 7px;
}
.proc p {
  font-size: 0.9rem;
  color: var(--text-2);
}

/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tm {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tm:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-sm);
}
.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-family: var(--fs);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--forest);
  background: radial-gradient(circle at 35% 30%, #fff, var(--bone-2));
  border: 2px solid var(--brass);
  position: relative;
  overflow: visible;
}
.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}
.avatar::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--line);
  z-index: 2;
}
.tm h3 {
  font-size: 1.18rem;
}
.tm .role {
  font-size: 0.84rem;
  color: var(--brass-deep);
  font-weight: 600;
  margin: 3px 0 10px;
}
.tm .cred {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}
.tm .langs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.chip {
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 20px;
  background: var(--bone-2);
  color: var(--text-2);
}
.tm-bio {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-top: 12px;
  text-align: left;
  display: none;
}
.tm.open .tm-bio {
  display: block;
}

/* testimonials */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tst {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--brass);
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.tst blockquote {
  font-family: var(--fs);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.tst .who {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--text-2);
  font-weight: 500;
}
.tst .who b {
  display: block;
  color: var(--ink);
  font-family: var(--fb);
}

/* faq */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.qa {
  border-bottom: 1px solid var(--line);
}
.qa-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-family: var(--fs);
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--ink);
}
.qa-q .ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s;
}
.qa-q .ico::before,
.qa-q .ico::after {
  content: "";
  position: absolute;
  background: var(--brass);
  border-radius: 2px;
}
.qa-q .ico::before {
  top: 10px;
  left: 2px;
  right: 2px;
  height: 2px;
}
.qa-q .ico::after {
  left: 10px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transition: transform 0.3s;
}
.qa.open .qa-q .ico::after {
  transform: scaleY(0);
}
.qa-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--eo);
}
.qa-a p {
  padding: 0 4px 22px;
  color: var(--text-2);
  font-size: 0.96rem;
  max-width: 720px;
}

/* cta band */
.ctaband {
  background: linear-gradient(160deg, var(--forest), var(--forest-3));
  color: #fff;
  border-radius: 26px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ctaband::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    70% 90% at 0 0,
    rgba(180, 146, 79, 0.2),
    transparent 55%
  );
  pointer-events: none;
}
.ctaband h2 {
  color: #fff;
  position: relative;
}
.ctaband p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 520px;
  margin: 14px auto 28px;
  position: relative;
}
.ctaband .hero-cta {
  justify-content: center;
  position: relative;
}

/* practice page header */
.pg-head {
  background: linear-gradient(
      165deg,
      rgba(14, 52, 41, 0.96),
      rgba(22, 70, 58, 0.9)
    ),
    url("/images/hero-bg.webp") center/cover no-repeat;
  background-color: var(--forest-3);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pg-head::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(180, 146, 79, 0.18),
    transparent 65%
  );
}
.pg-head-in {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding: 72px 0;
}
.pg-head .kicker {
  color: var(--brass-2);
}
.pg-head h1 {
  color: #fff;
  margin: 16px 0 18px;
}
.pg-head p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 520px;
}
.pg-head .hero-cta {
  margin-top: 28px;
}
.pg-ic {
  width: 130px;
  height: 130px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  margin-left: auto;
}
.pg-ic svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: var(--brass-2);
  stroke-width: 1.3;
}
.bcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-2);
  padding: 18px 0;
}
.bcrumb a {
  cursor: pointer;
}
.bcrumb a:hover {
  color: var(--forest);
}
.bcrumb svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* matters grid */
.matters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.matter {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  transition: 0.2s;
}
.matter:hover {
  border-color: var(--brass);
  box-shadow: var(--sh-sm);
}
.matter .mi {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bone-2);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.matter .mi svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.7;
}
.matter h3 {
  font-size: 1.12rem;
  font-family: var(--fb);
  font-weight: 600;
}
.matter p {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-top: 6px;
}

/* two col content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.prose p {
  color: var(--text-2);
  margin-bottom: 14px;
}
.prose p:first-of-type {
  font-size: 1.08rem;
  color: var(--text);
}
.callout {
  background: var(--bone-2);
  border-left: 3px solid var(--brass);
  border-radius: 0 12px 12px 0;
  padding: 22px 24px;
}
.callout .kicker {
  color: var(--brass-deep);
}
.callout p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

/* resources */
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.res {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.res .rt {
  font-family: var(--fm);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 12px;
}
.res h3 {
  font-size: 1.24rem;
}
.res p {
  font-size: 0.9rem;
  color: var(--text-2);
  margin: 8px 0 18px;
  flex: 1;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight {
  border-top: 2px solid var(--brass);
  padding-top: 18px;
}
.insight .date {
  font-family: var(--fm);
  font-size: 0.72rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
}
.insight h3 {
  font-size: 1.18rem;
  margin: 8px 0 8px;
}
.insight p {
  font-size: 0.88rem;
  color: var(--text-2);
}
.insight a {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  gap: 6px;
  margin-top: 12px;
  cursor: pointer;
}

/* ---------- contact / form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--sh-sm);
}
.form-sec {
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 6px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-sec::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fld {
  margin-bottom: 15px;
}
.fld label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.fld label .req {
  color: var(--brass-deep);
}
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  background: var(--bone);
  border: 1.5px solid var(--line-2);
  border-radius: 11px;
  font-family: var(--fb);
  font-size: 0.95rem;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: 0.18s;
}
.fld textarea {
  resize: vertical;
  min-height: 118px;
}
.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  border-color: var(--forest);
  background: var(--paper);
}
.fld .hint {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 6px;
}
.cond {
  display: none;
  border: 1px dashed var(--line-2);
  border-radius: 13px;
  padding: 16px 16px 1px;
  margin-bottom: 15px;
  background: var(--bone-2);
  animation: viewIn 0.35s var(--eo);
}
.cond.show {
  display: block;
}
.cond .cond-h {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brass-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cond .cond-h svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-2);
  margin: 6px 0 18px;
  line-height: 1.5;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--forest);
}
.consent a {
  color: var(--forest);
  text-decoration: underline;
  cursor: pointer;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-2);
  background: var(--bone-2);
  border-radius: 10px;
  padding: 11px 14px;
  margin-bottom: 20px;
}
.secure-note svg {
  width: 17px;
  height: 17px;
  stroke: var(--good);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.form-msg {
  display: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-msg.ok {
  display: block;
  background: rgba(47, 125, 88, 0.1);
  color: #225c40;
  border: 1px solid rgba(47, 125, 88, 0.3);
}
.form-msg.err {
  display: block;
  background: rgba(190, 51, 24, 0.08);
  color: #9a2f16;
  border: 1px solid rgba(190, 51, 24, 0.25);
}

/* contact aside */
.cinfo .ci-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cinfo .ci-ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--bone-2);
  color: var(--forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cinfo .ci-ic svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.cinfo b {
  display: block;
  font-family: var(--fb);
  font-size: 0.98rem;
  color: var(--ink);
}
.cinfo span {
  font-size: 0.88rem;
  color: var(--text-2);
}
.booking {
  background: linear-gradient(160deg, var(--forest), var(--forest-3));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.booking::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(180, 146, 79, 0.22),
    transparent 65%
  );
}
.booking .kicker {
  color: var(--brass-2);
}
.booking h3 {
  color: #fff;
  font-size: 1.4rem;
  margin: 8px 0 10px;
  position: relative;
}
.booking p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  margin-bottom: 18px;
  position: relative;
}
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 24px;
  height: 260px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05);
}

/* footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
  margin-top: 0;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .brand b {
  color: #fff;
}
.footer .brand small {
  color: var(--brass-2);
}
.foot-about {
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}
.foot-soc {
  display: flex;
  gap: 11px;
  margin-top: 18px;
}
.foot-soc a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  line-height: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.foot-soc a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}
.foot-soc svg {
  width: 42px;
  height: 42px;
  display: block;
}
.foot-col h5 {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 16px;
}
.foot-col a,
.foot-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.15s;
}
.foot-col a:hover {
  color: #fff;
}
.disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  padding: 24px 0 0;
  max-width: 980px;
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.foot-bot a {
  cursor: pointer;
}
.foot-bot a:hover {
  color: #fff;
}

/* modal */
.modal-scrim {
  position: fixed;
  inset: 0;
  background: rgba(16, 38, 31, 0.55);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal-scrim.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--paper);
  border-radius: var(--r-lg);
  max-width: 680px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: 38px;
  box-shadow: var(--sh);
}
.modal h2 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.modal h4 {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 6px;
  color: var(--ink);
}
.modal p {
  font-size: 0.92rem;
  color: var(--text-2);
  margin-bottom: 10px;
}
.modal-close {
  float: right;
  background: var(--bone-2);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-2);
  line-height: 1;
}

/* toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 180%);
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 12px;
  z-index: 160;
  transition: transform 0.4s var(--eo);
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--sh);
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast svg {
  width: 18px;
  height: 18px;
  stroke: var(--brass-2);
  fill: none;
  stroke-width: 2;
}

/* reveal */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--eo), transform 0.7s var(--eo);
}
.rv.in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .pg-head-in,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .pa-grid,
  .val-grid,
  .proc-grid,
  .team-grid,
  .tst-grid,
  .matters,
  .res-grid,
  .insight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero-panel {
    order: -1;
  }
  .pg-ic {
    margin: 0;
  }
}
@media (max-width: 760px) {
  .nav,
  .hdr-phone {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav.mobile {
    display: flex;
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 20px;
    gap: 2px;
    box-shadow: var(--sh);
    z-index: 89;
    margin: 0;
  }
  .nav.mobile .nav-link {
    text-align: left;
    padding: 13px;
    font-size: 1rem;
  }
  .nav.mobile .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    min-width: 0;
  }
  .pa-grid,
  .val-grid,
  .proc-grid,
  .team-grid,
  .tst-grid,
  .matters,
  .res-grid,
  .insight-grid,
  .foot-top {
    grid-template-columns: 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .ctaband {
    padding: 40px 24px;
  }
  .section {
    padding: 64px 0;
  }
  .modal {
    padding: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}
