:root {
  color-scheme: light;
  --color-ink: #0e1722;
  --color-ink-soft: #2f3d4a;
  --color-muted: #66727d;
  --color-paper: #fbfaf6;
  --color-surface: #ffffff;
  --color-smoke: #f3efe7;
  --color-line: #ddd5c8;
  --color-navy: #101d2e;
  --color-brass: #8d642d;
  --color-brass-dark: #69491f;
  --color-forest: #203a35;
  --color-cream: #f7f2e8;
  --color-warm-white: #fffdf9;
  --shadow-soft: 0 24px 70px rgba(14, 23, 34, 0.12);
  --shadow-card: 0 14px 40px rgba(14, 23, 34, 0.08);
  --shadow-lift: 0 28px 74px rgba(14, 23, 34, 0.14);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --gutter: clamp(22px, 4.4vw, 56px);
  --radius: 8px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

p + p {
  margin-top: 18px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(221, 213, 200, 0.72);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(141, 100, 45, 0.5);
  background: var(--color-navy);
  color: var(--color-cream);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
}

.nav-link {
  position: relative;
  color: var(--color-ink-soft);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--color-brass);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-ink);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: clamp(86px, 10vw, 148px) var(--gutter);
}

.section-tight {
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.eyebrow {
  color: var(--color-brass-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.8vw, 68px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-intro {
  color: var(--color-ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.75;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--color-surface);
  background: var(--color-navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92) 0%, rgba(16, 24, 32, 0.75) 43%, rgba(16, 24, 32, 0.24) 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0.08), rgba(16, 24, 32, 0.42)),
    url("../images/executive-consulting-hero.png") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) var(--gutter);
}

.hero-content {
  max-width: 760px;
  display: grid;
  gap: 24px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7.2vw, 86px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #dfc99c;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.58;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(14, 23, 34, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 18px 38px rgba(14, 23, 34, 0.14);
}

.button-primary {
  background: var(--color-brass-dark);
  color: #fffdf8;
}

.button-primary:hover {
  background: #513614;
}

.button-outline {
  border-color: rgba(16, 29, 46, 0.22);
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-navy);
}

.button-outline:hover {
  border-color: rgba(141, 100, 45, 0.5);
  background: var(--color-surface);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  background: var(--color-navy);
  color: var(--color-surface);
}

.button-dark:hover {
  background: var(--color-forest);
}

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: auto;
  padding: clamp(64px, 7vw, 96px) var(--gutter) clamp(68px, 7vw, 102px);
  background:
    linear-gradient(135deg, rgba(251, 250, 246, 0.99) 0%, rgba(246, 241, 232, 0.96) 52%, rgba(229, 223, 211, 0.84) 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto -18vw -42vw auto;
  z-index: -1;
  width: min(74vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 100, 45, 0.18), rgba(32, 58, 53, 0.08) 44%, rgba(32, 58, 53, 0) 68%);
}

.home-hero::after {
  content: none;
}

.home-hero-inner {
  width: min(100%, var(--container));
  min-height: clamp(500px, calc(100svh - var(--header-height) - 190px), 640px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.home-hero-copy-solo {
  position: relative;
  max-width: 1040px;
  padding: clamp(34px, 5vw, 62px) clamp(28px, 5vw, 68px);
  border-left: 4px solid var(--color-brass);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.14));
  box-shadow: 0 24px 70px rgba(16, 29, 46, 0.07);
}

.home-hero-copy.home-hero-copy-solo {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

.home-hero-copy-solo h1 {
  max-width: 780px;
  font-size: clamp(58px, 7.2vw, 94px);
}

.home-hero-copy-solo > p:not(.eyebrow):not(.hero-signature) {
  max-width: 760px;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
  color: var(--color-navy) !important;
  font-size: 13px !important;
  font-weight: 750;
  line-height: 1.45 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-signature span {
  color: var(--color-muted);
  font-weight: 650;
}

.home-hero-copy {
  display: grid;
  gap: 28px;
  max-width: 760px;
}

.home-hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--color-ink-soft);
  font-size: clamp(19px, 1.9vw, 22px);
  line-height: 1.75;
}

.home-hero-portrait {
  position: relative;
  max-width: 500px;
  width: 100%;
  aspect-ratio: 4 / 5;
  justify-self: end;
}

.home-hero-portrait::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  z-index: -1;
  border: 1px solid rgba(141, 100, 45, 0.36);
  background: rgba(255, 255, 255, 0.5);
}

.home-hero-portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(16, 29, 46, 0.12);
  box-shadow: 0 38px 90px rgba(14, 23, 34, 0.2);
}

.portrait-caption {
  position: absolute;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  min-width: min(78%, 270px);
  padding: 16px 18px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(14, 23, 34, 0.84);
  color: var(--color-surface);
  backdrop-filter: blur(16px);
}

.portrait-caption span:first-child {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.1;
}

.portrait-caption span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding: 0 var(--gutter) clamp(86px, 8vw, 122px);
}

.trust-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow-lift);
}

.trust-card {
  min-height: 158px;
  padding: 28px 22px;
  display: grid;
  align-content: center;
  gap: 16px;
  border-right: 1px solid var(--color-line);
}

.trust-card:last-child {
  border-right: 0;
}

.trust-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(141, 100, 45, 0.34);
  border-radius: 50%;
  background: #fffaf0;
  color: var(--color-brass-dark);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
}

