@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--ink);
  color: var(--white);
}
:focus-visible {
  outline: 1.5px solid var(--ink);
  outline-offset: 3px;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}
ul {
  list-style: none;
}
em {
  font-style: italic;
}

:root {
  --ink: #080808;
  --ink-mid: #1e1e1e;
  --ink-soft: #3a3a3a;
  --gray: #6a6a6a;
  --gray-light: #aaaaaa;
  --rule: #dedede;
  --bg-cream: #f5f3ee;
  --bg-light: #f4f4f4;
  --white: #ffffff;

  --gold: #cfb081;
  --gold-on-dark: #fce6c7;

  --charcoal: var(--ink);
  --charcoal-mid: var(--ink-mid);
  --charcoal-a: rgba(8, 8, 8, 0.7);
  --charcoal-mid-a: rgba(30, 30, 30, 0.7);
  --brown: var(--ink-soft);
  --brown-light: var(--gray);
  --taupe: var(--gray);
  --taupe-mid: var(--gray-light);
  --taupe-light: var(--rule);
  --offwhite: var(--bg-light);
  --offwhite-a: rgba(244, 244, 244, 0.7);
  --warm: var(--bg-light);
  --gold-light: var(--gold-on-dark);
  --gold-dark: var(--gold);
  --gold-pale: #f5f0e8;
  --burgundy: #3b1c23;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", system-ui, sans-serif;

  --fs-xs: 0.72rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.1rem;
  --fs-lg: 1.35rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;
  --fs-5xl: 5rem;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --radius-sm: 0px;
  --radius: 0px;
  --radius-card: 0px;
  --radius-full: 0px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.13);
  --shadow-gold: none;

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
  --max-w: 1200px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding: 0 var(--sp-8);
  }
}

.section {
  padding: var(--sp-24) 0;
}
.section--sm {
  padding: var(--sp-16) 0;
}
.section--lg {
  padding: var(--sp-32) 0;
}
.section--dark {
  background: var(--ink);
}
.section--mid {
  background: var(--ink-mid);
}
.section--cream {
  background: var(--bg-cream);
}
.section--off {
  background: var(--bg-light);
}
.section--warm {
  background: var(--bg-light);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-line,
  .hero-shape,
  .sticky-cta {
    animation: none !important;
  }
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero .eyebrow,
.page-hero .eyebrow,
.cta-section .eyebrow,
.cfo-block .eyebrow,
.boss-block .eyebrow,
.section--dark .eyebrow,
.section--mid .eyebrow {
  color: var(--gray-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary,
.btn--gold {
  background: var(--offwhite);
  color: var(--ink);
  border-color: var(--gold-dark);
}
.btn--gold:hover,
.btn--primary:hover {
  background: var(--gold-pale);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--offwhite);
  border-color: var(--white);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.btn--ghost-gold {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost-gold:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--full {
  width: 100%;
  justify-content: center;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  padding: 0 var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 1000;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-on-dark);
  letter-spacing: 0.01em;
}
.logo-title {
  margin-top: -2px;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 400;
}
.nav-links {
  display: none;
  list-style: none;
}
.nav-links a {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  transition: color var(--transition);
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.22s ease;
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--white) !important;
  color: var(--ink) !important;
  padding: 9px 22px !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  transition:
    background var(--transition),
    color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--bg-light) !important;
}
.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  z-index: 3110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition:
    transform var(--transition),
    opacity var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
}
.nav-overlay.open {
  display: flex;
}
.nav-overlay a {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--gray-light);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-overlay a:hover {
  color: var(--white);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--sp-8);
  }
}

.sticky-cta {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 90;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: var(--sp-3) var(--sp-6);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-cta:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
}

.page-hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-on-dark) 25%,
    var(--gold-on-dark) 75%,
    transparent
  );
  opacity: 0.4;
}
.page-hero__bg-shape {
  display: none;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero__eyebrow {
  margin-bottom: var(--sp-5);
}
.page-hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.page-hero__sub {
  font-size: var(--fs-md);
  color: var(--gray-light);
  line-height: 1.75;
  max-width: 560px;
}

.new-new {
  width: 100%;
}
.new-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.authority-stat-col {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--white);
  padding-top: var(--sp-10);
}

.stat-block {
  padding: var(--sp-10) var(--sp-8);
  height: 200px;
  background: var(--ink);
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  border-left: 2px solid var(--gold-on-dark);
  border-right: 2px solid var(--gold-on-dark);
}

.stat-block img {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.stat-block__num {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-block__num[style*="color"] {
  color: var(--white) !important;
}
.stat-block--gold .stat-block__num {
  color: var(--white);
}

.stat-block__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  line-height: 1.5;
  max-width: 22ch;
}
.stat-block__label[style*="opacity"] {
  opacity: 1 !important;
  color: var(--gray-light) !important;
}

.authority-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-8);
}
.cred-tag {
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px var(--sp-3);
  border-radius: 0;
  font-weight: 400;
}

.authority-content {
  flex: 1;
  background: var(--white);
  padding: var(--sp-12) var(--sp-12) var(--sp-12) var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.authority-content .section-headline {
  margin-bottom: var(--sp-6);
}
.authority-body {
  color: var(--ink-soft);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.authority .section-headline {
  color: var(--ink);
}
.authority .section-headline em {
  color: var(--ink);
}
.authority-body strong {
  color: var(--ink);
  font-weight: 600;
}

.authority-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 12px;
  padding: 12px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: var(--sp-6) 0 var(--sp-8);
}
.authority-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--ink-soft);
  font-size: var(--fs-sm);
  line-height: 1.6;
  background: var(--white);
  padding: var(--sp-4) var(--sp-5);
  width: auto;
  border-radius: 0;
}
.authority-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.authority-list li svg path {
  stroke: var(--ink) !important;
}
.authority .btn--primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.authority .btn--primary:hover {
  background: var(--white);
  color: var(--ink);
}

.authority {
  padding: var(--sp-24) 0;
  background: var(--bg-light);
}

@media (max-width: 900px) {
  .container {
    padding: 24px;
  }
  .new-container {
    flex-direction: column;
  }
  .authority-stat-col {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .stat-block {
    flex: 1;
    width: 90%;
    min-width: 140px;
  }
  .authority-list {
    display: grid;
    grid-template-columns: repeat(1, minmax(180px, 1fr));
    gap: 12px;
    padding: 12px;
  }
  .authority-content {
    padding: var(--sp-8) var(--sp-6);
  }
}

.section-header {
  margin-bottom: var(--sp-12);
}
.section-header--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-12);
}
.section-headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-top: var(--sp-3);
}
.section-headline em {
  color: var(--ink);
  font-weight: 300;
  font-style: italic;
}
.section--dark .section-headline,
.section--mid .section-headline {
  color: var(--white);
}
.section--dark .section-headline em,
.section--mid .section-headline em {
  color: var(--gray-light);
}
.section-sub {
  font-size: var(--fs-md);
  color: var(--gray);
  line-height: 1.75;
  max-width: 54ch;
  margin-top: var(--sp-4);
}
.section--dark .section-sub,
.section--mid .section-sub {
  color: var(--gray-light);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: url("assets/images/herobg.jpg");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape--1 {
  width: 640px;
  height: 640px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 70%
  );
  top: -200px;
  right: -150px;
  animation: pulse-shape 9s ease-in-out infinite;
}
.hero-shape--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.015) 0%,
    transparent 70%
  );
  bottom: 100px;
  left: 8%;
  animation: pulse-shape 11s ease-in-out infinite reverse;
}
@keyframes pulse-shape {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(12px, -12px);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-16) 0 var(--sp-20);
  max-width: 1080px;
}
.hero-eyebrow {
  margin-bottom: var(--sp-6);
  color: var(--gold-pale) !important;
  font-size: var(--fs-md);
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-3xl), 7vw, var(--fs-5xl));
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.hero-headline em {
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  border-bottom: 1px solid var(--gold-on-dark);
  padding-bottom: 2px;
}
.hero-sub {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: var(--gray-light);
  max-width: 54ch;
  margin-bottom: var(--sp-10);
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  80% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    opacity: 0;
  }
}
.who-we-help {
  background-image: url("assets/images/brenda4.jpeg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
}
.why-brenda {
  background-image: url("assets/images/brenda5.jpeg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
}
.section-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.section-overlay.who {
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    rgba(8, 8, 8, 0.99) 39%,
    rgba(8, 8, 8, 0.86) 69%,
    rgba(8, 8, 8, 0) 79%,
    rgba(8, 8, 8, 0.08) 100%
  );
}
.section-overlay.why {
  background: linear-gradient(
    90deg,
    var(--ink-mid) 0%,
    rgba(30, 30, 30, 0.99) 39%,
    rgba(30, 30, 30, 0.96) 62%,
    rgba(30, 30, 30, 0) 84%,
    rgba(30, 30, 30, 0.08) 100%
  );
}
.section-overlay.how {
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    rgba(8, 8, 8, 0.99) 39%,
    rgba(8, 8, 8, 1.96) 72%,
    rgba(8, 8, 8, 0) 94%,
    rgba(8, 8, 8, 0.08) 100%
  );
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.who-chip {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: 400;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}
.who-chip:hover {
  border-color: var(--ink);
  background: var(--bg-light);
  transform: translateY(-2px);
}
.who-chip__dot {
  width: 3px;
  height: 3px;
  background: var(--ink);
  border-radius: 0;
  flex-shrink: 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}
@media (min-width: 640px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0;
  transition: background var(--transition);
}
.diff-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.diff-item__icon {
  width: 28px;
  height: 28px;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-item__text {
  font-size: var(--fs-sm);
  color: var(--gray-light);
  line-height: 1.65;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-light);
}
.services {
  position: relative;
  padding: var(--sp-24) 0;
  overflow: hidden;
}
.services .section-header,
.services .eyebrow {
  position: relative;
  z-index: 1;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  outline: 1px solid var(--rule);
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--sp-8);
  transition:
    background var(--transition),
    color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--ink);
}
.service-card:hover .service-card__title,
.service-card:hover .service-card__body {
  color: var(--white);
}
.service-card:hover .service-card__num {
  color: rgba(255, 255, 255, 0.12);
}
.service-card:hover .service-card__icon {
  color: var(--white);
}

