/* ==========================================================================
   Andrea Florescu — Editorial Executive Design System
   ========================================================================== */

:root {
  /* Colors */
  --cream: #FAF7F2;
  --dark: #1A1A1A;
  --text: #1A1A1A;
  --muted: #5C5650;
  --wine: #7C2D3B;
  --wine-dark: #5e2230;
  --copper: #C8956D;
  --border: #E8E2D8;
  --cream-2: #F2EDE3;

  /* Type */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizes */
  --container: 1240px;
  --container-narrow: 940px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--wine); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--wine-dark); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--wine); color: var(--cream); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--dark);
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 600; }
h4 { font-size: 19px; font-weight: 600; }

.italic { font-style: italic; color: var(--wine); font-weight: 500; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--wine);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 60ch;
}

p { color: var(--muted); }
strong { color: var(--dark); font-weight: 600; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: clamp(70px, 9vw, 130px) 0; }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lede { margin-top: 22px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--dark);
  color: var(--cream);
}
.btn-primary:hover { background: var(--wine); color: var(--cream); transform: translateY(-1px); }
.btn-wine {
  background: var(--wine);
  color: var(--cream);
}
.btn-wine:hover { background: var(--wine-dark); color: var(--cream); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-ghost:hover { background: var(--dark); color: var(--cream); }
.btn-text {
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--dark);
}
.btn-text:hover { color: var(--wine); border-color: var(--wine); }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--dark); }
.logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--wine);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: 0;
  padding: 0;
}
.nav-dropdown-trigger:hover { color: var(--wine); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  min-width: 280px;
  box-shadow: 0 20px 50px rgba(26,26,26,0.08);
  opacity: 0;
  pointer-events: none;
  transition: all .2s var(--ease);
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--dark);
}
.nav-dropdown-menu a:hover { background: var(--cream-2); color: var(--wine); }
.nav-cta {
  background: var(--dark);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .25s var(--ease);
}
.nav-cta:hover { background: var(--wine); color: var(--cream); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all .2s var(--ease);
}

/* Hero */
.hero {
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 110px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero h1 { margin: 20px 0 26px; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat .lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.hero-photo {
  position: relative;
  background: transparent;
  aspect-ratio: 4/5;
  max-width: 500px;
  margin-left: auto;
}
.hero-photo > img {
  border-radius: 8px;
  box-shadow: 0 30px 70px -30px rgba(26,26,26,0.25);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.badge-card {
  position: absolute;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 20px 40px -10px rgba(26,26,26,0.18);
  max-width: 240px;
}
.badge-card .pct {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
}
.badge-card .txt {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}
.badge-top { top: 32px; left: -40px; }
.badge-bottom { bottom: 38px; right: -40px; }
@media (max-width: 1280px) {
  .badge-top { left: 8px; }
  .badge-bottom { right: 8px; }
}

/* Trust strip */
.trust {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.trust-inner .label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--dark);
}
.trust-inner .items {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.trust-inner .items span:not(:last-child)::after {
  content: "·";
  margin-left: 22px;
  color: var(--copper);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--wine);
  box-shadow: 0 20px 40px -20px rgba(124,45,59,0.2);
}
.service-card .num {
  font-family: var(--f-display);
  color: var(--copper);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.service-card .icon {
  width: 44px;
  height: 44px;
  color: var(--wine);
}
.service-card h3 { color: var(--dark); }
.service-card .desc { color: var(--muted); font-size: 15px; }
.service-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}
.chip {
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
}
.service-card .link {
  font-weight: 500;
  color: var(--wine);
  font-size: 14px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .link .arr { transition: transform .2s var(--ease); }
.service-card:hover .link .arr { transform: translateX(4px); }

.service-card.dark {
  background: var(--dark);
  color: var(--cream);
}
.service-card.dark h3 { color: var(--cream); }
.service-card.dark .desc { color: rgba(250,247,242,0.7); }
.service-card.dark .icon { color: var(--copper); }
.service-card.dark .chip { border-color: rgba(250,247,242,0.18); color: rgba(250,247,242,0.7); }
.service-card.dark .num { color: var(--copper); }
.service-card.dark .link { color: var(--copper); }
.service-card.dark:hover { border-color: var(--copper); }

/* Process timeline */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 50px;
}
.process::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--copper), var(--border));
}
.process-step {
  padding: 0 18px;
  position: relative;
}
.process-step .dot {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--wine);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.process-step h4 { margin-bottom: 8px; font-size: 20px; }
.process-step p { font-size: 14.5px; line-height: 1.55; }

