/* ============================================================
   LPM Consulting — styles.css
   ============================================================ */

/* Local Fonts — King and Queen */
@font-face {
  font-family: 'King and Queen';
  src: url('uploads/King and Queen/KingandQueen-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'King and Queen';
  src: url('uploads/King and Queen/KingandQueen-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'King and Queen';
  src: url('uploads/King and Queen/KingandQueen-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'King and Queen';
  src: url('uploads/King and Queen/KingandQueen-SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Local Fonts — Work Sans (variable) */
@font-face {
  font-family: 'Work Sans';
  src: url('uploads/Work Sans/WorkSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Work Sans';
  src: url('uploads/Work Sans/WorkSans-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   CSS Custom Properties — Design Tokens
   ============================================================

   COLOR COMBINATION RULES (from Brand Guide p.7):
   ┌──────────────┬──────────────────────────┬──────────────────────────┐
   │ Background   │ Text Colors              │ Shape/Accent Colors      │
   ├──────────────┼──────────────────────────┼──────────────────────────┤
   │ Blueberry    │ white, gardenia,         │ lime, cornflower,        │
   │              │ periwinkle               │ periwinkle               │
   │ Cornflower   │ blueberry, white         │ periwinkle, blueberry,   │
   │              │                          │ lime                     │
   │ Periwinkle   │ blueberry, cornflower    │ cornflower, blueberry    │
   │ Gardenia     │ blueberry, ink           │ lime, cornflower,        │
   │              │                          │ periwinkle               │
   │ Mint         │ blueberry, ink           │ lime, cornflower,        │
   │              │                          │ blueberry                │
   │ Ink          │ white, gardenia,         │ cornflower, periwinkle   │
   │              │ periwinkle               │                          │
   └──────────────┴──────────────────────────┴──────────────────────────┘

   ⚠ Electric Lime (#DFFF00) is ACCENT ONLY — never as a background.
   ============================================================ */
:root {
  /* ── Brand Colors ── */
  --blueberry:   #384BCF;
  --cornflower:  #717FEF;
  --periwinkle:  #C5CBFF;
  --lime:        #DFFF00;
  --mint:        #EBFFD6;
  --gardenia:    #FFFFF6;
  --ink:         #333333;

  /* ── Semantic Aliases ── */
  --color-primary:       var(--blueberry);
  --color-primary-hover: #2a3aab;
  --color-secondary:     var(--cornflower);
  --color-accent:        var(--lime);
  --color-surface:       var(--gardenia);
  --color-text:          var(--ink);
  --color-text-muted:    #333333;
  --color-text-light:    #666666;

  /* ── Typography ── */
  --font-display: 'King and Queen', Georgia, serif;
  --font-body:    'Work Sans', system-ui, sans-serif;

  /* ── Layout ── */
  --nav-height: 70px;
  --max-width: 1200px;
  --section-pad-v: 100px;
  --section-pad-h: 5%;

  /* ── Borders & Shapes ── */
  --radius-card: 16px;
  --radius-pill: 100px;
  --radius-photo: 20px;

  /* ── Motion ── */
  --transition: all 0.25s ease;

  /* ── Shadows ── */
  --shadow-card:       0 2px 16px rgba(56, 75, 207, 0.07);
  --shadow-card-hover: 0 12px 40px rgba(56, 75, 207, 0.14);
  --shadow-btn:        0 8px 24px rgba(56, 75, 207, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--gardenia);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   Typography
   ============================================================ */
/* H1 — King and Queen Semi-Bold, 0.01em tracking (Brand Guide: 40pt, 10 tracking) */
h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

/* H1 on dark backgrounds — use Regular weight for less contrast (Brand Guide) */
.bg-blueberry h1,
.bg-ink h1 {
  font-weight: 400;
}

/* H2 — King and Queen Semi-Bold, 40pt, 10pt tracking, optical leading */
h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 53px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

/* H3 — Work Sans Bold (Brand Guide: sub-headers use bold) */
h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

/* Sub-header styles (Brand Guide: 15pt and 12pt variants) */
.subhead-1 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.subhead-2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Label — Work Sans Bold, ALL CAPS, 0.1em tracking (Brand Guide: 100 tracking) */
.label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blueberry);
}

.label--light {
  color: var(--periwinkle);
}

/* Body text — Work Sans Medium 14px */
p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

/* Body medium weight variant */
.text-medium {
  font-weight: 500;
}

/* Muted text color (brand-aligned instead of arbitrary grays) */
.text-muted {
  color: var(--color-text-muted);
}

.text-light {
  color: var(--color-text-light);
}

/* ============================================================
   Layout Helpers
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-pad-h);
  padding-right: var(--section-pad-h);
}

.section {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
  position: relative;
  overflow: hidden;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col--photo-right .col-text {
  order: 1;
}
.two-col--photo-right .col-photo {
  order: 2;
}

.two-col--photo-left .col-text {
  order: 2;
}
.two-col--photo-left .col-photo {
  order: 1;
}

/* ============================================================
   Photo Container
   ============================================================ */
.photo-frame {
  border-radius: var(--radius-photo);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  transition: var(--transition);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.photo-frame:hover img {
  transform: scale(1.03);
}

/* Landscape photo variant */
.photo-frame--landscape {
  aspect-ratio: 4/3;
}

/* Wide/banner variant */
.photo-frame--wide {
  aspect-ratio: 16/9;
}

/* Arch-shaped photo frame — rounded top, flat bottom */
.photo-frame--arch {
  border-radius: 50% 50% 0 0 / 37.5% 37.5% 0 0;
  aspect-ratio: 3/4;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-width: 200px;
}

.btn--primary {
  background-color: var(--blueberry);
  color: #fff;
  border-color: var(--blueberry);
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* Lime accent button — brand guide neon/accent variant */
.btn--lime {
  background-color: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.btn--lime:hover {
  background-color: #d4f000;
  border-color: #d4f000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(223, 255, 0, 0.35);
}

.btn--primary-outline {
  background-color: transparent;
  color: var(--blueberry);
  border-color: var(--blueberry);
}

.btn--primary-outline:hover {
  background-color: var(--blueberry);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background-color: #fff;
  color: var(--blueberry);
  border-color: #fff;
}

.btn--white:hover {
  background-color: var(--gardenia);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* White outline button — for dark backgrounds */
.btn--white-outline {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--white-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn--ghost-white {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Ghost button variant for light backgrounds */
.btn--ghost-blue {
  background-color: transparent;
  color: var(--blueberry);
  border-color: rgba(56, 75, 207, 0.4);
}

.btn--ghost-blue:hover {
  background-color: rgba(56, 75, 207, 0.08);
  border-color: var(--blueberry);
}

.text-link {
  font-weight: 600;
  color: var(--blueberry);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.25s ease;
}

.text-link:hover::after {
  width: 100%;
}

/* Lime accent underline — thin line beneath key phrases */
.lime-underline {
  display: inline;
  background-image: linear-gradient(var(--lime), var(--lime));
  background-size: 0 3px;
  background-position: 0 92%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.lime-underline.is-visible {
  background-size: 100% 3px;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: rgba(255, 255, 246, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(56, 75, 207, 0.1);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-h);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--blueberry);
  letter-spacing: -0.01em;
}

/* Desktop Nav Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.25s ease;
}

.nav__link:hover {
  color: var(--blueberry);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: var(--blueberry);
  font-weight: 600;
}

/* Hamburger (CSS-only toggle) */
.nav__toggle {
  display: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--blueberry);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Mobile menu panel */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--gardenia);
  padding: 32px var(--section-pad-h);
  flex-direction: column;
  gap: 24px;
  border-bottom: 2px solid var(--periwinkle);
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: var(--transition);
}

.nav__mobile-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(56, 75, 207, 0.1);
  transition: color 0.2s;
}

.nav__mobile-link:hover {
  color: var(--blueberry);
}

.nav__toggle:checked ~ .nav__mobile-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav__toggle:checked ~ .nav__inner .nav__hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle:checked ~ .nav__inner .nav__hamburger span:nth-child(2) {
  opacity: 0;
}

.nav__toggle:checked ~ .nav__inner .nav__hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   Arch Decorative Elements (legacy CSS arches)
   ============================================================ */
.arch-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

.arch-deco svg {
  width: 100%;
  height: 100%;
}

/* Real PNG arch images */
.arch-img {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ============================================================
   Section Backgrounds
   ============================================================ */
.bg-gardenia  { background-color: var(--gardenia); }
.bg-blueberry { background-color: var(--blueberry); }
.bg-periwinkle{ background-color: var(--periwinkle); }
.bg-mint      { background-color: var(--mint); }
.bg-ink       { background-color: var(--ink); }

.bg-blueberry h1,
.bg-blueberry h2,
.bg-blueberry h3,
.bg-blueberry p,
.bg-blueberry .label {
  color: #fff;
}

.bg-blueberry .label {
  color: var(--periwinkle);
}

/* ============================================================
   Hero Sections
   ============================================================ */
.hero {
  padding-top: calc(var(--section-pad-v) + 40px);
  padding-bottom: var(--section-pad-v);
}

.hero .col-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.hero .col-text .btn {
  align-self: flex-start;
}

.hero h1 em {
  font-style: italic;
  color: var(--blueberry);
}

.hero__subhead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 480px;
}

/* ============================================================
   Value Statement Section
   ============================================================ */
.value-statement-section {
  position: relative;
  overflow: hidden;
  z-index: 10;
}

@media (min-width: 769px) {
  .value-statement-section {
    overflow: visible;
  }
}

.value-statement {
  text-align: center;
  position: relative;
  z-index: 2;
}

.value-statement__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.lime-dot {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.value-statement__body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
}

/* ============================================================
   Services Cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-card h3 {
  font-family: var(--font-display);
  color: var(--blueberry);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--periwinkle);
  margin-bottom: 4px;
}

.service-card__best-for {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.service-card__body {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
}

/* ============================================================
   Client Logo Grid
   ============================================================ */
.clients-banner {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.clients-heading-display {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 53px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--blueberry);
  line-height: 1.15;
}

/* Logo Marquee */
.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  mask-image: linear-gradient(to right, black 0%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee__track img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  flex-shrink: 0;
}

/* Color reveal — stationary wrapper stays in place, mask stays fixed */
.logo-marquee__color-reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 25%, black 40%, black 60%, transparent 75%);
  -webkit-mask-image: linear-gradient(to right, transparent 25%, black 40%, black 60%, transparent 75%);
}

.logo-marquee__track--color img {
  filter: none;
  opacity: 1;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Legacy static grid (kept for contact page sidebar) */
.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 48px;
  margin-top: 36px;
}

.client-logo-grid img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s;
}

.client-logo-grid img:hover {
  filter: grayscale(0%) opacity(1);
}

/* Legacy text clients list (kept for contact page sidebar) */
.clients-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
  margin-top: 28px;
}

.clients-list__item {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--blueberry);
  opacity: 0.75;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.clients-list__item:hover {
  opacity: 1;
}

.clients-list__sep {
  color: var(--cornflower);
  opacity: 0.5;
  font-size: 18px;
  font-weight: 300;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--lime);
  opacity: 0.7;
  display: block;
  margin-bottom: 8px;
  user-select: none;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.testimonial-card__attribution {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.4;
}

.testimonial-card__attribution strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 769px) {
  .cta-banner {
    overflow: visible;
  }
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  margin-bottom: 36px;
}

.cta-banner .lime-dot {
  margin: 0 auto 20px;
}

/* ============================================================
   Section Header
   ============================================================ */
.section-header {
  margin-bottom: 52px;
}

.section-header .label {
  margin-bottom: 14px;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

/* ============================================================
   Service Detail (How We Work page)
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.service-detail__meta {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: var(--periwinkle);
  line-height: 1;
  margin-bottom: 12px;
}

.best-for-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--periwinkle);
  color: var(--blueberry);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.case-study-box {
  margin-top: 40px;
  background: rgba(56, 75, 207, 0.05);
  border-left: 4px solid var(--blueberry);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 28px 28px 28px 24px;
}

.case-study-box .case-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blueberry);
  margin-bottom: 12px;
  display: block;
}

.case-study-box p {
  font-size: 15px;
  line-height: 1.7;
  font-style: normal;
  color: var(--ink);
}

/* Mint section case study box */
.bg-mint .case-study-box {
  background: rgba(255,255,246,0.7);
  border-left-color: var(--blueberry);
}

/* Periwinkle section case study box */
.bg-periwinkle .case-study-box {
  background: rgba(255,255,255,0.55);
  border-left-color: var(--blueberry);
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blueberry);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(56, 75, 207, 0.25);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--cornflower);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-email-link {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-text-light);
}

.form-email-link a {
  color: var(--blueberry);
  font-weight: 600;
}

.form-email-link a:hover {
  text-decoration: underline;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background-color: var(--periwinkle);
  color: var(--blueberry);
  padding: 60px var(--section-pad-h) 36px;
  position: relative;
  overflow: hidden;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(56, 75, 207, 0.15);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.footer__nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

.footer__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--blueberry);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__nav a:hover {
  opacity: 1;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer__contact a {
  font-size: 14px;
  font-weight: 500;
  color: #1e2a8f;
  opacity: 1;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__contact a:hover {
  opacity: 1;
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__bottom p {
  font-size: 12px;
  color: #1e2a8f;
  opacity: 1;
  text-align: center;
}

/* Footer legal nav — replaces main footer__nav with smaller compliance links */
.footer__legal {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 12px;
  font-weight: 400;
  color: #1e2a8f;
  opacity: 1;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__legal a:hover {
  opacity: 0.8;
}

/* Lime outline arch in footer */
.footer__arch {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   Legal / Compliance Pages
   ============================================================ */
.legal-page {
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 720px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 8px;
}

.legal-page__date {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blueberry);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 12px;
}

.legal-page ul {
  margin: 8px 0 16px 24px;
  padding: 0;
}

.legal-page li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--blueberry);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  opacity: 0.8;
}

/* ============================================================
   About page: narrative text block
   ============================================================ */
.narrative-block p + p {
  margin-top: 20px;
}

.narrative-block p {
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================================
   Hero How We Work
   ============================================================ */
.hero--blue {
  background-color: var(--blueberry);
}

.hero--blue h1,
.hero--blue .hero__subhead {
  color: #fff;
}

.hero--blue .hero__subhead {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   Hero — Full-Bleed Photo Background (Homepage + FAQ)
   ============================================================ */
.hero--photo-bg {
  background-image: url('uploads/Photos/2R2A5122-web.jpg');
  background-size: cover;
  background-position: center 15%;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--section-pad-v) + 180px);
  padding-bottom: var(--section-pad-v);
}

.hero--photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(56, 75, 207, 0.32);
  z-index: 1;
}

.hero--photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(56, 75, 207, 0.55) 0%,
    transparent 15%,
    transparent 85%,
    rgba(56, 75, 207, 0.55) 100%
  );
  pointer-events: none;
}

.hero--photo-bg .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero--photo-bg .hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero--photo-bg h1 {
  color: #fff;
}

.hero--photo-bg h1 em {
  color: var(--lime);
}

.hero--photo-bg .hero__subhead {
  color: var(--gardenia);
  max-width: 460px;
  font-size: 18px;
}

.hero--photo-bg .lime-underline {
  background-image: linear-gradient(var(--lime), var(--lime));
  background-size: 0 3px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 5px;
}

.hero--photo-bg .lime-underline.is-visible {
  background-size: 100% 3px;
}

/* Arch images on photo hero — lighter for contrast */
.hero--photo-bg .arch-img {
  opacity: 0.12;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail__meta {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-v: 64px;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile-menu {
    display: none;
  }

  .nav__toggle:checked ~ .nav__mobile-menu {
    display: flex;
  }

  /* Layout */
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col--photo-right .col-text { order: 1; }
  .two-col--photo-right .col-photo { order: 2; }
  .two-col--photo-left .col-text  { order: 1; }
  .two-col--photo-left .col-photo { order: 2; }

  .photo-frame {
    aspect-ratio: 4/3;
  }

  .photo-frame img {
    object-position: center 30%;
  }

  .photo-frame img.mobile-pos-top {
    object-position: center 45%;
  }

  .photo-frame img.mobile-pos-center {
    object-position: center 45%;
  }

  /* Semi-circular arch top on mobile */
  .photo-frame--arch {
    border-radius: 50% 50% 0 0 / 37.5% 37.5% 0 0;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer__top > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__contact {
    align-items: center;
  }

  .footer__nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Trusted By heading */
  .clients-heading-display {
    font-size: 30px;
  }

  /* Value statement */
  .value-statement__headline {
    flex-direction: column;
    gap: 10px;
  }

  /* Hide all decorative arches on mobile — they overlap content */
  .arch-img,
  .footer__arch {
    display: none !important;
  }

  /* Clients */
  .client-logo-grid {
    gap: 28px 32px;
  }

  .clients-list {
    gap: 12px 20px;
  }

  /* Service detail */
  .service-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-number {
    font-size: 56px;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--section-pad-v) + 8px);
  }

  /* Photo-bg hero — mobile */
  .hero--photo-bg {
    min-height: auto;
    background-position: center 15%;
    padding-top: 60vw;
    padding-bottom: 56px;
    align-items: flex-end;
  }

  .hero--photo-bg::before {
    background: rgba(56, 75, 207, 0.40);
  }

  .hero--photo-bg .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 12px;
  }

  .cta-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-bullet-list li {
    font-size: 15px;
  }

  .case-study-box {
    padding: 20px 20px 20px 18px;
  }

  .best-for-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .expect-card {
    padding: 28px 24px;
  }
}

/* ============================================================
   Utility
   ============================================================ */
/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--blueberry);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.mt-sm  { margin-top: 12px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 40px; }
.mb-sm  { margin-bottom: 12px; }
.mb-md  { margin-bottom: 24px; }
.mb-lg  { margin-bottom: 40px; }
.text-center { text-align: center; }
.color-blueberry { color: var(--blueberry); }
.color-cornflower { color: var(--cornflower); }
.color-periwinkle { color: var(--periwinkle); }
.color-white { color: #fff; }
.max-w-narrow { max-width: 480px; }
.max-w-mid { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Hero body text (about page extended description) */
.hero__body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 480px;
}

/* Centered section text block (for value statements, approach blocks) */
.centered-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.centered-block p {
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-hero .col-text {
  gap: 28px;
}

.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.contact-info-item a {
  color: var(--blueberry);
  font-weight: 600;
  transition: opacity 0.2s;
}

.contact-info-item a:hover {
  opacity: 0.75;
}

.contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blueberry);
  flex-shrink: 0;
  opacity: 0.4;
}

.form-section {
  background: var(--gardenia);
}

.form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.form-wrapper {
  max-width: 100%;
}

.form-section__sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.form-section__sidebar .mt-lg {
  margin-top: auto;
}

/* "What to Expect" card */
.expect-card {
  background: var(--periwinkle);
  border-radius: var(--radius-photo);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.expect-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--blueberry);
}

/* Form success state */
.btn--success {
  background-color: var(--cornflower);
  border-color: var(--cornflower);
  color: #fff;
}

/* Contact page form grid responsive */
@media (max-width: 768px) {
  .form-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-wrapper {
    max-width: 100%;
  }
}

/* ============================================================
   Ensure mint bg case study box inherits correct ink color
   ============================================================ */
.bg-mint .case-study-box p,
.bg-periwinkle .case-study-box p {
  color: var(--ink);
}

/* Hero subhead on blueberry bg is lighter */
.bg-blueberry .hero__subhead {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero bullet list (How We Work) */
.hero-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 500px;
}

.hero-bullet-list li {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 20px;
  position: relative;
}

.hero-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.8;
}