.service-card__num {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--rule);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
}
.service-card__icon {
  width: 36px;
  height: 36px;
  color: var(--ink);
  margin-bottom: var(--sp-5);
  transition: color var(--transition);
}
.service-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
  transition: color var(--transition);
}
.service-card__body {
  font-size: var(--fs-sm);
  color: var(--gray);
  line-height: 1.75;
  transition: color var(--transition);
}

.cfo-block {
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) 0;
  background-image: url("assets/images/brenda6.jpeg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cfo-block__watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cfo-block__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.cfo-block__headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.cfo-block__headline em {
  color: var(--white) !important;
  font-style: italic;
}
.cfo-block__body {
  font-size: var(--fs-md);
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: var(--sp-8);
}

.boss-block {
  background: url("https://bossladiessmb.com/assets/boss-ladies/new-brenda-2.jpeg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.brenda-boss {
  display: none;
}
.boss-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  background: linear-gradient(
    to left,
    transparent,
    var(--burgundy),
    var(--burgundy)
  );
}
.boss-block__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.boss-block__headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-6);
}
.boss-block__body {
  font-size: var(--fs-md);
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: var(--sp-8);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-24) 0;
  background: var(--ink);
  text-align: center;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--gold-on-dark);
}
.cta-section::after {
  display: none;
}
.cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}
.cta-section .eyebrow {
  margin-bottom: var(--sp-5);
}
.cta-section__headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.cta-section__headline em {
  color: var(--white);
  font-style: italic;
}
.cta-section__body {
  font-size: var(--fs-base);
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 46ch;
  margin: 0 auto var(--sp-8);
}

.service-block {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: var(--sp-10);
  margin-bottom: var(--sp-6);
  transition: box-shadow var(--transition);
}
.service-block:hover {
  box-shadow: var(--shadow);
}
.service-block--dark {
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.07);
}
.service-block__header {
  border-bottom: 1px solid var(--rule);
  padding-bottom: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.service-block--dark .service-block__header {
  border-color: rgba(255, 255, 255, 0.08);
}
.service-num {
  font-family: var(--ff-display);
  font-size: var(--fs-5xl);
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.service-block--dark .service-num {
  color: rgba(255, 255, 255, 0.05);
}
.service-title {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.service-block--dark .service-title {
  color: var(--white);
}
.service-desc {
  font-size: var(--fs-md);
  color: var(--gray);
  line-height: 1.75;
  max-width: 56ch;
}
.service-block--dark .service-desc {
  color: var(--gray-light);
}
.service-block__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.btn--primary {
  max-width: 100%;
}
@media (min-width: 768px) {
  .service-block__body {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.service-col__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--rule);
  padding-bottom: var(--sp-2);
}
.service-block--dark .service-col__label {
  color: var(--gray-light);
  border-color: rgba(255, 255, 255, 0.1);
}
.service-col__text {
  font-size: var(--fs-sm);
  color: var(--gray);
  line-height: 1.75;
}
.service-block--dark .service-col__text {
  color: var(--gray-light);
}
.service-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-options a {
  width: 30%;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--gray);
  line-height: 1.55;
}
.svc-list li::before {
  content: "";
  width: 3px;
  height: 3px;
  background: var(--ink);
  flex-shrink: 0;
  margin-top: 8px;
  border-radius: 0;
}
.service-block--dark .svc-list li {
  color: var(--gray-light);
}
.service-block--dark .svc-list li::before {
  background: var(--gray-light);
}
.service-positioning {
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--gray);
  margin-bottom: var(--sp-6);
  padding-left: var(--sp-5);
  border-left: 2px solid var(--ink);
  line-height: 1.7;
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 0;
  border-left: 2px solid var(--ink);
  padding: var(--sp-6) var(--sp-8);
  transition:
    background var(--transition),
    transform var(--transition);
}
.topic-card:hover {
  background: var(--bg-light);
  transform: translateX(4px);
}
.topic-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.topic-card__body {
  font-size: var(--fs-sm);
  color: var(--gray);
  line-height: 1.7;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.partner-card:hover {
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
}
.partner-card__category {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.partner-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.partner-card__company {
  font-size: var(--fs-sm);
  color: var(--gray);
  font-weight: 500;
}
.partner-card__desc {
  font-size: var(--fs-sm);
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}
.partner-card__link {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--transition);
}
.partner-card__link:hover {
  gap: var(--sp-3);
}
.start-here-text {
  border-left: 3px solid var(--gold);
  padding: var(--sp-6) var(--sp-8);
  background: var(--white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  border-top: 1px solid var(--taupe-light);
  border-right: 1px solid var(--taupe-light);
  border-bottom: 1px solid var(--taupe-light);
  margin-bottom: var(--sp-10);
}
.book-call {
  border-left: 3px solid var(--gold);
  padding: var(--sp-6) var(--sp-8);
  background: var(--white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  border-top: 1px solid var(--taupe-light);
  border-right: 1px solid var(--taupe-light);
  border-bottom: 1px solid var(--taupe-light);
  margin-bottom: var(--sp-10);
}
.form-wrap {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: var(--sp-10);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 900px) {
  .boss-block {
    background: linear-gradient(
      to left,
      var(--ink),
      var(--ink-mid),
      var(--ink-mid)
    );
  }
  .brenda-boss {
    display: flex;
  }
  .brenda-boss img {
    width: 100%;
  }
  .service-options a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
label span {
  color: var(--ink);
}
input,
select,
textarea {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 0;
  padding: var(--sp-3) var(--sp-4);
  width: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: var(--gray-light);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(8, 8, 8, 0.07);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236a6a6a' stroke-width='1.8'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}
textarea {
  resize: vertical;
  min-height: 110px;
}
.form-note {
  font-size: var(--fs-xs);
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
  margin-top: var(--sp-3);
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding: var(--sp-12) var(--sp-8);
}
.form-success.visible {
  display: flex;
}
.form-success h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--ink);
}
.form-success p {
  color: var(--gray);
  font-size: var(--fs-md);
  max-width: 44ch;
  line-height: 1.75;
}

.site-footer {
  background: var(--ink);
  padding: var(--sp-16) 0 var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: var(--sp-16);
  }
}
.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--gray);
  max-width: 34ch;
  margin-top: var(--sp-3);
  line-height: 1.7;
}
.footer-col__title {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-links a {
  font-size: var(--fs-sm);
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-copy {
  font-size: var(--fs-xs);
  color: var(--gray);
  opacity: 0.6;
}
.footer-positioning {
  font-size: var(--fs-xs);
  font-style: italic;
  color: var(--gray);
  opacity: 0.5;
  max-width: 44ch;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-block {
    padding: var(--sp-8) var(--sp-6);
  }
  .cfo-block__watermark {
    display: none;
  }
  .cta-section {
    text-align: left;
  }
  .cta-section__inner {
    margin: 0;
  }
  .cta-section__body {
    margin: 0 0 var(--sp-8);
  }

  .hero {
    padding: 0 36px;
    align-items: flex-end;
  }
  .hero-inner {
    height: 100%;
    padding: 0;
  }
  .hero-sub,
  .hero-headline {
    background: #111111aa;
    color: var(--offwhite);
    padding: var(--sp-2);
  }

  .hero-actions {
    gap: 0;
    flex-wrap: nowrap;
  }
}
@media (max-width: 900px) {
  .calendly-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .calendly-popup {
    width: calc(500vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    left: 12px !important;
    right: 12px !important;
  }

  .calendly-popup-content {
    width: 100% !important;
    min-width: 0 !important;
  }

  .calendly-popup iframe {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* ==========================================================
   SPEAKER PAGE V3 — visibly rebuilt
   ========================================================== */
.speaker-page-v3 {
  background: var(--white);
}
.speaker-page-v3 main {
  overflow: hidden;
}
.sp3-hero {
  position: relative;
  min-height: 920px;
  display: grid;
  align-items: center;
  background: var(--ink);
  padding: calc(var(--nav-h) + 76px) 0 84px;
  overflow: hidden;
}
.sp3-hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: center 23%;
  filter: saturate(0.82) contrast(1.04);
}
.sp3-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    rgba(8, 8, 8, 0.99) 39%,
    rgba(8, 8, 8, 0.76) 59%,
    rgba(8, 8, 8, 0.08) 100%
  );
}
.sp3-hero-content {
  position: relative;
  z-index: 2;
}
.sp3-hero-content > p,
.sp3-hero-content > h1,
.sp3-hero-content > .btn-group {
  width: min(720px, 66%);
}
.sp3-hero h1 {
  margin-top: 20px;
  color: #fff;
  font-family: var(--ff-display);
  font-size: clamp(3.9rem, 7.5vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.85;
}
.sp3-hero h1 em {
  color: var(--gold-on-dark);
}
.sp3-hero-copy {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.75;
}
.sp3-hero .btn-group {
  margin-top: 32px;
}

.sp3-bio {
  padding: 110px 0;
  background: #fff;
}
.sp3-bio-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}
.sp3-bio-portrait {
  position: relative;
  height: 690px;
  overflow: hidden;
  background: var(--bg-light);
}
.sp3-bio-portrait::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.sp3-bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.sp3-bio-copy .section-headline {
  margin: 16px 0 30px;
}
.sp3-credential-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.sp3-credential-row > div {
  min-height: 160px;
  padding: 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sp3-credential-row strong {
  font-family: var(--ff-display);
  font-size: 3.3rem;
  font-weight: 300;
  line-height: 1;
}
.sp3-credential-row span {
  font-size: var(--fs-xs);
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.sp3-topics {
  position: relative;
  padding: 110px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.sp3-topics-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 47%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  opacity: 0.35;
  filter: grayscale(0.35);
}
.sp3-topics-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) 55%,
    rgba(8, 8, 8, 0.7) 78%,
    rgba(8, 8, 8, 0.3)
  );
}
.sp3-topics-inner {
  position: relative;
  z-index: 2;
}
.sp3-section-intro {
  max-width: 780px;
  margin-bottom: 52px;
}
.sp3-section-intro .section-headline {
  color: #fff;
  margin: 15px 0 22px;
}
.sp3-section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.66);
  max-width: 680px;
}
.sp3-topic-list {
  width: min(900px, 78%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.sp3-topic-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.sp3-topic-list article > span {
  color: var(--gold-on-dark);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  padding-top: 6px;
}
.sp3-topic-list h3 {
  color: #fff;
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 9px;
}
.sp3-topic-list p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 720px;
}

.sp3-fit {
  padding: 110px 0;
  background: var(--bg-cream);
}
.sp3-fit-heading {
  max-width: 770px;
  margin-bottom: 55px;
}
.sp3-fit-heading .section-headline {
  margin-top: 15px;
}
.sp3-fit-grid {
  display: grid;
  grid-template-columns: 0.78fr 0.78fr 1.15fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.sp3-fit-column {
  padding: 34px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sp3-fit-column h3 {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.sp3-fit-column li {
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: var(--fs-sm);
}
.sp3-fit-photo {
  min-height: 560px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.sp3-fit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.sp3-boss {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #efe1d7;
}
.sp3-boss-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.sp3-boss-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f5f0e8 0%,
    rgba(245, 240, 232, 0.99) 40%,
    rgba(245, 240, 232, 0.68) 62%,
    rgba(245, 240, 232, 0.08) 100%
  );
}
.sp3-boss-inner {
  position: relative;
  z-index: 2;
}
.sp3-boss-copy {
  width: min(620px, 53%);
  padding: 90px 0;
}
.sp3-boss h2 {
  margin: 15px 0 27px;
  font-family: var(--ff-display);
  font-size: clamp(3.6rem, 6.6vw, 6.8rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.86;
  color: var(--ink);
}
.sp3-boss p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: var(--fs-md);
  line-height: 1.76;
}
.sp3-boss .btn {
  margin-top: 16px;
}

.sp3-proof {
  padding: 110px 0;
  background: #fff;
}
.sp3-press-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  padding: 40px 0;
  border-block: 1px solid var(--rule);
}
.sp3-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 45px;
}
.sp3-testimonials blockquote {
  padding: 34px;
  background: var(--bg-light);
  border-left: 2px solid var(--gold);
}
.sp3-testimonials blockquote p {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  line-height: 1.2;
}
.sp3-testimonials footer {
  margin-top: 18px;
  color: var(--gray);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sp3-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.sp3-cta-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.82);
}
.sp3-cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    rgba(8, 8, 8, 0.98) 44%,
    rgba(8, 8, 8, 0.67) 66%,
    rgba(8, 8, 8, 0.08)
  );
}
.sp3-cta-inner {
  position: relative;
  z-index: 2;
}
.sp3-cta-copy {
  width: min(650px, 57%);
  padding: 90px 0;
}
.sp3-cta h2 {
  margin: 15px 0 25px;
  color: #fff;
  font-family: var(--ff-display);
  font-size: clamp(3.4rem, 6.2vw, 6.2rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.88;
}
.sp3-cta p {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-md);
  line-height: 1.75;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .sp3-hero {
    min-height: 900px;
    align-items: end;
  }
  .sp3-hero-image {
    width: 100%;
    height: 66%;
    inset: 0;
  }
  .sp3-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.05),
      rgba(8, 8, 8, 0.2) 42%,
      var(--ink) 70%,
      var(--ink)
    );
  }
  .sp3-hero-content > p,
  .sp3-hero-content > h1,
  .sp3-hero-content > .btn-group {
    width: 100%;
  }
  .sp3-bio-grid,
  .sp3-fit-grid {
    grid-template-columns: 1fr;
  }
  .sp3-bio-portrait {
    height: 600px;
  }
  .sp3-credential-row {
    grid-template-columns: 1fr;
  }
  .sp3-topics-image {
    width: 100%;
    opacity: 0.2;
  }
  .sp3-topic-list {
    width: 100%;
  }
  .sp3-boss {
    min-height: 900px;
    align-items: end;
  }
  .sp3-boss-image {
    width: 100%;
    height: 62%;
    inset: 0;
  }
  .sp3-boss-shade {
    background: linear-gradient(
      180deg,
      rgba(245, 240, 232, 0.02),
      rgba(245, 240, 232, 0.25) 43%,
      #f5f0e8 69%,
      #f5f0e8
    );
  }
  .sp3-boss-copy {
    width: 100%;
    padding: 80px 0;
  }
  .sp3-cta {
    min-height: 880px;
    align-items: end;
  }
  .sp3-cta-image {
    width: 100%;
    height: 62%;
    inset: 0;
  }
  .sp3-cta-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.04),
      rgba(8, 8, 8, 0.25) 42%,
      var(--ink) 70%,
      var(--ink)
    );
  }
  .sp3-cta-copy {
    width: 100%;
    padding: 85px 0;
  }
}
@media (max-width: 640px) {
  .sp3-hero h1 {
    font-size: 3.9rem;
  }
  .sp3-bio,
  .sp3-topics,
  .sp3-fit {
    padding: 76px 0;
  }
  .sp3-bio-portrait {
    height: 500px;
  }
  .sp3-credential-row {
    grid-template-columns: 1fr;
  }
  .sp3-topic-list article {
    grid-template-columns: 34px 1fr;
  }
  .sp3-fit-photo {
    min-height: 480px;
  }
  .sp3-boss h2,
  .sp3-cta h2 {
    font-size: 3.8rem;
  }
  .sp3-testimonials {
    grid-template-columns: 1fr;
  }
}

