/* ============================================================
   KOFMAN LEGAL — Calm Authority Presentation Site
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark accents */
  --dark-charcoal: #1C1C1C;
  --dark-surface: #222222;
  --dark-border: #333333;

  /* Light surfaces */
  --warm-white: #FAF9F7;
  --cream: #F5F3EF;
  --white: #FFFFFF;
  --light-border: #E8E5DF;
  --card-border: #E5E2DC;

  /* Brand gold */
  --gold: #C4924A;
  --gold-text: #8B6914;
  --gold-on-dark: #D4A85C;

  /* Text */
  --text-heading: #1C1C1C;
  --text-body: #2A2A2A;
  --text-muted: #6B6B6B;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255, 255, 255, 0.7);

  /* Spacing */
  --section-pad: 100px;
  --container-width: 1200px;
  --container-narrow: 900px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--cream);
}

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

a {
  color: var(--gold-text);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.15;
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Fade-in animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark-charcoal);
  border-bottom: 1px solid var(--dark-border);
  padding: 0 40px;
}

.site-nav__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-nav__logo {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--text-on-dark);
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.site-nav__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav__links a:hover {
  color: var(--text-on-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark-charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,0.4) 0%, rgba(28,28,28,0.8) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}

.hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--text-on-dark);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Section base --- */
.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--dark-charcoal);
  color: var(--text-on-dark);
}
.section--dark h2,
.section--dark h3 {
  color: var(--text-on-dark);
}
.section--dark p {
  color: var(--text-on-dark-muted);
}

.section--cream {
  background: var(--cream);
}

.section--warm-white {
  background: var(--warm-white);
}

.section--white {
  background: var(--white);
}

.section__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 16px;
}

.section--dark .section__label {
  color: var(--gold-on-dark);
}

.section__title {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 20px;
}

.section__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
}

/* --- Design Philosophy Cards --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.philosophy-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 36px 32px;
}

.philosophy-card__number {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: var(--gold-text);
  margin-bottom: 16px;
  line-height: 1;
}

.philosophy-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.philosophy-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- Colour Palette --- */
.palette-group {
  margin-bottom: 48px;
}
.palette-group:last-child {
  margin-bottom: 0;
}

.palette-group__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.swatch {
  width: 120px;
}

.swatch__color {
  width: 100%;
  height: 72px;
  border: 1px solid var(--card-border);
}

.swatch__label {
  font-size: 12px;
  color: var(--text-body);
  margin-top: 8px;
  font-weight: 500;
}

.swatch__hex {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   CONCEPT TAB SELECTOR
   ============================================================ */
.concept-tabs {
  display: flex;
  gap: 0;
  margin-top: 48px;
  margin-bottom: 32px;
  border: 1px solid var(--card-border);
  background: var(--white);
  overflow: hidden;
}

.concept-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 12px;
  background: var(--white);
  border: none;
  border-right: 1px solid var(--card-border);
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}
.concept-tab:last-child {
  border-right: none;
}

.concept-tab:hover {
  background: var(--warm-white);
}

.concept-tab.active {
  background: var(--dark-charcoal);
}

.concept-tab__number {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--gold-text);
  line-height: 1;
  transition: color 0.25s;
}
.concept-tab.active .concept-tab__number {
  color: var(--gold-on-dark);
}

.concept-tab__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.02em;
  text-align: center;
  transition: color 0.25s;
}
.concept-tab.active .concept-tab__name {
  color: var(--text-on-dark);
}

/* --- Concept Panels --- */
.concept-panel {
  display: none;
}
.concept-panel.active {
  display: block;
}

.concept-desc {
  margin-bottom: 32px;
}

.concept-desc__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.concept-desc__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 720px;
}

/* --- Browser Frame Mockup --- */
.browser-frame {
  background: var(--white);
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.browser-frame__chrome {
  background: #E8E5DF;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--card-border);
}

.browser-frame__dots {
  display: flex;
  gap: 6px;
}

.browser-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-frame__dot--red { background: #FF5F57; }
.browser-frame__dot--yellow { background: #FFBD2E; }
.browser-frame__dot--green { background: #28CA41; }

.browser-frame__url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.browser-frame__body {
  overflow: hidden;
}

/* --- Mock Nav inside browser frame --- */
.mock-nav {
  background: var(--cream);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  border-bottom: 1px solid var(--light-border);
}

.mock-nav--light {
  background: var(--warm-white);
}

.mock-nav--transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 2;
}

.mock-nav__logo {
  display: flex;
  align-items: center;
}
.mock-nav__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.mock-nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.mock-nav__links li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-body);
  font-weight: 400;
}

.mock-nav__links li.mock-nav__cta {
  color: var(--gold-text);
  font-weight: 500;
}

/* --- Mock Credentials Bar --- */
.mock-credentials {
  background: var(--cream);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 18px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.mock-credentials__item {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

.mock-credentials__sep {
  color: var(--gold);
  font-size: 10px;
  margin: 0 6px;
}

/* --- Mock Sections (shared by all concepts) --- */
.mock-section {
  padding: 48px 32px;
}

.mock-section--light {
  background: var(--warm-white);
}

.mock-section--cream {
  background: var(--cream);
}

.mock-section__title {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--text-heading);
  margin-bottom: 32px;
  text-align: center;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mock-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 28px 24px;
}

.mock-card__number {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--gold-text);
  margin-bottom: 12px;
  line-height: 1;
}

.mock-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.4;
}

.mock-card__text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Mock Steps (shared) --- */
.mock-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.mock-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--light-border);
  z-index: 0;
}

.mock-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.mock-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--gold-text);
  margin-bottom: 16px;
  background: var(--warm-white);
}

.mock-section--cream .mock-step__number {
  background: var(--cream);
}

.mock-step__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.mock-step__text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 220px;
  margin: 0 auto;
}

/* --- Mock Quote Band (shared) --- */
.mock-quote {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mock-quote__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.mock-quote__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.75);
}

.mock-quote__text {
  position: relative;
  z-index: 1;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-on-dark);
  max-width: 700px;
  text-align: center;
  padding: 40px 32px;
  line-height: 1.5;
}

/* --- Mock Footer (shared) --- */
.mock-footer {
  background: var(--cream);
  padding: 28px 32px;
  border-top: 1px solid var(--light-border);
  text-align: center;
}

.mock-footer__text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}


/* ============================================================
   CONCEPT 1: EDITORIAL STATEMENT
   ============================================================ */
.c1-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.c1-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
}

.c1-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.92) 0%, rgba(28,28,28,0.6) 100%);
}

.c1-hero__content {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  max-width: 580px;
}

.c1-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-on-dark);
  margin-bottom: 20px;
}

.c1-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-on-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.c1-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin-bottom: 28px;
  max-width: 420px;
}

