/* ==========================================================================
   De Klerk Turner Inc — Brand stylesheet
   Brand palette
     --dkt-navy:   #03396a   (primary)
     --dkt-blue:   #466480   (secondary)
     --dkt-white:  #ffffff
     --dkt-gray:   #a6a6a6
   Typography
     Single family: Arial Nova (Microsoft system font), with Arial / Helvetica
     fallbacks for systems that do not have it installed.
   ========================================================================== */

:root {
  --dkt-navy: #03396a;
  --dkt-navy-dark: #022a4f;
  --dkt-blue: #466480;
  --dkt-blue-light: #6b87a3;
  --dkt-white: #ffffff;
  --dkt-gray: #a6a6a6;
  --dkt-gray-light: #e6e8eb;
  --dkt-bg-soft: #f5f6f8;
  --dkt-text: #1a1f2b;
  --dkt-text-muted: #5b6472;

  /* Both vars now resolve to the same Arial Nova stack so that every
     element built with --font-serif or --font-sans renders identically. */
  --font-serif: 'Arial Nova', 'Arial Nova Light', Arial, Helvetica, sans-serif;
  --font-sans:  'Arial Nova', 'Arial Nova Light', Arial, Helvetica, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(20px, 4vw, 48px);

  --shadow-sm: 0 1px 2px rgba(3, 57, 106, 0.06);
  --shadow-md: 0 8px 24px rgba(3, 57, 106, 0.08);
  --shadow-lg: 0 24px 56px rgba(3, 57, 106, 0.12);

  --transition: 200ms cubic-bezier(0.2, 0, 0, 1);
}

/* Reset --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--dkt-text);
  background: var(--dkt-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--dkt-navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--dkt-blue); }
button { font: inherit; cursor: pointer; }

/* Typography ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dkt-navy);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.06vw, 2.52rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4, .h-sub { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--dkt-blue); }
p { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dkt-blue);
  margin: 0 0 1.25rem;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--dkt-blue);
  vertical-align: middle;
  margin-right: 12px;
}
.lead { font-size: 1.15rem; color: var(--dkt-text-muted); max-width: 60ch; }

/* Layout helpers ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(44px, 6vw, 84px); }
.section--compact { padding-block: clamp(32px, 4vw, 56px); }
.section--soft { background: var(--dkt-bg-soft); }
.section--navy { background: var(--dkt-navy); color: var(--dkt-white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--dkt-white); }
.section--navy .eyebrow { color: var(--dkt-blue-light); }
.section--navy .eyebrow::before { background: var(--dkt-blue-light); }
.section--navy .lead { color: rgba(255,255,255,0.8); }

.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--dkt-navy);
  background: var(--dkt-navy);
  color: var(--dkt-white);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn:hover { background: var(--dkt-navy-dark); color: var(--dkt-white); }
.btn--ghost { background: transparent; color: var(--dkt-navy); }
.btn--ghost:hover { background: var(--dkt-navy); color: var(--dkt-white); }
.btn--ghost-light { background: transparent; color: var(--dkt-white); border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: var(--dkt-white); color: var(--dkt-navy); border-color: var(--dkt-white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dkt-navy);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.link-arrow::after { content: "→"; transition: transform var(--transition); }
.link-arrow:hover { border-bottom-color: var(--dkt-navy); }
.link-arrow:hover::after { transform: translateX(4px); }
.section--navy .link-arrow { color: var(--dkt-white); }
.section--navy .link-arrow:hover { border-bottom-color: var(--dkt-white); }

/* Top info bar -------------------------------------------------------------- */
.topbar {
  background: var(--dkt-navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
  gap: 16px;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--dkt-white); }
.topbar__contacts { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__contacts span::before { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--dkt-blue-light); margin-right: 10px; vertical-align: middle; }
@media (max-width: 720px) { .topbar { display: none; } }

/* Header / Nav -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dkt-white);
  border-bottom: 1px solid var(--dkt-gray-light);
  backdrop-filter: saturate(140%) blur(6px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 32px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.brand__mark {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--dkt-navy);
  letter-spacing: 0.02em;
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dkt-blue);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dkt-text);
  padding: 8px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--dkt-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--dkt-navy); }

/* Dropdown / Mega-menu ----------------------------------------------------- */
.nav-dropdown { position: static; }
.nav-dropdown__trigger { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown__chevron { transition: transform var(--transition); flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron { transform: rotate(180deg); }

.nav-dropdown__mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dkt-white);
  border-top: 3px solid var(--dkt-navy);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}