.home-v2-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  padding: calc(var(--nav-h) + 70px) 0 70px;
}
.home-v2-hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.home-v2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    rgba(8, 8, 8, 0.98) 38%,
    rgba(8, 8, 8, 0.76) 60%,
    rgba(8, 8, 8, 0.16) 100%
  );
}
.home-v2-hero-inner {
  position: relative;
  z-index: 2;
}
.home-v2-hero-copy {
  width: min(680px, 58%);
}
.home-v2-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.4rem, 7.4vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.045em;
}
.home-v2-hero h1 span {
  color: #f5f0e8;
  font-size: 1.15em;
}
.home-v2-hero p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 26px;
  color: var(--gray-light);
  font-size: var(--fs-md);
  line-height: 1.8;
}
.home-v2-authority {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.home-v2-authority-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: var(--sp-20);
  align-items: start;
}
.home-v2-stat-rail {
  border-top: 1px solid var(--rule);
}
.home-v2-stat-rail > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.home-v2-stat-rail strong {
  font-family: var(--ff-display);
  font-size: 3.4rem;
  font-weight: 300;
}
.home-v2-stat-rail span {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.home-v2-cfo {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.home-v2-cfo > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}
.home-v2-cfo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    rgba(8, 8, 8, 0.98) 45%,
    rgba(8, 8, 8, 0.55) 70%,
    rgba(8, 8, 8, 0.08)
  );
}
.home-v2-cfo-inner {
  position: relative;
  z-index: 2;
}
.home-v2-cfo-copy {
  width: 55%;
  padding: 95px 0;
}
.home-v2-cfo h2,
.home-v2-boss h2 {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.93;
  color: var(--white);
}
.home-v2-cfo p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--gray-light);
  font-size: var(--fs-md);
  line-height: 1.8;
}
.home-v2-cfo-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.home-v2-cfo-points span {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gray-light);
  font-size: var(--fs-sm);
}
.home-v2-speaker {
  padding: var(--sp-24) 0;
  background: var(--bg-cream);
}
.home-v2-speaker-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-20);
  align-items: center;
}
.home-v2-speaker-image {
  height: 680px;
  overflow: hidden;
}
.home-v2-speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}
.home-v2-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}
.home-v2-inline-list li {
  padding: 9px 12px;
  border: 1px solid var(--rule);
  font-size: var(--fs-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.home-v2-services {
  padding: var(--sp-24) 0;
  background: var(--bg-light);
}
.home-v2-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: var(--sp-12);
}
.home-v2-service-grid article {
  min-height: 310px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  position: relative;
}
.home-v2-service-grid h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  padding: 10px;
  font-weight: 400;
  line-height: 1;
}
.home-v2-service-grid p {
  color: var(--gray);
  font-size: var(--fs-sm);
  padding: 0 30px;
  margin-bottom: 35px;
}

