/* ============================================================
   KOFMAN LEGAL — V3 multi-page layer
   Loaded AFTER style.css (v2 component base).
   This file adds the real page shell: sticky cream header with
   click-to-call, mobile hamburger nav, page rails, contact form,
   balanced practice grid, and a fixed 4-column footer.
   It deliberately does NOT use !important resets on containers.
   ============================================================ */

:root {
  --kl-rail: 1100px;
  --kl-gutter: 48px;
  --kl-header-h: 76px;
}

html { scroll-padding-top: calc(var(--kl-header-h) + 16px); }

body.kl-page {
  background: var(--warm-white);
}

/* ------------------------------------------------------------
   Shared rails
   ------------------------------------------------------------ */
.kl-section {
  padding: 72px var(--kl-gutter);
}
.kl-section--tight { padding-top: 40px; }
.kl-section--flush-bottom { padding-bottom: 32px; }
.kl-section--cream { background: var(--cream); }
.kl-section--light { background: var(--warm-white); }
.kl-section--white { background: var(--white); }
.kl-section__inner {
  max-width: var(--kl-rail);
  margin: 0 auto;
}
.kl-section__inner--narrow { max-width: 820px; }

/* Section heading + gold rule motif */
.kl-section .mock-section__title,
.kl-head__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  color: #1c1c1c;
  text-align: center;
  max-width: var(--kl-rail);
  margin: 0 auto 32px auto;
  letter-spacing: -0.005em;
}
.kl-section .mock-section__title::before,
.kl-head__title::before {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 18px auto;
}
.kl-head--left .kl-head__title,
.kl-head__title--left,
.kl-section .mock-section__title--left {
  text-align: left;
  margin-left: 0;
}
.kl-head--left .kl-head__title::before,
.kl-head__title--left::before,
.kl-section .mock-section__title--left::before {
  margin-left: 0;
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.kl-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--light-border);
}
/* Homepage header: solid cream, identical treatment to interior pages (v2 style) */
.kl-header__inner {
  /* v2 parity: full-width row, 32px padding from viewport edges, no centred rail */
  max-width: none;
  margin: 0;
  min-height: var(--kl-header-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.kl-header__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 18px 0;
}
.kl-header__brand img {
  height: 28px;
  width: auto;
  display: block;
}
.kl-header__right {
  display: flex;
  align-items: center;
  gap: 0;
}

/* contact line removed — nav CTA carries the contact action */
.kl-contactline { display: none; }

/* nav */
.kl-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kl-nav__list > li { position: relative; }
.kl-nav__list a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-text);
  text-decoration: none;
  display: inline-block;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.kl-nav__list a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.kl-nav__list a[aria-current="page"] {
  color: var(--gold-text);
  border-bottom-color: var(--gold);
}
.kl-nav__cta a {
  color: #8a6a2f;
  font-weight: 300;
  border: 1px solid var(--gold);
  padding: 8px 18px;
  letter-spacing: 0;
  font-size: 13.5px;
}
.kl-nav__cta a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* services dropdown */
.kl-nav__toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.kl-nav__caret { font-size: 10px; line-height: 1; opacity: 0.75; margin-left: 5px; display: inline-block; transform: translateY(-1px); }
.kl-nav__menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 250px;
  background: var(--warm-white);
  border: 1px solid var(--card-border);
  padding: 8px 0;
  list-style: none;
  margin: 6px 0 0 0;
  box-shadow: 0 10px 28px rgba(28,28,28,0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 30;
}
.kl-nav__item--has-menu:hover .kl-nav__menu,
.kl-nav__item--has-menu:focus-within .kl-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
.kl-nav__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  border-bottom: 0;
}
.kl-nav__menu a:hover { background: rgba(196,146,74,0.10); border-bottom: 0; }

/* hamburger */
.kl-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--light-border);
  cursor: pointer;
  padding: 0;
}
.kl-burger__box { position: relative; width: 20px; height: 14px; display: block; }
.kl-burger__box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #1c1c1c;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.kl-burger__box span:nth-child(1) { top: 0; }
.kl-burger__box span:nth-child(2) { top: 6.25px; }
.kl-burger__box span:nth-child(3) { top: 12.5px; }
.kl-burger[aria-expanded="true"] .kl-burger__box span:nth-child(1) { top: 6.25px; transform: rotate(45deg); }
.kl-burger[aria-expanded="true"] .kl-burger__box span:nth-child(2) { opacity: 0; }
.kl-burger[aria-expanded="true"] .kl-burger__box span:nth-child(3) { top: 6.25px; transform: rotate(-45deg); }