/* Invisible bridge */
.nav-dropdown__mega::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-dropdown:hover .nav-dropdown__mega,
.nav-dropdown:focus-within .nav-dropdown__mega {
  opacity: 1;
  visibility: visible;
}

.mega__inner {
  max-width: var(--max-width, 1180px);
  margin: 0 auto;
  padding: 36px var(--gutter) 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}
.mega__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dkt-navy);
  opacity: 0.5;
  margin-bottom: 10px;
}
.mega__col a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--dkt-charcoal);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.mega__col a::after { display: none !important; }
.mega__col a:hover { color: var(--dkt-navy); }

/* Featured practice area column */
.mega__col--featured { border-right: 1px solid var(--dkt-gray-light); padding-right: 32px; }
.mega__featured-link {
  display: block;
  text-decoration: none;
  padding: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef4 100%);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.mega__featured-link::after { display: none !important; }
.mega__featured-link:hover {
  background: linear-gradient(135deg, #e8eef4 0%, #dce5ed 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mega__featured-link strong {
  display: block;
  font-size: 1rem;
  color: var(--dkt-navy);
  margin-bottom: 8px;
}
.mega__featured-link span {
  display: block;
  font-size: 0.82rem;
  color: var(--dkt-charcoal);
  line-height: 1.5;
  opacity: 0.8;
}

/* Footer bar */
.mega__footer {
  border-top: 1px solid var(--dkt-gray-light);
  padding: 14px var(--gutter);
  text-align: center;
}
.mega__view-all {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dkt-navy);
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.mega__view-all:hover { opacity: 0.7; }

.nav__contact-btn {
  font-family: var(--font-sans);
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px !important;
  border: 1px solid var(--dkt-navy);
  color: var(--dkt-navy) !important;
  transition: background var(--transition), color var(--transition);
}
.nav__contact-btn::after { display: none !important; }
.nav__contact-btn:hover { background: var(--dkt-navy); color: var(--dkt-white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: var(--dkt-navy);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav { display: none; flex-direction: column; align-items: flex-start; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--dkt-white); padding: 16px var(--gutter) 24px; border-bottom: 1px solid var(--dkt-gray-light); box-shadow: var(--shadow-md); }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--dkt-gray-light); }
  .nav a::after { display: none; }
  .nav__contact-btn { margin-top: 12px; align-self: stretch; text-align: center; }
  .nav-toggle { display: inline-flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown__trigger { width: 100%; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--dkt-gray-light); }
  .nav-dropdown__mega {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: 0;
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown__mega { display: block; }
  .mega__inner { grid-template-columns: 1fr; padding: 8px 0 8px 16px; gap: 12px; }
  .mega__col--featured { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--dkt-gray-light); padding-bottom: 12px; }
  .mega__col a { padding: 8px 0; border-bottom: 1px solid var(--dkt-gray-light); }
  .mega__footer { padding: 10px 0 10px 16px; text-align: left; }
}

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(420px, 58vh, 600px);
  display: flex;
  align-items: center;
  color: var(--dkt-white);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--dkt-navy-dark) 0%, var(--dkt-navy) 55%, var(--dkt-blue) 100%);
  z-index: -2;
}
.hero__media--photo {
  background-image: url("hero-home.jpg");
  background-image: image-set(url("hero-home.webp") type("image/webp"), url("hero-home.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center 38%;
  background-color: var(--dkt-navy);
}
@media (max-width: 700px) {
  .hero__media--photo {
    background-image: url("hero-home-mobile.jpg");
    background-image: image-set(url("hero-home-mobile.webp") type("image/webp"), url("hero-home-mobile.jpg") type("image/jpeg"));
    background-position: center top;
  }
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 25% 20%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, transparent 30%, rgba(2,17,35,0.55) 100%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2,17,35,0.55) 0%, rgba(2,17,35,0.25) 50%, rgba(2,17,35,0.05) 100%);
  z-index: -1;
}
.hero__inner {
  width: 100%;
  padding-block: clamp(40px, 6.5vw, 76px);
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  display: inline-block;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  vertical-align: middle;
  margin-right: 14px;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 24ch;
  color: var(--dkt-white);
  margin-bottom: 28px;
}
.hero__headline em { font-style: italic; color: rgba(255,255,255,0.92); }
.hero__sub {
  max-width: 56ch;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero--page {
  min-height: clamp(480px, calc(100vh - 120px), 820px);
  align-items: flex-end;
  padding-bottom: 0;
}
.hero--page .hero__inner { padding-block: clamp(30px, 5vw, 56px); }
.hero--page .hero__headline { font-size: clamp(2rem, 4.2vw, 3.2rem); max-width: 22ch; }
/* Article hero — insight articles and inner content pages */
.hero--article {
  min-height: clamp(220px, 32vh, 360px);
}
.hero--article .hero__inner { padding-block: clamp(26px, 3.5vw, 42px); }
.hero--article .hero__headline { font-size: clamp(1.8rem, 3.8vw, 3rem); max-width: 28ch; }

/* Slim hero — policy / utility pages (no value props, title only) */
.hero--slim {
  min-height: clamp(160px, 28vh, 280px);
}
.hero--slim .hero__inner { padding-block: clamp(28px, 5vw, 52px); }
.hero--slim .hero__headline { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

/* Value-proposition pillars ------------------------------------------------- */
.pillar { display: flex; flex-direction: column; }
.pillar__icon { margin-bottom: 20px; }
.pillar__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--dkt-navy-dark);
  margin-bottom: 12px;
}
.pillar__copy {
  font-size: 0.97rem;
  color: var(--dkt-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Stat strip ---------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--dkt-gray-light);
  border-bottom: 1px solid var(--dkt-gray-light);
}
.stat {
  padding: 36px var(--gutter);
  border-right: 1px solid var(--dkt-gray-light);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--dkt-navy);
  line-height: 1;
  display: block;
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dkt-text-muted);
}