.home-v2-service-grid a {
  padding: 0 10px 10px;
  position: absolute;
  bottom: 0;
}
.home-v2-service-feature {
  background: var(--ink) !important;
  color: var(--white);
}
.home-v2-service-feature span {
  color: var(--gold-on-dark);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.home-v2-service-feature h3 {
  color: var(--white);
}
.home-v2-service-feature p {
  color: var(--gray-light);
}
.home-v2-service-feature a {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold-on-dark);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-v2-center {
  text-align: center;
  margin-top: var(--sp-12);
}
.home-v2-video {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.home-v2-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.home-v2-video-placeholder,
.testimonial-video-card {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: var(--ink);
  color: var(--gray-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.home-v2-video-placeholder button,
.testimonial-video-card button {
  width: 74px;
  height: 74px;
  border: 1px solid var(--gold-on-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-on-dark);
  font-size: 1.3rem;
}
.home-v2-video-placeholder span,
.testimonial-video-card span {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.home-v2-boss {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f5f0e8;
}
.home-v2-boss > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.home-v2-boss-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f5f0e8 0%,
    rgba(245, 240, 232, 0.98) 43%,
    rgba(245, 240, 232, 0.5) 70%,
    rgba(245, 240, 232, 0.05)
  );
}
.home-v2-boss-inner {
  position: relative;
  z-index: 2;
}
.home-v2-boss-inner > div {
  width: 50%;
  padding: 100px 0;
}
.home-v2-boss h2 {
  color: var(--ink);
}
.home-v2-boss p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--ink-soft);
  font-size: var(--fs-md);
  line-height: 1.8;
}
.home-v2-proof {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.home-v2-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.home-v2-proof blockquote {
  min-height: 390px;
  padding: 54px;
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-v2-proof blockquote p {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  line-height: 1.12;
}
.home-v2-proof blockquote footer {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.home-v2-press {
  padding: var(--sp-24) 0;
  background: var(--ink);
  color: var(--white);
}
.home-v2-press-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-20);
  align-items: center;
}
.home-v2-press .section-headline {
  color: var(--white);
}
.home-v2-press .authority-body {
  color: var(--gray-light);
}
.home-v2-press-note {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.home-v2-press-note span {
  display: block;
  color: var(--gray-light);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.home-v2-press-note strong {
  display: block;
  margin: 14px 0;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-on-dark);
}
.home-v2-press-note p {
  color: var(--gray-light);
}
.testimonial-page-intro,
.press-intro,
.press-assets {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.testimonial-page-intro-grid,
.press-intro-grid,
.press-assets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
}
.testimonial-page-grid {
  padding: var(--sp-24) 0;
  background: var(--bg-light);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.testimonial-card {
  min-height: 390px;
  padding: 46px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 2px solid var(--gold);
}
.testimonial-card p {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  line-height: 1.16;
}
.testimonial-card footer span,
.testimonial-card footer strong {
  display: block;
}
.testimonial-card footer span {
  color: var(--gray);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.press-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  background: var(--ink);
  overflow: hidden;
  padding: 130px 0 80px;
}
.press-hero > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.press-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    rgba(8, 8, 8, 0.95) 42%,
    rgba(8, 8, 8, 0.35) 78%,
    rgba(8, 8, 8, 0.06)
  );
}
.press-hero-inner {
  position: relative;
  z-index: 2;
}
.press-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.8;
  color: #f5f0e8;
}
.press-hero p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--gray-light);
  font-size: var(--fs-md);
  letter-spacing: 0.05em;
}
.press-topics {
  padding: var(--sp-24) 0;
  background: var(--ink);
  color: var(--white);
}
.press-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 30px;
}
.press-topic-grid article {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.press-topic-grid span {
  color: var(--gold-on-dark);
  font-size: var(--fs-xs);
}
.press-topic-grid h3 {
  margin-top: 74px;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
}
.press-downloads {
  border-top: 1px solid var(--rule);
}
.press-downloads a {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--ff-display);
  font-size: 1.6rem;
}
.press-downloads span {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.wm-flagship {
  padding: var(--sp-24) 0;
  background: var(--ink);
  color: var(--white);
}
.wm-flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.wm-flagship .section-headline {
  color: var(--white);
}
.wm-flagship .authority-body {
  color: var(--gray-light);
}
.wm-flagship img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 38%;
}
@media (max-width: 900px) {
  .home-v2-hero {
    min-height: 900px;
    align-items: end;
  }
  .home-v2-hero-photo {
    width: 100%;
    height: 64%;
    inset: 0;
  }
  .home-v2-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.04),
      rgba(8, 8, 8, 0.2) 40%,
      var(--ink) 70%,
      var(--ink)
    );
  }
  .home-v2-hero-copy {
    width: 100%;
  }
  .home-v2-authority-grid,
  .home-v2-speaker-grid,
  .home-v2-video-grid,
  .home-v2-press-grid,
  .testimonial-page-intro-grid,
  .press-intro-grid,
  .press-assets-grid,
  .wm-flagship-grid {
    grid-template-columns: 1fr;
  }
  .home-v2-cfo,
  .home-v2-boss {
    min-height: 900px;
    align-items: end;
  }
  .home-v2-cfo > img,
  .home-v2-boss > img {
    width: 100%;
    height: 62%;
    inset: 0;
  }
  .home-v2-cfo-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.04),
      rgba(8, 8, 8, 0.25) 40%,
      var(--ink) 70%,
      var(--ink)
    );
  }
  .home-v2-boss-shade {
    background: linear-gradient(
      180deg,
      rgba(245, 240, 232, 0.02),
      rgba(245, 240, 232, 0.2) 40%,
      #f5f0e8 70%,
      #f5f0e8
    );
  }
  .home-v2-cfo-copy,
  .home-v2-boss-inner > div {
    width: 100%;
    padding: 80px 0;
  }
  .home-v2-service-grid,
  .home-v2-outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-v2-proof-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .press-hero > img {
    width: 100%;
    height: 65%;
  }
  .press-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.03),
      rgba(8, 8, 8, 0.24) 40%,
      var(--ink) 73%,
      var(--ink)
    );
  }
  .press-topic-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .home-v2-hero h1 {
    font-size: 3.8rem;
  }
  .home-v2-cfo-points,
  .home-v2-service-grid,
  .press-topic-grid {
    grid-template-columns: 1fr;
  }
  .home-v2-speaker-image {
    height: 520px;
  }
  .home-v2-proof blockquote {
    padding: 32px;
  }
  .home-v2-proof blockquote p {
    font-size: 2rem;
  }
  .home-v2-stat-rail > div {
    grid-template-columns: 80px 1fr;
  }
  .wm-flagship img {
    height: 480px;
  }
}

/* ==========================================================
   SPEAKER VIDEO + GOOGLE REVIEWS
   ========================================================== */
.sp3-video-section {
  padding: var(--sp-24) 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.sp3-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: var(--sp-20);
  align-items: center;
}
.sp3-video-copy .section-headline {
  margin-bottom: var(--sp-6);
}
.sp3-video-note {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--rule);
  color: var(--gray);
  font-size: var(--fs-sm);
}
.sp3-video-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--rule);
}
.sp3-video-frame::before {
  content: "Speaking Video";
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  background: rgba(8, 8, 8, 0.82);
  color: var(--gold-on-dark);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}
.sp3-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 24%;
  background: var(--ink);
}
.google-reviews-section {
  padding: var(--sp-24) 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.google-reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--sp-12);
  align-items: end;
}
.google-rating-summary {
  min-width: 210px;
  padding: var(--sp-6);
  border-left: 1px solid var(--gold);
}
.google-rating-summary strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 3.7rem;
  font-weight: 300;
  line-height: 0.85;
  color: var(--ink);
}
.google-rating-summary span {
  display: block;
}
.google-stars,
.google-review-stars {
  color: var(--gold);
  letter-spacing: 0.14em;
}
.google-rating-summary [data-google-count] {
  margin-top: 6px;
  color: var(--gray);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.google-reviews-status {
  margin-top: var(--sp-10);
  padding: var(--sp-6);
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--gray);
}
.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-10);
}
.google-review-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: var(--sp-8);
  background: var(--white);
  border-top: 2px solid var(--gold);
}
.google-review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.google-review-author img,
.google-review-avatar-fallback {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.google-review-avatar-fallback {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
}
.google-review-author a,
.google-review-author strong {
  display: block;
  color: var(--ink);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.google-review-author span {
  display: block;
  color: var(--gray);
  font-size: var(--fs-xs);
}
.google-review-stars {
  margin-top: var(--sp-6);
}
.google-review-card > p {
  margin-top: var(--sp-5);
  color: var(--ink-soft);
  font-size: var(--fs-base);
  line-height: 1.75;
}
.google-review-source {
  margin-top: auto;
  padding-top: var(--sp-6);
  color: var(--gray);
  font-size: var(--fs-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.google-reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rule);
}
.google-reviews-footer p {
  color: var(--gray);
  font-size: var(--fs-xs);
}
@media (max-width: 900px) {
  .sp3-video-grid,
  .google-reviews-heading {
    grid-template-columns: 1fr;
  }
  .google-review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .google-rating-summary {
    border-left: 0;
    border-top: 1px solid var(--gold);
  }
}
@media (max-width: 640px) {
  .sp3-video-frame,
  .sp3-video-frame video {
    min-height: 360px;
  }
  .google-review-grid {
    grid-template-columns: 1fr;
  }
  .google-reviews-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* CURATED GOOGLE REVIEW SLIDERS */
.reviews-showcase,
.home-review-strip {
  padding: var(--sp-24) 0;
  background: var(--bg-cream);
  overflow: hidden;
}
.home-review-strip {
  background: var(--white);
}
.reviews-showcase-header,
.home-review-strip-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--sp-12);
  align-items: end;
}
.reviews-showcase-header .section-sub {
  max-width: 680px;
  margin-top: var(--sp-5);
}
.reviews-rating {
  min-width: 220px;
  padding-left: var(--sp-8);
  border-left: 1px solid var(--gold);
}
.reviews-rating strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 0.8;
}
.reviews-rating > span {
  display: block;
}
.reviews-rating > span:last-child {
  margin-top: 7px;
  color: var(--gray);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}
