/* ============================================================
   Logistics Pros Canada Consulting — styles.css
   ============================================================ */

:root {
  /* Color tokens taken from the original Manus build's oklch palette.
     L = lightness, C = chroma, H = hue (75 ≈ warm amber, 240 ≈ cool blue). */
  --navy: oklch(14% 0.015 240);                     /* foreground / dark bg */
  --navy-2: oklch(28% 0.05 240);                    /* secondary navy */
  --cream: oklch(96% 0.005 75);                     /* background / cream */
  --cream-2: oklch(92% 0.005 75);                   /* muted cream */
  --black: oklch(0% 0 0);
  --amber: oklch(67% 0.135 66);                     /* #ca943e — text, accents, button default */
  --amber-bright: oklch(70% 0.12 75);               /* button hover */
  --amber-dim: oklch(58% 0.12 66);
  --text-light: oklch(100% 0 0);
  --text-light-2: oklch(82% 0.012 240);
  --text-dark: oklch(14% 0.015 240);
  --text-dark-2: oklch(45% 0.02 240);               /* muted-foreground */
  --text-dark-3: oklch(60% 0.02 240);
  --border-light: oklch(14% 0.015 240 / 0.12);
  --border-dark: oklch(100% 0 0 / 0.10);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text-light);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
/* Nav and hero use a wider full-bleed layout so the logo and hero text both
   sit flush near the viewport's left edge, like the original. Other sections
   keep the standard 1200px container. */
.nav .container,
.hero .container {
  max-width: none;
}
.section { padding: 96px 0; position: relative; }
.section-cream { background: var(--cream); color: var(--text-dark); }
.section-navy { background: var(--navy); color: var(--text-light); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 32px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--amber);
}
.eyebrow.center { justify-content: center; }

/* ---------- Display headings ---------- */
.h-display {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h-display em {
  color: var(--amber);
  font-style: italic;
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-amber:hover { background: var(--amber-bright); border-color: var(--amber-bright); }
.btn-ghost-light {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}
.btn-ghost-light:hover { background: var(--text-light); color: var(--navy); }
.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-ghost-dark:hover { background: var(--text-dark); color: var(--cream); }
.btn-black {
  background: var(--black);
  color: var(--text-light);
  border-color: var(--black);
}
.btn-black:hover { background: var(--navy); border-color: var(--navy); }
.btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: oklch(14% 0.015 240 / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.logo-frame {
  background: var(--black);
  padding: 10px 12px;
  display: inline-block;
  transition: padding 0.3s ease;
}
.nav.scrolled .logo-frame { padding: 8px 10px; }
.logo {
  height: 96px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.nav.scrolled .logo { height: 76px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 44px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  padding: 10px 0;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(14% 0.015 240 / 0.55) 0%, oklch(14% 0.015 240 / 0.92) 100%),
    linear-gradient(90deg, oklch(14% 0.015 240 / 0.85) 0%, oklch(14% 0.015 240 / 0.5) 60%, oklch(70% 0.12 75 / 0.15) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 800px;
  animation: heroIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-size: clamp(32px, 4.4vw, 68px);
  margin-bottom: 32px;
}
.hero p.lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light-2);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: oklch(100% 0 0 / 0.5);
  animation: pulse 2.4s ease-in-out infinite;
}
.scroll-indicator svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 6px); }
}

/* ---------- Two-column standard split (cream bg) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.split.reverse .split-image { order: 2; }
.split-image {
  position: relative;
}
.split-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split-image .frame-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--amber);
  z-index: -1;
}
.split-content h2 {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 24px;
}
.split-content p {
  color: var(--text-dark-2);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
  font-weight: 400;
}
.accent-divider {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin: 36px 0 32px;
}

/* ---------- Full-bleed split (GTM, Supply Chain) ---------- */
.fullsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.fullsplit-img {
  position: relative;
  overflow: hidden;
}
.fullsplit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fullsplit-content {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fullsplit-content.dark { background: var(--navy); color: var(--text-light); }
.fullsplit-content.cream { background: var(--cream); color: var(--text-dark); }
.fullsplit-content h2 {
  font-size: clamp(24px, 2.6vw, 36px);
  margin-bottom: 16px;
}
.fullsplit-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}
.fullsplit-content.dark p { color: var(--text-light-2); }
.fullsplit-content.cream p { color: var(--text-dark-2); }