/* Dark variant for light backgrounds */
.hero-bullet-list--dark li {
  color: var(--ink);
}

.hero-bullet-list--dark li::before {
  background: var(--blueberry);
  opacity: 0.4;
}

/* Service numbers on colored backgrounds */
.bg-periwinkle .service-card__number,
.bg-gardenia .service-card__number {
  color: var(--blueberry);
  opacity: 0.25;
}

/* ============================================================
   Extra: smooth focus rings for accessibility
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--cornflower);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Service detail layout responsive fix
   ============================================================ */
@media (max-width: 768px) {
  .service-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .service-number {
    font-size: 48px;
    display: inline-block;
  }

  .service-detail__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* ============================================================
   Nav hamburger: ensure mobile menu stacks properly
   ============================================================ */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    height: auto;
    align-items: stretch;
  }

  .nav__inner {
    height: var(--nav-height);
    flex-shrink: 0;
  }
}

/* ============================================================
   FAQ Page
   ============================================================ */
.faq-item {
  border-bottom: 1px solid rgba(56, 75, 207, 0.1);
  padding: 36px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 16px;
}

.faq-item__answer p {
  font-size: 14px;
  line-height: 1.8;
}

.faq-item__answer p + p {
  margin-top: 16px;
}

.faq-item__answer a {
  color: var(--blueberry);
  font-weight: 600;
  transition: opacity 0.2s;
}