.review-slider {
  margin-top: var(--sp-12);
}
.review-slider-viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.review-slider-track {
  display: flex;
  gap: var(--sp-5);
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.review-slide-card {
  flex: 0 0 calc((100% - (var(--sp-5) * 2)) / 3);
  min-height: 455px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 10px 34px rgba(8, 8, 8, 0.045);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.review-category {
  color: var(--gray);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-slide-card blockquote {
  margin-top: var(--sp-8);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.3;
}
.review-slide-card footer {
  margin-top: auto;
  padding-top: var(--sp-8);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--sp-4);
  border-top: 1px solid var(--rule);
}
.review-slide-card footer strong,
.review-slide-card footer span {
  display: block;
}
.review-slide-card footer strong {
  font-size: var(--fs-sm);
}
.review-slide-card footer span {
  margin-top: 3px;
  color: var(--gray);
  font-size: var(--fs-xs);
}
.review-slide-card footer a {
  flex-shrink: 0;
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-top: 28px;
}
.review-slider-buttons {
  display: flex;
  gap: 8px;
}
.review-slider-arrow,
.review-slider-dot {
  appearance: none;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.review-slider-arrow {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}
.review-slider-arrow:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
}
.review-slider-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.review-slider-dots {
  display: flex;
  gap: 8px;
}
.review-slider-dot {
  width: 28px;
  height: 3px;
  border: 0;
  background: rgba(8, 8, 8, 0.2);
}
.review-slider-dot.active {
  background: var(--ink);
}
.reviews-showcase-footer,
.home-review-google-link {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.reviews-showcase-footer p {
  color: var(--gray);
  font-size: var(--fs-xs);
}
.home-review-strip-header .text-link {
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.review-slide-card--compact {
  min-height: 360px;
  padding: 28px;
  background: var(--bg-cream);
}
.review-slide-card--compact blockquote {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}
.home-review-google-link {
  justify-content: flex-start;
}
.home-review-google-link a {
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .reviews-showcase-header,
  .home-review-strip-header {
    grid-template-columns: 1fr;
  }
  .reviews-rating {
    border-left: 0;
    border-top: 1px solid var(--gold);
    padding: var(--sp-6) 0 0;
  }
  .review-slide-card {
    flex-basis: calc((100% - var(--sp-5)) / 2);
  }
}
@media (max-width: 680px) {
  .review-slide-card {
    flex-basis: 100%;
    min-height: 420px;
  }
  .review-slide-card--compact {
    min-height: 350px;
  }
  .review-slide-card footer,
  .reviews-showcase-footer,
  .review-slider-controls {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* LONG REVIEW SUPPORT */
.review-slide-card blockquote p + p {
  margin-top: 1rem;
}
.review-slide-card blockquote {
  overflow-wrap: anywhere;
}
.review-slide-card:has(.review-category:first-child) {
  height: auto;
}
@media (min-width: 981px) {
  .reviews-showcase .review-slide-card {
    min-height: 520px;
  }
}

/* GOOGLE-STYLE REVIEW CARDS V2 */
.review-slide-card {
  min-height: 330px;
  padding: 22px;
  border: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(60, 64, 67, 0.1);
}

.review-slide-card--compact {
  min-height: 300px;
  padding: 20px;
  background: #fff;
}

.review-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: center;
}

.google-review-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.google-review-g {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4285f4;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.google-review-label {
  color: #3c4043;
  font-size: 0.78rem;
  font-weight: 600;
}

.review-category {
  grid-column: 1 / -1;
  color: #70757a;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.review-stars {
  color: #fbbc04;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.review-copy-wrap {
  position: relative;
  margin-top: 16px;
}

.review-slide-card blockquote,
.review-slide-card--compact blockquote {
  margin: 0;
  color: #3c4043;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.review-slide-card--compact blockquote {
  font-size: 0.88rem;
  -webkit-line-clamp: 4;
}

.review-slide-card.is-expanded blockquote {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.review-toggle {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1a73e8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.review-toggle:hover {
  text-decoration: underline;
}

.review-slide-card footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #ececec;
}

.review-slide-card footer strong {
  color: #202124;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.review-slide-card footer span {
  color: #70757a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
}

.reviews-showcase .review-slide-card {
  min-height: 350px;
}

@media (max-width: 680px) {
  .review-slide-card,
  .review-slide-card--compact {
    min-height: 310px;
  }

  .review-slide-card blockquote,
  .review-slide-card--compact blockquote {
    -webkit-line-clamp: 5;
  }
}

/* ==========================================================
   MOBILE RESPONSIVE HARDENING — 2026-07
   ========================================================== */

/* Prevent accidental horizontal scrolling from oversized media/text */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

/* The original container only had side padding on tablet/desktop. */
.container {
  width: min(100%, var(--max-w));
  padding-left: clamp(18px, 5vw, 32px);
  padding-right: clamp(18px, 5vw, 32px);
}

/* Long words, links and emails must wrap instead of breaking the viewport. */
h1,
h2,
h3,
h4,
p,
li,
a,
blockquote,
dd,
dt,
label,
span {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  :root {
    --nav-h: 66px;
    --sp-24: 4.5rem;
    --sp-20: 3.5rem;
    --sp-16: 3rem;
  }

  .section,
  .section--lg,
  .section--sm,
  .home-v2-authority,
  .home-v2-speaker,
  .home-v2-services,
  .home-v2-video,
  .home-v2-proof,
  .home-v2-press,
  .testimonial-page-intro,
  .testimonial-page-grid,
  .press-intro,
  .press-assets,
  .press-topics,
  .wm-flagship,
  .reviews-showcase,
  .home-review-strip {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  /* Header/navigation */
  .site-header {
    height: var(--nav-h);
  }

  .nav-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-logo {
    min-width: 0;
  }

  .logo-name {
    font-size: 2rem;
  }

  .logo-title {
    font-size: 0.61rem;
    letter-spacing: 0.14em;
  }

  .nav-overlay {
    padding: calc(var(--nav-h) + 30px) 24px 40px;
    overflow-y: auto;
    justify-content: flex-start;
  }

  .nav-overlay a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    text-align: left;
  }

  /* Shared page heroes */
  .page-hero {
    padding: calc(var(--nav-h) + 50px) 0 54px;
  }

  .page-hero__inner {
    max-width: 100%;
  }

  .page-hero__headline {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
    line-height: 1.02;
  }

  .page-hero__sub {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* Homepage hero: keep face visible but put copy on a stable dark panel */
  .home-v2-hero {
    min-height: auto;
    display: block;
    padding: calc(var(--nav-h) + 330px) 0 58px;
  }

  .home-v2-hero-photo {
    inset: 0;
    width: 100%;
    height: 390px;
    object-position: center 24%;
  }

  .home-v2-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.02) 0%,
      rgba(8, 8, 8, 0.1) 46%,
      rgba(8, 8, 8, 0.84) 74%,
      var(--ink) 92%,
      var(--ink) 100%
    );
  }

  .home-v2-hero-copy {
    width: 100%;
    max-width: 680px;
  }

  .home-v2-hero h1 {
    font-size: clamp(3.15rem, 14vw, 5.2rem);
    line-height: 0.88;
  }

  .home-v2-hero p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .btn-group,
  .home-v2-hero .btn-group {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .btn-group .btn,
  .home-v2-hero .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  /* Authority / stats */
  .home-v2-authority-grid {
    gap: 42px;
  }

  .home-v2-stat-rail > div {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 0;
  }

  .home-v2-stat-rail strong {
    font-size: 2.7rem;
  }

  /* Full-image split sections */
  .home-v2-cfo,
  .home-v2-boss {
    min-height: auto;
    display: block;
    padding-top: 360px;
  }

  .home-v2-cfo > img,
  .home-v2-boss > img {
    inset: 0 0 auto 0;
    width: 100%;
    height: 410px;
  }

  .home-v2-cfo-overlay,
  .home-v2-boss-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.02) 0%,
      rgba(8, 8, 8, 0.14) 46%,
      var(--ink) 88%,
      var(--ink) 100%
    );
  }

  .home-v2-boss-shade {
    background: linear-gradient(
      180deg,
      rgba(245, 240, 232, 0.02) 0%,
      rgba(245, 240, 232, 0.16) 46%,
      #f5f0e8 88%,
      #f5f0e8 100%
    );
  }

  .home-v2-cfo-copy,
  .home-v2-boss-inner > div {
    width: 100%;
    padding: 54px 0 68px;
  }

  .home-v2-cfo h2,
  .home-v2-boss h2 {
    font-size: clamp(2.8rem, 12vw, 4.6rem);
  }

  .home-v2-cfo-points {
    grid-template-columns: 1fr;
  }

  /* Speaker / video / press / flagship sections */
  .home-v2-speaker-grid,
  .home-v2-video-grid,
  .home-v2-press-grid,
  .wm-flagship-grid,
  .testimonial-page-intro-grid,
  .press-intro-grid,
  .press-assets-grid {
    gap: 36px;
  }

  .home-v2-speaker-image,
  .wm-flagship img {
    height: min(120vw, 560px);
  }

  .home-v2-video-placeholder,
  .testimonial-video-card {
    min-height: 280px;
  }

  .home-v2-press-note {
    padding: 28px 22px;
  }

  /* Services: two columns on tablet, no fixed minimums */
  .home-v2-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v2-service-grid article {
    min-height: 270px;
    padding: 24px;
  }

  .service-block {
    padding: 30px 24px;
  }

  .service-block__body {
    gap: 28px;
  }

  .service-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-options a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  /* Press */
  .press-hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 340px) 0 58px;
  }

  .press-hero > img {
    inset: 0;
    width: 100%;
    height: 410px;
    object-position: center 20%;
  }

  .press-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.03),
      rgba(8, 8, 8, 0.18) 45%,
      var(--ink) 86%,
      var(--ink)
    );
  }

  .press-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
    line-height: 0.86;
  }

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

  .press-topic-grid article {
    min-height: 205px;
  }

  .press-downloads a {
    gap: 16px;
    align-items: flex-start;
    font-size: 1.35rem;
  }

  /* Review slider tablet */
  .review-slider-viewport {
    width: 100%;
  }

  .review-slide-card {
    flex-basis: calc((100% - 16px) / 2);
    min-width: 0;
  }

  .review-slider-track {
    gap: 16px;
  }

  .reviews-showcase-header,
  .home-review-strip-header {
    gap: 28px;
  }

  .reviews-showcase-footer,
  .home-review-google-link {
    flex-wrap: wrap;
  }

  /* Forms */
  .form-row,
  .form-grid,
  .intake-grid {
    grid-template-columns: 1fr !important;
  }

  input,
  textarea,
  select,
  button {
    max-width: 100%;
  }

  input,
  select,
  textarea {
    font-size: 16px; /* prevents iOS zoom */
  }
}