/* Cards --------------------------------------------------------------------- */
.card {
  background: var(--dkt-white);
  border: 1px solid var(--dkt-gray-light);
  padding: 36px 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.card:hover { border-color: var(--dkt-navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__title { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 500; color: var(--dkt-navy); margin: 0; }
.card__body { color: var(--dkt-text-muted); font-size: 0.98rem; flex: 1; }
.card__foot { margin-top: 8px; }

/* Practice card variant */
.practice-card {
  background: var(--dkt-white);
  border: 1px solid var(--dkt-gray-light);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.practice-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--dkt-navy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.practice-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.practice-card:hover::before { transform: scaleY(1); }
.practice-card__num { font-family: var(--font-serif); font-size: 0.95rem; color: var(--dkt-blue); letter-spacing: 0.1em; }
.practice-card__title { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; color: var(--dkt-navy); margin: 0; }
.practice-card__desc { color: var(--dkt-text-muted); margin: 0; }
.practice-card__services { display: flex; flex-direction: column; gap: 10px; }
.practice-card__services-label { font-family: var(--font-serif); font-size: 0.85rem; color: var(--dkt-blue); letter-spacing: 0.12em; text-transform: uppercase; }
.practice-card__services-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 20px; color: var(--dkt-text-muted); font-size: 0.95rem; }
.practice-card__services-list li { padding-left: 0; }
.practice-card__services-list li::before { content: ""; }
@media (max-width: 480px) { .practice-card__services-list { grid-template-columns: 1fr; } }
.practice-card.is-featured { background: var(--dkt-navy); color: var(--dkt-white); border-color: var(--dkt-navy); }
.practice-card.is-featured .practice-card__title,
.practice-card.is-featured .practice-card__num { color: var(--dkt-white); }
.practice-card.is-featured .practice-card__desc { color: rgba(255,255,255,0.82); }
.practice-card.is-featured::before { background: var(--dkt-white); transform: scaleY(1); }
.practice-card__link { display: inline-block; margin-top: 18px; font-family: var(--font-serif); font-size: 0.95rem; color: var(--dkt-navy); text-decoration: none; border-bottom: 1px solid var(--dkt-gold); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.practice-card__link:hover { color: var(--dkt-blue); border-color: var(--dkt-blue); }

/* Person card --------------------------------------------------------------- */
.person {
  display: flex;
  flex-direction: column;
  background: var(--dkt-white);
  border: 1px solid var(--dkt-gray-light);
  transition: all var(--transition);
}
.person:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.person__photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--dkt-blue) 0%, var(--dkt-navy) 100%);
  position: relative;
  overflow: hidden;
}
.person__photo::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.person__body { padding: 24px 26px 28px; }
.person__name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--dkt-navy); margin: 0; }
.person__role { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dkt-blue); margin: 6px 0 14px; }
.person__bio { color: var(--dkt-text-muted); font-size: 0.94rem; }