.faq-item__answer a:hover {
  opacity: 0.75;
}

@media (max-width: 480px) {
  .faq-item__question {
    font-size: 19px;
  }

  .faq-item {
    padding: 28px 0;
  }
}

/* FAQ Accordion */
.faq-accordion {
  border-bottom: 1px solid rgba(56, 75, 207, 0.1);
}

.faq-accordion:last-child {
  border-bottom: none;
}

.faq-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 36px 0;
  list-style: none;
  gap: 16px;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::marker {
  display: none;
  content: '';
}

.faq-accordion summary h3 {
  margin-bottom: 0;
}

.faq-accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--blueberry);
  border-radius: 2px;
}

.faq-accordion__icon::before {
  width: 24px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-accordion__icon::after {
  width: 2px;
  height: 24px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-accordion[open] .faq-accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-accordion .faq-item__answer {
  padding-bottom: 36px;
}

.faq-accordion .faq-item__question {
  margin-bottom: 0;
}

/* FAQ Page — Photo hero variant */
.hero--faq-bg {
  background-image: url('uploads/Photos/2R2A5433.jpeg');
  background-position: center 20%;
  min-height: 65vh;
  padding-top: calc(var(--section-pad-v) + 40px);
}

@media (max-width: 768px) {
  .hero--faq-bg {
    min-height: auto;
    background-position: center 15%;
  }
}

/* FAQ Group labels */
.faq-group-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blueberry);
  margin-bottom: 12px;
}