@media (max-width: 640px) {
  :root {
    --sp-24: 3.75rem;
    --sp-20: 3rem;
    --sp-16: 2.5rem;
  }

  .container {
    padding-left: 17px;
    padding-right: 17px;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .section-headline,
  .authority-content .section-headline {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 0.98;
  }

  .section-sub,
  .authority-body {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .btn {
    min-height: 50px;
    width: 100%;
    padding: 13px 17px;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  /* Homepage hero */
  .home-v2-hero {
    padding-top: calc(var(--nav-h) + 285px);
  }

  .home-v2-hero-photo {
    height: 340px;
    object-position: 58% 20%;
  }

  .home-v2-hero h1 {
    font-size: clamp(2.85rem, 16vw, 4.3rem);
  }

  /* Split sections */
  .home-v2-cfo,
  .home-v2-boss {
    padding-top: 300px;
  }

  .home-v2-cfo > img,
  .home-v2-boss > img {
    height: 345px;
  }

  .home-v2-cfo-copy,
  .home-v2-boss-inner > div {
    padding: 48px 0 58px;
  }

  .home-v2-cfo-points span {
    padding: 14px;
  }

  /* One-column service cards on phones */
  .home-v2-service-grid,
  .press-topic-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-service-grid article {
    min-height: auto;
    padding: 26px 22px;
  }

  .service-block {
    margin-bottom: 22px;
    padding: 24px 18px;
  }

  .service-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .service-num {
    font-size: 2.7rem;
  }

  /* Media blocks */
  .home-v2-speaker-image,
  .wm-flagship img {
    height: 118vw;
    max-height: 500px;
  }

  .home-v2-inline-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-v2-inline-list li {
    min-width: 0;
    text-align: center;
  }

  .home-v2-video-placeholder,
  .testimonial-video-card {
    min-height: 230px;
    padding: 24px;
  }

  /* Press */
  .press-hero {
    padding-top: calc(var(--nav-h) + 280px);
  }

  .press-hero > img {
    height: 335px;
  }

  .press-downloads a {
    display: grid;
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  /* Testimonials/reviews */
  .reviews-showcase-header,
  .home-review-strip-header {
    grid-template-columns: 1fr;
  }

  .reviews-rating {
    min-width: 0;
    width: 100%;
  }

  .reviews-rating strong {
    font-size: 3.7rem;
  }

  .review-slider {
    margin-top: 32px;
  }

  .review-slider-track {
    gap: 12px;
  }

  .review-slide-card,
  .review-slide-card--compact {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    min-height: 300px;
    padding: 20px;
    border-radius: 10px;
  }

  .review-card-top {
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
  }

  .review-category {
    font-size: 0.64rem;
  }

  .review-slide-card blockquote,
  .review-slide-card--compact blockquote {
    font-size: 0.88rem;
    line-height: 1.52;
    -webkit-line-clamp: 5;
  }

  .review-slide-card footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-slider-controls {
    width: 100%;
    align-items: center;
    flex-direction: row;
  }

  .review-slider-arrow {
    width: 44px;
    height: 44px;
  }

  .review-slider-dots {
    max-width: calc(100vw - 145px);
    overflow-x: auto;
    padding: 8px 0;
  }

  .review-slider-dot {
    flex: 0 0 20px;
    width: 20px;
  }

  .reviews-showcase-footer,
  .home-review-google-link {
    align-items: stretch;
    flex-direction: column;
  }

  .reviews-showcase-footer .btn {
    width: 100%;
  }

  /* General cards and text */
  .testimonial-card,
  .home-v2-proof blockquote {
    min-height: auto;
    padding: 26px 22px;
  }

  .testimonial-card p,
  .home-v2-proof blockquote p {
    font-size: 1.65rem;
  }

  .home-v2-press-note {
    padding: 24px 20px;
  }

  /* Form usability */
  .form-wrap,
  .start-here-text,
  .book-call {
    width: 100%;
  }

  .form-group {
    min-width: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-v2-hero h1 {
    font-size: 2.75rem;
  }

  .home-v2-inline-list {
    grid-template-columns: 1fr;
  }

  .review-slider-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-slider-dots {
    max-width: 100%;
  }
}

/* SOCIAL MEDIA LINKS — INSTAGRAM + FACEBOOK */
.nav-social {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-social a,
.footer-social-links a,
.nav-overlay-social a {
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.nav-social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--gray-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-social a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.nav-social svg,
.footer-social-links svg,
.nav-overlay-social svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-social a:last-child svg,
.footer-social-links a:last-child svg,
.nav-overlay-social a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.nav-overlay-social {
  display: flex;
  gap: 12px;
  margin-top: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-overlay-social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--gray-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-overlay-social a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  font-size: var(--fs-sm);
}

.footer-social-links a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-social-links svg {
  width: 18px;
  height: 18px;
  color: var(--gold-on-dark);
}

@media (min-width: 900px) {
  .nav-social {
    display: flex;
  }

  .nav-inner {
    gap: var(--sp-5);
  }

  .nav-links {
    gap: var(--sp-6);
  }
}

@media (max-width: 899px) {
  .nav-social {
    display: flex;
    margin-left: auto;
    margin-right: 4px;
  }

  .nav-social a {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 430px) {
  .nav-social {
    gap: 6px;
  }

  .nav-social a {
    width: 30px;
    height: 30px;
  }

  .nav-social svg {
    width: 15px;
    height: 15px;
  }

  .nav-overlay-social {
    width: min(100%, 280px);
    flex-direction: column;
  }

  .nav-overlay-social a {
    justify-content: center;
  }
}

/* SEO LOCAL IDENTITY */
.seo-local-service-strip {
  padding: 22px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.seo-local-service-strip p {
  max-width: 920px;
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.7;
}
.seo-local-service-strip strong {
  color: var(--white);
}
.seo-business-identity {
  max-width: 280px;
  color: var(--gray-light);
  font-size: var(--fs-xs);
  line-height: 1.65;
}
.seo-business-identity strong {
  color: var(--white);
  font-size: var(--fs-sm);
}
.seo-business-identity address {
  margin-top: 8px;
  font-style: normal;
}
.seo-business-identity a:hover {
  color: var(--white);
}
@media (max-width: 680px) {
  .seo-local-service-strip {
    padding: 18px 0;
  }
  .seo-business-identity {
    max-width: none;
  }
}

/* PRESS FEATURES — EDITORIAL MEDIA ARCHIVE */
.home-press-features,
.press-features {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.press-features {
  background: var(--bg-cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.home-press-heading,
.press-features-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  align-items: end;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.home-press-heading .section-sub,
.press-features-heading .section-sub {
  max-width: 680px;
  margin-top: var(--sp-5);
}

.home-press-heading .text-link {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(250px, 0.68fr);
  border-top: 1px solid var(--rule);
}

.press-feature-list {
  display: grid;
  gap: var(--sp-12);
}

.press-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  min-height: 490px;
  background: var(--white);
  border: 1px solid var(--rule);
}

.press-feature-card--home {
  display: flex;
  flex-direction: column;
  min-height: 600px;
  border: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.press-feature-media {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #1c1b1a, #35302b);
}

.press-feature-card--home .press-feature-media {
  min-height: 340px;
}

.press-feature-media img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.press-feature-slot {
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--ff-display);
  font-size: 3.3rem;
  font-weight: 300;
  line-height: 1;
}

.press-feature-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 9px;
  padding: 30px;
  text-align: center;
  color: var(--gray-light);
}

.press-feature-placeholder::before {
  content: "";
  width: 68px;
  height: 90px;
  margin: 0 auto 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 11px 11px 0 rgba(205, 173, 107, 0.12);
}

.press-feature-placeholder span {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--white);
}

.press-feature-placeholder strong {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 70px);
}

.press-feature-card--home .press-feature-copy {
  flex: 1;
  justify-content: flex-start;
  padding: 30px;
}

.press-feature-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--rule);
  color: var(--gray);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-feature-type {
  margin-top: 28px;
  color: var(--gold-dark);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.press-feature-copy h3 {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 0.98;
}

.press-feature-card--home .press-feature-copy h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  line-height: 1.03;
}

.press-feature-copy > p:not(.press-feature-type) {
  margin-top: 20px;
  color: var(--gray);
  line-height: 1.75;
}

.press-feature-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-feature-link[aria-disabled="true"] {
  color: var(--gray);
  cursor: default;
  pointer-events: none;
}

.press-feature-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform var(--transition);
}

.press-feature-link:not([aria-disabled="true"]):hover span {
  transform: translateX(5px);
}

.press-future-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 600px;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--ink);
}

.press-future-card > span {
  color: var(--gold-on-dark);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-future-card h3 {
  margin-top: 18px;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 300;
  line-height: 1;
}

.press-future-card p {
  margin-top: 20px;
  color: var(--gray-light);
  line-height: 1.7;
}

.press-future-card a {
  margin-top: 32px;
  color: var(--gold-on-dark);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .home-press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-future-card {
    grid-column: 1 / -1;
    min-height: 380px;
  }
}

@media (max-width: 820px) {
  .home-press-heading,
  .press-features-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-press-heading .text-link {
    justify-self: start;
  }

  .press-feature-card {
    grid-template-columns: 1fr;
  }

  .press-feature-media {
    min-height: 430px;
  }
}

@media (max-width: 680px) {
  .home-press-features,
  .press-features {
    padding: var(--sp-16) 0;
  }

  .home-press-grid {
    grid-template-columns: 1fr;
  }

  .press-feature-card--home {
    min-height: 0;
    border-right: 0;
  }

  .press-feature-card--home .press-feature-media,
  .press-feature-media {
    min-height: 390px;
  }

  .press-feature-card--home .press-feature-copy,
  .press-feature-copy {
    padding: 26px 22px 30px;
  }

  .press-feature-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .press-feature-copy h3,
  .press-feature-card--home .press-feature-copy h3 {
    font-size: 2.25rem;
  }

  .press-feature-link {
    margin-top: 28px;
  }

  .press-future-card {
    grid-column: auto;
    min-height: 370px;
    padding: 28px 22px;
  }
}

/* LIVE PRESS FEATURES — TWO REAL ARTICLES */
.home-press-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-press-grid .press-feature-card--home:last-child {
  border-right: 0;
}

@media (max-width: 680px) {
  .home-press-grid {
    grid-template-columns: 1fr;
  }

  .home-press-grid .press-feature-card--home {
    border-right: 0;
  }
}

/* STOCK IMAGERY + SERVICE EDITORIAL HEADERS */

/* Homepage service cards */
.home-v2-service-grid > article {
  overflow: hidden;
  padding-top: 0;
}

.home-service-media {
  height: 180px;
  margin: 0 calc(var(--sp-8) * -1) var(--sp-7);
  overflow: hidden;
  background: var(--ink);
}

.home-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.home-v2-service-grid > article:hover .home-service-media img {
  transform: scale(1.035);
}

/* Authority image */
.home-v2-authority-grid {
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr) minmax(
      250px,
      0.62fr
    );
}

.home-v2-authority-image {
  min-height: 440px;
  overflow: hidden;
}

.home-v2-authority-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) contrast(1.04);
}

/* Temporary stock image behind the future intro video */
.home-v2-video-placeholder {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-v2-video-stock {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) brightness(0.55);
}

.home-v2-video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.3));
}