/* Insight card -------------------------------------------------------------- */
.insight {
  display: flex;
  flex-direction: column;
  background: var(--dkt-white);
  border-top: 1px solid var(--dkt-gray-light);
  padding: 28px 0 32px;
  gap: 14px;
}
.insight__meta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dkt-blue); }
.insight__meta span + span::before { content: "·"; margin: 0 10px; color: var(--dkt-gray); }
.insight__title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--dkt-navy); margin: 0; }
.insight__excerpt { color: var(--dkt-text-muted); margin: 0; }

/* Two-column layout for content pages -------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.feature-row--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
.feature-row--reverse .feature-row__media { order: -1; }
.feature-row__media {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--dkt-blue) 0%, var(--dkt-navy) 100%);
  position: relative;
  overflow: hidden;
}
.feature-row__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-row__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18), transparent 55%);
}
@media (max-width: 880px) {
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__media { order: 0; }
}

/* Quote --------------------------------------------------------------------- */
.quote {
  border-left: 3px solid var(--dkt-navy);
  padding: 16px 0 16px 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--dkt-navy);
  max-width: 56ch;
}
.quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dkt-blue);
}

/* CTA banner ---------------------------------------------------------------- */
.cta-banner {
  background: var(--dkt-navy);
  color: var(--dkt-white);
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--dkt-white); max-width: 22ch; margin-inline: auto; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 60ch; margin: 0 auto 32px; }

/* Compass stencil — decorative background element on dark sections ---------- */
.compass-stencil {
  position: absolute;
  top: 50%;
  right: clamp(24px, 5vw, 72px);
  transform: translateY(-50%);
  width: clamp(180px, 24vw, 300px);
  height: clamp(180px, 24vw, 300px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Footer -------------------------------------------------------------------- */
.site-footer {
  background: var(--dkt-navy-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--dkt-white); }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 56px;
}
.site-footer h4, .site-footer .footer-head { color: var(--dkt-white); margin: 0 0 18px; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; }
.site-footer__brand { font-family: var(--font-serif); font-size: 1.6rem; color: var(--dkt-white); margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.site-footer__copy { white-space: nowrap; }

/* Footer socials (left) */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition), transform var(--transition);
}
.footer-socials a:hover { color: var(--dkt-white); transform: translateY(-1px); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }

/* Footer policy links (right) */
.footer-policies {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-policies a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.footer-policies a:hover { color: var(--dkt-white); }

@media (max-width: 880px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { justify-content: flex-start; }
  .site-footer__copy { white-space: normal; }
}
@media (max-width: 540px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .footer-policies { gap: 14px; }
}

/* Forms --------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dkt-text-muted);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--dkt-gray-light);
  background: var(--dkt-white);
  font: inherit;
  color: var(--dkt-text);
  border-radius: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--dkt-navy);
  box-shadow: 0 0 0 3px rgba(3, 57, 106, 0.12);
}

/* Article body ------------------------------------------------------------- */
.article-body {
  max-width: 70ch;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--dkt-text);
}
.article-body h2 { margin-top: 2em; font-size: 1.9rem; }
.article-body h3 { margin-top: 1.6em; font-size: 1.4rem; }
.article-body p { margin-bottom: 1.4em; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin-bottom: 1.4em; }
.article-body blockquote { border-left: 3px solid var(--dkt-navy); margin: 1.6em 0; padding: 4px 0 4px 24px; font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: var(--dkt-navy); }

/* Breadcrumb --------------------------------------------------------------- */
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb span { margin: 0 10px; opacity: 0.55; }