/* FAQ Page — fluid container & typography for large screens */
.page-faq .container {
  max-width: min(90vw, 1600px);
}

@media (min-width: 1025px) {
  .page-faq .faq-container {
    max-width: min(65vw, 1100px);
  }
}

.page-faq .faq-item__question {
  font-size: clamp(22px, 2.2vw, 38px);
}

.page-faq .faq-item__answer p {
  font-size: clamp(14px, 1.15vw, 21px);
  line-height: 1.85;
}

.page-faq .faq-group-label {
  font-size: clamp(12px, 0.85vw, 16px);
}

.page-faq .hero__subhead {
  font-size: clamp(16px, 1.3vw, 24px);
}

/* FAQ Featured question heading — matches .faq-item__question sizing */
.faq-featured__question {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--blueberry);
  margin-bottom: 20px;
}

/* ============================================================
   Scroll Reveal — gentle fade-up on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .logo-marquee__track {
    animation: none;
  }
}

/* ============================================================
   Insights Section
   ============================================================ */

/* Insights Landing — Hero */
.insights-hero {
  padding: 80px 0 60px;
  background-color: var(--gardenia);
}

.insights-hero .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insights-hero h1 {
  font-family: var(--font-display);
  color: var(--blueberry);
  margin-bottom: 16px;
}

