/* mend-kindle.css */

@import url("https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Inter:wght@400;500;600&display=swap");

/* Design tokens */

:root {
  --mk-navy: #182d49;
  --mk-cream: #e6d8c4;
  --mk-bg: #f9f5ee;
  --mk-text: #111827;
  --mk-muted: #6b7280;
  --mk-border: rgba(15, 23, 42, 0.12);
  --mk-radius-lg: 1.125rem;  /* 18px */
  --mk-radius-md: 0.75rem;   /* 12px */
  --mk-radius-pill: 999px;
  --mk-shadow-soft: 0 1.125rem 2.8125rem rgba(15, 23, 42, 0.16); /* 18px 45px */

  --mk-text-sm: 0.875rem;   /* 14px */
  --mk-text-xs: 0.8125rem;  /* 13px */
  --mk-text-xxs: 0.75rem;   /* 12px */
}

/* Base reset-ish */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--mk-bg);
  color: var(--mk-text);
  line-height: 1.6;
  font-size: 1rem;
}

/* Layout – scaffold = screen */

.page {
  width: 100%;
  margin: 0;
  padding: 0 3.5rem 3.5rem; /* no top padding so hero sits under header */
}

/* Site header / nav */

.site-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffffcc;
  backdrop-filter: blur(0.875rem);
  position: sticky;
  top: 0;
  z-index: 20;
}

/* Full-width header with side padding */

.site-header-inner {
  width: 100%;
  margin: 0;
  padding: 0.625rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-box {
  border-radius: var(--mk-radius-pill);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--mk-navy);
  color: var(--mk-navy);
  font-weight: 600;
  font-size: var(--mk-text-xs);
  letter-spacing: 0.08em;
}