/* ------------------------------------------------------------
   Hero (homepage) — full bleed image, content on the rail
   ------------------------------------------------------------ */
.kl-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1537 / 1023;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-charcoal);
}
.kl-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.9) brightness(0.97);
}
/* v2 overlay: light darkening at top so the eyebrow reads; water/walkway untouched */
.kl-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,25,0.42) 0%, rgba(10,15,25,0.15) 35%, rgba(10,15,25,0) 60%, rgba(10,15,25,0.05) 100%);
}
.kl-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--kl-rail) + var(--kl-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--kl-gutter) 84px;
}
.kl-hero__content { max-width: 700px; }
.kl-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E6C98A;
  margin-bottom: 20px;
  white-space: nowrap;
  text-shadow: 0 0 6px rgba(10,15,25,0.95), 0 1px 3px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.75);
}
.kl-hero__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.7);
}
.kl-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,246,235,0.96);
  margin: 0 0 30px 0;
  max-width: 620px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,0.7);
}
/* Sentence-case editorial CTA: hairline gold border, Inter Light. */
.kl-hero__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  color: #E6C98A;
  border: 1px solid #E6C98A;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.kl-hero__cta:hover {
  background: #E6C98A;
  color: var(--dark-charcoal);
  text-shadow: none;
}

/* ------------------------------------------------------------
   Homepage intro paragraph — reset the v2 !important padding
   ------------------------------------------------------------ */