.insights-hero__subhead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 560px;
}

/* Insights Landing — Article Cards Grid */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.insight-card {
  background: #fff;
  border-radius: 0;
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-bottom-color: var(--blueberry);
}

.insight-card__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cornflower);
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--blueberry);
}

.insight-card__arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}

.insight-card__arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--periwinkle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blueberry);
  transition: var(--transition);
}

.insight-card:hover .insight-card__arrow-icon {
  background: var(--blueberry);
  color: #fff;
}

.insight-card__time {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-light);
}

/* Insights Article — Hero */
.article-hero {
  padding: 80px 0 40px;
  background-color: var(--gardenia);
}

.article-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-hero__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blueberry);
  margin-bottom: 16px;
  display: block;
}

.article-hero__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--blueberry);
  margin-bottom: 16px;
}

.article-hero__byline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
}

.article-hero__byline span {
  color: #666666;
  font-weight: 300;
}

/* Author Card */
.author-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid #E8EDF2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-card__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.author-card__info {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

/* Article Body */
.article-body {
  max-width: 720px;
  margin: 40px auto 0;
  padding-bottom: 64px;
}

.article-body p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--blueberry);
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-body a {
  color: var(--blueberry);
  text-decoration: none;
  transition: text-decoration 150ms ease;
}

.article-body a:hover {
  text-decoration: underline;
}

.article-body .soft-cta {
  font-style: italic;
}

.article-body .soft-cta a {
  color: var(--blueberry);
  font-weight: 500;
}

/* Article Photo Break */
.article-photo-break {
  max-width: 720px;
  margin: 48px auto;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.article-photo-break--portrait {
  aspect-ratio: 3 / 4;
  max-width: 500px;
}

.article-photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.article-photo-break--portrait img {
  object-position: center top;
}

/* More Insights Section */
.more-insights {
  background: #fff;
  padding: 64px 0 80px;
}

.more-insights__heading {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 32px;
}

.more-insights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ============================================================
   Insights — Responsive
   ============================================================ */
@media (max-width: 1199px) {
  .insights-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .insights-hero {
    padding: 60px 0 40px;
  }

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

  .article-hero__title {
    font-size: 28px;
  }

  .author-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .article-photo-break {
    margin-left: calc(-1 * var(--section-pad-h));
    margin-right: calc(-1 * var(--section-pad-h));
    border-radius: 0;
    max-width: none;
  }

  .article-photo-break--portrait {
    aspect-ratio: 3 / 4;
    max-width: none;
  }

  .more-insights__grid {
    grid-template-columns: 1fr;
  }

}