.brand-text-small {
  font-size: var(--mk-text-xxs);
  color: var(--mk-navy);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 1.125rem;
  font-size: var(--mk-text-xs);
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--mk-navy);
  position: relative;
  padding-bottom: 0.1875rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.09375rem;
  background: var(--mk-navy);
  transition: width 0.16s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.nav-cta a {
  font-size: var(--mk-text-xs);
  font-weight: 500;
  padding: 0.4375rem 0.875rem;
  border-radius: var(--mk-radius-pill);
  text-decoration: none;
  border: 1.5px solid var(--mk-navy);
  color: var(--mk-navy);
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-cta a:hover {
  background: var(--mk-navy);
  color: #fff;
}

/* Hero sections */

/* Base hero – shared by top + closing CTA */
.hero {
  position: relative;              /* for video + ::before layers */
  overflow: hidden;                /* hide overspill on small screens */
  border-radius: 1.5rem;
  padding: clamp(3.5rem, 8vh, 6rem) 1.5rem clamp(3rem, 7vh, 5rem);
  margin-bottom: 2rem;
  box-shadow: var(--mk-shadow-soft);
}

/* Only the video hero gets full-height + centering */
.hero.hero--has-video {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero--light {
  background: #ffffff;
}

.hero--dark {
  background: var(--mk-navy);
  color: #f9fafb;
}

/* For the dark hero that has a video, let the video be the background (desktop) */
.hero.hero--dark.hero--has-video {
  background: transparent;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: "Cardo", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

/* Base subtitle – displayed in footer alongside button */
.hero-subtitle {
  font-family: "Cardo", serif;
  font-size: 0.9rem;
  font-style: italic;
  text-transform: capitalize;
  color: var(--mk-navy);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 1.125rem;
}

/* Hero inner layout */

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;

  width: 100%;
  margin: 0;

  /* pull content much closer to edges */
  padding-left: 1.25vw;   /* was 5vw → now 75% closer to the left wall */
  padding-right: 2.5vw;   /* a bit tighter on the right too */
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding-right: 1.25vw;
  margin-top: 2rem;
}

.hero-main {
  flex: 2;
}


/* Hero background video */

.hero-video-wrap {
  position: absolute;
  inset: 0;
  left: calc(50% - 50vw);   /* stretch to viewport edges */
  right: calc(50% - 50vw);
  z-index: -2;              /* behind ::before and content */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* Softer overlay: let the video show, keep text readable */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      rgba(24, 45, 73, 0.15),  /* soft navy tint at top */
      rgba(0, 0, 0, 0.35)      /* gentle darkening at bottom */
    );
}

/* Buttons */

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: var(--mk-text-xs);
  padding: 0.5625rem 1.125rem;
  border-radius: var(--mk-radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out, color 0.12s ease-out;
}

.btn-primary {
  background: var(--mk-cream);
  color: var(--mk-navy);
  border: none;
  border-radius: 999px;

  /* roughly half the size of the "heroic" version */
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  padding: 0.7rem 1.6rem;

  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1.25rem 2.25rem rgba(0, 0, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: inherit;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Solid navy button – e.g. pricing links */

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: var(--mk-text-xs);
  padding: 0.5rem 1rem;
  border-radius: var(--mk-radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(15, 23, 42, 0.9);
  background: var(--mk-navy);
  color: #f9fafb;
  transition: transform 0.12s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out, color 0.12s ease-out;
}

.btn-navy:hover {
  transform: translateY(-0.0625rem);
  box-shadow: 0 1rem 2.125rem rgba(15, 23, 42, 0.35);
  background: #122136;
}

/* Sections & typography */

.section {
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.section-header {
  margin-bottom: 1.125rem;
}

.section-kicker {
  font-size: var(--mk-text-xxs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mk-muted);
  margin-bottom: 0.25rem;
}

.section-title {
  font-family: "Cardo", serif;
  font-size: clamp(1.375rem, 2.2vw, 1.7rem);
  letter-spacing: -0.03em;
  margin: 0;
}

.section-intro {
  font-size: var(--mk-text-sm);
  color: var(--mk-muted);
  max-width: 40rem;
}

/* Duo section (How I Work + Outcomes) */

.section-duo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-duo-column {
  flex: 1;
}

/* Services blocks (Services page) */

.service-block {
  background: #ffffff;
  border-radius: var(--mk-radius-lg);
  border: 1px solid var(--mk-border);
  padding: 1.25rem 1.125rem 1.125rem;
  margin-bottom: 1.125rem;
}

.service-title {
  font-family: "Cardo", serif;
  font-size: 1.125rem;
  margin: 0 0 0.25rem;
}

.service-tagline {
  font-size: var(--mk-text-xs);
  color: var(--mk-muted);
  margin-bottom: 0.625rem;
}

.service-body {
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
}

.service-subheading {
  font-weight: 600;
  font-size: var(--mk-text-xs);
  margin-top: 0.625rem;
  margin-bottom: 0.25rem;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.25rem;
  font-size: var(--mk-text-xs);
  color: var(--mk-muted);
}

.service-list li {
  margin-bottom: 0.1875rem;
}

/* Pricing button placement in service cards */

.service-actions {
  margin-top: 0.875rem;
  display: flex;
  justify-content: flex-end;
}

/* Discovery call page */

.list-tight {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
  font-size: var(--mk-text-sm);
  color: var(--mk-navy);
}

.list-tight li {
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
}

.list-tight li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--mk-navy);
  font-weight: bold;
}

/* ── Discovery page editorial layout ─────────────────────────────── */

.discovery-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.discovery-col {
  padding: 2rem 1.75rem;
  border-top: 1px solid rgba(24, 45, 73, 0.1);
}

.discovery-col:first-child {
  background: var(--mk-cream);
  border-radius: var(--mk-radius-lg) var(--mk-radius-lg) 0 0;
}

.discovery-col:last-child {
  background: var(--mk-navy);
  border-radius: 0 0 var(--mk-radius-lg) var(--mk-radius-lg);
  border-top: none;
}

.discovery-col:last-child .discovery-col-title {
  color: var(--mk-cream);
}

.discovery-col:last-child .discovery-col-intro {
  color: rgba(230, 216, 196, 0.72);
}

.discovery-col:last-child .list-tight {
  color: rgba(230, 216, 196, 0.82);
}

.discovery-col:last-child .list-tight li::before {
  color: var(--mk-cream);
}

.discovery-col-title {
  font-family: "Cardo", serif;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--mk-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.discovery-col-intro {
  font-size: var(--mk-text-sm);
  color: var(--mk-navy);
  opacity: 0.75;
  margin: 0 0 0.5rem;
}

/* Editorial numbered sections */
.discovery-editorial {
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.discovery-editorial-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(24, 45, 73, 0.08);
  align-items: start;
}

.discovery-editorial-item:last-child {
  border-bottom: 1px solid rgba(24, 45, 73, 0.08);
}

.discovery-editorial-num {
  font-size: 1rem;
  color: var(--mk-navy);
  padding-top: 0.2rem;
  line-height: 1;
}

.discovery-editorial-title {
  font-family: "Cardo", serif;
  font-size: 1.2rem;
  color: var(--mk-navy);
  margin: 0 0 0.625rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.discovery-editorial-body {
  font-size: var(--mk-text-sm);
  color: var(--mk-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Discovery form ───────────────────────────────────────────────── */

.discovery-form-wrap {
  background: var(--mk-cream);
  border-radius: var(--mk-radius-lg);
  padding: 2rem 1.75rem;
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.discovery-form-title {
  font-family: "Cardo", serif;
  font-size: 1.35rem;
  color: var(--mk-navy);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.discovery-form-subtitle {
  font-size: var(--mk-text-sm);
  color: var(--mk-navy);
  opacity: 0.65;
  margin: 0 0 1.75rem;
  font-style: italic;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-field label {
  font-size: var(--mk-text-xs);
  font-weight: 600;
  color: var(--mk-navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field label span.optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.5;
  margin-left: 0.25rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: #fff;
  border: 1px solid rgba(24, 45, 73, 0.18);
  border-radius: var(--mk-radius-md);
  padding: 0.625rem 0.875rem;
  font-size: var(--mk-text-sm);
  color: var(--mk-navy);
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--mk-navy);
  box-shadow: 0 0 0 3px rgba(24, 45, 73, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(24, 45, 73, 0.35);
}

.form-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.time-slot {
  padding: 0.375rem 0.875rem;
  border-radius: var(--mk-radius-pill);
  border: 1px solid rgba(24, 45, 73, 0.2);
  background: #fff;
  font-size: var(--mk-text-xs);
  color: var(--mk-navy);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  user-select: none;
}

.time-slot:hover {
  border-color: var(--mk-navy);
}

.time-slot.selected {
  background: var(--mk-navy);
  border-color: var(--mk-navy);
  color: var(--mk-cream);
}

.form-submit {
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-success-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.form-success h3 {
  font-family: "Cardo", serif;
  font-size: 1.35rem;
  color: var(--mk-navy);
  margin: 0 0 0.5rem;
}

.form-success p {
  font-size: var(--mk-text-sm);
  color: var(--mk-muted);
  margin: 0;
}

@media (min-width: 45em) {
  .discovery-pair {
    grid-template-columns: 1fr 1fr;
  }

  .discovery-col:first-child {
    border-radius: var(--mk-radius-lg) 0 0 var(--mk-radius-lg);
  }

  .discovery-col:last-child {
    border-radius: 0 var(--mk-radius-lg) var(--mk-radius-lg) 0;
    border-top: 1px solid rgba(24, 45, 73, 0.1);
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-field.full-width {
    grid-column: 1 / -1;
  }
}

/* "What We Do" stacked layout (Home page) */

.what-we-do.stacked {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1.25rem;
}

.what-we-do.stacked .service {
  padding: 0.625rem 0 0.75rem;
  max-width: 40rem;
}

.what-we-do.stacked .service + .service {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Dark What We Do section band */

.what-we-do-dark {
  background: var(--mk-navy);
  color: #f9fafb;
  padding: 3rem 1.5rem;
  border-radius: 1.5rem;
}

/* Service items inside the split layout need their own padding */
.what-we-do-split .service {
  padding: 0.875rem 0;
}

.what-we-do-split .service + .service {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.what-we-do-dark .section-title {
  color: #ffffff;
}

.what-we-do-dark .service-heading {
  color: #ffffff;
}

.what-we-do-dark .service-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.what-we-do-dark .service + .service {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.what-we-do-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.service-heading {
  font-family: "Cardo", serif;
  font-size: 1rem;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.service-subtitle {
  margin: 0;
  font-size: var(--mk-text-xs);
  color: var(--mk-muted);
}

/* Pricing & Engagement page layout hooks */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  background: var(--mk-cream);
  border-radius: var(--mk-radius-lg);
  border: none;
  box-shadow: 0 0.375rem 1.25rem rgba(15, 23, 42, 0.08);
  padding: 1.25rem 1.25rem 1.125rem;
}

.pricing-card-title {
  font-family: "Cardo", serif;
  font-size: 1.125rem;
  margin: 0 0 0.25rem;
  color: var(--mk-navy);
}

.pricing-card-subtitle {
  font-size: var(--mk-text-xs);
  color: var(--mk-navy);
  opacity: 0.65;
  margin: 0 0 0.75rem;
}

.pricing-table {
  margin: 0 0 0.625rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.25rem;
  font-size: var(--mk-text-sm);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(24, 45, 73, 0.1);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row dt {
  font-weight: 500;
  color: var(--mk-navy);
  flex: 1;
}

.pricing-row dd {
  margin: 0;
  color: var(--mk-navy);
  opacity: 0.7;
  font-family: "Cardo", serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-meta-label {
  font-size: var(--mk-text-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mk-navy);
  opacity: 0.55;
  margin: 0.75rem 0 0.3rem;
}

.pricing-meta-list {
  margin: 0;
  padding-left: 1.125rem;
  font-size: var(--mk-text-xs);
  color: var(--mk-navy);
  opacity: 0.75;
}

/* FAQ — editorial numbered dark band */

.faq-dark {
  background: var(--mk-navy);
  color: var(--mk-cream);
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.faq-dark .section-kicker {
  color: rgba(230, 216, 196, 0.6);
}

.faq-dark .section-title {
  color: var(--mk-cream);
}

.faq-dark .section-intro {
  color: rgba(230, 216, 196, 0.72);
  max-width: 40rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.faq-item {
  background: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(230, 216, 196, 0.12);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 1.5rem;
  align-items: start;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(230, 216, 196, 0.12);
}

.faq-number {
  font-family: "Cardo", serif;
  font-size: var(--mk-text-xs);
  color: rgba(230, 216, 196, 0.35);
  letter-spacing: 0.04em;
  padding-top: 0.25rem;
}

.faq-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-question {
  font-family: "Cardo", serif;
  font-size: 1.25rem;
  margin: 0;
  color: var(--mk-cream);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.faq-item p {
  font-size: var(--mk-text-sm);
  color: rgba(230, 216, 196, 0.72);
  margin: 0;
  line-height: 1.65;
}

.faq-list-bullets {
  margin: 0.25rem 0 0 1.125rem;
  font-size: var(--mk-text-sm);
  color: rgba(230, 216, 196, 0.65);
  opacity: 1;
}

/* Full-bleed on desktop */
@media (min-width: 56.25em) {
  .faq-dark {
    position: relative;
    border-radius: 0;
    overflow: visible;
  }

  .faq-dark::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: var(--mk-navy);
  }
}

.closing-cta {
  background: var(--mk-navy);
  color: #f9fafb;
  border-radius: var(--mk-radius-lg);
  padding: 1.375rem 1.25rem 1.125rem;
  text-align: left;
}

.closing-cta h2 {
  font-family: "Cardo", serif;
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.closing-cta p {
  margin: 0 0 0.75rem;
  font-size: var(--mk-text-sm);
  max-width: 38.75rem;
}

/* Pricing page hero */
.pricing-hero .hero-title,
.pricing-hero .hero-subtitle {
  color: var(--mk-cream);
}

.pricing-hero .hero-kicker {
  color: rgba(230, 216, 196, 0.75);
}

/* Pricing philosophy dark band */
.pricing-philosophy {
  background: var(--mk-navy);
  color: #f9fafb;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.pricing-philosophy .section-kicker {
  color: rgba(230, 216, 196, 0.6);
}

.pricing-philosophy .section-title {
  color: var(--mk-cream);
}

.pricing-philosophy p {
  font-size: var(--mk-text-sm);
  color: rgba(230, 216, 196, 0.82);
  max-width: 40rem;
  margin-bottom: 0.75rem;
}

.pricing-philosophy .pricing-meta-list {
  color: rgba(230, 216, 196, 0.75);
  opacity: 1;
}

/* Full-bleed dark band on desktop */
@media (min-width: 56.25em) {
  .pricing-philosophy {
    position: relative;
    border-radius: 0;
    overflow: visible;
  }

  .pricing-philosophy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: var(--mk-navy);
  }
}

/* Services grid layout — mobile first: single column */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

/* Reset all explicit placements at base level */
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: auto;
  grid-row: auto;
  max-width: 100%;
  justify-self: auto;
  width: 100%;
}

/* Service card: image on top, title bar below */

.service-card {
  position: relative;
  border-radius: var(--mk-radius-lg);
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--mk-cream);
}

.service-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.18);
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image area */
.service-card-front {
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 45, 73, 0.12);
  transition: background 0.3s ease;
}

.service-card:hover .service-card-image-overlay {
  background: rgba(24, 45, 73, 0.22);
}

/* Hide the old in-image title */
.service-card-title-front {
  display: none;
}

/* Corner peel animation — clips front layer to expose navy peek behind */
@keyframes cornerPeel {
  0%, 100% {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5rem), calc(100% - 3.5rem) 100%, 0 100%);
  }
}

/* Title bar below image */
.service-card-label {
  background: var(--mk-cream);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-card-label h3 {
  font-family: "Cardo", serif;
  font-size: 1.05rem;
  margin: 0;
  color: var(--mk-navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Tap hint — hidden on desktop, shown on mobile */
.service-card-tap-hint {
  display: none;
}

/* Click finger animation */
@keyframes fingerTap {
  0%, 100% { transform: scale(1) translateY(0);    opacity: 0.9; }
  40%       { transform: scale(0.88) translateY(3px); opacity: 1;   }
  60%       { transform: scale(1.05) translateY(-2px); opacity: 0.9; }
}

@keyframes fingerFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Navy back layer — always visible behind the front */
.service-card-peek {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--mk-navy);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem 1.125rem;
}

.service-card-peek p {
  font-family: "Cardo", serif;
  font-style: italic;
  font-size: var(--mk-text-xs);
  color: var(--mk-cream);
  margin: 0;
  text-align: right;
  max-width: 14ch;
  line-height: 1.4;
  opacity: 0.85;
}

/* Click finger — bottom-left of the peek */
.service-card-peek::after {
  content: none;
}

/* Finger on the card itself, above everything, inside the exposed triangle */
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  right: 8rem;
  width: 1.75rem;
  height: 1.75rem;
  z-index: 10;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.5 2.5v12.25l-2.3-2.3a1.5 1.5 0 0 0-2.1 2.15l5.1 5.6A6 6 0 0 0 13.6 22H15a6 6 0 0 0 6-6v-4.5a1.5 1.5 0 0 0-3 0V10a1.5 1.5 0 0 0-3 0v-.5a1.5 1.5 0 0 0-3 0V2.5a1.5 1.5 0 0 0-3 0Z' fill='%23e6d8c4' stroke='%23e6d8c4' stroke-width='0.3' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

.service-card:hover::before {
  opacity: 1;
  transform: translateY(0);
  animation: fingerTap 1.2s ease-in-out 0.4s infinite;
}

.service-card:hover .service-card-peek::after {
  opacity: 1;
  transform: translateY(0);
  animation: fingerFadeIn 0.3s ease forwards, fingerTap 1.2s ease-in-out 0.4s infinite;
}

/* Front layer — sits above peek, gets clip-path applied */
.service-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: cornerPeel 7.5s ease-in-out infinite;
  transition: clip-path 0.4s ease;
}

/* Fold crease shadow at the diagonal cut */
.service-card-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(
    225deg,
    transparent 40%,
    rgba(0, 0, 0, 0.12) 48%,
    rgba(0, 0, 0, 0.04) 56%,
    transparent 64%
  );
  pointer-events: none;
  z-index: 3;
}

/* On hover: larger peel */
.service-card:hover .service-card-inner {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 13rem), calc(100% - 13rem) 100%, 0 100%);
  animation: none;
}

/* Arrow icon */
.service-card-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(24, 45, 73, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--mk-navy);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card-icon {
  transform: rotate(45deg);
  border-color: var(--mk-navy);
  background: var(--mk-navy);
  color: var(--mk-cream);
}

/* Hide all back content by default */
.service-card-back {
  display: none;
}

/* ── Backdrop ─────────────────────────────────────────────────────── */

.mk-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 18, 30, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.mk-backdrop.is-visible {
  opacity: 1;
}

/* ── Clone card ───────────────────────────────────────────────────── */

.mk-clone {
  position: fixed;
  z-index: 200;
  border-radius: var(--mk-radius-lg);
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45);
  cursor: default;

  /* 3D flip setup */
  perspective: 1200px;
  transform-style: preserve-3d;
}

.mk-clone-flipper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mk-clone-flipper.is-flipped {
  transform: rotateY(180deg);
}

/* Front face — image + title bar */
.mk-face-front {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--mk-radius-lg);
}

.mk-face-front .mk-face-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.mk-face-front .mk-face-label {
  background: var(--mk-cream);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mk-face-front .mk-face-label h3 {
  font-family: "Cardo", serif;
  font-size: 1.05rem;
  margin: 0;
  color: var(--mk-navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Back face — portrait content */
.mk-face-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  background: var(--mk-navy);
  border-radius: var(--mk-radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Blurred image echo — injected as real element by JS */
.mk-echo-layer {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(0.55);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.mk-back-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem 1.75rem 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  position: relative;
  z-index: 1;
}

.mk-back-body.is-visible {
  opacity: 1;
}

.mk-back-body .service-card-title {
  font-family: "Cardo", serif;
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  color: var(--mk-cream);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mk-back-body .service-card-tagline {
  font-family: "Cardo", serif;
  font-style: italic;
  font-size: var(--mk-text-sm);
  color: rgba(230, 216, 196, 0.7);
  margin: 0 0 1.1rem;
}

.mk-back-body .service-card-body {
  font-size: var(--mk-text-sm);
  color: rgba(230, 216, 196, 0.88);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.mk-back-body .service-subheading {
  font-family: "Cardo", serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--mk-cream);
  margin: 1rem 0 0.4rem;
  letter-spacing: -0.01em;
}

.mk-back-body .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.mk-back-body .service-list li {
  font-size: var(--mk-text-xs);
  color: rgba(230, 216, 196, 0.78);
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  position: relative;
}

.mk-back-body .service-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--mk-cream);
  font-weight: bold;
}

/* Pricing bar — cream on navy, pinned to bottom */
.mk-back-pricing {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: var(--mk-cream);
  border-top: none;
  padding: 0.875rem 1.25rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mk-back-pricing.is-visible {
  opacity: 1;
}

.mk-back-pricing a {
  font-family: "Cardo", serif;
  font-size: var(--mk-text-sm);
  color: var(--mk-navy);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s ease;
}

.mk-back-pricing a:hover {
  opacity: 0.65;
}

/* Close button */
.mk-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: rgba(24, 45, 73, 0.18);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  transition: background 0.2s ease;
  opacity: 0;
  transition: opacity 0.25s ease 0.3s;
}

.mk-clone.close-visible .mk-close {
  opacity: 1;
}

.mk-close:hover {
  background: rgba(24, 45, 73, 0.45);
}

/* Legacy card text styles (kept for future use) */

.service-card-title {
  font-family: "Cardo", serif;
  font-size: 1.125rem;
  margin: 0;
  color: var(--mk-navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-card-tagline {
  font-size: var(--mk-text-xs);
  color: var(--mk-muted);
  margin: 0;
  font-weight: 500;
  font-style: italic;
}

.service-card-body {
  font-size: var(--mk-text-sm);
  color: var(--mk-navy);
  margin: 0;
  line-height: 1.6;
}

.service-card-detail {
  margin-top: 0.5rem;
}

.service-card-detail:first-of-type {
  margin-top: 1rem;
}

.service-subheading {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--mk-navy);
  margin: 0.875rem 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: var(--mk-text-xs);
  color: var(--mk-navy);
}

.service-list li {
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--mk-navy);
  font-weight: bold;
}

.site-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: var(--mk-text-xxs);
  color: var(--mk-muted);
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  flex-wrap: wrap;
}

/* ── Hamburger button ──────────────────────────────────────── */

.nav-hamburger {
  display: none; /* shown only on mobile via media query */
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--mk-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ── Slide-out drawer ──────────────────────────────────────── */

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72vw;
  max-width: 280px;
  background: var(--mk-bg);
  z-index: 300;
  padding: 4rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -0.5rem 0 2rem rgba(15, 23, 42, 0.15);
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer a {
  font-size: 0.9375rem;
  color: var(--mk-navy);
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.15s ease;
}

.nav-drawer a:hover {
  opacity: 0.6;
}

.nav-drawer a:last-child {
  border-bottom: none;
  margin-top: 0.75rem;
  font-family: "Cardo", serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
}

.nav-drawer-close {
  position: absolute;
  top: 0.875rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--mk-navy);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  line-height: 1;
}

.nav-drawer-close:hover {
  opacity: 1;
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 30, 0.35);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hide drawer on desktop */
@media (min-width: 45.0625em) {
  .nav-drawer,
  .nav-drawer-backdrop {
    display: none;
  }
}

/* Responsive tweaks */

/* Mobile: up to ~720px (45em at 16px) */
@media (max-width: 45em) {
  .site-header-inner {
    padding-inline: 1rem;
  }

  .page {
    padding-inline: 1rem;
    padding-block: 1rem 3rem;
  }

  .hero {
    padding: 1.5rem 1.125rem 1.375rem;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  /* Hide video on mobile — navy from base .hero--dark shows through */
  .hero-video-wrap {
    display: none;
  }

  /* Services grid: single column on mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Finger: scale back position for narrower cards */
  .service-card::before {
    right: 5rem;
    bottom: 0.4rem;
    width: 1.4rem;
    height: 1.4rem;
  }

  /* Peel crease shadow: smaller on mobile */
  .service-card-inner::after {
    width: 3.5rem;
    height: 3.5rem;
  }

  /* Larger tap target for icon */
  .service-card-icon {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.875rem;
  }

  /* Lighter backdrop blur — prevents Safari stutter */
  .mk-backdrop {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  /* Navigation handled entirely by hamburger drawer */
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  /* Fix 5: Hide tagline from header on mobile — logo pill + hamburger is cleaner */
  .brand-text-small {
    display: none;
  }

  /* Fix 2: Stack About linda bottom columns on mobile */
  .about-linda-bottom {
    grid-template-columns: 1fr;
  }

  /* Fix 3: Scale hero title down on mobile */
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  /* Hero full-bleed on mobile — same ::before pattern as desktop */

  /* What We Do dark band — full-bleed on mobile */
  .section.what-we-do-dark {
    position: relative;
    border-radius: 0;
    overflow: visible;
  }

  .section.what-we-do-dark::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: var(--mk-navy);
  }

  /* Services cards: replace icon with static tap hint on mobile */
  .service-card-icon {
    display: none;
  }

  .service-card-tap-hint {
    display: block;
    font-size: 0.7rem;
    font-family: "Cardo", serif;
    font-style: italic;
    color: var(--mk-navy);
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Linda photo — bleed to viewport edges on mobile */
  .about-linda-grid img {
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
    border-radius: 0;
  }

  /* Pricing cards — full-bleed on mobile */
  .pricing-card {
    border-radius: 0;
    box-shadow: none;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-bottom: 1px solid rgba(24, 45, 73, 0.08);
  }

  .pricing-grid {
    gap: 0;
  }

  /* Pricing philosophy dark band — full-bleed on mobile */
  .pricing-philosophy {
    position: relative;
    border-radius: 0;
    overflow: visible;
  }

  .pricing-philosophy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: var(--mk-navy);
  }

  /* FAQ dark band — full-bleed on mobile */
  .faq-dark {
    position: relative;
    border-radius: 0;
    overflow: visible;
  }

  .faq-dark::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: var(--mk-navy);
  }

  /* Fix specificity bug: the base rule .hero.hero--dark.hero--has-video
     sets background: transparent (3-class selector). This overrides it. */
  .hero.hero--dark.hero--has-video {
    background: var(--mk-navy);
  }

  /* Bleed ::before — same as desktop */
  .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
  }

  .hero.hero--dark::before {
    background: var(--mk-navy);
  }
}

/* Tablet: 45em to 56.25em */
@media (min-width: 45em) and (max-width: 56.24em) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    justify-self: center;
  }
}

/* Desktop: wider layouts from ~900px (56.25em) */
@media (min-width: 56.25em) {

  .nav-cta {
    display: block;
  }

  /* Hero full-bleed bands (dark + light) */
  .hero {
    border-radius: 0;
    box-shadow: none;
    overflow: visible; /* allow full-bleed ::before and video extension */
  }

  .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
  }

  .hero.hero--dark::before {
    background: var(--mk-navy);
  }

  .hero.hero--light::before {
    background: #ffffff;
  }

  /* For video heroes, don't paint the ::before background over the video */
  .hero.hero--has-video::before {
    content: none;
  }

  /* What We Do dark band also full-bleed */
  .section.what-we-do-dark {
    position: relative;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .section.what-we-do-dark::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: var(--mk-navy);
  }

  /* Duo section: How I Work + Outcomes side by side */
  .section-duo {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .section-duo-column {
    max-width: 32rem;
  }

  /* Slightly stronger section headings on desktop */
  .section-title {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
  }

  .hero-subtitle {
    white-space: nowrap;    /* keep it on a single line on wide screens */
  }

  /* Services grid: 6-col base for centered bottom row */
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Top row: 3 cards each span 2 of 6 columns */
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: span 2;
  }

  /* Bottom row: 2 cards centered — skip col 1 and col 6 */
  .service-card:nth-child(4) {
    grid-column: 2 / 4;
  }

  .service-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}
/* ── What We Do: split with collage ─────────────────────── */
.what-we-do-split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.what-we-do-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  border-radius: var(--mk-radius-lg);
  overflow: hidden;
  height: 260px;
}

.what-we-do-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.what-we-do-collage img:nth-child(1) { grid-column: 1; grid-row: 1; }
.what-we-do-collage img:nth-child(2) { grid-column: 1; grid-row: 2; }
.what-we-do-collage img:nth-child(3) { grid-column: 2; grid-row: 1 / 3; }
.what-we-do-collage img:nth-child(4) { grid-column: 3; grid-row: 1; }
.what-we-do-collage img:nth-child(5) { grid-column: 3; grid-row: 2; }

/* ── About + Linda split ─────────────────────────────────── */
.about-linda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-linda-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-linda-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-linda-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 56.25em) {
  .what-we-do-split {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  .what-we-do-split > *:first-child {
    flex: 1;
  }

  .what-we-do-collage {
    flex: 1;
    height: auto;
    align-self: stretch;
    /* Negate page padding (3.5rem) + section horizontal padding (1.5rem) */
    margin-right: -5rem;
    margin-top: -3rem;
    margin-bottom: -3rem;
    border-radius: 0;
  }

  .section--flush-bottom {
    margin-bottom: 0;
  }

  .about-linda-grid {
    grid-template-columns: 38% 1fr;
    gap: 0;
    align-items: stretch;
  }

  .about-linda-grid img {
    height: 100%;
    min-height: 480px;
    margin-left: -3.5rem;
    margin-top: calc(-1 * clamp(2rem, 4vh, 3.5rem));
    margin-bottom: 0;
    border-radius: 0;
  }
}