/* Utilities ---------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mx-auto { margin-inline: auto; }
.max-prose { max-width: 60ch; }
.divider { height: 1px; background: var(--dkt-gray-light); margin: clamp(40px,6vw,72px) 0; }

/* Section header pattern --------------------------------------------------- */
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Hero photo styling for page heros ---------------------------------------- */
.hero--about .hero__media { background: linear-gradient(120deg, #022a4f 0%, #03396a 50%, #466480 100%); }
.hero--practice .hero__media { background: linear-gradient(135deg, #03396a 0%, #466480 100%); }
.hero--people .hero__media { background: linear-gradient(120deg, #466480 0%, #03396a 100%); }
.hero--insights .hero__media { background: linear-gradient(120deg, #022a4f 0%, #466480 100%); }
.hero--contact .hero__media { background: linear-gradient(135deg, #03396a 0%, #022a4f 100%); }

/* Director portrait — large photo with fallback initials -------------------- */
.director-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--dkt-blue) 0%, var(--dkt-navy) 100%);
  position: relative;
  overflow: hidden;
}
.director-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  z-index: 2;
}
.director-portrait__initials {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  z-index: 1;
}

/* Director profile content ------------------------------------------------- */

/* Director sidebar: portrait + credentials stacked in left column */
.director-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 96px;
  align-self: start;
}
.director-credentials {
  background: var(--dkt-navy);
  padding: clamp(16px, 2.5vw, 24px) clamp(16px, 2.5vw, 24px);
  border-top: 3px solid var(--dkt-gold);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.director-credentials__row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.director-credentials__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dkt-gold);
  margin-bottom: 2px;
}
.director-credentials__row span:not(.director-credentials__label) {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.director-credentials__linkedin {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.director-credentials__linkedin:hover {
  color: var(--dkt-gold);
}

.director-profile h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 8px;
}
.director-profile h4 {
  margin-top: 28px;
  margin-bottom: 12px;
}
.director-profile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}
.director-profile ul li {
  position: relative;
  padding-left: 18px;
  color: var(--dkt-text-muted);
}
.director-profile ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--dkt-blue);
}
.director-profile__direct-link {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--dkt-bg-soft);
  border-left: 3px solid var(--dkt-navy);
  font-size: 0.86rem;
  color: var(--dkt-text-muted);
  word-break: break-all;
}
.director-profile__direct-link strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dkt-blue);
  margin-bottom: 6px;
  font-weight: 600;
}

/* Pull-quote pattern for hero variant -------------------------------------- */
.hero__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  width: 100%;
}
@media (max-width: 880px) { .hero__columns { grid-template-columns: 1fr; } }
.hero__sidekick {
  border-left: 2px solid rgba(255,255,255,0.4);
  padding-left: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 38ch;
}

/* ==========================================================================
   Restructured header — utility bar + logo box + nav + search + Get in Touch
   Added in response to the design refresh.
   ========================================================================== */

/* Utility bar (replaces the old .topbar; thin dark strip above header) ----- */
.utility-bar {
  background: var(--dkt-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  gap: 16px;
}
.utility-bar a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}
.utility-bar a:hover { color: var(--dkt-white); }
.utility-bar__left,
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.utility-bar__sep { opacity: 0.5; }
.utility-bar__loc::before {
  content: "●";
  color: var(--dkt-blue-light);
  margin-right: 8px;
  font-size: 0.7em;
  vertical-align: middle;
}
@media (max-width: 720px) {
  .utility-bar { font-size: 0.7rem; }
  .utility-bar__inner { padding-block: 8px; }
}

/* Logo box (DKT navy square mark beside wordmark) -------------------------- */
.brand {
  display: flex;
  flex-direction: row;            /* override the older column rule */
  align-items: center;
  gap: 14px;
  text-decoration: none;
  line-height: 1.2;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--dkt-navy);
  color: var(--dkt-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dkt-navy);
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dkt-blue);
  margin-top: 4px;
}

/* Header actions (search + Get in Touch) ---------------------------------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-toggle {
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--dkt-navy);
  display: inline-flex;
  align-items: center;
  transition: color 200ms ease;
}
.search-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-toggle:hover { color: var(--dkt-blue); }

.btn-touch {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--dkt-navy);
  color: var(--dkt-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
  border: 1px solid var(--dkt-navy);
}
.btn-touch:hover {
  background: var(--dkt-navy-dark);
  color: var(--dkt-white);
}

/* Site header now needs to be position:relative so the search overlay
   can absolute-position itself directly underneath. */
.site-header { position: sticky; }

/* Search overlay (drops down under the header when search icon clicked) -- */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dkt-white);
  border-bottom: 1px solid var(--dkt-gray-light);
  box-shadow: var(--shadow-md);
  z-index: 60;
}
.search-overlay__form {
  padding: 20px 0;
}
.search-overlay__form .container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-overlay input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--dkt-gray-light);
  font: inherit;
  background: var(--dkt-bg-soft);
}
.search-overlay input:focus {
  outline: 0;
  border-color: var(--dkt-navy);
  background: var(--dkt-white);
}
.search-overlay button {
  background: var(--dkt-navy);
  color: var(--dkt-white);
  border: 0;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}
.search-overlay button:hover { background: var(--dkt-navy-dark); }
.search-overlay__close {
  background: transparent !important;
  color: var(--dkt-text-muted) !important;
  padding: 14px !important;
  font-size: 1.2rem;
}