.trust-card h2 {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.18;
}

.home-services {
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-smoke) 100%);
}

.premium-card-grid,
.featured-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 30px);
}

.premium-service-card {
  position: relative;
  min-height: 100%;
  padding: clamp(34px, 4vw, 50px);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-items: start;
  border: 1px solid rgba(221, 213, 200, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 249, 0.9));
  box-shadow: 0 18px 48px rgba(14, 23, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.premium-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 100, 45, 0.44);
  box-shadow: var(--shadow-lift);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(16, 29, 46, 0.12);
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-cream);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-service-card h3 {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.06;
}

.premium-service-card p:not(.card-kicker) {
  margin-top: 18px;
  color: var(--color-ink-soft);
  line-height: 1.72;
}

.inc-feature {
  background:
    linear-gradient(135deg, rgba(16, 29, 46, 0.99), rgba(32, 58, 53, 0.96));
  color: var(--color-surface);
}

.inc-feature-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.inc-badge {
  min-height: 380px;
  padding: 40px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top left, rgba(141, 100, 45, 0.36), transparent 48%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.inc-badge span {
  color: #dfc99c;
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
}

.inc-badge strong {
  font-family: var(--font-serif);
  font-size: clamp(76px, 10vw, 130px);
  font-weight: 500;
  line-height: 0.9;
}

.inc-badge em {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.inc-story {
  max-width: 780px;
}

.inc-story .eyebrow {
  color: #dfc99c;
}

.inc-story .lede {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
}

.inc-story blockquote {
  position: relative;
  margin: 40px 0 0;
  padding: 34px clamp(30px, 4vw, 48px);
  border-left: 3px solid var(--color-brass);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.inc-story .quote-meta {
  border-top-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
}

.home-testimonials {
  background: var(--color-paper);
}

.featured-quote-card {
  min-height: 100%;
  padding: clamp(34px, 4vw, 50px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 16px 44px rgba(14, 23, 34, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.featured-quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 100, 45, 0.34);
  box-shadow: var(--shadow-lift);
}

.quote-mark {
  display: block;
  height: 48px;
  color: rgba(141, 100, 45, 0.32);
  font-family: var(--font-serif);
  font-size: 76px;
  line-height: 0.8;
}

.featured-quote-card blockquote {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.22;
}

.featured-quote-card .quote-meta span {
  color: var(--color-muted);
  font-weight: 650;
}

.book-section {
  background:
    linear-gradient(135deg, rgba(247, 242, 232, 0.92), rgba(255, 255, 255, 0.98));
}

.book-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.book-cover {
  min-height: clamp(390px, 46vw, 560px);
  padding: clamp(34px, 4.6vw, 52px);
  display: grid;
  align-content: end;
  gap: 12px;
  border: 1px solid rgba(20, 34, 53, 0.18);
  background:
    linear-gradient(155deg, rgba(20, 34, 53, 0.96), rgba(35, 59, 52, 0.94)),
    url("../images/executive-consulting-hero.png") center / cover;
  color: var(--color-surface);
  box-shadow: 0 34px 86px rgba(14, 23, 34, 0.2);
}

.book-cover span {
  color: #dfc99c;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-cover strong {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.95;
}

.book-cover em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-copy {
  display: grid;
  gap: 26px;
  max-width: 780px;
}

.book-copy > p:not(.eyebrow) {
  color: var(--color-ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.eta-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 11vw, 158px) var(--gutter);
  background:
    linear-gradient(135deg, rgba(16, 29, 46, 0.98), rgba(32, 58, 53, 0.94)),
    url("../images/executive-consulting-hero.png") center / cover no-repeat;
  color: var(--color-surface);
}

.eta-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 29, 46, 0.99), rgba(16, 29, 46, 0.78) 52%, rgba(16, 29, 46, 0.38)),
    radial-gradient(circle at 82% 20%, rgba(141, 100, 45, 0.3), transparent 34%);
}

.eta-hero-inner {
  width: min(100%, var(--container));
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.58fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.eta-hero-copy {
  max-width: 770px;
  display: grid;
  gap: 28px;
}

.eta-hero .eyebrow,
.eta-process .eyebrow {
  color: #dfc99c;
}

.eta-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(54px, 7.4vw, 94px);
  font-weight: 500;
  line-height: 0.98;
}

.eta-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.72;
}

.eta-hero .button-outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-surface);
}

.eta-hero-panel {
  padding: clamp(34px, 4.5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.eta-hero-panel h2 {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.eta-hero-panel p:not(.card-kicker) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.eta-difference {
  background: var(--color-paper);
}

.eta-difference-grid,
.eta-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
}

.eta-difference-card,
.eta-process-card {
  min-height: 100%;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.eta-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(141, 100, 45, 0.34);
  border-radius: 50%;
  background: #fffaf0;
  color: var(--color-brass-dark);
  font-family: var(--font-serif);
  font-size: 17px;
}

.eta-difference-card h3,
.eta-process-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(27px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.12;
}

.eta-difference-card p,
.eta-process-card p {
  margin-top: 14px;
  color: var(--color-ink-soft);
}

.eta-process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.eta-process-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.eta-process-card span {
  display: block;
  margin-bottom: 22px;
  color: #dfc99c;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
}

.eta-process-card p {
  color: rgba(255, 255, 255, 0.72);
}

.eta-method-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.eta-method-strip p {
  min-height: 86px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.eta-method-strip p:last-child {
  border-right: 0;
}

.eta-benefit-list {
  display: grid;
  gap: 0;
}

.eta-benefit-list article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-line);
}

.eta-benefit-list article:first-child {
  padding-top: 0;
}

.eta-benefit-list span {
  width: 12px;
  height: 12px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--color-brass);
}