.c1-hero__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--gold-on-dark);
  border: 1px solid var(--gold-on-dark);
  padding: 12px 28px;
  transition: all 0.25s;
  text-decoration: none;
}
.c1-hero__cta:hover {
  background: var(--gold-on-dark);
  color: var(--dark-charcoal);
}


/* ============================================================
   CONCEPT 2: MINIMALIST LIGHT
   ============================================================ */
.c2-hero {
  background: var(--warm-white);
  padding: 80px 48px 64px;
  text-align: center;
}

.c2-hero__inner {
  max-width: 680px;
  margin: 0 auto;
}

.c2-hero__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.c2-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--text-heading);
  margin-bottom: 20px;
  line-height: 1.12;
}

.c2-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.c2-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.c2-pill {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-body);
  border: 1px solid var(--card-border);
  padding: 8px 18px;
  background: var(--white);
  letter-spacing: 0.01em;
}

.c2-hero__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
  background: var(--dark-charcoal);
  padding: 14px 32px;
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.c2-hero__cta:hover {
  background: var(--gold-text);
  color: var(--white);
}

.c2-texture-strip {
  height: 80px;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}


/* ============================================================
   CONCEPT 3: SPLIT TEXTURE
   ============================================================ */
.c3-hero {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 420px;
}

.c3-hero__texture {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c3-hero__texture-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.c3-hero__texture-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.55);
}

.c3-hero__texture-text {
  position: relative;
  z-index: 1;
}

.c3-hero__texture-text span {
  font-family: 'Instrument Serif', serif;
  font-size: 120px;
  color: rgba(212, 168, 92, 0.2);
  line-height: 1;
}

.c3-hero__content {
  background: var(--warm-white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c3-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-text);
  margin-bottom: 20px;
}

.c3-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 2.5vw, 36px);
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.15;
}

.c3-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 420px;
}

.c3-hero__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
  background: var(--dark-charcoal);
  padding: 12px 28px;
  transition: all 0.25s;
  text-decoration: none;
  align-self: flex-start;
  margin-bottom: 28px;
}
.c3-hero__cta:hover {
  background: var(--gold-text);
  color: var(--white);
}

.c3-hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.c3-hero__credentials span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding-right: 16px;
  border-right: 1px solid var(--light-border);
}
.c3-hero__credentials span:last-child {
  border-right: none;
  padding-right: 0;
}


/* ============================================================
   CONCEPT 4: CARD-BASED ENTRY
   ============================================================ */
.c4-hero {
  background: var(--dark-charcoal);
  padding: 56px 48px 48px;
  text-align: center;
}

.c4-hero__inner {
  max-width: 600px;
  margin: 0 auto;
}

.c4-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-on-dark);
  margin-bottom: 20px;
}

.c4-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-on-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.c4-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--gold-on-dark);
  letter-spacing: 0.02em;
}

.c4-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--warm-white);
}

.c4-card {
  padding: 36px 28px;
  border-right: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  background: var(--white);
  transition: background 0.2s;
  cursor: pointer;
}
.c4-card:last-child {
  border-right: none;
}
.c4-card:hover {
  background: var(--warm-white);
}

.c4-card__icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.c4-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.4;
}

.c4-card__text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.c4-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-text);
  letter-spacing: 0.01em;
}


/* ============================================================
   CONCEPT 5: CINEMATIC LAYERED
   ============================================================ */
.c5-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.c5-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.c5-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,0.15) 0%, rgba(28,28,28,0.5) 60%, rgba(28,28,28,0.85) 100%);
}

.c5-hero__card {
  position: relative;
  z-index: 2;
  background: rgba(28, 28, 28, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 44px 48px;
  margin: 32px 32px 0;
  max-width: 520px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.c5-hero__card-rule {
  width: 40px;
  height: 2px;
  background: var(--gold-on-dark);
  margin-bottom: 24px;
}

.c5-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-on-dark);
  margin-bottom: 16px;
}

.c5-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--text-on-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.c5-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin-bottom: 24px;
  max-width: 400px;
}

.c5-hero__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--gold-on-dark);
  border: 1px solid var(--gold-on-dark);
  padding: 12px 28px;
  transition: all 0.25s;
  text-decoration: none;
}
.c5-hero__cta:hover {
  background: var(--gold-on-dark);
  color: var(--dark-charcoal);
}


/* ============================================================
   INTERIOR PAGE, COMPARISON, LOGOS, IMAGERY, FOOTER
   (unchanged from previous version)
   ============================================================ */

/* --- Interior Page Mock --- */
.mock-interior-hero {
  background: var(--dark-charcoal);
  padding: 48px 32px;
}

.mock-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-on-dark);
  margin-bottom: 16px;
}

.mock-interior-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}

.mock-interior-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-on-dark-muted);
}

.mock-interior-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 300px;
}

.mock-interior-sidebar {
  background: var(--cream);
  padding: 32px 20px;
  border-right: 1px solid var(--light-border);
}

.mock-interior-sidebar__item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-border);
}
.mock-interior-sidebar__item--active {
  color: var(--gold-text);
  font-weight: 500;
}

.mock-interior-content {
  background: var(--warm-white);
  padding: 40px 32px;
}

.mock-interior-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.mock-interior-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mock-interior-content .content-line {
  height: 10px;
  background: var(--light-border);
  margin-bottom: 10px;
  width: 100%;
}
.mock-interior-content .content-line--short {
  width: 70%;
}
.mock-interior-content .content-line--med {
  width: 85%;
}

/* --- Before/After Comparison --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 48px;
}

.comparison-col {
  padding: 40px;
}

.comparison-col--before {
  background: #0A0A0A;
  color: rgba(255, 255, 255, 0.7);
}

.comparison-col--before .comparison-col__title {
  color: var(--text-on-dark);
}

.comparison-col--after {
  background: var(--white);
  border: 1px solid var(--card-border);
}

.comparison-col--after .comparison-col__title {
  color: var(--text-heading);
}

.comparison-col__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 28px;
  color: var(--gold-text);
}

.comparison-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.6;
}

.comparison-col--after .comparison-item {
  border-bottom-color: var(--light-border);
  color: var(--text-body);
}

.comparison-col--before .comparison-item {
  text-decoration: line-through;
  opacity: 0.6;
}

/* --- Logo Concepts Grid --- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.logo-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.logo-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 24px;
  background: var(--warm-white);
}

.logo-card__label {
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--card-border);
}

/* --- Imagery Gallery --- */
.imagery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.imagery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.imagery-card--featured {
  grid-column: 1 / -1;
  max-height: 400px;
}

.imagery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.imagery-card:hover img {
  transform: scale(1.02);
}

.imagery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(28, 28, 28, 0.8) 0%, transparent 100%);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-on-dark);
  font-weight: 400;
}

.imagery-card__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-bottom: 4px;
}

/* --- Footer --- */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--light-border);
  padding: 48px 0;
  text-align: center;
}