.kl-intro {
  background: var(--warm-white);
  padding: 64px var(--kl-gutter) 8px !important;
}
.kl-intro__inner { max-width: var(--kl-rail); margin: 0 auto; }
.kl-intro__text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: #3a3a3a;
  letter-spacing: 0.005em;
  margin: 0;
  max-width: 880px;
}
.kl-intro__text strong { font-weight: 700; color: #1c1c1c; }

/* ------------------------------------------------------------
   Practice grid — balanced: full-width lead + 2x2 + wide 5th
   ------------------------------------------------------------ */
.kl-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.kl-practice-grid .hp-practice-card__desc { font-size: 14px; line-height: 1.7; }
.kl-practice-grid .hp-practice-card__title { font-size: 23px; }
.kl-practice-grid .hp-practice-card__label { font-size: 10.5px; }
.kl-practice-grid .hp-practice-card__content { padding: 30px 30px 28px; }
/* legacy wide-card kept for reference; on the homepage we now use a 3-col grid */
.hp-practice-card--wide { grid-column: auto; }
.hp-practice-card--wide .hp-practice-card__content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
.hp-practice-card--wide .hp-practice-card__desc { margin-bottom: 14px; }
.kl-practice-lead__desc-wrap { display: block; }

/* lead card sizing at full width */
.hp-practice-lead { padding: 44px 48px; }
.hp-practice-lead__desc { font-size: 16px; line-height: 1.72; max-width: 820px; }
.hp-practice-lead__title { font-size: 32px; }

/* ------------------------------------------------------------
   Selected experience proof block
   ------------------------------------------------------------ */
.kl-proof { background: var(--warm-white); }
.kl-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.kl-proof__card {
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.kl-proof__card::before {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}
.kl-proof__label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6a2f;
  margin-bottom: 12px;
}
.kl-proof__text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0 0 20px 0;
  letter-spacing: 0.005em;
}
.kl-proof__link {
  margin-top: auto;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #8a6a2f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.kl-proof__link::after { content: ' \2192'; }
.kl-proof__link:hover { color: #1c1c1c; border-bottom-color: currentColor; }
.kl-proof__label--link,
.kl-proof__text--link {
  cursor: pointer;
  transition: color 0.2s ease;
}
.kl-proof__label--link:hover {
  color: #1c1c1c;
}
.kl-proof__text--link:hover {
  color: #1c1c1c;
}
.kl-proof__more {
  text-align: center;
  margin-top: 36px;
}
.kl-proof__more a {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6a2f;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.kl-proof__more a:hover { color: #1c1c1c; border-bottom-color: #1c1c1c; }
.kl-proof__note {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #8a8580;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.01em;
  font-style: italic;
}

/* ------------------------------------------------------------
   Full-bleed bands — marble banner, contact CTA
   ------------------------------------------------------------ */
.hp-marble-quote { padding: 96px var(--kl-gutter); }
.hp-marble-quote__heading { font-size: 48px; }
.hp-marble-quote__text { font-size: 30px; }

.hp-contact-cta { padding: 88px var(--kl-gutter); }
.hp-contact-cta__inner { max-width: 620px; }
.hp-contact-cta__title { font-size: 34px; margin-bottom: 14px; }
.hp-contact-cta__subtitle { font-size: 15.5px; margin-bottom: 34px; }
.hp-contact-cta__btn { font-size: 12.5px; padding: 14px 28px; letter-spacing: 0.06em; }

/* ------------------------------------------------------------
   About-firm / why cards / how-we-work at full width
   ------------------------------------------------------------ */
.kl-about-firm { background: var(--cream); padding: 88px var(--kl-gutter) 56px; }
.kl-about-firm__inner { max-width: var(--kl-rail); margin: 0 auto; }
.kl-about-firm__text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0 0 20px 0;
  letter-spacing: 0.005em;
}
.kl-about-firm__text strong { font-weight: 700; color: #1c1c1c; }
.kl-about-firm__text:last-child { margin-bottom: 0; }

.kl-why { background: var(--cream); padding: 24px var(--kl-gutter) 64px; }
.kl-why__grid {
  max-width: var(--kl-rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}
.kl-why__grid .hp-why-card__title { font-size: 18px; }
.kl-why__grid .hp-why-card__text { font-size: 16px; line-height: 1.78; }

.kl-steps { background: var(--cream); padding: 24px var(--kl-gutter) 88px; }
.kl-steps__inner { max-width: var(--kl-rail); margin: 0 auto; }
.kl-steps .mock-steps { max-width: var(--kl-rail); margin: 0 auto; }
.kl-steps .mock-step__number {
  background: var(--cream);
  width: 60px;
  height: 60px;
  font-size: 24px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.kl-steps .mock-step { cursor: default; }
.kl-steps .mock-step:hover .mock-step__number,
.kl-steps .mock-step:focus-within .mock-step__number {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.kl-steps .mock-step__title {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
}
.kl-steps .mock-step__text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
  max-width: 260px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   Recent experience strip at full width
   ------------------------------------------------------------ */
.kl-recent { background: var(--cream); padding: 76px var(--kl-gutter); }
.kl-recent__inner { max-width: var(--kl-rail); margin: 0 auto; }
.kl-recent__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  row-gap: 16px;
  max-width: 1000px;
}
.kl-recent__list li {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: #3a3a3a;
  padding-left: 20px;
  position: relative;
  letter-spacing: 0.005em;
}
.kl-recent__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ------------------------------------------------------------
   Practice-area pages
   ------------------------------------------------------------ */
.practice-hero { min-height: 420px; }
.practice-hero__content {
  width: 100%;
  max-width: calc(var(--kl-rail) + var(--kl-gutter) * 2);
  margin: 0 auto;
  padding: 80px var(--kl-gutter) 64px;
}
.practice-hero__content > * { max-width: 760px; }
.practice-hero__title { font-size: 50px; }
.practice-hero__intro { font-size: 17px; max-width: 700px; }

.kl-practice-body { background: var(--warm-white); padding: 72px var(--kl-gutter); }
.kl-practice-body__inner { max-width: 820px; margin: 0 auto; }
.kl-practice-body__inner--wide { max-width: var(--kl-rail); }
.practice-body { max-width: 820px; padding: 0 0 40px; }

/* sibling practice navigation */
.kl-also {
  background: var(--warm-white);
  padding: 8px var(--kl-gutter) 76px;
}
.kl-also__inner { max-width: var(--kl-rail); margin: 0 auto; }
.kl-also__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.kl-also__list a {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--card-border);
  background: var(--white);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: #1c1c1c;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.kl-also__list a:hover { border-color: var(--gold); transform: translateY(-2px); }

/* FAQ placeholder block */
.kl-faq { background: var(--cream); padding: 72px var(--kl-gutter); }
.kl-faq__inner { max-width: 820px; margin: 0 auto; }
.kl-faq__note {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6a2f;
  margin-bottom: 16px;
}
.kl-faq__item {
  border: 1px dashed var(--card-border);
  background: var(--warm-white);
  padding: 22px 24px;
  margin-bottom: 14px;
}
.kl-faq__q {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 21px;
  color: #1c1c1c;
  margin: 0 0 8px 0;
}
.kl-faq__a {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #7a746a;
  font-style: italic;
  margin: 0;
}

/* ------------------------------------------------------------
   Services landing grid
   ------------------------------------------------------------ */
.kl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kl-services-grid .hp-practice-card__title { font-size: 22px; }
.kl-services-grid .hp-practice-card__desc { font-size: 14px; line-height: 1.7; }
.kl-services-grid .hp-practice-card__content { padding: 28px 26px; }

/* ------------------------------------------------------------
   People / experience / insights / careers at full width
   ------------------------------------------------------------ */
.about-team { background: var(--warm-white); padding: 76px var(--kl-gutter); }
.kl-people__inner { max-width: var(--kl-rail); margin: 0 auto; }
.about-member { grid-template-columns: 300px 1fr; gap: 56px; }
.about-member__name { font-size: 32px; }
.about-member__role { font-size: 13.5px; margin-bottom: 24px; }
.about-member__bio p { font-size: 16px; line-height: 1.78; font-weight: 400; color: #3a3a3a; margin-bottom: 16px; }
.about-member__cred-label { font-size: 11.5px; }
.about-member__cred-items span { font-size: 14px; line-height: 1.6; color: #4a4a4a; }
.about-member__section { margin-top: 32px; }
.about-member__section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1c1c1c;
  margin-bottom: 14px;
}
.about-publications { list-style: none; padding: 0; margin: 0; }
.about-publications li {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a4a;
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: 1px solid rgba(28,28,28,0.06);
}
.about-publications li:last-child { border-bottom: none; }
.about-publications li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.kl-experience { background: var(--warm-white); padding: 9px var(--kl-gutter) 64px; }
.experience-hero { padding: 0; max-width: none; }
.experience-block { padding: 36px var(--kl-gutter); max-width: calc(var(--kl-rail) + var(--kl-gutter) * 2); }

.insights-hero { padding: 80px var(--kl-gutter); }
.insights-hero__inner { max-width: var(--kl-rail); margin: 0 auto; }
.insights-hero__title { font-size: 48px; margin-bottom: 14px; }
.insights-hero__subtitle { font-size: 16.5px; font-weight: 400; max-width: 620px; }
.insights-filters { padding: 20px var(--kl-gutter); }
.insights-filters__inner { max-width: var(--kl-rail); margin: 0 auto; }
.insights-filter { min-height: 40px; font-size: 13px; }
.insights-grid-wrap { padding: 56px var(--kl-gutter) 88px; }
.insights-grid { max-width: var(--kl-rail); margin: 0 auto; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.kl-careers { background: var(--warm-white); padding: 72px var(--kl-gutter) 96px; }
.careers-page { max-width: 760px; padding: 0; }
.careers-page__intro { font-size: 16.5px; line-height: 1.8; }

/* ------------------------------------------------------------
   Contact page + confidential enquiry form
   ------------------------------------------------------------ */
.kl-contact { background: var(--warm-white); padding: 72px var(--kl-gutter) 96px; }
.kl-contact__inner {
  max-width: var(--kl-rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
}
.kl-form { display: block; }
.kl-form__field { display: block; margin-bottom: 22px; }
.kl-form__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1c1c1c;
  margin-bottom: 8px;
}
.kl-form__field input,
.kl-form__field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 13px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: #1c1c1c;
  outline: none;
  transition: border-color 0.2s ease;
  min-height: 48px;
}
.kl-form__field textarea { min-height: 96px; resize: vertical; line-height: 1.6; }
.kl-form__field input:focus,
.kl-form__field textarea:focus { border-color: var(--gold); }
/* Sentence-case editorial submit: hairline gold border, Inter Light, ink text. */
.kl-form__submit {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0;
  color: #1c1c1c;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 14px 28px;
  min-height: 48px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-radius: 0;
}
.kl-form__submit:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.kl-form__note {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #6b6b6b;
  margin: 20px 0 0 0;
  max-width: 480px;
}
.kl-contact__aside { border-left: 1px solid var(--light-border); padding-left: 48px; }
.kl-contact__aside-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6a2f;
  margin: 0 0 14px 0;
}
.kl-contact__aside-body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: #3a3a3a;
  font-style: normal;
  margin: 0 0 32px 0;
}
.kl-contact__aside-body a { color: #3a3a3a; text-decoration: none; border-bottom: 1px solid rgba(196,146,74,0.35); transition: border-color 0.2s ease, color 0.2s ease; }
.kl-contact__aside-body a:hover { color: var(--gold); border-bottom-color: var(--gold); }
/* Page heroes match Insights dark treatment: ink background, light text, gold label. */
.kl-page-hero {
  background: var(--dark-charcoal);
  border-bottom: 0;
  padding: 76px var(--kl-gutter) 60px;
}
.kl-page-hero__inner {
  max-width: var(--kl-rail);
  margin: 0 auto;
}
.kl-page-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-bottom: 16px;
}
.kl-page-hero__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.12;
  color: var(--text-on-dark);
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}
.kl-page-hero__intro {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  margin: 0;
  max-width: 760px;
  letter-spacing: 0.005em;
}
.kl-page-hero__intro-accent {
  color: var(--gold-on-dark);
  font-weight: 500;
}

/* ------------------------------------------------------------
   Footer — restore the 4-column grid, cream logo, AA contrast
   ------------------------------------------------------------ */
.site-footer { padding: 72px var(--kl-gutter) 28px; }
.site-footer__grid {
  grid-template-columns: 1.1fr 0.9fr 1.2fr 1.5fr;
  gap: 56px;
  max-width: 1340px;
  padding-bottom: 44px;
}
.site-footer__bottom { max-width: 1340px; }
/* Right-align the KOFMAN LEGAL logo and 'Independent, by design.' tagline
   to the same edge — both flush right within the brand column. */
.site-footer__col--brand,
.site-footer__col--logo {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.site-footer__col--brand .site-footer__logo,
.site-footer__col--logo .site-footer__logo {
  height: 30px;
  margin-bottom: 16px;
  display: block;
}
.site-footer__tagline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 17px;
  color: rgba(244,241,234,0.78);
  margin: 0;
  text-align: right;
}
@media (max-width: 900px) {
  /* On mobile, revert to left-align so the footer stays coherent when stacked */
  .site-footer__col--brand,
  .site-footer__col--logo { text-align: left; align-items: flex-start; }
  .site-footer__tagline { text-align: left; }
}
.site-footer__heading { color: rgba(244,241,234,0.72); }
.site-footer__field-label { color: rgba(244,241,234,0.86); font-size: 11px; }
.site-footer__field input {
  border-color: rgba(244,241,234,0.45);
  color: #fff;
  min-height: 44px;
}
.site-footer__field input::placeholder { color: rgba(244,241,234,0.7); }
/* Sentence-case editorial footer submit: hairline gold border, Inter Light, cream text. */
.site-footer__submit {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
  color: rgba(244,241,234,0.94);
  background: transparent;
  border: 1px solid var(--gold);
  min-height: 44px;
  padding: 11px 22px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.site-footer__submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.site-footer__links a, .site-footer__address a { color: rgba(244,241,234,0.94); }
.site-footer__blurb { color: rgba(244,241,234,0.8); }
.site-footer__meta {
  color: rgba(244,241,234,0.82);
  font-size: 14px; /* ~10.5pt */
  line-height: 1.5;
  margin: 0;
}
.site-footer__meta--liability {
  color: rgba(244,241,234,0.9);
  font-size: 14px;
  font-weight: 500;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,234,0.14);
}
@media (max-width: 640px) {
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
.site-footer__phone {
  display: block;
  margin-top: 4px;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1080px) {
  :root { --kl-gutter: 32px; }
  .kl-proof__grid { grid-template-columns: 1fr; gap: 20px; }
  .kl-services-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .kl-why__grid { grid-template-columns: 1fr; gap: 32px; }
  .kl-also__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .kl-contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .kl-contact__aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--light-border); padding-top: 36px; }
  .about-member { grid-template-columns: 1fr; gap: 32px; }
  .about-member__photo { max-width: 280px; }
  .hp-practice-card--wide .hp-practice-card__content { grid-template-columns: 1fr; gap: 16px; }
  .kl-steps .mock-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .kl-steps .mock-steps::before { display: none; }
}

/* mobile-only header affordances, hidden by default at desktop */
.kl-mobile-contact { display: none; }
.kl-header__call { display: none; }

/* Mobile nav */
@media (max-width: 900px) {
  .kl-burger { display: inline-flex; }
  .kl-header__inner { min-height: 72px; padding: 0 24px; gap: 12px; }
  .kl-header__brand img { height: 22px; }
  .kl-header__right { flex-direction: row; align-items: center; gap: 14px; }
  .kl-header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--light-border);
    box-shadow: 0 16px 32px rgba(28,28,28,0.10);
    padding: 8px 24px 28px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    display: none;
  }
  .kl-header__nav.is-open { display: block; }
  .kl-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .kl-nav__list > li { border-bottom: 1px solid var(--light-border); }
  .kl-nav__list > li:last-child { border-bottom: 0; }
  .kl-nav__list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    font-size: 16px;
    padding: 6px 0;
    border-bottom: 0;
  }
  .kl-nav__list a:hover { border-bottom: 0; }
  .kl-nav__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    margin: 0 0 10px 0;
    padding: 0 0 6px 0;
    min-width: 0;
    border-left: 1px solid var(--gold);
  }
  .kl-nav__menu a { min-height: 46px; font-size: 14.5px; padding: 4px 0 4px 16px; color: #5c574e; }
  .kl-nav__caret { display: none; }
  .kl-nav__cta { padding-top: 16px; }
  .kl-nav__cta a {
    justify-content: center;
    min-height: 50px;
    font-size: 15px;
    border: 1px solid var(--gold);
  }
  .kl-contactline { display: none; }
  .kl-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--light-border);
    margin-top: 16px;
  }
  .kl-mobile-contact a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #3a3a3a;
    text-decoration: none;
  }
  .kl-header__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #3a3a3a;
    border: 1px solid var(--light-border);
    text-decoration: none;
  }
  html { scroll-padding-top: 88px; }
}