/* Work With Me: integrated editorial service header */
.service-block__header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  min-height: 270px;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.service-block__header-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
  padding: clamp(30px, 5vw, 58px);
}

.service-block__header .service-num {
  color: rgba(255, 255, 255, 0.12);
}

.service-block__header .eyebrow {
  color: var(--gold-on-dark);
}

.service-block__header .service-title,
.service-block__header .service-desc {
  color: var(--white);
}

.service-block__header .service-desc {
  max-width: 660px;
  margin-top: var(--sp-4);
  color: var(--gray-light);
}

.service-block__media {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.service-block__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--ink) 0%,
      rgba(8, 8, 8, 0.78) 9%,
      transparent 52%
    ),
    linear-gradient(180deg, transparent 55%, rgba(8, 8, 8, 0.2));
  pointer-events: none;
}

.service-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.04);
}

.service-block--dark .service-block__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
  .home-v2-authority-grid {
    grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  }

  .home-v2-authority-image {
    grid-column: 1 / -1;
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .service-block__header {
    grid-template-columns: 1fr;
  }

  .service-block__header-copy {
    min-height: 0;
  }

  .service-block__media {
    min-height: 280px;
    order: -1;
  }

  .service-block__media::after {
    background: linear-gradient(180deg, transparent 42%, var(--ink) 100%);
  }

  .home-v2-authority-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-authority-image {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .home-service-media {
    height: 165px;
    margin-right: -22px;
    margin-left: -22px;
  }

  .service-block__header-copy {
    padding: 28px 22px 32px;
  }

  .service-block__media {
    min-height: 220px;
  }

  .home-v2-authority-image {
    min-height: 260px;
  }
}

/* AUTHORITY LAYOUT FIX + DARKER BRAND STOCK TREATMENT */
.home-v2-authority-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 42px 72px;
  align-items: start;
}

.home-v2-stat-rail {
  grid-column: 1;
  grid-row: 1 / 3;
  min-width: 0;
}

.home-v2-stat-rail > div {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
}

.home-v2-stat-rail span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.home-v2-authority-grid > div:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.home-v2-authority-image {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  min-height: 320px;
  max-height: 400px;
  margin-top: 0;
  overflow: hidden;
  background: var(--ink);
}

.home-v2-authority-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.52), rgba(8, 8, 8, 0.08) 58%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.34));
  pointer-events: none;
}

.home-v2-authority-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.72) contrast(1.08) brightness(0.86);
}

/* Keep all stock photography dark, elegant and visually consistent. */
.home-service-media,
.service-block__media,
.home-v2-video-placeholder {
  background: #11100f;
}

.home-service-media {
  position: relative;
}

.home-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-block__media::after {
  background:
    linear-gradient(
      90deg,
      var(--ink) 0%,
      rgba(8, 8, 8, 0.88) 8%,
      rgba(8, 8, 8, 0.16) 64%
    ),
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.42)),
    linear-gradient(120deg, rgba(80, 55, 30, 0.22), transparent 58%);
}

@media (max-width: 1050px) {
  .home-v2-authority-grid {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 36px 48px;
  }

  .home-v2-stat-rail > div {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .home-v2-stat-rail strong {
    font-size: 2.8rem;
  }
}

@media (max-width: 820px) {
  .home-v2-authority-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 34px;
  }

  .home-v2-stat-rail,
  .home-v2-authority-grid > div:nth-child(2),
  .home-v2-authority-image {
    grid-column: 1;
    grid-row: auto;
  }

  .home-v2-stat-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--rule);
  }

  .home-v2-stat-rail > div {
    display: block;
    padding: 22px 18px;
    border-right: 1px solid var(--rule);
  }

  .home-v2-stat-rail strong,
  .home-v2-stat-rail span {
    display: block;
  }

  .home-v2-stat-rail span {
    margin-top: 10px;
  }

  .home-v2-authority-image {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .home-v2-stat-rail {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .home-v2-stat-rail > div {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    border-right: 0;
  }

  .home-v2-stat-rail span {
    margin-top: 0;
  }

  .home-v2-authority-image {
    min-height: 230px;
  }
}

/* DATA-DRIVEN PRESS ROTATOR */
.press-rotator {
  margin-top: var(--sp-12);
  overflow: hidden;
}
.press-rotator-viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.press-rotator-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.press-rotation-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
}
.press-rotation-media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
.press-rotation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}
.press-rotation-card:hover .press-rotation-media img {
  transform: scale(1.035);
}
.press-rotation-number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--ff-display);
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}
.press-rotation-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}
.press-rotation-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--rule);
  color: var(--gray);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.press-rotation-category {
  margin-top: 20px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.press-rotation-copy h3 {
  margin-top: 9px;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.press-rotation-excerpt {
  margin-top: 16px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.press-rotation-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.press-rotation-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.press-rotation-link:hover span {
  transform: translateX(4px);
}
.press-rotator-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}
.press-rotator-arrows {
  display: flex;
  gap: 8px;
}
.press-rotator-arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
}
.press-rotator-arrows button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
}
.press-rotator-arrows button:disabled {
  opacity: 0.25;
  cursor: default;
}
.press-rotator-dots {
  display: flex;
  gap: 8px;
}
.press-rotator-dot {
  width: 30px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(8, 8, 8, 0.18);
  cursor: pointer;
}
.press-rotator-dot.is-active {
  background: var(--ink);
}
.press-archive-heading {
  margin-top: var(--sp-24);
  padding-top: var(--sp-12);
  border-top: 1px solid var(--rule);
}
.press-archive-heading h2 {
  margin-top: 8px;
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 300;
  line-height: 0.95;
}
.press-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: var(--sp-10);
}
.press-archive-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  background: var(--white);
  border: 1px solid var(--rule);
}
.press-archive-media {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--ink);
}
.press-archive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.press-archive-media > span {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--ff-display);
  font-size: 2.4rem;
}
.press-archive-copy {
  display: flex;
  flex-direction: column;
  padding: 26px;
}
.press-archive-copy h3 {
  margin-top: 10px;
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.06;
}
.press-archive-copy > p:not(.press-rotation-category) {
  margin-top: 14px;
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.6;
}
.press-archive-copy > a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .press-rotation-card {
    flex-basis: calc((100% - 24px) / 2);
  }
  .press-archive-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .press-rotation-card {
    flex-basis: 100%;
  }
  .press-rotation-copy {
    padding: 22px;
  }
  .press-rotation-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .press-rotator-controls {
    align-items: flex-start;
    flex-direction: column;
  }
  .press-archive-card {
    grid-template-columns: 1fr;
  }
  .press-archive-media {
    min-height: 300px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .press-rotator-track,
  .press-rotation-media img {
    transition: none;
  }
}

/* SUBTLE SCROLLING SECTION BACKGROUNDS */
.motion-bg-section {
  --motion-bg-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.motion-bg-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -52px 0;
  background-image: var(--motion-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--motion-bg-y), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
}

.motion-bg-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.motion-bg-section--light::before {
  opacity: 0.365;
  filter: grayscale(0.28) saturate(0.5) contrast(0.92);
}

.motion-bg-section--light::after {
  background: linear-gradient(
    180deg,
    rgba(250, 248, 244, 0.91),
    rgba(250, 248, 244, 0.84) 46%,
    rgba(250, 248, 244, 0.93)
  );
}

.motion-bg-section--dark::before {
  opacity: 0.16;
  filter: grayscale(0.2) saturate(0.55) brightness(0.68) contrast(1.05);
}

.motion-bg-section--dark::after {
  background: linear-gradient(
    180deg,
    rgba(13, 12, 12, 0.91),
    rgba(13, 12, 12, 0.82) 48%,
    rgba(13, 12, 12, 0.94)
  );
}

.motion-bg-section > .container,
.motion-bg-section > .home-v2-boss-inner,
.motion-bg-section > .home-v2-cfo-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .motion-bg-section::before {
    inset: -28px 0;
    transform: translate3d(0, calc(var(--motion-bg-y) * 0.45), 0) scale(1.04);
  }

  .motion-bg-section--light::before {
    opacity: 0.05;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-bg-section::before {
    transform: scale(1.04);
    will-change: auto;
  }
}

/* START HERE — WELCOME + THREE STEP EXPERIENCE */
.start-welcome-hero {
  position: relative;
  min-height: min(78vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.start-welcome-hero__media,
.start-welcome-hero__overlay,
.work-with-welcome-hero__media {
  position: absolute;
  inset: 0;
}

.start-welcome-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.work-with-welcome-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.start-welcome-hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.74) 34%,
      rgba(8, 8, 8, 0.16) 70%,
      rgba(8, 8, 8, 0.1) 100%
    ),
    linear-gradient(180deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.58));
}

.start-welcome-hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(150px, 22vh, 240px);
  padding-bottom: clamp(62px, 9vw, 110px);
}

.start-welcome-hero__content > * {
  max-width: 720px;
}

.start-welcome-hero .eyebrow {
  color: var(--gold-on-dark);
}