.site-footer__text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.site-footer__note {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* --- Dark Divider Band --- */
.texture-divider {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-charcoal);
}

.texture-divider__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.texture-divider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.65);
}

.texture-divider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
  max-width: 700px;
}

.texture-divider__quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--text-on-dark);
  line-height: 1.45;
  margin-bottom: 16px;
}

.texture-divider__attr {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gold-on-dark);
  font-weight: 400;
}


/* ============================================================
   ABOUT PAGE MOCKUP
   ============================================================ */

/* --- About Hero --- */
.about-hero {
  background: var(--dark-charcoal);
  padding: 56px 40px 48px;
}

.about-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-on-dark);
  margin-bottom: 20px;
}

.about-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-on-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.about-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 520px;
}

/* --- Track Record --- */
.about-track {
  background: var(--warm-white);
  padding: 48px 40px;
}

.about-track__intro {
  margin-bottom: 36px;
  max-width: 640px;
}

.about-track__heading {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  color: var(--text-heading);
  margin-bottom: 16px;
  font-weight: 400;
}

.about-track__text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-track__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-track__card {
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 28px 24px;
}

.about-track__card-number {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--gold-text);
  margin-bottom: 12px;
  line-height: 1;
}

.about-track__card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.4;
}

.about-track__card-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- Team Section --- */
.about-team {
  background: var(--cream);
  padding: 48px 40px;
}

.about-team__heading {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  color: var(--text-heading);
  margin-bottom: 40px;
  font-weight: 400;
}

/* --- Team Member Card --- */
.about-member {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--light-border);
}
.about-member:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.about-member__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid var(--card-border);
}

.about-member__photo--placeholder {
  width: 100%;
}

.about-member__photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--light-border);
  border: 1px dashed var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.about-member__name {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--text-heading);
  margin-bottom: 4px;
  line-height: 1.2;
}

.about-member__role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-text);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.about-member__bio p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.about-member__bio p:last-child {
  margin-bottom: 0;
}

.about-member__credentials {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-member__cred-group {
  width: 100%;
}

.about-member__cred-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.about-member__cred-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-member__cred-items span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Placeholder member styling */
.about-member--placeholder .about-member__name {
  color: var(--text-muted);
}

.about-member--placeholder .about-member__bio p {
  color: var(--light-border);
  background: var(--warm-white);
  border: 1px dashed var(--card-border);
  padding: 16px;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}

.about-member--placeholder .about-member__cred-items span {
  color: var(--light-border);
  background: var(--warm-white);
  border: 1px dashed var(--card-border);
  padding: 4px 8px;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.6;
}


/* ============================================================
   EXPANDED HOMEPAGE MOCKUP
   ============================================================ */

/* Hero */
.hp-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1537 / 1023;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-charcoal);
}
.hp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.9) brightness(0.97);
}
/* Light darkening at the top so the label reads; water/walkway kept largely untouched */
.hp-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%);
}
.hp-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 48px 96px;
  max-width: 640px;
  text-align: left;
  display: block;
}
.hp-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-bottom: 18px;
  white-space: nowrap;
  text-shadow:
    0 0 6px rgba(10,15,25,0.95),
    0 0 6px rgba(10,15,25,0.95),
    0 1px 3px rgba(0,0,0,0.9),
    0 2px 8px rgba(0,0,0,0.75);
}
@media (max-width: 900px) {
  .hp-hero__label { font-size: 10.5px; letter-spacing: 1.5px; }
}
@media (max-width: 600px) {
  .hp-hero__label { white-space: normal; }
}
.hp-hero__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-on-dark);
  margin: 0 0 16px 0;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.75);
}
.hp-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 245, 230, 0.96);
  margin: 0 0 26px 0;
  max-width: 560px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,0.75), 0 0 20px rgba(0,0,0,0.5);
}
.hp-hero__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold-on-dark);
  border: 1px solid var(--gold-on-dark);
  padding: 10px 24px;
  text-decoration: none;
  background: transparent;
  transition: all 0.25s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.75), 0 0 8px rgba(0,0,0,0.4);
}
.hp-hero__cta:hover {
  background: var(--gold-on-dark);
  color: var(--dark-charcoal);
  border-color: var(--gold-on-dark);
  text-shadow: none;
}
@media (max-width: 768px) {
  .hp-hero__content { padding: 40px 24px 36px; }
  .hp-hero__title { font-size: 24px; }
  .hp-hero__subtitle { font-size: 13px; }
}

/* Practice Area Grid */
.hp-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.hp-practice-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.hp-practice-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.06);
}
/* subtle gold accent line at top of card */
.hp-practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hp-practice-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px;
  flex: 1;
}
.hp-practice-card__cta {
  margin-top: auto;
}
.hp-practice-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 12px;
}
.hp-practice-card__title {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.hp-practice-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hp-practice-card__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--gold-text);
  border: 1px solid var(--gold);
  padding: 7px 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.hp-practice-card__cta:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Why Kofman Legal */
.hp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.hp-why-card {
  padding: 20px 0;
}
.hp-why-card__number {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
}
.hp-why-card__title {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #1c1c1c;
  margin-bottom: 12px;
  letter-spacing: 0.005em;
}
.hp-why-card__text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: #3a3a3a;
  letter-spacing: 0.005em;
}

/* Brief Firm Intro */
.hp-firm-intro {
  text-align: center;
}
.hp-firm-intro__inner {
  max-width: 560px;
  margin: 0 auto;
}
.hp-firm-intro__label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 14px;
}
.hp-firm-intro__text {
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
}

/* Contact CTA */
.hp-contact-cta {
  background: var(--dark-charcoal);
  padding: 48px 40px;
  text-align: center;
}
.hp-contact-cta__inner {
  max-width: 480px;
  margin: 0 auto;
}
.hp-contact-cta__title {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.hp-contact-cta__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin-bottom: 28px;
}
.hp-contact-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hp-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hp-contact-cta__btn--primary {
  color: var(--gold-on-dark);
  border: 1px solid var(--gold-on-dark);
}
.hp-contact-cta__btn--primary:hover {
  background: var(--gold-on-dark);
  color: var(--dark-charcoal);
}
.hp-contact-cta__btn--secondary {
  color: var(--text-on-dark-muted);
  border: 1px solid rgba(255,255,255,0.2);
}
.hp-contact-cta__btn--secondary:hover {
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.4);
}
.hp-contact-cta__btn--secondary svg {
  opacity: 0.7;
}


/* ============================================================
   INSIGHTS LISTING PAGE
   ============================================================ */

/* Insights Hero */
.insights-hero {
  background: var(--dark-charcoal);
  padding: 48px 32px;
}

.insights-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-on-dark);
  margin-bottom: 16px;
}

.insights-hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: var(--text-on-dark);
  margin-bottom: 8px;
  line-height: 1.15;
}

.insights-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-on-dark-muted);
  max-width: 520px;
}