/* Mobile collapse: hide Get in Touch label, keep only icon group + nav-toggle */
@media (max-width: 960px) {
  .btn-touch { padding: 10px 16px; font-size: 0.72rem; letter-spacing: 0.12em; }
  .brand-name { font-size: 0.95rem; }
  .brand-sub  { display: none; }
}
@media (max-width: 600px) {
  .header-actions .btn-touch { display: none; }
}

/* ==========================================================================
   Cookie consent banner + preferences modal (CONSENT-1)
   Uses brand vars defined at the top of this stylesheet.
   ========================================================================== */
.dkt-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: var(--dkt-white);
  border: 1px solid var(--dkt-gray-light);
  border-top: 3px solid var(--dkt-navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.2, 0, 0, 1), opacity 240ms ease;
  pointer-events: none;
  max-width: 1280px;
  margin: 0 auto;
}
.dkt-consent-banner.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.dkt-consent-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 3vw, 32px);
}
.dkt-consent-banner__copy {
  flex: 1 1 360px;
  min-width: 280px;
}
.dkt-consent-banner__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dkt-navy);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.dkt-consent-banner__text {
  margin: 0;
  color: var(--dkt-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.dkt-consent-banner__text a {
  color: var(--dkt-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dkt-consent-banner__text a:hover { color: var(--dkt-blue); }
.dkt-consent-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons (shared by banner + modal) */
.dkt-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--dkt-navy);
  background: transparent;
  color: var(--dkt-navy);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.dkt-consent-btn:hover { background: var(--dkt-navy); color: var(--dkt-white); }
.dkt-consent-btn--primary { background: var(--dkt-navy); color: var(--dkt-white); }
.dkt-consent-btn--primary:hover { background: var(--dkt-navy-dark); border-color: var(--dkt-navy-dark); }
.dkt-consent-btn--ghost { background: transparent; }

/* Modal -------------------------------------------------------------------- */
.dkt-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 220ms ease;
}
.dkt-consent-modal.is-open { opacity: 1; }
.dkt-consent-modal[hidden] { display: none; }
.dkt-consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 17, 35, 0.55);
  backdrop-filter: blur(2px);
}
.dkt-consent-modal__card {
  position: relative;
  background: var(--dkt-white);
  width: min(640px, 100%);
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--dkt-navy);
  transform: translateY(8px);
  transition: transform 220ms cubic-bezier(0.2, 0, 0, 1);
}
.dkt-consent-modal.is-open .dkt-consent-modal__card { transform: translateY(0); }
.dkt-consent-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--dkt-gray-light);
}
.dkt-consent-modal__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dkt-navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.dkt-consent-modal__close {
  background: transparent;
  border: 0;
  color: var(--dkt-text-muted);
  padding: 6px;
  cursor: pointer;
  transition: color var(--transition);
}
.dkt-consent-modal__close:hover { color: var(--dkt-navy); }
.dkt-consent-modal__close svg { width: 22px; height: 22px; display: block; }
.dkt-consent-modal__body {
  padding: 20px 28px 8px;
  overflow-y: auto;
}
.dkt-consent-modal__intro {
  color: var(--dkt-text-muted);
  font-size: 0.92rem;
  margin: 0 0 20px;
  line-height: 1.55;
}
.dkt-consent-modal__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--dkt-gray-light);
  background: var(--dkt-bg-soft);
}