/* Results stat cards */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 36px;
  transition: all .3s var(--ease);
}
.result-card:hover { border-color: var(--wine); transform: translateY(-3px); }
.result-card .num {
  font-family: var(--f-display);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.result-card .num small {
  font-size: 0.5em;
  color: var(--copper);
  font-weight: 500;
}
.result-card .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--dark);
  margin: 14px 0 10px;
}
.result-card p { font-size: 15px; }
.result-card .step-num {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-tile {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: all .25s var(--ease);
}
.industry-tile:hover { border-color: var(--wine); transform: translateY(-2px); }
.industry-tile .icon {
  width: 36px;
  height: 36px;
  color: var(--wine);
}
.industry-tile .name {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--dark);
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* Testimonials */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.test-card .quote-mark {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 0.6;
  color: var(--copper);
  font-weight: 600;
}
.test-card blockquote {
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.005em;
}
.test-card .who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.test-card .who .name { font-weight: 600; color: var(--dark); font-size: 15px; }
.test-card .who .role { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 860px; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.faq-q .toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s var(--ease);
  color: var(--wine);
}
.faq-item.open .faq-q .toggle { background: var(--wine); color: var(--cream); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 28px; max-width: 720px; color: var(--muted); font-size: 16px; line-height: 1.65; }

/* Dark CTA */
.dark-section {
  background: var(--dark);
  color: var(--cream);
}
.dark-section h2 { color: var(--cream); }
.dark-section p { color: rgba(250,247,242,0.72); }
.dark-section .lede { color: rgba(250,247,242,0.78); }
.dark-section .eyebrow { color: var(--copper); }
.dark-section .eyebrow::before { background: var(--copper); }
.cta-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-block h2 { margin: 20px 0 24px; }
.cta-block .actions { margin-top: 40px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta-block .btn-wine { background: var(--wine); }
.cta-block .btn-cream { background: var(--cream); color: var(--dark); }
.cta-block .btn-cream:hover { background: var(--copper); color: var(--dark); }

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(250,247,242,0.7);
  padding: 90px 0 30px;
}
.footer h4, .footer .col-title {
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer a { color: rgba(250,247,242,0.7); font-size: 14.5px; }
.footer a:hover { color: var(--copper); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}
.footer .brand {
  font-family: var(--f-display);
  color: var(--cream);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer .tag { color: rgba(250,247,242,0.6); font-size: 14.5px; max-width: 280px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-newsletter { margin-top: 22px; }
.footer-newsletter form {
  display: flex;
  gap: 0;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.14);
  border-radius: 4px;
  overflow: hidden;
}
.footer-newsletter input {
  flex: 1;
  background: none;
  border: 0;
  padding: 12px 14px;
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
}
.footer-newsletter input::placeholder { color: rgba(250,247,242,0.4); }
.footer-newsletter input:focus { outline: 0; }
.footer-newsletter button {
  background: var(--wine);
  color: var(--cream);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 500;
}
.footer-newsletter button:hover { background: var(--copper); color: var(--dark); }
.footer .socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer .socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250,247,242,0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.footer .socials a:hover { background: var(--wine); border-color: var(--wine); color: var(--cream); }
.footer .socials svg { width: 16px; height: 16px; }
.footer-memberships {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}
.footer-memberships .badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(250,247,242,0.18);
  border-radius: 4px;
  color: rgba(250,247,242,0.7);
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250,247,242,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom .links a { font-size: 13px; }

/* Reveal animation (only when JS enabled) */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-ready .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* Page hero (interior) */
.page-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-size: clamp(42px, 5.2vw, 76px);
  margin-bottom: 22px;
  max-width: 16ch;
}
.page-hero .lede { max-width: 60ch; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb .sep { color: var(--border); }

/* Two-col content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.two-col img {
  width: 100%;
  height: auto;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
  box-shadow: 0 30px 70px -30px rgba(26,26,26,0.25);
}
.two-col h2 { margin-bottom: 22px; }
.two-col p + p { margin-top: 16px; }

/* Principles grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.principle-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 30px;
  transition: all .25s var(--ease);
}
.principle-card:hover { border-color: var(--wine); transform: translateY(-2px); }
.principle-card .num {
  font-family: var(--f-display);
  color: var(--copper);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.principle-card h3 { font-size: 21px; margin-bottom: 12px; }
.principle-card p { font-size: 15px; line-height: 1.6; }

/* Callout */
.callout {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(60px, 8vw, 110px) 0;
  text-align: center;
}
.callout h2 {
  color: var(--cream);
  font-size: clamp(34px, 5vw, 64px);
  max-width: 18ch;
  margin: 0 auto;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 36px;
  align-items: stretch;
}
.contact-card { display: flex; flex-direction: column; }
.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 30px;
}
.contact-card h3 { font-size: 22px; margin-bottom: 14px; }
.contact-card .icon { width: 36px; height: 36px; color: var(--wine); margin-bottom: 20px; }
.contact-card p { font-size: 15px; }
.contact-card a { font-weight: 500; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--dark);
}
.form-field input, .form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 4px;
  color: var(--dark);
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  outline: 0;
  border-color: var(--wine);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.step-card {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.step-card .num {
  font-family: var(--f-display);
  font-size: 44px;
  color: var(--copper);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 14.5px; }

/* Service detail page */
.deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.deliverables li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--dark);
}
.deliverables li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wine);
  margin-top: 3px;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF7F2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 50px;
  transition: all .3s var(--ease);
}
.blog-feature:hover { border-color: var(--wine); }
.blog-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .25s var(--ease);
}
.blog-card:hover { border-color: var(--wine); transform: translateY(-3px); }
.blog-card .meta, .blog-feature .meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}
.blog-card .meta .cat, .blog-feature .meta .cat { color: var(--wine); font-weight: 600; }
.blog-card h3, .blog-feature h2 { color: var(--dark); }
.blog-feature h2 { font-size: clamp(28px, 3vw, 40px); }
.blog-card p { font-size: 15px; }
.blog-feature .visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--wine) 0%, var(--dark) 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.blog-feature .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(200,149,109,0.3), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(250,247,242,0.1), transparent 50%);
}
.blog-card .link {
  margin-top: auto;
  color: var(--wine);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 38px 32px;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.case-card:hover { border-color: var(--wine); transform: translateY(-3px); }
.case-card .industry {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wine);
  font-weight: 600;
}
.case-card .metric {
  font-family: var(--f-display);
  font-size: 48px;
  color: var(--wine);
  font-weight: 600;
  line-height: 1;
  margin: 8px 0;
}
.case-card h3 { font-size: 22px; }