/* Filter Bar */
.insights-filters {
  background: var(--cream);
  padding: 20px 32px;
  border-bottom: 1px solid var(--light-border);
}

.insights-filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insights-filter {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--card-border);
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.insights-filter:hover {
  border-color: var(--gold);
  color: var(--gold-text);
}

.insights-filter--active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  font-weight: 500;
}

.insights-filter--active:hover {
  color: var(--white);
}

/* Article Grid */
.insights-grid-wrap {
  background: var(--warm-white);
  padding: 32px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Insight Card */
.insight-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.insight-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.insight-card:hover .insight-card__image img {
  transform: scale(1.03);
}

/* Video overlay */
.insight-card__image--video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.45);
  z-index: 1;
}

.insight-card__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.insight-card__play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.insight-card__play-btn svg {
  margin-left: 3px;
}

.insight-card__body {
  padding: 24px;
}

.insight-card__meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.insight-card__category {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.insight-card__video-badge {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark-charcoal);
  padding: 2px 7px;
  display: inline-block;
}

.insight-card__title {
  font-family: 'Instrument Serif', serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.insight-card__date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.insight-card__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-text);
  text-decoration: none;
  transition: color 0.2s;
}

.insight-card__link:hover {
  color: var(--gold);
}


/* ============================================================
   SINGLE ARTICLE PAGE
   ============================================================ */

/* Article Header */
.article-header {
  background: var(--dark-charcoal);
  padding: 48px 40px 40px;
}

.article-header__breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold-on-dark);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.article-header__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text-on-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 680px;
}

.article-header__meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
}

.article-header__tags {
  display: flex;
  gap: 8px;
}

.article-header__tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
}

.article-header__tag--video {
  color: var(--gold-on-dark);
  border-color: var(--gold-on-dark);
}

/* Article Content Wrapper */
.article-content-wrap {
  background: var(--warm-white);
  padding: 40px;
}

/* Video Embed */
.article-video {
  max-width: 680px;
  margin: 0 auto 40px;
}

.article-video__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark-charcoal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.article-video__player:hover {
  opacity: 0.9;
}

.article-video__play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.article-video__play-btn svg {
  margin-left: 4px;
}

.article-video__caption {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Article Body */
.article-body {
  max-width: 680px;
  margin: 0 auto;
}

.article-body__lead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 28px;
}

.article-body__h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-heading);
  margin: 32px 0 16px;
  line-height: 1.2;
}

.article-body p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.article-body__pullquote {
  border-left: 3px solid var(--gold);
  padding: 20px 0 20px 24px;
  margin: 32px 0;
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-heading);
}

.article-body__list {
  padding-left: 20px;
  margin-bottom: 24px;
}

.article-body__list li {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.article-body__list li::marker {
  color: var(--gold);
}

/* Article Footer */
.article-foot {
  max-width: 680px;
  margin: 0 auto;
  padding-top: 20px;
}

.article-foot__rule {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 28px;
}

.article-foot__share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.article-foot__share-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-heading);
}

.article-foot__share-icons {
  display: flex;
  gap: 12px;
}

.article-foot__share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.article-foot__share-icon:hover {
  border-color: var(--gold);
  color: var(--gold-text);
}

/* Related Insights */
.article-related {
  padding-top: 8px;
}

.article-related__title {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-related__card {
  background: var(--white);
  border: 1px solid var(--card-border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-related__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.article-related__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.article-related__card:hover .article-related__thumb img {
  transform: scale(1.03);
}

.article-related__info {
  padding: 14px 16px;
}

.article-related__cat {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 6px;
}

.article-related__card-title {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text-heading);
}


/* About: Publications & Speaking engagements sections */
.about-member__section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
}
.about-member__section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 14px;
}
.about-publications {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-publications li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-body);
  padding-left: 14px;
  position: relative;
}
.about-publications li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.about-publications__placeholder {
  color: var(--text-muted) !important;
  font-style: italic;
  font-size: 12px !important;
}
.about-publications__placeholder::before {
  background: var(--text-muted) !important;
}

/* ============================================================
   HERO VARIANTS GRID
   ============================================================ */
.variants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.variant-card {
  display: flex;
  flex-direction: column;
}

/* Stacked variants with side-by-side header pair */
.variants-stack {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 48px;
}
.variant-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.variant-block__caption {
  max-width: 760px;
}
.variant-pair {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.variant-pair__col {
  display: flex;
  flex-direction: column;
}
.variant-pair__sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.variant-frame.browser-frame {
  border: 1px solid var(--card-border);
  background: var(--white);
  overflow: hidden;
}
.variant-frame .variant-solid-nav {
  position: relative;
  z-index: 4;
  background: var(--cream);
  border-bottom: 1px solid var(--light-border);
  padding: 0 40px;
  height: 64px;
}
.variant-frame .variant-solid-nav .mock-nav__logo { }
.variant-frame .variant-solid-nav .mock-nav__links {
  gap: 28px;
}
.variant-frame .variant-solid-nav .mock-nav__links li {
  font-size: 14px;
}
.variant-frame .variant-card__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: none;
  background: var(--dark-charcoal);
  display: flex;
  align-items: center;
}
.variant-card__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--dark-charcoal);
  display: flex;
  align-items: center;
}
.variant-card__hero {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.variant-card__overlay {
  position: absolute;
  inset: 0;
}
.variant-card__overlay--dark {
  background: linear-gradient(to top, rgba(28,28,28,0.88) 0%, rgba(28,28,28,0.72) 35%, rgba(28,28,28,0.45) 60%, rgba(28,28,28,0.25) 100%);
}
.variant-card__overlay--medium {
  background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, rgba(28,28,28,0.7) 35%, rgba(28,28,28,0.45) 60%, rgba(28,28,28,0.2) 100%);
}
.variant-card__overlay--light {
  background: linear-gradient(to top, rgba(28,28,28,0.75) 0%, rgba(28,28,28,0.55) 40%, rgba(28,28,28,0.3) 70%, rgba(28,28,28,0.15) 100%);
}
.variant-card__overlay--whisper {
  background: linear-gradient(to top, rgba(28,28,28,0.35) 0%, rgba(28,28,28,0.18) 40%, rgba(28,28,28,0.18) 70%, rgba(28,28,28,0.32) 100%);
}

/* Logomark lockup: SVG mark + wordmark side by side */
.logomark-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.logomark-lockup .logomark-svg {
  flex-shrink: 0;
  color: var(--text-heading);
  display: block;
}
.logomark-lockup--on-dark .logomark-svg {
  color: var(--gold-on-dark);
}
.logomark-lockup span {
  display: inline-block;
  line-height: 1;
}