/* Category rows ------------------------------------------------------------ */
.dkt-consent-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--dkt-gray-light);
}
.dkt-consent-row:last-child { border-bottom: 0; }
.dkt-consent-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.dkt-consent-row__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dkt-navy);
  margin: 0;
}
.dkt-consent-row__copy {
  margin: 0;
  color: var(--dkt-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.dkt-consent-row__locked {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dkt-blue);
  background: var(--dkt-bg-soft);
  border: 1px solid var(--dkt-gray-light);
  padding: 4px 10px;
  white-space: nowrap;
}

/* Toggle switch ------------------------------------------------------------ */
.dkt-consent-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.dkt-consent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.dkt-consent-toggle__track {
  width: 44px;
  height: 24px;
  background: var(--dkt-gray);
  border-radius: 999px;
  position: relative;
  transition: background var(--transition);
}
.dkt-consent-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--dkt-white);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
}
.dkt-consent-toggle input:checked + .dkt-consent-toggle__track { background: var(--dkt-navy); }
.dkt-consent-toggle input:checked + .dkt-consent-toggle__track .dkt-consent-toggle__thumb { transform: translateX(20px); }
.dkt-consent-toggle input:focus-visible + .dkt-consent-toggle__track {
  outline: 2px solid var(--dkt-blue-light);
  outline-offset: 2px;
}
.dkt-consent-toggle__sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Footer "Cookie settings" link styled as a plain text button -------------- */
.footer-policies__btn {
  background: transparent;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-policies__btn:hover { color: var(--dkt-white); }

/* Responsive --------------------------------------------------------------- */
@media (max-width: 720px) {
  .dkt-consent-banner { left: 8px; right: 8px; bottom: 8px; }
  .dkt-consent-banner__inner { padding: 20px; gap: 16px; }
  .dkt-consent-banner__actions { width: 100%; }
  .dkt-consent-banner__actions .dkt-consent-btn { flex: 1 1 calc(50% - 5px); }
  .dkt-consent-banner__actions .dkt-consent-btn[data-action="customise"] { flex: 1 1 100%; order: 3; }
  .dkt-consent-modal__head { padding: 18px 20px 12px; }
  .dkt-consent-modal__body { padding: 16px 20px 4px; }
  .dkt-consent-modal__foot { padding: 14px 20px 18px; }
  .dkt-consent-modal__foot .dkt-consent-btn { flex: 1 1 100%; }
}


/* ==========================================================================
   Scroll-reveal animations
   --------------------------------------------------------------------------
   Sections, headings, cards and split-layout columns fade & slide into view
   as the user scrolls. The initial "hidden" state only applies when the JS
   sentinel class `js-reveal` is on <html>, so non-JS / failed-load users get
   the fully-rendered page. Per-element staggers are set as an inline
   `--reveal-delay` custom property by scroll-reveal.js. The whole system
   respects `prefers-reduced-motion`.
   ========================================================================== */

html.js-reveal .stats > .stat,
html.js-reveal .section-head,
html.js-reveal .feature-row > *,
html.js-reveal .split > *,
html.js-reveal .grid > *,
html.js-reveal .cta-banner > .container > *,
html.js-reveal .article-body > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity   420ms cubic-bezier(0.2, 0, 0, 1) var(--reveal-delay, 0ms),
    transform 420ms cubic-bezier(0.2, 0, 0, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.js-reveal .feature-row > *:first-child,
html.js-reveal .split > *:first-child {
  transform: translate3d(-20px, 0, 0);
}
html.js-reveal .feature-row > *:last-child:not(:first-child),
html.js-reveal .split > *:last-child:not(:first-child) {
  transform: translate3d(20px, 0, 0);
}

html.js-reveal .feature-row.feature-row--reverse > *:first-child {
  transform: translate3d(20px, 0, 0);
}
html.js-reveal .feature-row.feature-row--reverse > *:last-child:not(:first-child) {
  transform: translate3d(-20px, 0, 0);
}

html.js-reveal .stats > .stat.is-visible,
html.js-reveal .section-head.is-visible,
html.js-reveal .feature-row > *.is-visible,
html.js-reveal .split > *.is-visible,
html.js-reveal .grid > *.is-visible,
html.js-reveal .cta-banner > .container > *.is-visible,
html.js-reveal .article-body > *.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .stats > .stat,
  html.js-reveal .section-head,
  html.js-reveal .feature-row > *,
  html.js-reveal .split > *,
  html.js-reveal .grid > *,
  html.js-reveal .cta-banner > .container > *,
  html.js-reveal .article-body > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── What Clients Say (quoted reviews — no schema) ──────────── */
.reviews-section { background: var(--dkt-white); }
.reviews-section h2 { margin-bottom: 1.6rem; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.review-card {
  margin: 0;
  padding: 1.5rem 1.6rem;
  background: var(--dkt-bg-soft);
  border-left: 3px solid var(--dkt-navy);
}
.review-card__quote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--dkt-text);
}
.review-card__attrib {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--dkt-text-muted);
}
.reviews__link { margin-top: 1.6rem; font-size: 0.9rem; }
.reviews__link a { font-weight: 600; }