.eta-benefit-list p {
  color: var(--color-ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.eta-testimonials .featured-quote-card {
  background: #fffdf9;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 148px) var(--gutter);
  background:
    linear-gradient(135deg, rgba(251, 250, 246, 0.99), rgba(243, 239, 231, 0.95));
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 29, 46, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 29, 46, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 0.9fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.about-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  z-index: 0;
  border: 1px solid rgba(141, 100, 45, 0.36);
  background: rgba(255, 255, 255, 0.42);
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(20, 34, 53, 0.12);
  box-shadow: 0 38px 90px rgba(14, 23, 34, 0.18);
}

.about-hero-copy {
  display: grid;
  gap: 28px;
  max-width: 760px;
}

.about-hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(54px, 7.2vw, 92px);
  font-weight: 500;
  line-height: 1;
}

.about-proof {
  padding-top: clamp(58px, 7vw, 92px);
}

.about-proof-grid,
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.about-proof-card {
  min-height: 190px;
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 16px 44px rgba(14, 23, 34, 0.075);
}

.about-proof-card span {
  color: var(--color-brass-dark);
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
}

.about-proof-card p {
  color: var(--color-ink-soft);
  font-weight: 750;
  line-height: 1.35;
}

.about-cred-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-bio-card,
.about-philosophy-panel {
  padding: clamp(34px, 4.5vw, 52px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.about-bio-card {
  color: var(--color-ink-soft);
  font-size: 18px;
  line-height: 1.76;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 25px;
  width: 1px;
  background: var(--color-line);
}

.about-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 30px;
}

.about-timeline article:last-child {
  padding-bottom: 0;
}

.about-timeline span {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(141, 100, 45, 0.34);
  border-radius: 50%;
  background: var(--color-paper);
  color: var(--color-brass-dark);
  font-family: var(--font-serif);
  font-size: 16px;
}

.about-timeline h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.12;
}

.about-timeline p {
  margin-top: 8px;
  color: var(--color-ink-soft);
}

.about-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-detail-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.about-detail-card h3 {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.12;
}

.about-detail-card p:not(.card-kicker) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.about-philosophy-panel p:not(.lede) {
  color: var(--color-ink-soft);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) var(--gutter);
  background:
    linear-gradient(135deg, rgba(16, 29, 46, 0.97), rgba(32, 58, 53, 0.92)),
    url("../images/executive-consulting-hero.png") center / cover no-repeat;
  color: var(--color-surface);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(141, 100, 45, 0.3), transparent 36%);
}

.contact-hero-inner {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
  display: grid;
  gap: 26px;
  text-align: center;
}

.contact-hero .eyebrow {
  color: #dfc99c;
}

.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.contact-hero p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.contact-invite {
  background:
    linear-gradient(180deg, var(--color-paper), rgba(241, 239, 232, 0.82));
}

.contact-intro-card {
  padding: clamp(34px, 4.5vw, 52px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-lift);
}

.contact-intro-card h2,
.contact-form-elevated h2 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.contact-intro-card > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--color-ink-soft);
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-method {
  padding: 20px 22px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-warm-white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(141, 100, 45, 0.42);
  box-shadow: var(--shadow-card);
  outline: none;
}