/* Real logo image masthead */
.logo-image-wrap {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.logo-image {
  height: 44px;
  width: auto;
  display: block;
}
.logo-image--on-light {
  /* Logo image is white on black — invert + adjust so dark text shows on cream */
  filter: invert(1) contrast(1.2);
  mix-blend-mode: multiply;
}
.variant-solid-nav--tall {
  height: 80px !important;
}
.variant-mock-nav--tall {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

/* C1b-Light: content positioned over upper sky portion */
.variant-card__frame--top {
  align-items: flex-start !important;
}
.variant-card__content--top {
  transform: translateY(0) !important;
  padding-top: 110px !important;
  padding-bottom: 0 !important;
}

/* C1b-Framed: cream margin around the hero */
.variant-framed-wrap {
  background: var(--cream);
  padding: 28px;
}
.variant-card__frame--framed {
  aspect-ratio: 16 / 9;
}
.variant-mock-nav--framed {
  background: linear-gradient(to bottom, rgba(28,28,28,0.6) 0%, rgba(28,28,28,0.25) 70%, rgba(28,28,28,0) 100%);
}

/* C1b-Warm Band: shorter hero plus a cream content band below */
.variant-card__frame--short {
  aspect-ratio: 16 / 8;
}
.variant-warm-band {
  background: var(--cream);
  padding: 56px 64px;
  border-top: 1px solid var(--light-border);
}
.variant-warm-band__inner {
  max-width: 760px;
}
.variant-warm-band__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 16px;
}
.variant-warm-band__title {
  font-family: 'Instrument Serif', serif;
  font-size: 38px;
  line-height: 1.18;
  color: var(--text-heading);
  margin-bottom: 14px;
  font-weight: 400;
}
.variant-warm-band__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
}

/* Variant card mock nav (sits above the hero image) */
.variant-card .browser-frame {
  border: 1px solid var(--card-border);
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
}
.variant-card .variant-card__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: none;
  background: var(--dark-charcoal);
  display: flex;
  align-items: center;
}
.variant-mock-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(28,28,28,0.55) 0%, rgba(28,28,28,0.25) 70%, rgba(28,28,28,0) 100%);
}
.variant-mock-nav__logo {
  display: flex;
  align-items: center;
}
.variant-mock-nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.variant-mock-nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.variant-mock-nav__links li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.variant-mock-nav__links li.variant-mock-nav__cta {
  color: var(--gold-on-dark);
  font-weight: 500;
}
.variant-card__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 64px;
  max-width: 760px;
  transform: translateY(15%);
}
.variant-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
}
.variant-card__label--bright {
  color: #E8C078;
  text-shadow: 0 1px 4px rgba(0,0,0,0.95), 0 0 12px rgba(0,0,0,0.7);
}
.variant-card__title {
  font-family: 'Instrument Serif', serif;
  font-size: 40px;
  line-height: 1.15;
  color: var(--text-on-dark);
  margin-bottom: 24px;
  margin-top: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.variant-card__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--gold-on-dark);
  border: 1px solid var(--gold-on-dark);
  padding: 12px 28px;
}
.variant-card__caption {
  padding: 20px 4px 0;
}
.variant-card__caption-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--card-border);
  padding: 4px 10px;
  margin-bottom: 12px;
}
.variant-card__caption-tag--option {
  color: var(--gold-text);
  border-color: var(--gold);
  background: rgba(196, 146, 74, 0.06);
}
.variant-card__caption-title {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.variant-card__caption-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --section-pad: 64px;
  }

  .site-nav__links {
    display: none;
  }
  .site-nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--dark-charcoal);
    padding: 20px 40px;
    gap: 16px;
    border-bottom: 1px solid var(--dark-border);
  }
  .hamburger {
    display: block;
  }

  .hp-practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hp-hero__title {
    font-size: 26px;
  }

  .mock-cards {
    grid-template-columns: 1fr;
  }

  .mock-steps {
    grid-template-columns: 1fr 1fr;
  }
  .mock-steps::before {
    display: none;
  }

  .mock-interior-body {
    grid-template-columns: 1fr;
  }
  .mock-interior-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--light-border);
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .mock-interior-sidebar__item {
    border-bottom: none;
    padding: 4px 0;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .comparison-arrow {
    transform: rotate(90deg);
    padding: 12px 0;
  }

  .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .mock-nav__links {
    gap: 12px;
  }
  .mock-nav__links li {
    font-size: 11px;
  }

  .about-track__grid {
    grid-template-columns: 1fr;
  }

  .about-member {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-member__photo img,
  .about-member__photo-placeholder {
    max-width: 240px;
  }

  /* Insights & Article responsive */
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .article-related__grid {
    grid-template-columns: 1fr;
  }
  .article-content-wrap {
    padding: 32px 24px;
  }
  .article-header {
    padding: 36px 24px 32px;
  }
}

@media (max-width: 900px) {
  .variants-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .variant-pair {
    gap: 28px;
  }
  .variant-card__title {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .site-nav {
    padding: 0 20px;
  }

  .mock-steps {
    grid-template-columns: 1fr;
  }
  .mock-nav {
    padding: 0 16px;
    height: 44px;
  }
  .mock-nav__links {
    gap: 8px;
  }
  .mock-nav__links li {
    font-size: 10px;
  }

  .hp-practice-grid {
    grid-template-columns: 1fr;
  }
  .hp-hero__content {
    padding: 40px 24px 32px;
  }
  .hp-hero__title {
    font-size: 22px;
  }
  .hp-contact-cta {
    padding: 36px 20px;
  }
  .hp-contact-cta__title {
    font-size: 20px;
  }

  .mock-section {
    padding: 32px 20px;
  }

  /* Insights & Article small screen */
  .insights-grid-wrap {
    padding: 20px 16px;
  }
  .insights-filters {
    padding: 16px;
  }
  .insights-hero {
    padding: 32px 20px;
  }
  .insights-hero__title {
    font-size: 26px;
  }
  .insight-card__body {
    padding: 16px;
  }
  .article-content-wrap {
    padding: 24px 16px;
  }
  .article-header {
    padding: 28px 16px 24px;
  }
  .article-body__pullquote {
    font-size: 17px;
    padding-left: 16px;
  }
  .swatches {
    gap: 10px;
  }
  .swatch {
    width: 90px;
  }
  .swatch__color {
    height: 56px;
  }
}

/* Homepage intro paragraph — uses Inter to match the rest of the site, tighter spacing to next section */
.hp-intro {
  padding: 48px 32px 8px !important;
}
.hp-intro__text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-body, #3a3a3a);
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 0.005em;
}
@media (max-width: 768px) {
  .hp-intro {
    padding: 32px 24px 4px !important;
  }
  .hp-intro__text {
    font-size: 14.5px;
  }
}
/* Trim top padding of the practice section that follows */
.hp-intro + .mock-section {
  padding-top: 24px;
}

/* Homepage lead practice card (ASIC & Regulatory promoted) — matches secondary cards' top-left gold accent */
.hp-practice-lead {
  background: #F7F3EC;
  color: #1c1c1c;
  padding: 40px 48px;
  margin: 0 0 20px 0;
  width: 100%;
  position: relative;
  border: 1px solid var(--card-border);
  box-shadow: 0 1px 0 rgba(28,28,28,0.06);
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.hp-practice-lead:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28,28,28,0.08);
}
.hp-practice-lead:hover .hp-practice-lead__cta {
  color: #1c1c1c;
  border-bottom-color: #1c1c1c;
}
.hp-practice-lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 2px;
  background: var(--gold);
}
@media (max-width: 768px) {
  .hp-practice-lead::before { width: 180px; }
}
.hp-practice-lead__label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8a6a2f;
  margin-bottom: 14px;
}
.hp-practice-lead__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: #1c1c1c;
  margin: 0 0 16px 0;
  letter-spacing: -0.005em;
}
.hp-practice-lead__desc {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0 0 22px 0;
  max-width: 760px;
}
.hp-practice-lead__cta {
  display: inline-block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a6a2f;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #C4924A;
  transition: color 0.2s, border-color 0.2s;
}
.hp-practice-lead__cta:hover {
  color: #1c1c1c;
  border-bottom-color: #1c1c1c;
}
@media (max-width: 768px) {
  .hp-practice-lead { padding: 28px 24px; }
  .hp-practice-lead__title { font-size: 22px; }
  .hp-practice-lead__desc { font-size: 14px; }
}