/* ─── Google Rating Bar ───────────────────────────────────────── */
.google-rating-bar {
  background: #f5f3ee;
  border-bottom: 1px solid #e8e4dc;
  padding: 0.55rem 0;
  text-align: center;
}
.google-rating-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: #03396a;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.google-rating-bar__link:hover { text-decoration: underline; }
.google-rating-bar__stars { color: #f4b400; font-size: 0.9rem; letter-spacing: 0.05em; }
.google-rating-bar__score { font-weight: 700; }
.google-rating-bar__label { opacity: 0.72; }

/* ─── Related Articles (practice area pages) ─────────────────── */
.related-articles { padding: 4rem 0 3.5rem; background: var(--dkt-bg-soft); }
.related-articles__list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.related-article-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e8e4dc;
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.related-article-link:hover {
  border-color: #03396a;
  box-shadow: 0 2px 8px rgba(3,57,106,0.08);
}
.related-article-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #03396a;
  line-height: 1.4;
}
.related-article-desc {
  font-size: 0.82rem;
  color: #5a5a5a;
  line-height: 1.5;
}

/* ── FAQ Section ────────────────────────────────────────── */
.faq-section {
    background: var(--dkt-bg-soft, #f8f6f1);
    padding: 4rem 0;
}
.faq-section .section-head__title {
    margin-bottom: 2.5rem;
}
.faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem 0;
}
.faq__item:last-child {
    border-bottom: none;
}
.faq__question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dkt-navy, #1a2b4a);
    margin: 0 0 0.6rem;
    line-height: 1.4;
}
.faq__answer {
    font-size: 0.95rem;
    color: var(--dkt-text, #333);
    line-height: 1.7;
    margin: 0;
    max-width: 72ch;
}

/* FAQ accordion (2026-07-10) ------------------------------------------------ */
details.faq__item > summary.faq__question {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  user-select: none;
}
details.faq__item > summary.faq__question::-webkit-details-marker { display: none; }
details.faq__item > summary.faq__question::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3em;
  font-weight: 400;
  color: var(--dkt-blue);
  transition: transform 0.2s;
}
details[open].faq__item > summary.faq__question::after { content: "\2212"; }
details.faq__item > .faq__answer { margin-top: 10px; }

/* Recovered rules — lost in the styles.css truncation, rebuilt 2026-07-10 ---- */
.section--dark {
  background: linear-gradient(135deg, var(--dkt-navy-dark) 0%, var(--dkt-navy) 100%);
  color: var(--dkt-white);
}
.section--dark h2, .section--dark h3 { color: var(--dkt-white); }
.section--dark .eyebrow { color: var(--dkt-blue-light); }
.section-sub {
  color: var(--dkt-text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 10px 0 0;
}
.related-articles__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--dkt-navy);
  margin: 0 0 22px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.form { display: block; }

/* Real brand logo in header (2026-07-10; enlarged 2026-07-12 — the lockup's
   small "DE KLERK TURNER / ATTORNEYS · NOTARIES" lines were unreadable at 46px) */
.brand-img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 700px) {
  .brand-img { height: 42px; }
}

/* Sticky sidebar only makes sense in two-column layout */
@media (max-width: 900px) {
  .director-sidebar { position: static; }
}

/* ─── HERO SIZING CONVENTION (2026-07-12, supersedes 2026-07-11 patch) ──────
   One convention, three tiers. Hero height comes from the TIER, never from
   how much text a page happens to carry:
     Tier 1  Homepage (.hero, photo)                      clamp(420px, 58vh, 600px)
     Tier 2  Inner pages + articles (--page / --article)  clamp(400px, 44vh, 480px)
     Tier 3  Policy/utility (--slim)                      clamp(200px, 24vh, 280px)
   All tiers centre their text vertically; headline size is fixed per tier
   regardless of which class combo the page uses.
   Tier 2 band is sized to CONTAIN the tallest content stack (breadcrumb +
   eyebrow + 2-line headline + 4-line sub ≈ 400px at desktop) so heroes stop
   growing around their text — that containment is what makes them equal. */
.hero--page,
.hero--article {
  min-height: clamp(400px, 44vh, 480px);
  align-items: center;
  padding-bottom: 0;
}
.hero--page .hero__inner,
.hero--article .hero__inner { padding-block: clamp(28px, 4vw, 48px); }
.hero--page .hero__headline,
.hero--article .hero__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 26ch;
  margin-bottom: 22px;
}
.hero--page .hero__sub,
.hero--article .hero__sub {
  font-size: 1.05rem;
  max-width: 58ch;
  margin-bottom: 0;
}
.hero--slim {
  min-height: clamp(200px, 24vh, 280px);
  align-items: center;
}
.hero--slim .hero__inner { padding-block: clamp(24px, 4vw, 40px); }
.hero--slim .hero__headline { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.hero--slim .hero__sub { margin-bottom: 0; }

/* Tables scroll sideways on small screens instead of breaking layout */
.article-body table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