ul.feature-list {
  list-style: none;
  margin: 20px 0 32px;
}
ul.feature-list li {
  padding: 6px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
}
.fullsplit-content.dark ul.feature-list li { color: var(--text-light); }
.fullsplit-content.cream ul.feature-list li { color: var(--text-dark); }
ul.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Stats grid (cream side) ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 24px 0 28px;
  border: 1px solid var(--border-light);
}
.stat {
  padding: 22px 22px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-last-child(-n+2) { border-bottom: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 10px;
  color: var(--text-dark-2);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Testimonial carousel ---------- */
.testimonials-section {
  background: var(--navy);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, oklch(70% 0.12 75 / 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, oklch(70% 0.12 75 / 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials-section .container { position: relative; }
.testimonials-title {
  font-size: clamp(24px, 2.8vw, 38px);
  margin-bottom: 48px;
}
.testimonials-track {
  position: relative;
  min-height: 240px;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.7;
  font-style: italic;
}
.testimonial-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testimonial-slide blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.quote-divider {
  width: 48px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 22px;
}
.testimonial-slide cite {
  font-style: normal;
  display: block;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.testimonial-role {
  font-size: 14px;
  color: var(--amber);
  font-style: italic;
  font-family: var(--serif);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.carousel-dots button {
  width: 28px;
  height: 4px;
  background: oklch(100% 0 0 / 0.18);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
  border-radius: 0;
}
.carousel-dots button.active { background: var(--amber); }
.carousel-dots button:hover:not(.active) { background: oklch(100% 0 0 / 0.4); }

/* ---------- Engagement Process ---------- */
.process-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: 90px 0;
  text-align: center;
}
.process-title {
  font-size: clamp(28px, 3.4vw, 46px);
  margin-bottom: 64px;
}
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
/* horizontal connecting line, passing through the vertical center of the 92px circles */
.process-row::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-light);
  z-index: 0;
}
.process-step {
  position: relative;
  padding: 0 20px;
}
.process-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--cream);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
/* amber dot sits fully above the circle, centered on the line */
.process-circle::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  z-index: 2;
}
.process-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.process-step p {
  font-size: 13px;
  color: var(--text-dark-2);
  line-height: 1.65;
  font-weight: 400;
  max-width: 220px;
  margin: 0 auto;
}

/* ---------- Final CTA ---------- */
.cta-section {
  background: var(--navy);
  text-align: center;
  padding: 105px 0 90px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, oklch(70% 0.12 75 / 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(24px, 2.8vw, 40px);
  max-width: 820px;
  margin: 0 auto 22px;
  line-height: 1.1;
}
.cta-section p {
  font-size: 15px;
  color: var(--text-light-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Amber strip CTA ---------- */
.strip {
  background: var(--amber-bright);
  color: var(--navy);
  padding: 40px 0;
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.strip-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.7;
}
.strip h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-logo-frame {
  display: inline-block;
  background: var(--black);
  padding: 16px;
  border: 1px solid oklch(100% 0 0 / 0.06);
  margin-bottom: 32px;
}
.footer-logo {
  height: 100px;
  width: auto;
}
.footer-tag {
  font-size: 14px;
  color: var(--text-light-2);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 400;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer ul li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--text-light-2);
  opacity: 0.5;
  flex-shrink: 0;
}
.footer ul li a {
  font-size: 14px;
  color: var(--text-light-2);
  transition: color 0.2s;
  font-weight: 400;
}
.footer ul li a:hover { color: var(--amber); }

.contact-list li {
  margin-bottom: 22px !important;
  align-items: flex-start !important;
}
.contact-list li::before { display: none; }
.contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  font-size: 13px;
  color: oklch(100% 0 0 / 0.4);
}
.footer-legal {
  display: flex;
  gap: 32px;
}
.footer-legal a {
  font-size: 13px;
  color: oklch(100% 0 0 / 0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--amber); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.31s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.44s; opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .container { padding: 0 24px; }
  .section { padding: 100px 0; }
  .split { grid-template-columns: 1fr; gap: 60px; }
  .split.reverse .split-image { order: 0; }
  .split-image img { aspect-ratio: 16/10; }
  .fullsplit { grid-template-columns: 1fr; min-height: auto; }
  .fullsplit-img img { min-height: 360px; }
  .fullsplit-content { padding: 80px 32px; }
  .process-row { grid-template-columns: 1fr; gap: 56px; }
  .process-row::before { display: none; }
  .testimonials-section, .process-section { padding: 100px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding-top: 100px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .strip-inner { justify-content: flex-start; }
}

/* ============================================================
   Services page — page hero + 3-column service rows
   ============================================================ */

/* Page hero (services.html) — shorter than the homepage hero, no background image */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 200px 0 120px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, oklch(70% 0.12 75 / 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, oklch(70% 0.12 75 / 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(28px, 3.6vw, 56px);
  margin-bottom: 24px;
  max-width: 900px;
}
.page-hero p.lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light-2);
  max-width: 540px;
  font-weight: 400;
}

/* Services list — cream background section that hosts each service row */
.services-list {
  background: var(--cream);
  padding: 80px 0 100px;
}
.services-list .service-row {
  max-width: 1320px;
  margin: 0 auto 32px;
  padding: 0 40px;
}
.services-list .service-row:last-child {
  margin-bottom: 0;
}

/* Service row — three columns: dark intro, cream deliverables, dark outcomes */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
.service-col {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
}
.service-col.dark {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--navy);
}
.service-col.cream {
  background: var(--cream);
  color: var(--text-dark);
  /* border-color comes from default rule above */
}
.service-col .eyebrow {
  margin-bottom: 28px;
}
/* Icon tile */
.service-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}
.service-col h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: inherit;
}
.service-col .summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light-2);
  margin-bottom: 0;
  font-weight: 400;
}
.service-col.cream .summary { color: var(--text-dark-2); }