/* Case study detail */
.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
  padding: 40px;
  background: var(--cream-2);
  border-radius: 8px;
}
.cs-stat .num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 62px);
  color: var(--wine);
  font-weight: 600;
  line-height: 1;
}
.cs-stat .lbl { color: var(--muted); font-size: 14px; margin-top: 8px; }
.cs-section { padding: 24px 0; }
.cs-section h2 { margin-bottom: 18px; font-size: clamp(28px, 3vw, 40px); }
.cs-section p { font-size: 16.5px; line-height: 1.7; max-width: 70ch; }
.cs-section p + p { margin-top: 14px; }
.pull-quote {
  border-left: 3px solid var(--wine);
  padding: 18px 0 18px 30px;
  margin: 40px 0;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  font-style: italic;
  color: var(--dark);
  max-width: 28ch;
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
  font-family: var(--f-body);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 460px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .tests-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-feature { grid-template-columns: 1fr; padding: 30px; }
  .case-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process::before { display: none; }
  .process-step { padding: 0 0 32px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { grid-template-columns: 1fr; }
  .cs-stats { grid-template-columns: 1fr; padding: 30px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { padding: 16px 22px; }
  .container, .container-narrow { padding: 0 22px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .badge-card { display: none; }
  .industries-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-inner { flex-direction: column; gap: 14px; }
  .trust-inner .items span:not(:last-child)::after { margin-left: 14px; }
  h1 { font-size: clamp(40px, 9vw, 56px); }
  h2 { font-size: clamp(28px, 7vw, 40px); }
  .faq-q { font-size: 18px; padding: 22px 0; }
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 14px 22px 22px;
  }
  .nav-open .nav-links li { width: 100%; }
  .nav-open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); display: block; width: 100%; }
  .nav-open .nav-dropdown-menu { position: static; transform: none; opacity: 1; pointer-events: auto; box-shadow: none; border: 0; padding: 0 0 0 16px; min-width: 0; }
  .nav-open .nav-cta { display: inline-flex; margin: 14px 22px 22px; }
}