.contact-method span {
  color: var(--color-brass-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--color-ink);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-form-elevated {
  border-top: 5px solid var(--color-brass-dark);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

/* Final executive refinement */
.section {
  padding-top: clamp(76px, 8vw, 108px);
  padding-bottom: clamp(76px, 8vw, 108px);
}

.section-heading.centered {
  max-width: 850px;
}

.section-title {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-intro,
.lede,
.page-summary {
  max-width: 700px;
}

.button {
  letter-spacing: 0.105em;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.trust-bar {
  margin-top: 0;
  padding: 0 var(--gutter);
  background: var(--color-navy);
}

.trust-grid {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-card {
  min-height: 174px;
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}

.trust-card .trust-icon {
  color: var(--color-cream);
  font-size: clamp(25px, 2.4vw, 38px);
  letter-spacing: -0.035em;
}

.trust-card h2 {
  color: rgba(255, 255, 255, 0.68);
}

.premium-service-card {
  position: relative;
  overflow: hidden;
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.premium-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--color-brass);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms ease;
}

.premium-service-card:hover::before,
.premium-service-card:focus-within::before {
  transform: scaleY(1);
}

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

.featured-testimonial-grid,
.testimonial-filter-grid {
  align-items: start;
}

.featured-quote-card,
.testimonial-filter-card {
  border-radius: 3px;
}

.featured-quote-card:first-child {
  border-top: 4px solid var(--color-brass-dark);
}

.testimonial-filter-card blockquote {
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.testimonial-tabs {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  z-index: 5;
  backdrop-filter: blur(18px);
}

.book-grid {
  align-items: center;
}

.book-cover {
  position: relative;
  width: min(100%, 390px);
  min-height: 520px;
  margin-left: clamp(0px, 4vw, 48px);
  padding: 52px 44px 46px 58px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px 9px 9px 2px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0 16px, transparent 16px),
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.12), transparent 33%),
    linear-gradient(145deg, #16283d, #09131f 74%);
  box-shadow: -18px 22px 0 #e1d7c7, 0 38px 72px rgba(14, 23, 34, 0.28);
  transform: rotate(-1.5deg);
}

.book-cover::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 15px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.book-cover small,
.book-cover b {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.book-cover small {
  margin-bottom: auto;
}

.book-cover b {
  max-width: 240px;
  margin-top: auto;
}

.book-cover span {
  margin-top: 80px;
}

.about-hero-copy .lede {
  font-size: clamp(25px, 2.8vw, 39px);
  line-height: 1.24;
}

.about-proof-grid {
  gap: 0;
}

.about-proof-card {
  border-width: 0 1px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-proof-card:last-child {
  border-right: 0;
}

.about-timeline article {
  padding-bottom: 27px;
}

.eta-difference-card {
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.eta-difference-card:nth-child(2) {
  margin-top: 34px;
}

.eta-difference-card:nth-child(3) {
  margin-top: 68px;
}

.contact-method-static {
  cursor: default;
}

.contact-method-static:hover {
  transform: none;
  border-color: var(--color-line);
  box-shadow: none;
}

.contact-form-elevated {
  box-shadow: var(--shadow-card);
}

.form-note {
  padding-left: 18px;
  border-left: 2px solid var(--color-line);
}

@media (max-width: 940px) {
  .testimonial-tabs {
    position: static;
  }

  .about-proof-card,
  .about-proof-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .about-proof-card:last-child {
    border-bottom: 0;
  }

  .eta-difference-card:nth-child(2),
  .eta-difference-card:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-hero-portrait,
  .about-portrait {
    width: min(100%, 290px);
  }

  .trust-card {
    min-height: 126px;
  }

  .book-cover {
    min-height: 440px;
    margin: 10px auto 30px;
    padding: 42px 34px 38px 48px;
    box-shadow: -10px 14px 0 #e1d7c7, 0 28px 50px rgba(14, 23, 34, 0.24);
  }

  .book-cover span {
    margin-top: 54px;
  }

  .testimonial-filter-card blockquote {
    font-size: 23px;
  }
}

/* Keep the complete book title visually unified. */
.book-cover {
  gap: 5px;
}

.book-cover span {
  color: #dfc99c;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: none;
}

.book-cover strong {
  font-size: clamp(44px, 5.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.book-cover b {
  margin-top: 20px;
}

/* A continuous editorial About page, without oversized vertical breaks. */
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
}

.about-story-copy {
  padding-left: clamp(28px, 4vw, 52px);
  border-left: 1px solid rgba(141, 100, 45, 0.3);
}

.about-story-copy p {
  color: var(--color-ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.about-story-copy p + p {
  margin-top: 18px;
}

.about-story-copy .lede {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.35;
}

@media (min-width: 761px) and (max-width: 940px) {
  [data-page="about"] .about-hero-inner {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 38px;
    align-items: center;
  }

  [data-page="about"] .about-portrait {
    width: min(100%, 310px);
  }

  [data-page="about"] .about-hero-copy h1 {
    font-size: clamp(42px, 5.4vw, 52px);
  }

  [data-page="about"] .about-hero-copy .lede {
    font-size: 20px;
    line-height: 1.5;
  }
}

@media (max-width: 760px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-story-copy {
    padding-left: 0;
    border-left: 0;
  }
}

/* Direct, undecorated presentation */
.eyebrow { display: none !important; }
.js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
.page-summary,
.section-intro,
.service-list p,
.service-offering-copy > p { color: var(--color-ink-soft) !important; opacity: 1 !important; }
.inc-feature-single { display: block; max-width: 920px; }
.inc-feature-single .inc-story { max-width: none; }
.leads-process { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr); gap: clamp(42px, 7vw, 90px); align-items: start; }
.leads-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--color-line); }
.leads-list li { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--color-line); }
.leads-list b { color: var(--color-brass-dark); font-family: var(--font-serif); font-size: 28px; line-height: 1; }
.leads-list strong,
.leads-list span { display: block; }
.leads-list strong { font-family: var(--font-serif); font-size: 23px; font-weight: 500; line-height: 1.2; }
.leads-list span { margin-top: 5px; color: var(--color-muted); }

@media (max-width: 680px) {
  .leads-process { grid-template-columns: 1fr; gap: 28px; }
}

.rich-text {
  color: var(--color-ink-soft);
  font-size: 17px;
}

.lede {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.16;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.stat {
  min-height: 132px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 6px;
  background: var(--color-surface);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.stat-label {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.card {
  min-height: 100%;
  padding: clamp(30px, 3.6vw, 44px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 16px 44px rgba(14, 23, 34, 0.075);
}

.card-kicker {
  color: var(--color-brass-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card h3 {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.7vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.card p {
  margin-top: 16px;
  color: var(--color-ink-soft);
}

.card-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--color-ink-soft);
}

.card-list li + li {
  margin-top: 10px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 22px;
  color: var(--color-brass-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: color 180ms ease, transform 180ms ease;
}

.card-link:hover,
.card-link:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--color-brass);
  transform: translateX(2px);
  outline: none;
}

.band {
  background: var(--color-smoke);
}

.dark-band {
  background: var(--color-navy);
  color: var(--color-surface);
}

.dark-band .section-intro,
.dark-band .rich-text,
.dark-band .card p {
  color: rgba(255, 255, 255, 0.76);
}

.dark-band .eyebrow,
.dark-band .card-kicker {
  color: #dfc99c;
}

.dark-band .card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.process-list {
  display: grid;
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.process-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 26px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--color-surface);
}

.process-number {
  color: var(--color-brass);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.process-item h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
}

.process-item p {
  margin-top: 10px;
  color: var(--color-ink-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonials-section {
  background: var(--color-paper);
}

.testimonial-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.testimonial-tab {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.testimonial-tab:hover,
.testimonial-tab:focus-visible {
  border-color: rgba(141, 100, 45, 0.34);
  outline: none;
}

.testimonial-tab.is-active {
  background: var(--color-navy);
  color: var(--color-surface);
}

.testimonial-status {
  margin: 0 auto clamp(28px, 4vw, 42px);
  color: var(--color-muted);
  text-align: center;
  font-size: 14px;
  font-weight: 750;
}

.testimonial-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 30px);
}

.testimonial-filter-card {
  position: relative;
  min-height: 100%;
  padding: clamp(34px, 4.2vw, 52px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 16px 44px rgba(14, 23, 34, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-filter-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 100, 45, 0.32);
  box-shadow: var(--shadow-lift);
}

.testimonial-filter-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 24px;
  color: rgba(141, 100, 45, 0.16);
  font-family: var(--font-serif);
  font-size: 92px;
  line-height: 1;
}

.testimonial-filter-card.is-hidden {
  display: none;
}

.testimonial-filter-card blockquote {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1.24;
}

.testimonial-filter-card .quote-meta span {
  color: var(--color-muted);
  font-weight: 650;
}

.quote-card {
  padding: clamp(26px, 3.8vw, 40px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.quote-card blockquote {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
}

.quote-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  padding: clamp(86px, 10vw, 148px) var(--gutter) clamp(68px, 8vw, 112px);
  background:
    radial-gradient(circle at 78% 18%, rgba(141, 100, 45, 0.22), transparent 34%),
    linear-gradient(135deg, var(--color-navy), var(--color-forest));
  color: var(--color-surface);
}

.page-hero-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.page-hero .eyebrow {
  color: #dfc99c;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.8vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.page-summary {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.7;
}

.feature-panel {
  padding: clamp(28px, 4vw, 42px);
  border-left: 4px solid var(--color-brass);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.feature-panel h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.feature-panel p {
  margin-top: 16px;
  color: var(--color-ink-soft);
}

.profile-frame {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.profile-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  color: var(--color-ink-soft);
  font-size: 15px;
}

.contact-details a {
  color: var(--color-brass-dark);
  font-weight: 800;
}

.service-detail {
  position: relative;
}

.service-section-head {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  max-width: 980px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.service-section-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(141, 100, 45, 0.36);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 232, 0.9));
  color: var(--color-brass-dark);
  box-shadow: var(--shadow-card);
}

.service-section-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 30px);
}

.service-card-grid .service-detail-card:nth-child(3) {
  grid-column: 1 / -1;
}

.service-detail-card {
  min-height: 100%;
  padding: clamp(34px, 4vw, 50px);
  display: grid;
  align-content: start;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(14, 23, 34, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 100, 45, 0.32);
  box-shadow: var(--shadow-lift);
}

.band .service-detail-card {
  background: var(--color-surface);
}

.service-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 29, 46, 0.12);
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-cream);
  font-family: var(--font-serif);
  font-size: 16px;
}

.service-detail-card h3 {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: clamp(27px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.12;
}

.service-detail-card p:not(.card-kicker) {
  margin-top: 16px;
  color: var(--color-ink-soft);
}

.service-cta {
  margin-top: 30px;
  padding: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(141, 100, 45, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 232, 0.88));
}

.service-cta h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.12;
}

.service-cta p {
  margin-top: 10px;
  color: var(--color-ink-soft);
}

.cta {
  padding: clamp(50px, 7vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(141, 100, 45, 0.24), transparent 32%),
    var(--color-navy);
  color: var(--color-surface);
}

.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.1;
}

.cta p {
  margin-top: 12px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 4.5vw, 52px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--color-ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-warm-white);
  color: var(--color-ink);
  min-height: 50px;
  padding: 14px 15px;
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-brass);
  box-shadow: 0 0 0 4px rgba(141, 100, 45, 0.12);
}