/* Center column — paragraph + Key Deliverables list */
.service-col .intro-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark-2);
  margin-bottom: 28px;
  font-weight: 400;
}
.service-col h4.col-heading {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: 0;
  text-transform: none;
}
.deliverables-list {
  list-style: none;
}
.deliverables-list li {
  padding: 3px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
  line-height: 1.5;
}
.deliverables-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Right column — Outcomes with check marks */
.service-col h4.outcomes-heading {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-light);
  letter-spacing: 0;
  text-transform: none;
}
.outcomes-list {
  list-style: none;
}
.outcomes-list li {
  padding: 5px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-light);
  line-height: 1.5;
}
.outcomes-list li svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 3px;
  stroke-width: 2.5;
}

/* Learn More text-link inside service col */
.service-col .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber);
  transition: gap 0.3s;
}
.service-col .text-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.service-col .text-link:hover { gap: 14px; }
.service-col .text-link:hover svg { transform: translateX(3px); }

/* Responsive */
@media (max-width: 1024px) {
  .page-hero { padding: 160px 0 80px; }
  .services-list { padding: 60px 0 80px; }
  .services-list .service-row { padding: 0 24px; margin-bottom: 24px; }
  .service-row { grid-template-columns: 1fr; min-height: 0; }
  .service-col { padding: 40px 28px; }
}

/* ============================================================
   Case Studies page
   ============================================================ */

/* Cases list — cream background section that hosts each case row */
.cases-list {
  background: var(--cream);
  padding: 80px 0 100px;
}
.cases-list .case-row {
  max-width: 1320px;
  margin: 0 auto 32px;
  padding: 0 40px;
}
.cases-list .case-row:last-child {
  margin-bottom: 0;
}