/* ============================================
   BLOG POST styles (migrated WP posts)
   ============================================ */
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.post-meta .dot { color: var(--border); }
.post-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-soft, #F2EDE3);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.post-hero-image {
  margin: 36px auto 0;
}
.post-hero-image img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.post-body {
  padding: 64px 0 96px;
}
.post-body p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 26px;
  color: var(--ink);
}
.post-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  margin: 56px 0 18px;
  letter-spacing: -0.01em;
}
.post-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.22;
  margin: 42px 0 14px;
}
.post-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 32px 0 10px;
}
.post-body ul, .post-body ol {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 28px;
  padding-left: 24px;
  color: var(--ink);
}
.post-body li { margin-bottom: 10px; }
.post-body li::marker { color: var(--wine); }
.post-body a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.post-body a:hover {
  text-decoration-thickness: 2px;
}
.post-body img,
.post-body figure img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 32px auto;
}
.post-body figure {
  margin: 32px 0;
}
.post-body figcaption {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.post-body blockquote,
.post-body .post-quote {
  border-left: 3px solid var(--wine);
  padding: 6px 0 6px 26px;
  margin: 38px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
}
.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 56px 0;
}
.post-body strong { font-weight: 600; color: var(--ink); }
.post-body em { font-style: italic; }
.post-body code {
  background: var(--bg-soft, #F2EDE3);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 0.92em;
}
.post-body pre {
  background: #1A1A1A;
  color: #FAF7F2;
  padding: 22px 26px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.55;
}
.post-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
}
.post-body th, .post-body td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.post-body th { font-weight: 600; background: var(--bg-soft, #F2EDE3); }
.post-cta {
  padding: 24px 0 80px;
}
.post-cta .cta-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: 22px;
  padding: 48px 44px;
  text-align: center;
}
.post-cta .cta-card .eyebrow { color: var(--copper); }
.post-cta .cta-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  margin: 12px 0 14px;
  color: var(--bg);
}
.post-cta .cta-card p {
  color: rgba(250, 247, 242, 0.78);
  max-width: 60ch;
  margin: 0 auto 28px;
}
.post-cta .cta-card .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.post-cta .cta-card .btn-primary:hover {
  background: var(--copper);
  color: var(--ink);
}
.blog-feature .visual img,
.blog-card .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.blog-card .visual {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .post-body p { font-size: 17px; }
  .post-body ul, .post-body ol { font-size: 16px; }
  .post-cta .cta-card { padding: 36px 24px; }
}

/* Constrain embedded SVG content inside blog posts */
.post-body svg {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 24px auto;
}
.post-body img + svg,
.post-body figure svg {
  max-width: 100%;
}

/* === Photo placements: service detail heroes, case study image, contact portrait, principle portrait === */
.service-portrait,
.cs-portrait,
.contact-portrait,
.principles-portrait {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 30px 70px -30px rgba(26,26,26,0.25);
}
.service-portrait-wrap {
  margin: 8px 0 8px;
  max-width: 1100px;
}
.service-portrait {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.cs-portrait-wrap {
  margin: 48px 0 40px;
}
.cs-portrait {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center top;
}
.contact-portrait-wrap {
  margin-top: 24px;
  max-width: 360px;
}
.contact-portrait {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.principles-portrait-wrap {
  margin: 56px auto 0;
  max-width: 600px;
}
.principles-portrait {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 720px) {
  .service-portrait-wrap, .cs-portrait-wrap, .principles-portrait-wrap { margin-left: 0; margin-right: 0; }
}