.form-note {
  color: var(--color-muted);
  font-size: 13px;
}

.site-footer {
  padding: 54px var(--gutter) 42px;
  background: #0d141b;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(160px, 0.4fr));
  gap: 34px;
}

.footer-title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.14;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom {
  width: min(100%, var(--container));
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

@media (max-width: 940px) {
  :root {
    --header-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px var(--gutter) 28px;
    border-bottom: 1px solid var(--color-line);
    background: rgba(251, 250, 247, 0.98);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    transition: transform 200ms ease;
  }

  .menu-open .nav-menu {
    transform: translateY(0);
  }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 17px;
  }

  .nav-link::after {
    display: none;
  }

  .split,
  .contact-layout,
  .cta,
  .service-cta,
  .home-hero-inner,
  .eta-hero-inner,
  .about-hero-inner,
  .about-cred-grid,
  .inc-feature-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: clamp(62px, 10vw, 90px);
  }

  .home-hero-inner {
    min-height: auto;
  }

  .home-hero-portrait {
    justify-self: start;
    width: min(100%, 430px);
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .trust-card:nth-child(odd) {
    border-right: 1px solid var(--color-line);
  }

  .trust-card:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
    border-right: 0;
  }

  .premium-card-grid,
  .featured-testimonial-grid,
  .service-card-grid,
  .eta-difference-grid,
  .eta-process-grid,
  .eta-method-strip,
  .about-proof-grid,
  .about-card-grid,
  .testimonial-filter-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(100%, 420px);
  }

  .eta-hero-inner {
    min-height: auto;
  }

  .eta-method-strip p,
  .eta-method-strip p:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .eta-method-strip p:last-child {
    border-bottom: 0;
  }

  .service-card-grid .service-detail-card:nth-child(3) {
    grid-column: auto;
  }

  .inc-badge {
    min-height: 260px;
  }

  .card-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .section {
    padding-top: clamp(58px, 14vw, 76px);
    padding-bottom: clamp(58px, 14vw, 76px);
  }

  .page-hero {
    padding-top: clamp(56px, 14vw, 76px);
    padding-bottom: clamp(48px, 12vw, 68px);
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-title,
  .page-title,
  .cta h2,
  .contact-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1;
  }

  .section-intro,
  .page-summary,
  .contact-hero p:not(.eyebrow),
  .home-hero-copy > p:not(.eyebrow),
  .eta-hero-copy > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.68;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .eta-hero {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .about-hero {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .home-hero-inner,
  .eta-hero-inner,
  .about-hero-inner {
    gap: 28px;
  }

  .eta-hero h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .about-hero-copy h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .about-portrait::before {
    inset: 14px -12px -14px 12px;
  }

  .about-portrait,
  .home-hero-portrait {
    width: min(100%, 240px);
  }

  .home-hero-copy h1 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 0.98;
  }

  .home-hero-copy,
  .eta-hero-copy,
  .about-hero-copy {
    gap: 20px;
  }

  .home-hero-portrait::before {
    inset: 14px -12px -14px 12px;
  }

  .portrait-caption {
    position: static;
    min-width: 0;
  }

  .eta-hero-panel {
    padding: 24px;
  }

  .eta-hero-panel h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .trust-bar {
    margin-top: 0;
    padding-top: 0;
  }

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

  .trust-card,
  .trust-card:nth-child(odd),
  .trust-card:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

  .service-section-head {
    grid-template-columns: 1fr;
  }

  .service-section-icon {
    width: 64px;
    height: 64px;
  }

  .service-section-icon svg {
    width: 29px;
    height: 29px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(16, 24, 32, 0.94) 0%, rgba(16, 24, 32, 0.78) 54%, rgba(16, 24, 32, 0.56) 100%),
      url("../images/executive-consulting-hero.png") center / cover no-repeat;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .testimonial-tabs {
    justify-content: stretch;
  }

  .testimonial-tab {
    flex: 1 1 100%;
  }

  .card-grid,
  .testimonial-grid,
  .stat-row,
  .form-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .premium-service-card,
  .featured-quote-card,
  .testimonial-filter-card,
  .service-detail-card,
  .contact-intro-card,
  .contact-form {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Cascade-safe finishing rules */
.testimonial-filter-grid,
.featured-testimonial-grid { align-items: start; }
.testimonial-filter-card { height: auto; }
.testimonial-filter-card blockquote { font-size: clamp(23px, 2.1vw, 31px); line-height: 1.25; }
.testimonial-tabs { position: sticky; top: calc(var(--header-height) + 16px); z-index: 5; backdrop-filter: blur(18px); }
.contact-method-static { cursor: default; }

@media (max-width: 940px) {
  .testimonial-tabs { position: static; }
  .eta-difference-card:nth-child(2),
  .eta-difference-card:nth-child(3) { margin-top: 0; }
}

@media (max-width: 680px) {
  .section { padding-top: 64px; padding-bottom: 64px; }
  .home-hero-portrait,
  .about-portrait { width: min(100%, 290px); }
  .book-cover { min-height: 440px; margin: 10px auto 30px; padding: 42px 34px 38px 48px; }
  .testimonial-filter-card blockquote { font-size: 23px; }
}

/* Balanced, concise layout revision */
body { font-size: 16px; line-height: 1.65; }
.section { padding-top: clamp(54px, 5vw, 72px); padding-bottom: clamp(54px, 5vw, 72px); }
.section-title,
.page-title { font-size: clamp(36px, 4.4vw, 56px); line-height: 1.08; letter-spacing: -0.025em; }
.page-hero { padding-top: clamp(70px, 8vw, 108px); padding-bottom: clamp(64px, 7vw, 92px); }
.page-hero-compact .page-hero-inner { max-width: 900px; }
.page-summary,
.section-intro { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; }
.eyebrow,
.card-kicker { font-size: 12px; letter-spacing: 0.16em; }
.home-hero-copy h1 { font-size: clamp(46px, 5.2vw, 66px); line-height: 1.02; }
.home-hero-copy > p:not(.eyebrow) { font-size: 18px; line-height: 1.65; }

.service-list { border-top: 1px solid var(--color-line); }
.service-list > a { display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 30px 8px; border-bottom: 1px solid var(--color-line); transition: padding 180ms ease, background 180ms ease; }
.service-list > a:hover { padding-left: 18px; padding-right: 18px; background: rgba(243, 239, 231, 0.62); }
.service-list > a > span { color: var(--color-brass-dark); font-family: var(--font-serif); font-size: 20px; }
.service-list h3 { margin-top: 5px; font-family: var(--font-serif); font-size: clamp(25px, 2.2vw, 32px); font-weight: 500; line-height: 1.16; }
.service-list p:not(.card-kicker) { margin-top: 7px; color: var(--color-muted); }
.service-list b { color: var(--color-brass-dark); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

.inc-feature-grid { grid-template-columns: 210px minmax(0, 1fr); gap: clamp(38px, 6vw, 78px); }
.inc-badge { min-height: 210px; padding: 28px; align-content: center; gap: 6px; box-shadow: none; }
.inc-badge strong { font-size: 54px; line-height: 1; }
.inc-badge span { font-size: 25px; }
.inc-story .section-title { max-width: 640px; }
.inc-story .lede { font-size: 18px; line-height: 1.65; }
.inc-story blockquote { margin-top: 26px; padding: 24px 30px; font-size: clamp(21px, 2.1vw, 28px); line-height: 1.35; }

.featured-testimonial-grid-home { grid-template-columns: minmax(0, 1fr) 250px; align-items: stretch; }
.featured-testimonial-grid-home .featured-quote-card { min-height: 0; }
.featured-testimonial-grid-home blockquote { font-size: clamp(23px, 2.5vw, 34px); line-height: 1.3; }
.testimonial-more { display: grid; place-items: center; min-height: 220px; border: 1px solid var(--color-line); color: var(--color-brass-dark); font-weight: 700; text-align: center; }

.service-offerings { max-width: 1050px; }
.service-offering { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(42px, 7vw, 92px); padding: 60px 0; border-bottom: 1px solid var(--color-line); scroll-margin-top: 110px; }
.service-offering:first-child { padding-top: 0; }
.service-offering:last-child { padding-bottom: 0; border-bottom: 0; }
.service-offering-heading { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 18px; align-items: start; }
.service-offering-heading > span { color: var(--color-brass-dark); font-family: var(--font-serif); font-size: 20px; }
.service-offering h2 { margin-top: 8px; font-family: var(--font-serif); font-size: clamp(31px, 3.3vw, 44px); font-weight: 500; line-height: 1.12; }
.service-offering-copy > p { color: var(--color-ink-soft); font-size: 18px; }
.service-offering-copy ul { margin: 22px 0 0; padding: 0; list-style: none; }
.service-offering-copy li { padding: 11px 0 11px 24px; border-top: 1px solid var(--color-line); position: relative; }
.service-offering-copy li::before { content: ""; position: absolute; left: 2px; top: 21px; width: 7px; height: 7px; border-radius: 50%; background: var(--color-brass); }
.leads-row { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border: 1px solid var(--color-line); background: var(--color-surface); }
.leads-row li { min-height: 150px; padding: 26px 20px; border-right: 1px solid var(--color-line); display: grid; align-content: start; gap: 16px; }
.leads-row li:last-child { border-right: 0; }
.leads-row b { color: var(--color-brass-dark); font-family: var(--font-serif); font-size: 30px; }
.leads-row span { line-height: 1.35; }

.eta-hero-simple h1 { font-size: clamp(46px, 5.7vw, 68px); }
.eta-hero-simple .eta-hero-panel h2 { font-size: clamp(29px, 2.8vw, 38px); }
.eta-focus-list { max-width: 960px; margin: 0 auto; border-top: 1px solid var(--color-line); }
.eta-focus-list article { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 22px; padding: 25px 4px; border-bottom: 1px solid var(--color-line); }
.eta-focus-list article > span { color: var(--color-brass-dark); font-family: var(--font-serif); font-size: 19px; }
.eta-focus-list h3 { font-family: var(--font-serif); font-size: 27px; font-weight: 500; }
.eta-focus-list p { margin-top: 4px; color: var(--color-muted); }
.eta-proof .featured-quote-card blockquote { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.35; }

.about-hero-clean::before,
.about-hero-clean::after { display: none; }
.about-hero-clean { background: var(--color-paper); }
.about-hero-clean .about-hero-copy .lede { font-size: clamp(22px, 2.1vw, 30px); line-height: 1.4; }
.credential-list { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.credential-list article { padding: 28px 22px; border-right: 1px solid var(--color-line); }
.credential-list article:last-child { border-right: 0; }
.credential-list strong,
.credential-list span { display: block; }
.credential-list strong { font-family: var(--font-serif); font-size: 23px; font-weight: 500; line-height: 1.2; }
.credential-list span { margin-top: 9px; color: var(--color-muted); font-size: 14px; line-height: 1.45; }

.testimonial-filter-card blockquote { font-size: clamp(20px, 1.7vw, 25px); line-height: 1.38; }
.testimonial-filter-card { padding: 34px; }
.testimonials-section { padding-bottom: 84px; }

.site-footer { clear: both; position: relative; padding: 46px var(--gutter) 30px; overflow: visible; }
[data-page="services"] .page-hero .page-summary { color: rgba(255, 255, 255, 0.82) !important; }
.footer-inner { position: static; display: grid; grid-template-columns: minmax(260px, 1.4fr) 180px 180px; gap: 48px; align-items: start; }
.footer-inner > div { position: static; min-width: 0; }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a { display: block; min-height: 0; padding: 6px 0; line-height: 1.4; }
.footer-bottom { position: static; margin-top: 30px; padding-top: 20px; }

@media (max-width: 940px) {
  .service-offering { grid-template-columns: 1fr; gap: 24px; }
  .leads-row { grid-template-columns: 1fr 1fr; }
  .leads-row li { min-height: 120px; border-bottom: 1px solid var(--color-line); }
  .credential-list { grid-template-columns: 1fr 1fr; }
  .credential-list article { border-bottom: 1px solid var(--color-line); }
  .footer-inner { grid-template-columns: minmax(0, 1fr) 150px 150px; gap: 30px; }
}

@media (max-width: 680px) {
  .section { padding-top: 56px; padding-bottom: 56px; }
  .section-title,
  .page-title { font-size: clamp(34px, 9vw, 43px); }
  .service-list > a { grid-template-columns: 38px minmax(0, 1fr); gap: 14px; }
  .service-list b { display: none; }
  .inc-feature-grid,
  .featured-testimonial-grid-home { grid-template-columns: 1fr; }
  .inc-badge { width: 100%; min-height: 160px; }
  .testimonial-more { min-height: 110px; }
  .service-offering { padding: 44px 0; }
  .service-offering-heading { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .leads-row,
  .credential-list { grid-template-columns: 1fr; }
  .leads-row li,
  .credential-list article { min-height: auto; border-right: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { gap: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-card,
  .trust-card:nth-child(odd),
  .trust-card:last-child { min-height: 108px; padding: 20px 14px; }
  .trust-card:last-child { grid-column: 1 / -1; }
  .trust-card .trust-icon { font-size: 24px; }
}

/* Credentials are text, not decorative badges. */
.trust-card .trust-icon {
  width: auto;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1.05;
}

/* Restrained accents add rhythm without changing the established design. */
.section-heading::before {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--color-brass);
}

.section-heading.centered::before {
  margin-right: auto;
  margin-left: auto;
}

.eta-hero-panel .card-kicker {
  color: #f4d9a7;
  font-size: 13px;
  letter-spacing: 0.14em;
}

/* Warm, softly layered content areas. */
[data-page="services"] .services-overview,
[data-page="eta"] .eta-focus {
  background:
    radial-gradient(circle at 92% 8%, rgba(141, 100, 45, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f2e9 100%);
}

[data-page="services"] .service-offerings,
[data-page="eta"] .eta-focus-list {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(141, 100, 45, 0.18);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 24px 60px rgba(14, 23, 34, 0.06);
}

[data-page="services"] .service-offering:first-child {
  padding-top: 0;
}

[data-page="eta"] .eta-focus-list article {
  padding-right: 10px;
  padding-left: 10px;
}

[data-page="testimonials"] .page-hero .page-summary {
  color: rgba(255, 255, 255, 0.84) !important;
}

[data-page="testimonials"] .page-hero .page-title {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

@media (max-width: 680px) {
  [data-page="services"] .service-offerings,
  [data-page="eta"] .eta-focus-list {
    padding: 22px 18px;
  }
}

/* Keep the Inc. mark restrained and attached to its supporting client story. */
.inc-story-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.inc-story-heading .section-title { margin: 0; }

.inc-story-logo {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  object-fit: contain;
}

.testimonial-filter-card-featured {
  grid-column: 1 / -1;
  border-color: rgba(141, 100, 45, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(246, 240, 229, 0.92));
  box-shadow: 0 22px 58px rgba(14, 23, 34, 0.11);
}

.testimonial-filter-card-featured blockquote {
  max-width: 1000px;
  font-size: clamp(23px, 2.35vw, 32px);
}

.testimonial-filter-card-featured .quote-meta {
  padding-right: 88px;
}

.kevin-inc-logo {
  position: absolute;
  right: 30px;
  bottom: 26px;
  z-index: 2;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

@media (max-width: 680px) {
  .home-hero-copy-solo {
    padding: 30px 22px;
    border-left-width: 3px;
  }

  .home-hero-copy-solo h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .testimonial-filter-card-featured {
    grid-column: auto;
  }

  .testimonial-filter-card-featured .quote-meta { padding-right: 68px; }
  .kevin-inc-logo { right: 22px; bottom: 22px; width: 52px; height: 52px; }

  .inc-story-heading { gap: 12px; }
  .inc-story-logo { width: 68px; height: 68px; flex-basis: 68px; }
}

/* Download links use the site's original warm editorial design language. */
.resource-section {
  padding-top: 0;
  padding-bottom: clamp(34px, 5vw, 58px);
  background: var(--color-cream);
}

.resource-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-brass);
  background: rgba(255, 253, 249, 0.58);
}

.resource-panel h2 {
  margin: 5px 0 8px;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.resource-panel > div > p:last-child {
  max-width: 700px;
  color: var(--color-ink-soft);
  line-height: 1.55;
}

.resource-panel .button.button-primary {
  border: 1px solid rgba(141, 100, 45, 0.42);
  background: transparent;
  color: var(--color-brass-dark);
  box-shadow: none;
}

.resource-panel .button.button-primary:hover {
  background: var(--color-navy);
  color: var(--color-cream);
}

@media (max-width: 760px) {
  .resource-panel {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .resource-panel .button {
    width: 100%;
  }
}