/* Case row — three columns: dark intro, cream challenge/approach, cream outcomes */
.case-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: stretch;
  min-height: 360px;
}
.case-col {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
}
.case-col.dark {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--navy);
  position: relative;
  overflow: hidden;
}
.case-col.cream {
  background: var(--cream);
  color: var(--text-dark);
}
.case-col .eyebrow {
  margin-bottom: 24px;
}
/* Icon tile — same as services page */
.case-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.case-icon svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}
.case-col h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  margin-bottom: 0;
}
/* Big translucent number watermark in the corner of the dark column */
.case-num {
  position: absolute;
  bottom: 24px;
  left: 44px;
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: oklch(100% 0 0 / 0.05);
  letter-spacing: -0.02em;
  pointer-events: none;
}

/* Center column — Challenge + Approach sub-sections */
.case-col h4.case-heading {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
  letter-spacing: 0;
  text-transform: none;
}
.case-col .case-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dark-2);
  font-weight: 400;
  margin-bottom: 0;
}
/* Thin amber-tinted divider between Challenge and Approach */
.case-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 28px 0;
}

/* Right column — Outcomes (dark amber bullets on cream) */
.case-col h4.outcomes-heading-dark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-dark);
  letter-spacing: 0;
  text-transform: none;
}
.case-outcomes {
  list-style: none;
}
.case-outcomes li {
  padding: 4px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
  line-height: 1.5;
}
.case-outcomes li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cases-list { padding: 60px 0 80px; }
  .cases-list .case-row { padding: 0 24px; margin-bottom: 24px; }
  .case-row { grid-template-columns: 1fr; min-height: 0; }
  .case-col { padding: 40px 28px; }
  .case-num { font-size: 72px; bottom: 24px; left: 28px; }
}

/* ============================================================
   About page
   ============================================================ */

/* Principles — 4 bordered cards on dark navy */
.principles-section {
  background: var(--navy);
  color: var(--text-light);
  padding: 96px 0 110px;
  text-align: center;
}
.principles-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
  color: var(--text-light);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}
.principle-card {
  border: 1px solid oklch(100% 0 0 / 0.08);
  padding: 36px 30px 34px;
}
.principle-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.principle-icon svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
}
.principle-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.2;
}
.principle-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light-2);
}

/* Leadership — 2 cards on cream */
.leadership-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: 96px 0 110px;
}
.leadership-section .container { max-width: 1320px; }
.leadership-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 56px;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.leader-card {
  border: 1px solid var(--border-light);
  padding: 36px 36px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.leader-avatar {
  width: 72px;
  height: 72px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}
.leader-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}
.leader-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}
.leader-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dark-2);
  margin-bottom: 22px;
}
.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.leader-tag {
  border: 1px solid var(--border-light);
  padding: 7px 13px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark-2);
  font-weight: 500;
}

/* Case Studies summary — 3 bordered cards on dark navy */
.cases-summary {
  background: var(--navy-2);
  color: var(--text-light);
  padding: 96px 0 110px;
  text-align: center;
}
.cases-summary-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
  color: var(--text-light);
}
.cases-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}
.case-summary-card {
  border: 2px solid oklch(100% 0 0 / 0.14);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}
.case-summary-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}
.case-summary-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(100% 0 0 / 0.55);
  font-weight: 600;
  margin-bottom: 10px;
}
.case-summary-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light-2);
  margin-bottom: 22px;
}
.case-summary-divider {
  height: 1px;
  background: oklch(100% 0 0 / 0.08);
  margin: 6px 0 20px;
}
.case-summary-result {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0;
}

/* About page CTA split — text + image (reuses .fullsplit pattern) */
.about-cta-h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: var(--text-light);
}
.about-cta-h2 em {
  color: var(--amber);
  font-style: italic;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .principles-section, .leadership-section, .cases-summary { padding: 72px 0 80px; }
  .principles-grid, .cases-summary-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .leadership-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .principles-grid, .cases-summary-grid { grid-template-columns: 1fr; }
  .leader-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .leader-avatar { width: 64px; height: 64px; font-size: 22px; }
}

/* ============================================================
   Legal pages (Privacy Policy, Terms of Service)
   ============================================================ */