@media (max-width: 768px) {
  .kl-hero { height: auto; min-height: 0; }
  .kl-hero__inner { padding: 200px 24px 48px; }
  .kl-hero__label { white-space: normal; font-size: 11px; letter-spacing: 0.14em; margin-bottom: 16px; }
  .kl-hero__title { font-size: 36px; }
  .kl-hero__subtitle { font-size: 15.5px; margin-bottom: 26px; }
  .kl-hero__cta { padding: 13px 24px; width: 100%; text-align: center; }

  .kl-section { padding: 52px 24px; }
  .kl-section .mock-section__title, .kl-head__title { font-size: 27px; margin-bottom: 26px; }

  .kl-page-hero { padding: 52px 24px 40px; }
  .kl-page-hero__title { font-size: 33px; }
  .kl-page-hero__intro { font-size: 15.5px; }

  .kl-intro { padding: 44px 24px 4px !important; }
  .kl-intro__text { font-size: 16px; }

  .kl-practice-grid { grid-template-columns: 1fr; gap: 16px; }
  .kl-services-grid { grid-template-columns: 1fr; }
  .kl-practice-grid .hp-practice-card__content { padding: 26px 24px; }
  .kl-practice-grid .hp-practice-card__title { font-size: 21px; }
  .hp-practice-lead { padding: 30px 24px; }
  .hp-practice-lead__title { font-size: 24px; }
  .hp-practice-lead__desc { font-size: 15px; }

  .kl-recent { padding: 48px 24px; }
  .kl-recent__list { grid-template-columns: 1fr; column-gap: 0; row-gap: 14px; }
  .kl-recent__list li { font-size: 15px; }

  .kl-proof__card { padding: 26px 24px; }
  .kl-proof__text { font-size: 14.5px; }

  .hp-marble-quote { padding: 68px 24px; }
  .hp-marble-quote__heading { font-size: 32px; }
  .hp-marble-quote__text { font-size: 21px; }

  .kl-about-firm { padding: 52px 24px 32px; }
  .kl-about-firm__text { font-size: 16px; }
  .kl-why { padding: 16px 24px 44px; }
  .kl-steps { padding: 8px 24px 56px; }
  .kl-steps .mock-steps { grid-template-columns: 1fr; row-gap: 32px; }
  .kl-steps .mock-step__text { max-width: none; }

  .hp-contact-cta { padding: 64px 24px; }
  .hp-contact-cta__title { font-size: 27px; }
  .hp-contact-cta__buttons { flex-direction: column; align-items: stretch; }
  .hp-contact-cta__btn { justify-content: center; min-height: 48px; }

  .practice-hero { min-height: 320px; }
  .practice-hero__content { padding: 56px 24px 44px; }
  .practice-hero__title { font-size: 32px; }
  .practice-hero__intro { font-size: 15.5px; }
  .kl-practice-body { padding: 48px 24px; }
  .kl-also { padding: 0 24px 52px; }
  .kl-also__list { grid-template-columns: 1fr; }
  .kl-faq { padding: 48px 24px; }
  .kl-faq__q { font-size: 19px; }

  .about-team { padding: 48px 24px; }
  .about-member__name { font-size: 27px; }
  .about-member__bio p { font-size: 15.5px; }

  .experience-hero { padding: 0; }
  .experience-block { padding: 28px 24px; }
  .insights-hero { padding: 52px 24px; }
  .insights-hero__title { font-size: 33px; }
  .insights-grid { grid-template-columns: 1fr; gap: 20px; }
  .insights-grid-wrap { padding: 40px 24px 64px; }
  .insights-filters { padding: 16px 24px; }

  .kl-careers, .kl-contact { padding: 48px 24px 64px; }
  .careers-page__title { font-size: 33px; }

  .site-footer { padding: 52px 24px 24px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* narrow phones: keep the header on one line */
@media (max-width: 520px) {
  .kl-header__inner { padding: 0 20px; gap: 10px; }
  .kl-header__brand { padding: 14px 0; }
  .kl-header__brand img { height: 18px; }
  .kl-burger { width: 40px; height: 40px; }
  .kl-header__call {
    width: 40px;
    min-height: 40px;
    height: 40px;
    padding: 0;
    gap: 0;
    font-size: 0;
    letter-spacing: 0;
  }
  .kl-header__call svg { width: 16px; height: 16px; }
  .kl-header__nav { padding-left: 20px; padding-right: 20px; }
}

/* keep the enquiry textarea from being dragged wider than its column */
.kl-form textarea { resize: vertical; max-width: 100%; }

/* ============================================================
   Form status messages (Formspree + Turnstile integration)
   ============================================================ */
.kl-form__status,
.site-footer__form-status {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 14px;
  padding: 0;
  min-height: 0;
  color: transparent;
  transition: color 0.2s ease;
}
.kl-form__status.is-success,
.site-footer__form-status.is-success {
  color: #2f5d34;
  padding: 10px 14px;
  background: #eef4ee;
  border-left: 2px solid #4d7a51;
  min-height: 20px;
}
.kl-form__status.is-error,
.site-footer__form-status.is-error {
  color: #8a2f2f;
  padding: 10px 14px;
  background: #f7ecec;
  border-left: 2px solid #b04747;
  min-height: 20px;
}
.site-footer__form-status.is-success {
  background: rgba(140, 180, 130, 0.15);
  color: #cfe2c9;
  border-left-color: #a8c99c;
}
.site-footer__form-status.is-error {
  background: rgba(200, 100, 100, 0.15);
  color: #f2c8c8;
  border-left-color: #d99191;
}

/* Turnstile widget spacing */
.kl-form .cf-turnstile {
  margin: 8px 0 4px;
}
.site-footer__form .cf-turnstile {
  margin: 6px 0 4px;
  transform-origin: left top;
}

/* Disabled submit button while sending */
.kl-form__submit[disabled],
.site-footer__submit[disabled] {
  opacity: 0.6;
  cursor: wait;
}

/* ============================================================
   LinkedIn links — under headshot + footer icon
   ============================================================ */
.about-member__photo-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 4px 2px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-member__photo-linkedin:hover { color: var(--gold-text); }
.about-member__photo-linkedin svg { flex: 0 0 auto; }

.site-footer__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 6px;
  color: rgba(244, 241, 234, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__linkedin:hover { color: var(--gold); }
.site-footer__linkedin svg { flex: 0 0 auto; display: block; }


/* Contact form word-limit note */
.kl-form__limit {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #7a7a7a;
  margin: 6px 0 0 0;
}
.kl-form__limit--over { color: #A12C7B; }

/* Content hyperlinks: gold on hover, keep thin underline */
.careers-page a,
.practice-body a,
.kl-practice-body a,
.about-member__bio a {
  color: #3a3a3a;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,146,74,0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.careers-page a:hover,
.practice-body a:hover,
.kl-practice-body a:hover,
.about-member__bio a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ------------------------------------------------------------
   Scroll-triggered reveal: fade + lift as content enters view
   ------------------------------------------------------------ */
.kl-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.kl-reveal.kl-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .kl-reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------
   Selected Experience matter cards: expand-in-place on click
   ------------------------------------------------------------ */
.kl-proof__card {
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.kl-proof__card:hover,
.kl-proof__card:focus-within {
  background: rgba(196,146,74,0.05);
}
.kl-proof__card .kl-proof__link {
  display: inline-block;
}
.kl-proof__more-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.4s ease;
  margin-top: 0;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5a5a5a;
  border-top: 1px solid rgba(196,146,74,0.25);
  padding-top: 0;
}
.kl-proof__card--expanded .kl-proof__more-detail {
  max-height: 240px;
  opacity: 1;
  margin-top: 14px;
  padding-top: 12px;
}
.kl-proof__expand-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  margin-left: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-text);
  cursor: pointer;
  text-decoration: none;
}
.kl-proof__expand-toggle:hover { color: var(--gold); }
.kl-proof__expand-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}
.kl-proof__card--expanded .kl-proof__expand-toggle svg {
  transform: rotate(180deg);
}

/* ==============================================
   Terms of Use / legal prose page + footer terms link
   ============================================== */

/* Footer bottom: stacked right side (terms link on top, liability below) */
.site-footer__meta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.site-footer__meta--terms {
  color: rgba(244,241,234,0.82);
  font-size: 14px;
}
.site-footer__meta--terms a {
  color: rgba(244,241,234,0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,241,234,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.site-footer__meta--terms a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
@media (max-width: 640px) {
  .site-footer__meta-right {
    align-items: flex-start;
    text-align: left;
  }
}

/* Terms of Use page — legal prose container */
.kl-legal {
  background: var(--warm-white);
  padding: 56px var(--kl-gutter) 72px;
}
.kl-legal__inner {
  max-width: 760px;
  margin: 0 auto;
  color: #28251D;
  counter-reset: kllegalsection;
}
.kl-legal__intro {
  position: relative;
  padding: 28px 28px 24px;
  margin: 0 0 40px 0;
  background: rgba(196,146,74,0.06);
}
.kl-legal__intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: #C4924A;
}
.kl-legal__intro p {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0 0 12px 0;
}
.kl-legal__intro p:last-child { margin-bottom: 0; }

.kl-legal__section {
  margin: 0 0 40px 0;
  counter-increment: kllegalsection;
}
.kl-legal__section:last-of-type {
  margin-bottom: 8px;
}

.kl-legal__heading {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  color: #1c1c1c;
  margin: 0 0 20px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(28,28,28,0.10);
}
.kl-legal__heading::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: #C4924A;
  margin: 0 0 18px 0;
}
.kl-legal__num {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a6a2f;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.kl-legal__list {
  list-style: none;
  counter-reset: kllegal;
  padding: 0;
  margin: 0;
}
.kl-legal__list > li {
  counter-increment: kllegal;
  position: relative;
  padding-left: 56px;
  margin-bottom: 18px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: #3a3a3a;
}
.kl-legal__list > li::before {
  content: counter(kllegalsection) '.' counter(kllegal);
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #8a6a2f;
  text-align: right;
  padding-right: 4px;
  font-variant-numeric: tabular-nums;
}
.kl-legal__list > li > p {
  margin: 0 0 12px 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.kl-legal__list > li:last-child {
  margin-bottom: 0;
}

/* Nested sub-list (a, b, c…) */
.kl-legal__sublist {
  list-style: none;
  counter-reset: kllegalsub;
  padding: 0;
  margin: 10px 0 0 0;
}
.kl-legal__sublist > li {
  counter-increment: kllegalsub;
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
}
.kl-legal__sublist > li::before {
  content: counter(kllegalsub, lower-alpha) ')';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  color: #8a6a2f;
  text-align: right;
  padding-right: 4px;
}
.kl-legal__sublist > li:last-child {
  margin-bottom: 0;
}

/* Inline link + em styling inside legal content */
.kl-legal a {
  color: #8a6a2f;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,146,74,0.4);
  transition: color 0.2s, border-color 0.2s;
}
.kl-legal a:hover {
  color: #1c1c1c;
  border-bottom-color: #1c1c1c;
}
.kl-legal em {
  font-style: italic;
}
.kl-legal strong {
  font-weight: 600;
  color: #1c1c1c;
}

.kl-legal__end {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(28,28,28,0.10);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a6a2f;
  text-align: center;
}

/* Privacy page — Part B "Collection notices" divider and per-notice styling */
.kl-legal__part {
  margin: 56px 0 40px 0;
  padding-top: 32px;
  border-top: 2px solid rgba(196,146,74,0.35);
}

.kl-legal__partlabel {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a6a2f;
  margin: 0 0 8px 0;
}

.kl-legal__parttitle {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.25;
  color: #1c1c1c;
  margin: 0 0 16px 0;
}

.kl-legal__partnote {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}

.kl-legal__notice-body p {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 14px 0;
}

.kl-legal__notice-body p:last-child { margin-bottom: 0; }

.kl-legal__notice-meta {
  font-size: 13px !important;
  color: #7a7a7a !important;
  font-style: italic;
}

@media (max-width: 640px) {
  .kl-legal { padding: 40px 20px 56px; }
  .kl-legal__heading { font-size: 22px; }
  .kl-legal__parttitle { font-size: 24px; }
  .kl-legal__list > li,
  .kl-legal__sublist > li { font-size: 15px; }
}

/* Third-level nested legal list (i, ii, iii…) */
.kl-legal__sublist--nested {
  list-style: none;
  counter-reset: kllegalsubsub;
  padding: 0;
  margin: 8px 0 0 0;
}
.kl-legal__sublist--nested > li {
  counter-increment: kllegalsubsub;
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
}
.kl-legal__sublist--nested > li::before {
  content: counter(kllegalsubsub, lower-roman) '.';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  color: #8a6a2f;
  text-align: right;
  padding-right: 4px;
}
.kl-legal__sublist--nested > li:last-child {
  margin-bottom: 0;
}