/* Homepage intro paragraph */
.hp-intro__text {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* Homepage marble/stone quote divider — mirrors the design-presentation texture-divider treatment (translucent stone over dark charcoal) */
.hp-marble-quote {
  position: relative;
  width: 100%;
  padding: 68px 32px;
  overflow: hidden;
  background: var(--dark-charcoal);
}
.hp-marble-quote__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.hp-marble-quote__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.65);
}
.hp-marble-quote__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hp-marble-quote__heading {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  color: #F4E4C1;
  letter-spacing: -0.005em;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hp-marble-quote__text {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: #FFFFFF;
  letter-spacing: 0.005em;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
@media (max-width: 768px) {
  .hp-marble-quote { padding: 64px 24px; }
  .hp-marble-quote__heading { font-size: 30px; }
  .hp-marble-quote__text { font-size: 20px; }
}

/* ============================================================
   SITE-LIVE MODE — hide design-presentation shell
   Only applied when <body class="site-live">
   ============================================================ */
body.site-live .section > .container > .fade-in:first-child {
  display: none;  /* hides the "Key deliverable / Homepage" heading blocks */
}
body.site-live .section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.site-live .section > .container {
  max-width: none;
  padding: 0;
}
body.site-live .mock-browser {
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
body.site-live .mock-browser__chrome {
  display: none;   /* hides the fake macOS-style browser chrome */
}

/* ============================================================
   SITE FOOTER — modelled on editorial legal footers
   ============================================================ */
.site-footer {
  background: #1c1c1c;
  color: rgba(244, 241, 234, 0.82);
  padding: 56px 48px 24px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
}
.site-footer * { text-align: left; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 1.8fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,241,234,0.12);
}
.site-footer__col--logo { align-self: start; }
.site-footer__logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.site-footer__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.55);
  margin: 0 0 16px 0;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__links li { margin-bottom: 10px; }
.site-footer__links a,
.site-footer__address a {
  color: rgba(244, 241, 234, 0.92);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-footer__links a:hover,
.site-footer__address a:hover {
  border-bottom-color: rgba(244,241,234,0.55);
}
.site-footer__address {
  font-style: normal;
  color: rgba(244, 241, 234, 0.82);
  line-height: 1.7;
}
.site-footer__blurb {
  color: rgba(244, 241, 234, 0.72);
  margin: 0 0 14px 0;
  font-size: 13px;
  max-width: 340px;
}
.site-footer__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
}
.site-footer__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__field-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.55);
}
.site-footer__field input {
  background: transparent;
  border: 1px solid rgba(244,241,234,0.22);
  padding: 9px 12px;
  color: rgba(244,241,234,0.95);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}
.site-footer__field input:focus {
  border-color: rgba(244,241,234,0.55);
}
.site-footer__submit {
  align-self: flex-start;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.92);
  background: transparent;
  border: 1px solid rgba(244,241,234,0.5);
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.site-footer__submit:hover {
  background: rgba(244,241,234,0.92);
  color: #1c1c1c;
  border-color: rgba(244,241,234,0.92);
}
.site-footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(244,241,234,0.55);
  margin: 0;
}
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .site-footer { padding: 40px 24px 20px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0;
}
.careers-page__label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-text, #6e6c64);
  margin-bottom: 14px;
}
.careers-page__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  color: #1c1c1c;
  margin: 0 0 24px 0;
}
.careers-page__intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 18px 0;
}
.careers-page__intro a {
  color: #3a3a3a;
  border-bottom: 1px solid #C4924A;
  text-decoration: none;
}
.careers-page__intro a:hover {
  color: #1c1c1c;
  border-bottom-color: #1c1c1c;
}

/* ============================================================
   SERVICES DROPDOWN
   ============================================================ */
.mock-nav__dropdown {
  position: relative;
}
.mock-nav__dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mock-nav__caret {
  font-size: 9px;
  transform: translateY(-1px);
  opacity: 0.7;
}
.mock-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 240px;
  background: var(--warm-white, #F7F3EC);
  border: 1px solid var(--card-border, #d9d3c8);
  padding: 10px 0;
  list-style: none;
  margin: 8px 0 0 0;
  box-shadow: 0 8px 24px rgba(28,28,28,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 20;
}
.mock-nav__dropdown:hover .mock-nav__dropdown-menu,
.mock-nav__dropdown:focus-within .mock-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
.mock-nav__dropdown-menu li {
  padding: 0;
  font-size: 13px;
}
.mock-nav__dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  color: #3a3a3a;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.mock-nav__dropdown-menu li a:hover {
  background: rgba(196, 146, 74, 0.09);
  color: #1c1c1c;
}

/* ============================================================
   READ MORE — secondary practice-card link (replaces button CTA)
   ============================================================ */
.hp-practice-card__link {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  color: var(--gold-text, #8a6a2f);
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
  border: 0;
  background: transparent;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.hp-practice-card__link::after {
  content: ' →';
}
.hp-practice-card:hover .hp-practice-card__link {
  color: #1c1c1c;
  border-bottom-color: currentColor;
}
.hp-practice-card__link:hover {
  color: #1c1c1c;
  border-bottom-color: currentColor;
}

/* ============================================================
   PRACTICE AREA PAGE — hero + body + carousel
   ============================================================ */
.practice-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-color: #141414;
}
.practice-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-color: #141414;
  filter: saturate(0.9) brightness(0.7);
}
.practice-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,25,0.25) 0%, rgba(10,15,25,0.65) 100%);
}
.practice-hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 48px 48px;
  max-width: 720px;
  color: #FFFFFF;
}
.practice-hero__label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F4E4C1;
  margin-bottom: 14px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}