.start-welcome-hero h1 {
  margin-top: 18px;
  font-family: var(--ff-display);
  font-size: clamp(3.4rem, 7vw, 7.6rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.start-welcome-hero__content > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--gray-light);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.start-welcome-hero__actions,
.start-contact-intro__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.start-welcome-message {
  padding: var(--sp-24) 0;
  background: var(--bg-cream);
}

.start-welcome-message__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.start-welcome-message h2,
.start-process__heading h2,
.start-contact-intro h2 {
  margin-top: 12px;
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
  font-weight: 300;
  line-height: 0.96;
}

.start-welcome-message__copy {
  padding-top: 8px;
}

.start-welcome-message__copy p {
  color: var(--gray);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.85;
}

.start-welcome-message__copy p + p {
  margin-top: 20px;
}

.start-process {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.start-process__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 30px 80px;
  align-items: end;
  margin-bottom: var(--sp-12);
}

.start-process__heading .eyebrow,
.start-process__heading h2 {
  grid-column: 1;
}

.start-process__heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--gray);
  line-height: 1.75;
}

.start-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.start-process-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.start-process-card__media {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: var(--ink);
}

.start-process-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 8, 8, 0.42));
}

.start-process-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.04);
  transition: transform 0.55s ease;
}

.start-process-card:hover .start-process-card__media img {
  transform: scale(1.035);
}

.start-process-card__number {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--ff-display);
  font-size: 3.2rem;
  line-height: 1;
}

.start-process-card__body {
  flex: 1;
  padding: 30px;
}

.start-process-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.start-process-card h3 {
  margin-top: 22px;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.02;
}

.start-process-card p {
  margin-top: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.start-contact-intro {
  padding: var(--sp-20) 0;
  background: var(--ink);
  color: var(--white);
}

.start-contact-intro .container {
  max-width: 920px;
  text-align: center;
}

.start-contact-intro .eyebrow {
  color: var(--gold-on-dark);
}

.start-contact-intro > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--gray-light);
  line-height: 1.75;
}

.start-contact-intro__actions {
  justify-content: center;
}

.start-contact-intro__phone {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
}

.start-form-section {
  padding: var(--sp-20) 0 var(--sp-24);
  background: var(--offwhite);
}

.start-form-container {
  max-width: 860px;
}

@media (max-width: 980px) {
  .start-welcome-message__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .start-process__heading {
    grid-template-columns: 1fr;
  }

  .start-process__heading > p:last-child,
  .start-process__heading .eyebrow,
  .start-process__heading h2 {
    grid-column: 1;
    grid-row: auto;
  }

  .start-process__grid {
    grid-template-columns: 1fr;
  }

  .start-process-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .start-process-card__media {
    height: 100%;
    min-height: 330px;
  }
}

@media (max-width: 680px) {
  .start-welcome-hero {
    min-height: 720px;
    align-items: flex-end;
  }

  .start-welcome-hero__media img {
    object-position: 68% center;
  }

  .start-welcome-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.18) 0%,
      rgba(8, 8, 8, 0.58) 44%,
      rgba(8, 8, 8, 0.94) 76%,
      rgba(8, 8, 8, 0.98) 100%
    );
  }

  .start-welcome-hero__content {
    padding-top: 280px;
    padding-bottom: 48px;
  }

  .start-welcome-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .start-welcome-hero__actions,
  .start-contact-intro__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .start-welcome-hero__actions .btn,
  .start-contact-intro__actions .btn {
    width: 100%;
  }

  .start-welcome-message,
  .start-process {
    padding: var(--sp-16) 0;
  }

  .start-process-card {
    display: flex;
  }

  .start-process-card__media {
    min-height: 0;
    height: 250px;
  }

  .start-process-card__body {
    padding: 24px 22px 28px;
  }

  .start-contact-intro {
    padding: var(--sp-16) 0;
  }
}

/* START HERE — NATIONAL ADVISORY BOOKING SECTION */
.start-ready {
  padding: var(--sp-24) 0;
  background: var(--ink);
  color: var(--white);
}

.start-ready__intro {
  max-width: 900px;
}

.start-ready__intro .eyebrow,
.start-meeting-methods .eyebrow,
.start-trust-panel .eyebrow {
  color: var(--gold-on-dark);
}

.start-ready__intro h2 {
  margin-top: 12px;
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 300;
  line-height: 0.92;
}

.start-ready__intro > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--gray-light);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.start-ready__intro > p:last-child {
  color: var(--white);
  font-weight: 600;
}

.start-ready__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--sp-12);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.start-ready-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.start-ready-card--featured {
  background: linear-gradient(
    145deg,
    rgba(233, 203, 187, 0.12),
    rgba(255, 255, 255, 0.03)
  );
}

.start-ready-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 203, 187, 0.65);
  color: var(--gold-on-dark);
  font-size: 1.15rem;
}

.start-ready-card__label {
  margin-top: 26px;
  color: var(--gold-on-dark);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.start-ready-card h3 {
  margin-top: 12px;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 300;
  line-height: 1;
}

.start-ready-card
  > p:not(.start-ready-card__label):not(.start-ready-card__detail) {
  margin-top: 18px;
  color: var(--gray-light);
  line-height: 1.72;
}

.start-ready-card__detail {
  margin-top: 18px;
  color: var(--white);
  line-height: 1.6;
}

.start-ready-card__detail a {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1.55rem;
}

.start-ready-card .btn {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.start-ready-card .btn--ghost-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.start-ready-card .btn--ghost-dark:hover {
  background: var(--white);
  color: var(--ink);
}

.start-meeting-trust {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 0;
  margin-top: var(--sp-14);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.start-meeting-methods,
.start-trust-panel {
  padding: clamp(30px, 5vw, 56px);
}

.start-meeting-methods {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.start-meeting-methods__heading h3 {
  margin-top: 10px;
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 0.96;
}

.start-meeting-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.start-meeting-methods__grid > div {
  min-width: 0;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.start-meeting-methods__grid span {
  display: block;
  color: var(--gold-on-dark);
  font-size: 1.25rem;
}

.start-meeting-methods__grid strong {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.5;
}

.start-trust-panel {
  background: rgba(255, 255, 255, 0.035);
}

.start-trust-panel ul {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.start-trust-panel li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  color: var(--gray-light);
  line-height: 1.58;
}

.start-trust-panel li > span:first-child {
  color: var(--gold-on-dark);
  font-weight: 800;
}

.start-trust-panel li strong {
  color: var(--white);
}

.start-trust-panel__positioning {
  display: grid;
  gap: 7px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.start-trust-panel__positioning strong {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
}

.start-trust-panel__positioning span {
  color: var(--gray-light);
  font-size: 0.79rem;
  letter-spacing: 0.045em;
}

.start-trust-panel__positioning span:nth-child(2) {
  color: var(--gold-on-dark);
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .start-ready__options {
    grid-template-columns: 1fr;
  }

  .start-ready-card {
    min-height: 0;
  }

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

  .start-meeting-methods {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 680px) {
  .start-ready {
    padding: var(--sp-16) 0;
  }

  .start-ready-card {
    padding: 28px 22px;
  }

  .start-ready-card .btn {
    width: 100%;
    margin-top: 28px;
  }

  .start-meeting-methods,
  .start-trust-panel {
    padding: 28px 22px;
  }

  .start-meeting-methods__grid {
    grid-template-columns: 1fr;
  }
}

/* START HERE — CONSULTATION EXPECTATIONS */
.start-consultation-expectations {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.start-consultation-expectations__title {
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.start-consultation-expectations ul {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.start-consultation-expectations li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.55;
}

.start-consultation-expectations li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-on-dark);
  font-weight: 800;
}

@media (max-width: 680px) {
  .start-consultation-expectations {
    margin-top: 24px;
  }
}

/* HOME — DARK MEET BRENDA VIDEO SECTION FIX */
.home-v2-video.motion-bg-section--dark {
  background: #171515;
  color: var(--white);
}

.home-v2-video.motion-bg-section--dark .eyebrow {
  color: var(--gold-on-dark);
}

.home-v2-video.motion-bg-section--dark .section-headline {
  color: var(--white);
}

.home-v2-video.motion-bg-section--dark .authority-body {
  color: rgba(255, 255, 255, 0.72);
}

.home-v2-video.motion-bg-section--dark::before {
  opacity: 0.22;
  filter: grayscale(0.12) saturate(0.64) brightness(0.62) contrast(1.06);
}

.home-v2-video.motion-bg-section--dark::after {
  background:
    linear-gradient(
      90deg,
      rgba(23, 21, 21, 0.94) 0%,
      rgba(23, 21, 21, 0.82) 42%,
      rgba(23, 21, 21, 0.68) 100%
    ),
    linear-gradient(180deg, rgba(23, 21, 21, 0.2), rgba(23, 21, 21, 0.58));
}

.home-v2-video.motion-bg-section--dark .home-v2-video-placeholder {
  min-height: 390px;
  border: 1px solid rgba(233, 203, 187, 0.28);
  background: #0f0e0e;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.home-v2-video.motion-bg-section--dark .home-v2-video-stock {
  filter: saturate(0.66) brightness(0.72) contrast(1.06);
}

.home-v2-video.motion-bg-section--dark .home-v2-video-placeholder::after {
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.18));
}

.home-v2-video.motion-bg-section--dark .home-v2-video-placeholder span {
  color: rgba(255, 255, 255, 0.78);
}

.home-v2-video.motion-bg-section--dark .home-v2-video-placeholder button {
  background: rgba(8, 8, 8, 0.34);
  border-color: var(--gold-on-dark);
  color: var(--gold-on-dark);
  backdrop-filter: blur(5px);
}

@media (max-width: 900px) {
  .home-v2-video.motion-bg-section--dark::after {
    background: linear-gradient(
      180deg,
      rgba(23, 21, 21, 0.88) 0%,
      rgba(23, 21, 21, 0.72) 52%,
      rgba(23, 21, 21, 0.9) 100%
    );
  }

  .home-v2-video.motion-bg-section--dark .home-v2-video-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .home-v2-video.motion-bg-section--dark .section-headline {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .home-v2-video.motion-bg-section--dark .home-v2-video-placeholder {
    min-height: 260px;
  }
}