.legal-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: 84px 0 120px;
}
.legal-section .container {
  max-width: 880px;
}
.legal-meta {
  font-size: 11px;
  color: var(--text-dark-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.legal-block {
  margin-bottom: 48px;
}
.legal-block:last-child {
  margin-bottom: 0;
}
.legal-num {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 14px;
  display: block;
  text-transform: uppercase;
}
.legal-block h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.legal-block h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text-dark);
}
.legal-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark-2);
  margin-bottom: 14px;
}
.legal-block p:last-child {
  margin-bottom: 0;
}
.legal-block ul {
  list-style: none;
  margin: 10px 0 16px;
}
.legal-block ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark-2);
  padding: 4px 0 4px 22px;
  position: relative;
}
.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}
.legal-block strong {
  color: var(--text-dark);
  font-weight: 600;
}
.legal-block a {
  color: var(--amber);
  border-bottom: 1px solid var(--amber);
  transition: color 0.2s, border-color 0.2s;
}
.legal-block a:hover {
  color: var(--amber-bright);
  border-color: var(--amber-bright);
}
.legal-contact {
  background: var(--navy);
  color: var(--text-light);
  padding: 32px 36px;
  margin-top: 16px;
}
.legal-contact p {
  color: var(--text-light-2);
  margin-bottom: 6px;
}
.legal-contact strong {
  color: var(--text-light);
}

@media (max-width: 600px) {
  .legal-section { padding: 64px 0 80px; }
  .legal-block { margin-bottom: 36px; }
  .legal-contact { padding: 24px; }
}

/* ============================================================
   Contact page + Thank-you page
   ============================================================ */

.contact-section {
  background: var(--cream);
  padding: 80px 0 110px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 56px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: start;
}

/* Left column: Contact Information */
.contact-info-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 36px;
  line-height: 1.2;
}
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-info-icon-tile {
  width: 44px;
  height: 44px;
  border: 1px solid var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon-tile svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark-3);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-info-value a {
  color: var(--text-dark);
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--amber); }

/* "What to Expect" dark box */
.expect-box {
  background: var(--navy);
  color: var(--text-light);
  padding: 30px 32px 32px;
}
.expect-box h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.2;
}
.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-light-2);
}
.expect-list li svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Form card */
.form-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 44px 44px 38px;
}
.form-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.form-subtitle {
  font-size: 13px;
  color: var(--text-dark-3);
  margin-bottom: 28px;
}

.consultation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.form-row.full {
  grid-column: 1 / -1;
}
.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark-3);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-dark);
  border-radius: 0;
  transition: border-color 0.2s;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: oklch(58% 0.005 75);
  opacity: 1;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-row textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--sans);
  line-height: 1.5;
}

/* Honeypot — hidden from real users, visible to bots */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit {
  grid-column: 1 / -1;
  background: var(--amber);
  color: var(--navy);
  border: none;
  padding: 16px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.form-submit:hover { background: var(--amber-bright); }
.form-submit svg { width: 14px; height: 14px; }

.form-disclaimer {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--text-dark-3);
  margin-top: 14px;
}

/* Error banner shown when ?error=1 in URL */
.form-error {
  grid-column: 1 / -1;
  background: oklch(94% 0.04 30);
  color: oklch(38% 0.13 30);
  border: 1px solid oklch(78% 0.12 30);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 6px;
  display: none;
}
.form-error.visible { display: block; }

/* Thank-you page */
.thanks-section {
  background: var(--cream);
  padding: 110px 0 130px;
  text-align: center;
}
.thanks-icon {
  width: 84px;
  height: 84px;
  border: 1.5px solid var(--amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}
.thanks-icon svg {
  width: 36px;
  height: 36px;
  color: var(--amber);
  stroke-width: 2;
}
.thanks-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 60px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.thanks-title em {
  color: var(--amber);
  font-style: italic;
  font-weight: 700;
}
.thanks-text {
  font-size: 16px;
  color: var(--text-dark-2);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 38px;
}
.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
}
@media (max-width: 600px) {
  .consultation-form { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px 28px; }
  .thanks-section { padding: 72px 0 90px; }
}