.practice-hero__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.practice-hero__intro {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 620px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}
@media (max-width: 768px) {
  .practice-hero__content { padding: 40px 24px 32px; }
  .practice-hero__title { font-size: 30px; }
  .practice-hero__intro { font-size: 14px; }
}

/* Body block */
.practice-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0 48px;
  border-bottom: 1px solid var(--light-border, #e5dfd2);
}
.practice-body__placeholder {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #7a746a;
  font-style: italic;
  margin: 0 0 12px 0;
}
.practice-body__placeholder-note {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #9a948a;
  font-style: italic;
  margin: 0 0 28px 0;
}
.practice-body__cta {
  display: inline-block;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a6a2f;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #C4924A;
  transition: color 0.2s, border-color 0.2s;
}
.practice-body__cta:hover {
  color: #1c1c1c;
  border-bottom-color: #1c1c1c;
}

/* Body block v2: two-column layout with sidebar callout, used on the six practice pages */
.practice-body-grid {
  max-width: var(--kl-rail);
  margin: 0 auto;
  padding: 0 0 8px;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(240px, 300px);
  gap: 64px;
  align-items: start;
}
.practice-body-grid__main {
  border-bottom: 1px solid var(--light-border, #e5dfd2);
  padding-bottom: 40px;
}
.practice-body-grid__main p {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0 0 22px 0;
  letter-spacing: 0.005em;
}
.practice-body-grid__main p:last-child { margin-bottom: 0; }
.practice-body-grid__main p strong { font-weight: 700; color: #1c1c1c; }
.practice-body-grid__main p em { font-style: italic; }
.practice-body-grid__heading {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  color: #1c1c1c;
  margin: 28px 0 12px 0;
}
.practice-body-grid__main > .practice-body-grid__heading:first-child {
  margin-top: 0;
}
.practice-body-grid__cta {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a6a2f;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #C4924A;
  transition: color 0.2s, border-color 0.2s;
}
.practice-body-grid__cta:hover {
  color: #1c1c1c;
  border-bottom-color: #1c1c1c;
}
.practice-callout {
  position: sticky;
  top: 120px;
  padding-top: 6px;
}
.practice-callout::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: #C4924A;
  margin: 0 0 18px 0;
}
.practice-callout__label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a6a2f;
  margin: 0 0 14px 0;
}
.practice-callout__text {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.45;
  color: #1c1c1c;
  margin: 0;
  letter-spacing: -0.005em;
}
@media (max-width: 900px) {
  .practice-body-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .practice-callout {
    position: static;
    padding: 28px 0 0;
    border-top: 1px solid var(--light-border, #e5dfd2);
    margin-top: 4px;
  }
  .practice-callout::before { display: none; }
  .practice-callout__text { font-size: 19px; }
}
@media (max-width: 640px) {
  .practice-body-grid__main p { font-size: 15.5px; }
}

/* Insights carousel */
.practice-carousel {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 32px;
}
.practice-carousel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.practice-carousel__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  color: #1c1c1c;
  margin: 0;
}
.practice-carousel__controls {
  display: flex;
  gap: 8px;
}
.practice-carousel__arrow {
  background: transparent;
  border: 1px solid #c9c2b5;
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #3a3a3a;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: Georgia, serif;
  line-height: 1;
}
.practice-carousel__arrow:hover {
  background: #1c1c1c;
  color: #F4E4C1;
  border-color: #1c1c1c;
}
.practice-carousel__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.carousel__card {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.carousel__thumb {
  height: 180px;
  background-size: cover;
  background-position: center center;
  margin-bottom: 14px;
}
.carousel__meta {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.carousel__cat { color: #8a6a2f; font-weight: 600; }
.carousel__date { color: #7a746a; }
.carousel__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #1c1c1c;
  margin: 0 0 12px 0;
}
.carousel__link {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #8a6a2f;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.carousel__link:hover {
  color: #1c1c1c;
  border-bottom-color: #1c1c1c;
}
@media (max-width: 900px) {
  .practice-carousel__track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .practice-carousel__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .carousel__card { flex: 0 0 82%; scroll-snap-align: start; }
  .carousel__thumb { height: 150px; }
}

/* Marina headshot — subtle desaturation on the image only.
   Keeps her looking natural; brings background palette closer to the site. */
.about-member__photo img {
  filter: saturate(0.72) contrast(1.02);
  transition: filter 0.35s ease;
}

/* ============================================================
   WHY-KOFMAN SECTION — unified rhythm
   The About-firm copy, the three Why cards, and How-we-work all
   sit on a shared 1100px rail with consistent vertical spacing.
   ============================================================ */
.hp-about-firm {
  padding: 72px 48px 48px !important;
}
.hp-about-firm__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hp-about-firm__text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 18px 0;
  letter-spacing: 0.005em;
  text-align: left;
}
.hp-about-firm__text strong {
  font-weight: 700;
  color: #1c1c1c;
}
.hp-about-firm__text:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .hp-about-firm { padding: 48px 24px 32px !important; }
  .hp-about-firm__text { font-size: 14.5px; }
}

/* Why Kofman Legal cards section — share the 1100px rail with the
   about-firm block and How-we-work, with consistent vertical spacing.
   The parent .mock-section--cream around .hp-why-grid gets normalised. */
.hp-about-firm + .mock-section--cream,
.mock-section--cream:has(> .hp-why-grid) {
  padding: 8px 48px 24px !important;
}
.hp-why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .hp-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .hp-about-firm + .mock-section--cream,
  .mock-section--cream:has(> .hp-why-grid) { padding: 8px 24px 24px !important; }
}

/* How-we-work section directly under Why-Kofman: share the same rail */
.hp-why-grid + * + .mock-section--cream,
.mock-section--cream:has(> .mock-section__title) {
  padding: 8px 48px 64px !important;
}
.mock-section--cream .mock-section__title {
  max-width: 1100px;
  margin: 0 auto 32px auto;
  text-align: center;
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  color: #1c1c1c;
}
.mock-section--cream .mock-steps {
  max-width: 1100px;
  margin: 0 auto;
}

/* How-we-work step typography — larger so it reads at the same weight
   as the Why-Kofman cards above */
.mock-section--cream .mock-step__title {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #1c1c1c;
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}
.mock-section--cream .mock-step__text {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: #3a3a3a;
  max-width: none;
  letter-spacing: 0.005em;
}
@media (max-width: 900px) {
  .hp-why-grid + * + .mock-section--cream,
  .mock-section--cream:has(> .mock-section__title) { padding: 8px 24px 48px !important; }
}

/* Homepage intro paragraph: same treatment */
.hp-intro__text {
  font-family: 'Inter', 'DM Sans', sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 15.5px !important;
  line-height: 1.75 !important;
  color: #3a3a3a !important;
  letter-spacing: 0.005em !important;
  text-align: left !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hp-intro__text strong {
  font-weight: 700;
  color: #1c1c1c;
}

/* Why Kofman Legal cards — gold rule replaces 01/02/03 numbers */
.hp-why-card {
  padding: 0 !important;
  position: relative;
}
.hp-why-card::before {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: #C4924A;
  margin-bottom: 16px;
}

/* ============================================================
   RECENT EXPERIENCE strip
   Sits between the practice-area grid and the Why-Kofman marble
   banner. Same 1100px rail as About-firm. Quiet, evidence-only.
   ============================================================ */
.hp-recent {
  padding: 56px 48px 64px !important;
}
.hp-recent__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hp-recent__label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C4924A;
  margin-bottom: 28px;
  text-align: center;
}
.hp-recent__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  row-gap: 14px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.hp-recent__list li {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a3a;
  padding-left: 18px;
  position: relative;
  letter-spacing: 0.005em;
}
.hp-recent__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: #C4924A;
}
@media (max-width: 768px) {
  .hp-recent { padding: 40px 24px 48px !important; }
  .hp-recent__list { grid-template-columns: 1fr; column-gap: 0; row-gap: 12px; }
  .hp-recent__list li { font-size: 14.5px; }
}

/* ============================================================
   EXPERIENCE PAGE
   Long list of matters, grouped by category. Same 1100px rail
   as the About-firm block on the homepage. Quiet, dense, editorial.
   ============================================================ */
.experience-hero {
  padding: 72px 48px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.experience-hero__title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  color: #1c1c1c;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}
.experience-hero__intro {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0;
  max-width: 780px;
  letter-spacing: 0.005em;
}
@media (max-width: 768px) {
  .experience-hero { padding: 48px 24px 24px; }
  .experience-hero__title { font-size: 34px; }
}

.experience-block {
  padding: 36px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.experience-block + .experience-block {
  border-top: 1px solid rgba(28,28,28,0.07);
}
.experience-block--toggle {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* ------------------------------------------------------------
   Two-column layout: matter categories left, reference right
   ------------------------------------------------------------ */
.experience-columns {
  max-width: var(--kl-rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0 56px;
  align-items: start;
}
.experience-columns__left,
.experience-columns__right {
  min-width: 0;
}
.experience-columns .experience-block {
  max-width: none;
  margin: 0;
  padding: 30px 0;
}
.experience-columns .experience-block + .experience-block {
  border-top: 1px solid rgba(28,28,28,0.07);
}
@media (max-width: 900px) {
  .experience-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .experience-columns__right .experience-block:first-child {
    padding-top: 30px;
    border-top: 1px solid rgba(28,28,28,0.07);
  }
}

/* Related: full-width reference block below the columns, muted (not a practice area) */
.experience-related {
  border-top: 1px solid rgba(28,28,28,0.07);
  padding-left: 0;
  padding-right: 0;
}
.experience-block__heading.experience-block__heading--muted {
  color: #8B6914;
  font-size: 20px;
}
.experience-block__heading.experience-block__heading--muted::before {
  background: #C4924A;
  opacity: 0.6;
}
.experience-related .experience-list li {
  padding-left: 24px;
}
.experience-related .experience-list li::before {
  content: '';
  width: 4.5px;
  height: 4.5px;
  border: 1px solid #C4924A;
  background: transparent;
  transform: none;
  top: 22.5px;
  left: 2px;
}
.experience-block__label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C4924A;
  margin: 0 0 18px 0;
}
.experience-block__heading {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  color: #1c1c1c;
  margin: 0;
  padding-top: 4px;
  border-top: none;
  position: relative;
}
.experience-block__heading::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: #C4924A;
  margin: 0 0 14px 0;
}
.experience-block__intro {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 18px 0;
  max-width: 900px;
  letter-spacing: 0.005em;
}

/* Toggle variant: heading itself is the clickable reveal control */
.experience-block--toggle .experience-block__heading {
  cursor: pointer;
}
.experience-block__toggle {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  color: #1c1c1c;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
/* Colour and underline change on hover so it unmistakably reads as a link, without italics */
.experience-block__toggle:hover,
.experience-block__toggle:focus-visible {
  color: #8B6914;
  border-bottom-color: #C4924A;
}
.experience-block__toggle:focus-visible {
  outline: 2px solid #C4924A;
  outline-offset: 6px;
}
/* Generous, deliberate gap between the heading row and the body content once revealed */
.experience-block--toggle .experience-block__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease, margin-top 0.45s ease;
  margin-top: 0;
}
.experience-block--toggle.experience-block--open .experience-block__body {
  opacity: 1;
  margin-top: 28px;
  /* max-height set inline via JS to the measured content height */
}
.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.experience-list li {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3a3a3a;
  padding: 12px 0 12px 20px;
  position: relative;
  border-bottom: 1px solid rgba(28, 28, 28, 0.06);
  letter-spacing: 0.005em;
}
.experience-list li:last-child {
  border-bottom: none;
}
.experience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25em;
  width: 8px;
  height: 1px;
  background: #C4924A;
}
.experience-list li em {
  font-style: italic;
  color: #1c1c1c;
}
.experience-list--tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 0;
}
.experience-list--tags li {
  border-bottom: 1px solid rgba(28, 28, 28, 0.06);
}
@media (max-width: 900px) {
  .experience-list--tags { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .experience-list--tags { grid-template-columns: 1fr; }
  .experience-block { padding: 24px 24px; }
  .experience-block__heading { font-size: 22px; }
}

/* Per-matter "Read more" expansion for long list items */
.experience-list li[data-more] {
  padding-right: 8px;
}
.experience-list__more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  margin-left: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #8B6914;
  cursor: pointer;
}
.experience-list__more-toggle:hover { color: #C4924A; }
.experience-list__more-toggle svg {
  width: 9px;
  height: 6px;
  transition: transform 0.3s ease;
}
.experience-list li.is-expanded .experience-list__more-toggle svg {
  transform: rotate(180deg);
}
.experience-list__more-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
  margin-top: 0;
  font-size: 13.5px;
  color: #5a5a5a;
}
.experience-list li.is-expanded .experience-list__more-detail {
  opacity: 1;
  margin-top: 8px;
  /* max-height set inline via JS to the measured content height */
}

@media (prefers-reduced-motion: reduce) {
  .experience-list__more-detail,
  .experience-list__more-toggle svg {
    transition: none !important;
  }
}

/* Tribunal secretary work as a sub-section within International arbitration */
.experience-subblock {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(196,146,74,0.25);
}
.experience-subblock__label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8B6914;
  margin: 0 0 10px 0;
}
.experience-subblock__heading {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  color: #1c1c1c;
  margin: 0 0 14px 0;
}
