:root {
  --ink: #062018;
  --ink-2: #0c2e23;
  --topbar: #183f34;
  --gold: #bf9e5b;
  --gold-lt: #d5a75d;

  --gold-dk: #8a6f33;
  --bone: #f6f2f2;
  --paper: #fbfaf9;

  --muted: #5d6862;
  --muted-lt: #a8b0aa;
  --line: #e4e1db;
  --line-dk: #1d3a30;

  --display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --body:
    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --pad: clamp(20px, 5vw, 40px);
  --maxw: 1320px;

  --sec: clamp(72px, 8vw, 132px);
  --sec-sm: clamp(36px, 4vw, 64px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bleed-grid {
  display: grid;
  grid-template-columns:
    [full-start] minmax(var(--pad), 1fr)
    [half-start] minmax(0, calc((var(--maxw) - var(--pad) * 2) / 2))
    [mid] minmax(0, calc((var(--maxw) - var(--pad) * 2) / 2))
    [half-end] minmax(var(--pad), 1fr)
    [full-end];
}

.bleed-grid > * {
  min-width: 0;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
img,
video {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.14;
  margin: 0;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
h1 em,
h2 em {
  font-style: italic;
  color: var(--gold);
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 2px;
  font-weight: 600;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: none;
}

[hidden]:not(.mega) {
  display: none !important;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.tone img,
img.tone {
  filter: grayscale(1) contrast(1.04);
  transition:
    filter 0.7s var(--ease),
    transform 1.1s var(--ease);
}
.tone:hover img,
.tone.is-active img,
img.tone:hover,
img.tone.is-active {
  filter: grayscale(0) contrast(1);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border-radius: 999px;
  border: 1px solid var(--gold);
  padding: 12px 24px;
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.pill:hover {
  transform: translateY(-2px);
}
.pill:active {
  transform: translateY(0) scale(0.98);
}
.pill-fill {
  background: linear-gradient(
    112deg,
    #aa803b 0%,
    var(--gold-lt) 52%,
    #b28945 100%
  );
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 10px 26px -18px rgba(98, 67, 18, 0.8);
}
.pill-fill:hover {
  background: linear-gradient(112deg, #b78d48 0%, #dfb86f 52%, #bd9550 100%);
  border-color: var(--gold-lt);
  box-shadow: 0 14px 32px -18px rgba(98, 67, 18, 0.9);
}
.pill-outline:hover {
  background: var(--gold);
  color: var(--ink);
}
.pill-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.pill-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.pill-sm {
  padding: 9px 18px;
  font-size: 13px;
}
.pill-lg {
  padding: 16px 32px;
  font-size: 15px;
}

:root {
  --arrow-ink: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23062018' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E");
  --arrow-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bf9e5b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E");
}

.pill-arrow {
  padding: 7px 7px 7px 32px;
  gap: 20px;
}
.pill-arrow::after {
  content: '';
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(6, 32, 24, 0.1);
  background-image: var(--arrow-ink);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 19px;
  transition:
    transform 0.35s var(--ease),
    background-color 0.3s var(--ease);
}
.pill-arrow:hover::after {
  transform: translateX(4px);
}

.pill-arrow.pill-lg {
  padding: 8px 8px 8px 38px;
  gap: 22px;
  font-size: 15px;
}
.pill-arrow.pill-lg::after {
  width: 56px;
  height: 56px;
  background-size: 22px 22px;
}
.pill-arrow.pill-sm {
  padding: 5px 5px 5px 20px;
  gap: 14px;
}
.pill-arrow.pill-sm::after {
  width: 32px;
  height: 32px;
  background-size: 15px 15px;
}

.pill-solid {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.pill-solid:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.pill-solid.pill-arrow::after {
  background-color: rgba(6, 32, 24, 0.1);
}
.pill-solid.pill-arrow:hover::after {
  background-color: rgba(6, 32, 24, 0.17);
}
.pill-fill.pill-arrow::after {
  background-color: rgba(6, 32, 24, 0.15);
}
.pill-fill.pill-arrow:hover::after {
  background-color: rgba(6, 32, 24, 0.22);
}

.pill-outline.pill-arrow::after {
  background-color: rgba(191, 158, 91, 0.15);
  background-image: var(--arrow-gold);
}
.pill-outline.pill-arrow:hover::after {
  background-color: rgba(6, 32, 24, 0.12);
  background-image: var(--arrow-ink);
}
.pill-ghost.pill-arrow::after {
  background-color: rgba(255, 255, 255, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .pill-arrow:hover::after {
    transform: none;
  }
}

.topbar {
  background:
    radial-gradient(
      circle at 50% -180%,
      rgba(213, 167, 93, 0.16),
      transparent 62%
    ),
    var(--topbar);
  color: var(--bone);
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: inset 0 -1px rgba(213, 167, 93, 0.24);
}

.topbar-in {
  position: relative;
  padding: 0 var(--pad);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-msg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(246, 242, 242, 0.86);
  margin: 0;
}

@media (max-width: 1290px) {
  .topbar-msg {
    display: none;
  }
}

.topbar-seen {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.seen-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 242, 242, 0.55);
  font-weight: 600;
}
.topbar-seen img {
  display: block;
  width: auto;
  opacity: 0.92;
}
.seen-abc {
  height: 20px;
}
.seen-fox {
  height: 11px;
}
.seen-cnbc {
  height: 24px;
}
@media (max-width: 900px) {
  .topbar-seen {
    display: none;
  }
}
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bone);
  font-weight: 500;
  transition: color 0.25s;
}
.topbar-meta a:hover {
  color: var(--gold-lt);
}
.topbar-meta svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-lt);
  flex: none;
}
.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(246, 242, 242, 0.24);
}
.topbar .pill {
  border-color: rgba(213, 167, 93, 0.62);
  background: rgba(6, 32, 24, 0.14);
  color: var(--bone);
  font-weight: 500;
}
.topbar .pill:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--ink);
}
.topbar .pill:focus-visible {
  outline-color: var(--bone);
}
@media (max-width: 900px) {
  .topbar-in {
    height: 40px;
  }

  .topbar-msg,.topbar-sep,.topbar-meta>a[href^="https://maps"]
  {
    display: none;
  }
  .topbar-meta {
    gap: 14px;
    width: 100%;
    justify-content: space-between;
  }
  .topbar-meta > a[href^='tel'] {
    display: inline-flex;
    font-size: 12px;
  }
}

.header {
  position: sticky;
  top: 44px;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--pad);
  height: 82px;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.header.on-dark {
  background: var(--ink);
  color: var(--bone);
  border-color: rgba(213, 167, 93, 0.2);
}

@media (max-width: 900px) {
  .header {
    top: 40px;
  }
}
.header.on-dark .nav-link {
  color: var(--bone);
}

.logo {
  position: relative;
  display: block;
  flex: none;
  line-height: 0;
}
.logo img {
  display: block;
  height: clamp(42px, 4.7vw, 56px);
  width: auto;
  transition: opacity 0.4s var(--ease);
  shape-rendering: geometricPrecision;
}
.logo-on-light {
  filter: brightness(0) saturate(100%) invert(67%) sepia(30%) saturate(785%)
    hue-rotate(358deg) brightness(91%) contrast(86%);
}
.logo-on-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.header.on-dark .logo-on-light {
  opacity: 0;
}
.header.on-dark .logo-on-dark {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover::after,
.nav-trigger[aria-expanded='true']::after {
  transform: scaleX(1);
}
.caret {
  width: 10px;
  height: 7px;
  transition: transform 0.3s var(--ease);
}
.nav-trigger[aria-expanded='true'] .caret {
  transform: rotate(180deg);
}
.nav .pill {
  margin-left: 10px;
}
.burger {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 16px;
  height: 1.4px;
  background: currentColor;
  transition: 0.3s;
}
.burger span:first-child {
  top: 15px;
}
.burger span:last-child {
  top: 21px;
}

.has-mega {
  position: static;
}
.mega {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 32px 70px -28px rgba(6, 32, 24, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.32s var(--ease),
    transform 0.32s var(--ease),
    visibility 0.32s;
  z-index: 55;
  overflow: hidden;
}
.mega[hidden] {
  display: block;
}
.mega.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mega-in {
  display: grid;
  grid-template-columns: 1fr 1fr 420px;
  gap: 0;
}
.mega-narrow .mega-in {
  grid-template-columns: 1fr 420px;
}
.mega-cols {
  display: contents;
}
.mega-col {
  padding: 34px 36px;
  border-right: 1px solid var(--line);
}

.mega-eyebrow {
  margin: 0 0 20px;
}
.mega-eyebrow a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.mega-eyebrow a:hover {
  color: var(--gold-dk);
}
.mega-eyebrow .mega-n {
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--gold-dk);
  font-weight: 600;
  flex: none;
}
.mega-eyebrow .mega-go {
  flex: none;
  width: 15px;
  height: 15px;
  align-self: center;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.mega-eyebrow a:hover .mega-go {
  opacity: 1;
  transform: none;
}
.mega-col ul li a {
  display: block;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  position: relative;
  padding-left: 0;
  transition:
    color 0.25s var(--ease),
    padding-left 0.3s var(--ease);
}
.mega-col ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.3s var(--ease);
}
.mega-col ul li a:hover,
.mega-col ul li a.active {
  color: var(--gold);
  padding-left: 22px;
}
.mega-col ul li a:hover::before,
.mega-col ul li a.active::before {
  width: 14px;
}
.mega-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.mega-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.mega-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition:
    opacity 0.35s var(--ease),
    filter 0.6s var(--ease);
}
.mega.open .mega-media img {
  filter: grayscale(0);
}
.mega-media.swapping img {
  opacity: 0;
}
.mega-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 26px;
  background: linear-gradient(to top, rgba(6, 32, 24, 0.92), transparent);
  color: var(--bone);
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 1180px) {
  .mega-in,
  .mega-narrow .mega-in {
    grid-template-columns: 1fr 1fr;
  }
  .mega-media {
    grid-column: 1/-1;
    height: 220px;
  }
}

.nav-link {
  white-space: nowrap;
}
@media (max-width: 1380px) {
  .nav {
    gap: 2px;
  }
  .nav-link {
    font-size: 12.5px;
    padding: 10px 10px;
  }
  .nav .pill {
    margin-left: 6px;
  }
}
@media (max-width: 1180px) {
  .nav {
    display: none;
  }
  .burger {
    display: block;
  }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--ink);
  color: var(--bone);
  padding: var(--pad);
  display: flex;
  flex-direction: column;

  visibility: hidden;
  transform: translateY(-100%);
  transition:
    transform 0.5s var(--ease),
    visibility 0s 0.5s;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.drawer-top {
  position: sticky;
  top: 0;
  background: var(--ink);
  padding-bottom: 14px;
  z-index: 1;
}
.drawer.open {
  transform: none;
  visibility: visible;
  transition: transform 0.5s var(--ease);
}
.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-mark {
  width: min(260px, 72vw);
  height: auto;
  display: block;
}
.drawer-close {
  background: none;
  border: 0;
  font-size: 34px;
  line-height: 1;
  color: var(--bone);
  cursor: pointer;
}

.m-nav {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
}

.m-link,
.m-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 54px;
  padding: 12px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-dk);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.m-link:hover,
.m-toggle:hover,
.m-toggle[aria-expanded='true'] {
  color: var(--gold);
}
.m-link small,
.m-toggle small {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  flex: none;
  width: 22px;
}
.m-link span,
.m-toggle span {
  flex: 1;
}

.m-chev {
  width: 13px;
  height: 9px;
  flex: none;
  color: var(--muted-lt);
  transition:
    transform 0.4s var(--ease),
    color 0.25s;
}
.m-toggle[aria-expanded='true'] .m-chev {
  transform: rotate(180deg);
  color: var(--gold);
}

.m-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.m-panel ul {
  padding: 4px 0 14px;
  display: flex;
  flex-direction: column;
}
.m-panel li {
  border-bottom: 1px solid rgba(29, 58, 48, 0.55);
}
.m-panel li:last-child {
  border-bottom: 0;
}

.m-panel a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 0 10px 22px;
  font-family: var(--body);
  font-size: 15px;
  color: rgba(246, 242, 242, 0.72);
  transition:
    color 0.25s var(--ease),
    padding-left 0.3s var(--ease);
}
.m-panel a:hover {
  color: var(--gold);
  padding-left: 30px;
}

.drawer-foot {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  .m-panel {
    transition: none;
  }
  .m-chev {
    transition: none;
  }
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  z-index: 0;
}
.hero-media video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero-media video.ready {
  opacity: 1;
}
.hero-scrim {
  z-index: 2;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(213, 167, 93, 0.13),
      transparent 31%
    ),
    linear-gradient(
      105deg,
      rgba(6, 32, 24, 0.92) 0%,
      rgba(6, 32, 24, 0.72) 45%,
      rgba(6, 32, 24, 0.28) 100%
    );
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(246, 242, 242, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 242, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}
.hero-in {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--pad);
  width: 100%;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero .eyebrow {
  font-size: 14px;
  letter-spacing: 0.2em;
}
.eyebrow.gold {
  color: var(--gold);
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 78px);
  max-width: none;
  margin: 0 0 28px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.hero h1 em {
  color: var(--gold-lt);
}
.hero-sub {
  max-width: 56ch;
  font-size: clamp(16px, 1.35vw, 18.5px);
  color: rgba(246, 242, 242, 0.85);
  margin: 0 0 40px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-down {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  width: 26px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transform: translateX(-50%);
}
.hero-down span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold-lt);
  transform: translateX(-50%);
  animation: dropdot 1.9s var(--ease) infinite;
}
@keyframes dropdot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translate(-50%, 17px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}
@media (max-width: 700px) {
  .header {
    height: 70px;
  }
  .logo img {
    height: 43px;
  }
  .hero {
    min-height: calc(100svh - 110px);
    align-items: flex-end;
  }
  .hero-in {
    padding: 70px var(--pad) 82px;
  }

  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(6, 32, 24, 0.16) 0%,
      rgba(6, 32, 24, 0.48) 42%,
      rgba(6, 32, 24, 0.88) 100%
    );
  }
  .hero::after {
    background-size: 54px 54px;
    opacity: 0.1;
  }
  .eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(20px, 6.5vw, 34px);
    line-height: 1.12;
    margin-bottom: 22px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.58;
    margin-bottom: 28px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-cta .pill {
    width: auto;
    max-width: 100%;
  }
  .hero-down {
    display: none;
  }
}

.counters {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(213, 167, 93, 0.12),
      transparent 28%
    ),
    var(--bone);
  border-bottom: 1px solid var(--line);
}

.counters-in {
  --col-gap: clamp(40px, 5vw, 88px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(38px, 4vw, 52px) var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--col-gap);
  row-gap: 0;
}

.counter {
  position: relative;
  padding: 0;
  min-width: 0;
}
.counter + .counter::before {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: calc(var(--col-gap) / -2);
  width: 1px;
  background: var(--line);
}
.counter b {
  display: block;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
}
.counter span {
  display: block;
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 500;
}
.counter small {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 32ch;
}
@media (max-width: 840px) {
  .counters-in {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .counter + .counter {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }
  .counter + .counter::before {
    content: none;
  }
  .counter small {
    max-width: none;
  }
}

.section-bar {
  max-width: none;
  margin: 0;

  padding: clamp(44px, 4.6vw, 72px) 0 0
    max(var(--pad), calc((100% - var(--maxw)) / 2 + var(--pad)));

  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.dark .section-bar,
.trust .section-bar {
  color: var(--gold);
}

.section-h {
  max-width: var(--maxw);
  margin: 26px auto 0;
  padding: 0 max(var(--pad), 32%) 0 var(--pad);
  font-size: clamp(30px, 3.6vw, 50px);
  text-wrap: balance;
}
@media (max-width: 900px) {
  .section-h {
    padding-right: var(--pad);
  }
}
.section-h.light {
  color: var(--bone);
}

.sec-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--pad) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
}
.sec-head .section-h {
  margin: 0;
  padding: 0;
  max-width: 64%;
  flex: 1 1 420px;
}
.sec-head .pill {
  flex: none;
}
@media (max-width: 900px) {
  .sec-head .section-h {
    max-width: none;
  }
}

.pillars {
  padding-bottom: 0;
  position: relative;
}

.pillars > .section-bar {
  position: absolute;
  top: clamp(26px, 2.8vw, 40px);
  left: 0;
  z-index: 2;
  padding-top: 0;
}

.pillar {
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: stretch;
}

.pillar-copy {
  grid-column: half-start / mid;
  grid-row: 1;
  padding-block: clamp(56px, 6.5vw, 100px);
  padding-inline-end: clamp(28px, 3.4vw, 56px);
  align-self: center;
}
.pillar-media {
  grid-column: mid / full-end;
  grid-row: 1;
}
.pillar-flip .pillar-copy {
  grid-column: mid / half-end;
  padding-inline: clamp(28px, 3.4vw, 56px) 0;
}
.pillar-flip .pillar-media {
  grid-column: full-start / mid;
}

.pillar-num {
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(191, 158, 91, 0.28);
  margin: 0 0 18px;
}
.pillar h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  margin: 0 0 22px;
}
.lead {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 46ch;
}
.offer-h {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 600;
}
.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
  margin: 0 0 32px;
}

.offer li {
  font-size: 14.5px;
  padding: 7px 0;
  color: var(--ink);
}

.pillar-media {
  margin: 0;
  overflow: hidden;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(400px, 44vw, 600px);
  object-fit: cover;
}
.pillar-media:hover img {
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .pillars > .section-bar {
    position: static;
    padding-top: clamp(28px, 5vw, 44px);
  }
  .pillar {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .pillar-copy,
  .pillar-flip .pillar-copy {
    grid-column: 1;
    grid-row: 2;
    padding: clamp(34px, 7vw, 52px) var(--pad);
  }
  .pillar-media,
  .pillar-flip .pillar-media {
    grid-column: 1;
    grid-row: 1;
  }
  .pillar-media img {
    aspect-ratio: 16/10;
    height: auto;
    min-height: 0;
  }
  .offer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .pillar-copy .pill-arrow,
  .about-cta {
    display: flex;
    width: 100%;
    justify-content: space-between;
    text-align: left;
    white-space: normal;
    font-size: 13px;
    padding-left: 24px;
    gap: 14px;
  }
  .pillar-copy .pill-arrow::after,
  .about-cta::after {
    width: 40px;
    height: 40px;
    background-size: 17px 17px;
  }
}

.dark {
  background: var(--ink);
  color: var(--bone);
}
.dark .lead,
.dark p {
  color: rgba(246, 242, 242, 0.78);
}
.dark .section-bar::after {
  background: var(--line-dk);
}

.about {
  padding-bottom: 0;
}

.about-in {
  margin-top: clamp(26px, 3vw, 42px);
  gap: 0;
  align-items: start;
}
.about-h {
  grid-column: half-start / mid;
  padding-inline-end: clamp(28px, 3.4vw, 56px);
}
.about-body {
  grid-column: mid / half-end;
}
.about-h h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin: 0;
}
.about-body p + p {
  margin-top: 18px;
}

.about-cta {
  margin-top: clamp(26px, 3vw, 38px);
}
@media (max-width: 900px) {
  .about-in {
    grid-template-columns: 1fr;
  }
  .about-h,
  .about-body {
    grid-column: 1;
    padding-inline: var(--pad);
  }
  .about-body {
    margin-top: 22px;
  }
}

.bleed-band {
  margin: var(--sec-sm) 0 0;
  position: relative;
  overflow: hidden;
  height: clamp(280px, 44vh, 520px);
}
.bleed-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bleed-band figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px max(var(--pad), calc((100% - var(--maxw)) / 2 + var(--pad)))
    22px;
  background: linear-gradient(transparent, rgba(6, 32, 24, 0.86));
  color: var(--bone);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.bleed-band figcaption b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--gold-lt);
  margin-bottom: 4px;
}

.jimmy {
  --jimmy-foto: clamp(250px, 21vw, 360px);
  margin-top: 0;
  display: grid;
  align-items: stretch;
  grid-template-columns:
    minmax(var(--pad), 1fr)
    minmax(0, var(--jimmy-foto))
    minmax(0, calc(var(--maxw) - var(--pad) * 2 - var(--jimmy-foto)))
    minmax(var(--pad), 1fr);
}
.jimmy > * {
  min-width: 0;
}
.jimmy-photo {
  grid-column: 1 / 3;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.jimmy-copy {
  grid-column: 3 / 4;
  grid-row: 1;
  padding-inline-start: clamp(28px, 3.4vw, 56px);
  padding-block: clamp(28px, 3.4vw, 56px);
}
.jimmy-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 34vw, 560px);
  object-fit: cover;
  object-position: center 16%;
}
.jimmy-copy h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 6px;
  color: var(--bone);
}
.jimmy-copy h3 span {
  color: var(--gold-lt);
  font-size: 0.7em;
  font-style: italic;
}

.jimmy-copy > p:not(.eyebrow) {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(246, 242, 242, 0.78);
  max-width: 64ch;
}
.jimmy-copy > p:not(.eyebrow) + p {
  margin-top: 1.15em;
}

.jimmy-copy h3 + p {
  font-size: clamp(16.5px, 1.35vw, 19px);
  line-height: 1.68;
  color: rgba(246, 242, 242, 0.94);
  margin-top: 26px;
  max-width: 60ch;
}

.jimmy-rail {
  grid-column: 1 / -1;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
}
.jimmy-full .jimmy-copy {
  grid-column: 1 / -1;
  grid-row: 2;
  padding: clamp(28px, 6vw, 44px) var(--pad);
}

.jimmy-rail .jimmy-photo {
  flex: none;
  min-height: 0;
  height: clamp(380px, 34vw, 560px);
}

.jimmy-rail .jimmy-photo img {
  min-height: 0;
  height: 100%;
  object-position: center 16%;
}

.jimmy-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 34px) clamp(24px, 2.6vw, 38px)
    clamp(26px, 2.8vw, 34px);
}
.stats-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
}

.bio-foot {
  font-size: 15.5px;
  max-width: 64ch;
  margin-top: clamp(26px, 2.6vw, 36px);
  padding-top: clamp(22px, 2.2vw, 30px);
  border-top: 1px solid var(--line-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
}
.bio-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  text-align: right;
}
.contact-tel {
  font-size: 13.5px;
  color: rgba(246, 242, 242, 0.66);
  transition: color 0.25s var(--ease);
}
.contact-tel:hover {
  color: var(--gold-lt);
}

.creds {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
}
.creds li {
  font-size: 14px;
  color: rgba(246, 242, 242, 0.8);
  padding-top: 14px;
  border-top: 1px solid var(--line-dk);
}
.creds b {
  display: block;
  font-family: var(--display);
  font-size: 21px;
  color: var(--gold-lt);
  margin-bottom: 3px;
  font-weight: 400;
}

.jimmy-stats .creds {
  margin-top: 0;
  gap: 26px 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.jimmy-stats .creds li {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(246, 242, 242, 0.72);
  padding-top: 0;
  border-top: 0;
}
.jimmy-stats .creds b {
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1.05;
  margin-bottom: 6px;
}

@media (min-width: 1000px) {
  .jimmy-full {
    --jimmy-rail: clamp(320px, 28vw, 460px);
    grid-template-columns:
      minmax(var(--pad), 1fr)
      minmax(0, var(--jimmy-rail))
      minmax(0, calc(var(--maxw) - var(--pad) * 2 - var(--jimmy-rail)))
      minmax(var(--pad), 1fr);
  }
  .jimmy-full .jimmy-rail {
    grid-column: 1 / 3;
    grid-row: 1;
    border-right: 1px solid var(--line-dk);
  }

  .jimmy-full .jimmy-stats {
    padding-inline: clamp(24px, 2.4vw, 40px);
    align-items: center;
  }
  .jimmy-full .stats-label,
  .jimmy-full .jimmy-stats .creds {
    width: 100%;
    max-width: 460px;
  }
  .jimmy-full .jimmy-copy {
    grid-column: 3 / 4;
    grid-row: 1;
    padding: clamp(40px, 4.2vw, 62px) clamp(28px, 2.6vw, 44px)
      clamp(40px, 4.2vw, 62px) clamp(32px, 3.4vw, 56px);
  }

  .jimmy-full .jimmy-copy > p:not(.eyebrow),
  .jimmy-full .bio-foot {
    max-width: 70ch;
  }
  .jimmy-full .jimmy-copy h3 + p {
    max-width: 64ch;
  }
}

@media (max-width: 900px) {
  #about.about {
    display: flex;
    flex-direction: column;
  }
  #about.about > .bleed-band {
    order: 9;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .jimmy {
    grid-template-columns: 1fr;
  }

  .jimmy-photo {
    grid-column: 1;
    grid-row: 1;
  }
  .jimmy-photo img {
    aspect-ratio: 4/3;
    height: auto;
    min-height: 0;
  }
  .jimmy-copy {
    grid-column: 1;
    grid-row: 2;
    padding: clamp(28px, 6vw, 44px) var(--pad);
  }

  .jimmy-rail .jimmy-photo {
    height: clamp(300px, 42vw, 440px);
    aspect-ratio: auto;
  }
  .jimmy-rail .jimmy-photo img {
    aspect-ratio: auto;
    height: 100%;
  }
  .jimmy-stats {
    padding: clamp(26px, 6vw, 36px) var(--pad);
  }

  .bio-contact {
    align-items: flex-start;
    text-align: left;
  }
}

.process {
  padding-bottom: var(--sec);
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.dark + .process {
  border-top: 0;
}
.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 58px var(--pad) 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  position: relative;
  background: transparent;
  padding: 34px 28px 46px;
  border: 1px solid var(--line);
}
.step + .step {
  margin-left: -1px;
}
.step:nth-child(even) {
  transform: translateY(28px);
}
.step-n {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
  color: rgba(191, 158, 91, 0.26);
  display: block;
  margin-bottom: 22px;
  letter-spacing: -0.05em;
}
.step h3 {
  font-size: 23px;
  margin: 0 0 12px;
}
.step p {
  font-size: 14.5px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .step + .step {
    margin-left: 0;
    margin-top: -1px;
  }
  .step:nth-child(even) {
    transform: none;
  }
}

.approach {
  padding-bottom: clamp(48px, 5vw, 68px);
}

.approach-in {
  margin-top: clamp(20px, 2.4vw, 34px);
  gap: 0;
  align-items: end;
}
.approach-h {
  grid-column: half-start / mid;
  margin: 0;
  padding-inline-end: clamp(28px, 3.4vw, 56px);
  font-size: clamp(30px, 3.6vw, 50px);
  text-wrap: balance;
}
.approach-lead {
  grid-column: mid / half-end;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .approach-in {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .approach-h,
  .approach-lead {
    grid-column: 1;
    padding-inline: var(--pad);
  }
  .approach-lead {
    margin-top: 18px;
  }
}

.eco-wrap {
  margin: clamp(16px, 2.2vw, 32px) auto 0;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  text-align: center;
}
.eco {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.eco-ring,
.eco-ring-soft {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
}
.eco-ring-soft {
  stroke-dasharray: 2 7;
  opacity: 0.75;
}
.eco-spoke line {
  stroke: var(--line);
  stroke-width: 1;
}

.eco-hub {
  fill: var(--ink);
  stroke: var(--gold);
  stroke-width: 1;
}
.eco-you {
  fill: var(--gold);
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: 0.06em;
  text-anchor: middle;
}
.eco-hub-sub {
  fill: rgba(246, 242, 242, 0.62);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-anchor: middle;
}

.eco-node rect {
  fill: var(--paper);
  stroke: var(--gold);
  stroke-width: 1.4;
}

.eco-label text {
  fill: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.eco-wrap figcaption {
  margin-top: clamp(14px, 1.8vw, 24px);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--ink);
}

.eco-core,
.eco-pop {
  transform-box: fill-box;
  transform-origin: center;
}

.eco-ready .eco-draw {
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
}
.eco-ready .eco-pop,
.eco-ready .eco-fade,
.eco-ready .eco-core {
  opacity: 0;
}

.eco-wrap.visible .eco-draw {
  animation: ecoDraw 1.4s var(--ease) 0.15s forwards;
}
.eco-wrap.visible .eco-core {
  animation: ecoCore 0.8s var(--ease) 0.1s forwards;
}
.eco-wrap.visible .eco-pop {
  animation: ecoPop 0.7s var(--ease) var(--d, 0.5s) forwards;
}
.eco-wrap.visible .eco-fade {
  animation: ecoFade 0.9s var(--ease) var(--d, 0.3s) forwards;
}

@keyframes ecoDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ecoFade {
  to {
    opacity: 1;
  }
}
@keyframes ecoCore {
  from {
    opacity: 0;
    transform: scale(0.86);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ecoPop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.eco-wrap.visible .eco-glow {
  animation: ecoGlow 7s ease-in-out 1.6s infinite;
}
@keyframes ecoGlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.eco-flow {
  stroke-dasharray: 40 900;
  stroke-dashoffset: 40;
  opacity: 0;
}
.eco-wrap.visible .eco-flow {
  animation: ecoFlow 7s linear 1.8s infinite;
}
@keyframes ecoFlow {
  0% {
    stroke-dashoffset: 40;
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    stroke-dashoffset: -820;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-draw {
    stroke-dashoffset: 0;
  }
  .eco-pop,
  .eco-fade,
  .eco-core {
    opacity: 1;
  }
  .eco-wrap.visible .eco-draw,
  .eco-wrap.visible .eco-core,
  .eco-wrap.visible .eco-pop,
  .eco-wrap.visible .eco-fade,
  .eco-wrap.visible .eco-glow,
  .eco-wrap.visible .eco-flow {
    animation: none;
  }
  .eco-flow {
    opacity: 0;
  }
}

.eco-list {
  display: none;
}
@media (max-width: 760px) {
  .eco {
    display: none;
  }
  .eco-wrap {
    text-align: left;
  }
  .eco-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .eco-list li {
    padding: 9px 0;
    font-size: 14.5px;
  }
  .eco-list .eco-list-hub {
    grid-column: 1/-1;
    padding-left: 0;
    font-family: var(--display);
    font-size: 20px;
    color: var(--gold);
  }
  .eco-list .eco-list-hub::before {
    content: none;
  }
}
@media (max-width: 420px) {
  .eco-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .approach {
    grid-template-columns: 1fr;
  }
}

.diff {
  padding-bottom: clamp(52px, 5.6vw, 88px);
  position: relative;
  overflow: hidden;
}

.diff-mark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  right: max(var(--pad), calc((100% - var(--maxw)) / 2 + var(--pad)));
  top: clamp(70px, 8vw, 128px);
  height: clamp(230px, 26vw, 400px);
  width: auto;
  opacity: 0.07;
}

.diff > :not(.diff-mark) {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .diff-mark {
    display: none;
  }
}

.diff-table {
  --diff-gap: clamp(36px, 5vw, 88px);
  max-width: var(--maxw);
  margin: clamp(34px, 4vw, 52px) auto 0;
  padding: 0 var(--pad);
  position: relative;
}
.diff-table::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 6px;
  left: 50%;
  width: 1px;
  background: var(--line-dk);
}
.diff-heads,
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--diff-gap);
}
.diff-row {
  position: relative;
}
.diff-h {
  font-size: clamp(17px, 1.5vw, 21px);
  margin: 0 0 22px;
}
.diff-h.them {
  color: var(--muted-lt);
}
.diff-h.us {
  color: var(--gold);
}

.diff-row p {
  position: relative;
  margin: 0;
  padding: 16px 0 16px 26px;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line-dk);
}
.diff-row:last-child p {
  border-bottom: 0;
}
.diff-row .them {
  color: rgba(246, 242, 242, 0.5);
}
.diff-row .us {
  color: var(--bone);
}

.diff-row .them::before,
.diff-row .us::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 11px;
  height: 1px;
}
.diff-row .them::before {
  background: var(--muted);
}
.diff-row .us::before {
  background: var(--gold);
}

.diff-band {
  position: absolute;
  left: -20px;
  right: -20px;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(191, 158, 91, 0.03),
    rgba(191, 158, 91, 0.09) 50%,
    rgba(191, 158, 91, 0.03)
  );
  opacity: 0;
  pointer-events: none;
}
.diff-table::before {
  transform-origin: top;
}

.diff-armed::before {
  transform: scaleY(0);
}
.diff-armed .diff-h,
.diff-armed .diff-row p {
  opacity: 0;
}
.diff-armed .diff-h.them,
.diff-armed .diff-row .them {
  transform: translateX(-16px);
}
.diff-armed .diff-h.us,
.diff-armed .diff-row .us {
  transform: translateX(16px);
}
.diff-armed .diff-row .them::before,
.diff-armed .diff-row .us::before {
  transform: scaleX(0);
  transform-origin: left;
}

.diff-armed.visible::before {
  animation: dfRule 0.9s var(--ease) forwards;
}
.diff-armed.visible .diff-h {
  animation: dfSlide 0.7s var(--ease) 0.5s forwards;
}
.diff-armed.visible .diff-row p {
  animation: dfSlide 0.7s var(--ease) forwards;
  animation-delay: calc(0.72s + var(--i) * 0.13s);
}
.diff-armed.visible .diff-row .them::before,
.diff-armed.visible .diff-row .us::before {
  animation: dfDash 0.5s var(--ease) forwards;
  animation-delay: calc(0.8s + var(--i) * 0.13s);
}

.diff-armed.visible .diff-band {
  animation: dfBand 1s var(--ease) forwards;
  animation-delay: calc(1.6s + var(--i) * 0.52s);
}

@keyframes dfRule {
  to {
    transform: scaleY(1);
  }
}
@keyframes dfSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes dfDash {
  to {
    transform: scaleX(1);
  }
}
@keyframes dfBand {
  0% {
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .diff-armed::before,
  .diff-armed .diff-h,
  .diff-armed .diff-row p,
  .diff-armed .diff-row .them::before,
  .diff-armed .diff-row .us::before {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .diff-band {
    display: none;
  }
}

@media (max-width: 840px) {
  .diff-table {
    margin-top: 38px;
  }
  .diff-table::before {
    content: none;
  }

  .diff-heads {
    display: none;
  }
  .diff-row {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line-dk);
  }
  .diff-row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .diff-row p {
    padding: 5px 0 5px 26px;
    border-bottom: 0;
    font-size: 14.5px;
  }
  .diff-row .them::before,
  .diff-row .us::before {
    top: 13px;
  }
}
@media (max-width: 840px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

.trust {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(56px, 6vw, 80px);
  color: var(--bone);
}
.trust::before {
  content: '';
  position: absolute;
  inset: -28px;
  z-index: 0;
  background: url('../images/break-lasvegas-skyline.jpg') center/cover no-repeat;
  filter: grayscale(1) blur(6px) brightness(0.58);
}
.trust::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 32, 24, 0.8),
    rgba(6, 32, 24, 0.66) 45%,
    rgba(6, 32, 24, 0.86)
  );
}
.trust > * {
  position: relative;
  z-index: 1;
}

.rev {
  max-width: var(--maxw);
  margin: clamp(40px, 4.4vw, 56px) auto 0;
  padding: 0 var(--pad);
  text-align: center;
}

.rev-stage {
  position: relative;
  min-height: clamp(230px, 24vw, 270px);
}
.rev-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.55s var(--ease),
    visibility 0.55s var(--ease),
    transform 0.55s var(--ease);
  transform: translateY(8px);
}
.rev-slide.is-on {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.rev-slide p {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 2.6vw, 38px);
  line-height: 1.34;
  letter-spacing: -0.008em;
  margin: 0;
  color: var(--bone);
  text-wrap: pretty;
}
.rev-slide cite {
  display: block;
  margin-top: 30px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-lt);
}

.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 30px);
  margin-top: clamp(26px, 3vw, 36px);
}
.rev-nav {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(246, 242, 242, 0.34);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--bone);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.rev-nav:hover {
  background: rgba(191, 158, 91, 0.18);
  border-color: var(--gold);
}
.rev-nav svg {
  width: 19px;
  height: 19px;
}

.rev-segs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rev-seg {
  width: 30px;
  height: 2px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(246, 242, 242, 0.28);
  transition: background 0.3s var(--ease);
}
.rev-seg:hover {
  background: var(--muted-lt);
}
.rev-seg.is-on {
  background: var(--gold);
}

.rev-more {
  margin-top: clamp(28px, 3.2vw, 40px);
}

.rev-count {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted-lt);
  font-variant-numeric: tabular-nums;
  min-width: 54px;
}

.rev-disclosure {
  max-width: 860px;
  margin: clamp(34px, 3.6vw, 44px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 242, 242, 0.16);
  font-size: 11.5px;
  line-height: 1.72;
  color: rgba(246, 242, 242, 0.6);
  text-align: center;
}

@media (max-width: 700px) {
  .rev-stage {
    min-height: clamp(260px, calc(460px - 46vw), 340px);
  }
  .rev-controls {
    flex-wrap: wrap;
    gap: 14px;
  }

  .rev-more {
    margin-top: clamp(28px, 3.2vw, 40px);
  }

  .rev-count {
    order: -1;
    flex-basis: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rev-slide {
    transition: none;
  }
}
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-card:nth-child(n) {
    grid-column: auto;
    transform: none;
  }
}
@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.resources {
  padding-bottom: var(--sec);
  overflow: hidden;
}

.marquee {
  margin-top: 52px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: slide var(--dur, 46s) linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}
.res-card {
  width: 330px;
  flex: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease),
    transform 0.5s var(--ease);
}
.res-card.is-active {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.res-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.res-card div {
  padding: 22px 24px 28px;
}
.res-card span {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.res-card h3 {
  font-size: 18px;
  margin: 12px 0 0;
  line-height: 1.32;
}

.banner {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.banner::before {
  content: '';
  position: absolute;
  inset: -24px;
  z-index: 0;
  background: url('../images/banner-open-road.jpg') center/cover no-repeat;

  filter: grayscale(0.55) blur(3px) brightness(0.52);
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 32, 24, 0.82),
    rgba(6, 32, 24, 0.68) 48%,
    rgba(6, 32, 24, 0.88)
  );
}
.banner > * {
  position: relative;
  z-index: 1;
}

.banner-in {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(46px, 5.4vw, 78px) var(--pad);
}
.banner h2 {
  font-size: clamp(30px, 4.2vw, 54px);
  margin: 0 0 18px;
}
.banner p {
  margin: 0 auto 30px;
  max-width: 52ch;
}

.newsletter {
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.news-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(22px, 2.4vw, 38px);
  flex-wrap: wrap;
}
.news-in h3 {
  font-size: 26px;
  margin: 0 0 8px;
}
.news-in p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 46ch;
}

.news-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 470px;
}

.news-form input:not([type='checkbox']) {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 13px 22px;
  min-width: clamp(190px, 20vw, 270px);
  font-size: 14px;
}
.news-form input:not([type='checkbox']):focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.bcheck {
  background: var(--gold);
  color: var(--ink);
}
.bcheck-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 44px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.bcheck h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--ink);
  margin: 0 0 10px;
}
.bcheck p {
  font-size: 14.5px;
  color: rgba(6, 32, 24, 0.82);
  max-width: 70ch;
}
.bcheck-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  background: #fff;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  padding: 17px 32px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.bcheck-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.45);
}
.bcheck-btn svg {
  width: 17px;
  height: 17px;
}

.bcheck-alt {
  background: var(--ink-2);
  color: var(--bone);
  border-top: 1px solid var(--line-dk);
}
.bcheck-alt h2 {
  color: var(--bone);
}
.bcheck-alt p {
  color: rgba(246, 242, 242, 0.76);
}
.bcheck-alt .bcheck-btn {
  background: var(--gold);
  color: var(--ink);
}

.floating-bcheck {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 65;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 16px;
  cursor: pointer;
  box-shadow: 0 10px 26px -10px rgba(6, 32, 24, 0.35);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    opacity 0.25s var(--ease);
}
.floating-bcheck:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -12px rgba(6, 32, 24, 0.45);
}
.floating-bcheck.is-suppressed {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}
.fb-mark {
  font-size: 14px;
  font-weight: 600;
  color: #0b4ea2;
  letter-spacing: -0.01em;
}
.fb-mark b {
  color: #c8102e;
  font-weight: 600;
}
.fb-by {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 600px) {
  .floating-bcheck {
    display: none;
  }
}

.vid-nav {
  display: flex;
  gap: 8px;
  flex: none;
}
.vid-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dk);
  background: none;
  color: var(--bone);
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.vid-arrow svg {
  width: 19px;
  height: 19px;
}
.vid-arrow:hover:not(:disabled) {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}
.vid-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.vid-rail {
  margin-top: clamp(28px, 3vw, 44px);
  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.vid-rail::-webkit-scrollbar {
  display: none;
}
.vid-track {
  display: flex;
  gap: clamp(18px, 1.8vw, 26px);
  padding-inline: max(var(--pad), (100% - var(--maxw)) / 2 + var(--pad));
  padding-block: 2px;
}

.vid-track > li {
  flex: 0 0 clamp(250px, 25vw, 340px);
  min-width: 0;
  display: flex;
}
.vid-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.vid-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--ink-2);
  border: 1px solid var(--line-dk);
  border-radius: 2px;
}
.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) brightness(0.78);
  transition:
    transform 0.5s var(--ease),
    filter 0.4s var(--ease);
}
.vid-card:hover .vid-thumb img,
.vid-card:focus-visible .vid-thumb img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(0.9);
}
.vid-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(6, 32, 24, 0.62);
  color: var(--gold-lt);
  border: 1px solid rgba(213, 167, 93, 0.5);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.vid-play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}
.vid-card:hover .vid-play,
.vid-card:focus-visible .vid-play {
  background: var(--gold);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.06);
}
.vid-topic {
  display: block;
  margin-top: 16px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.vid-title {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 18.5px;
  line-height: 1.34;
  color: var(--bone);
  transition: color 0.25s var(--ease);
}
.vid-card:hover .vid-title,
.vid-card:focus-visible .vid-title {
  color: var(--gold-lt);
}

@media (max-width: 700px) {
  .vid-nav {
    display: none;
  }
  .vid-track > li {
    flex-basis: min(78vw, 300px);
  }
}

.articles {
  padding-bottom: var(--sec);
}
.art-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.art-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: clamp(26px, 2.8vw, 38px) 0 clamp(28px, 3vw, 40px);
}
.art-chip {
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: none;
  font: inherit;
  font-size: 13px;
  color: var(--muted);
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.art-chip:hover {
  color: var(--ink);
  border-color: var(--gold);
}
.art-chip.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}

.art-grid {
  display: grid;
  gap: clamp(26px, 2.6vw, 38px) clamp(20px, 2vw, 30px);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.art-card {
  margin: 0;
  display: flex;
}
.art-open {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.art-thumb {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/9;
  background: var(--bone);
  border: 1px solid var(--line);
}
.art-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}
.art-open:hover .art-thumb img,
.art-open:focus-visible .art-thumb img {
  transform: scale(1.045);
}
.art-cat {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-weight: 600;
}
.art-title {
  display: block;
  margin-top: 9px;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.32;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.art-open:hover .art-title,
.art-open:focus-visible .art-title {
  color: var(--gold-dk);
}
.art-dek {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #616b65;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.art-empty {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--muted);
}

@media (max-width: 520px) {
  .art-grid {
    grid-template-columns: 1fr;
  }
}

.offer a {
  color: inherit;
  transition: color 0.22s var(--ease);
}
.offer li:hover a,
.offer a:focus-visible {
  color: var(--gold-lt);
}
.dark .offer a {
  color: inherit;
}

button.card {
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
a.res-card {
  cursor: pointer;
}

.check-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}
.check-label input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--gold-dk);
}
.link-btn {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: var(--gold-dk);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link-btn:hover {
  color: var(--ink);
}

.news-form {
  align-items: center;
}
.news-check {
  flex-basis: 100%;
  margin-top: 2px;
  color: var(--muted);
}
.dark .news-check .link-btn,
.newsletter .link-btn {
  color: var(--gold-lt);
}

.book-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.book-two select {
  width: 100%;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
}
.book-two select:disabled {
  color: var(--muted-lt);
  background: var(--bone);
  cursor: not-allowed;
}
@media (max-width: 520px) {
  .book-two {
    grid-template-columns: 1fr;
  }
}

.guide-top {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 8px;
}
.guide-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.guide-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.26;
  color: var(--ink);
  margin: 0 0 8px;
}
.guide-list {
  display: grid;
  gap: 11px;
  margin: 6px 0 0;
}
.guide-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #616b65;
}
.guide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 1px;
  background: var(--gold-dk);
}
@media (max-width: 520px) {
  .guide-top {
    grid-template-columns: 1fr;
  }
  .guide-cover {
    max-width: 170px;
  }
}

.member-copy .pill {
  margin-top: 18px;
  align-self: flex-start;
}

.strat {
  padding-bottom: var(--sec);
}
.strat-in {
  max-width: var(--maxw);
  margin: clamp(26px, 2.8vw, 40px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 3.4vw, 64px);
  align-items: center;
}
.strat-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--bone);
  margin: 0 0 22px;
}
.strat-copy h2 em {
  color: var(--gold-lt);
}
.strat-copy p {
  font-size: 15.5px;
  line-height: 1.74;
  color: rgba(246, 242, 242, 0.78);
  max-width: 56ch;
}
.strat-copy p + p {
  margin-top: 1.1em;
}
.strat-copy .pill {
  margin-top: 28px;
}
@media (max-width: 960px) {
  .strat-in {
    grid-template-columns: 1fr;
  }
  .strat-viz {
    max-width: 560px;
    margin-inline: auto;
  }
}

.bizflow {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bf-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 58px);
  width: 100%;
}

.bf-row + .bf-row {
  margin-top: 44px;
}
.bf-row + .bf-row::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -44px;
  width: 1px;
  height: 44px;
  background: var(--line-dk);
}

.bf-split::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  top: -22px;
  height: 1px;
  background: var(--line-dk);
}
.bf-split .bf-node::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -22px;
  width: 1px;
  height: 22px;
  background: var(--line-dk);
}

.bf-split + .bf-row::before {
  top: -44px;
}

.bf-node {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid var(--line-dk);
  background: var(--ink);
  font-size: 14.5px;
  line-height: 1.3;
  color: rgba(246, 242, 242, 0.86);
}
.bf-lead {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  padding: 15px 32px;
}
.bf-end {
  border-color: rgba(213, 167, 93, 0.55);
  color: var(--gold-lt);
}

.bizflow-msg {
  margin: clamp(24px, 2.4vw, 34px) auto 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.42;
  color: var(--gold-lt);
}

.bf-armed .bf-node {
  opacity: 0;
  transform: translateY(10px);
}
.bf-armed.bf-go .bf-node {
  animation: bfNodo 0.55s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.28s);
}
.bf-armed .bf-row + .bf-row::before,
.bf-armed .bf-split .bf-node::before,
.bf-armed .bf-split::after {
  transform-origin: top center;
  transform: scaleY(0);
}
.bf-armed .bf-split::after {
  transform: scaleX(0);
}
.bf-armed.bf-go .bf-row + .bf-row::before,
.bf-armed.bf-go .bf-split .bf-node::before {
  animation: bfTallo 0.4s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.28s - 0.14s);
}
.bf-armed.bf-go .bf-split::after {
  animation: bfBarra 0.4s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.28s - 0.14s);
}
.bf-go .bf-lead {
  animation:
    bfNodo 0.55s var(--ease) forwards,
    bfLatido 4.5s ease-in-out 1.6s infinite;
}
@keyframes bfNodo {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes bfTallo {
  to {
    transform: scaleY(1);
  }
}
@keyframes bfBarra {
  to {
    transform: scaleX(1);
  }
}
@keyframes bfLatido {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(213, 167, 93, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(213, 167, 93, 0.14);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bf-armed .bf-node,
  .bf-armed .bf-row + .bf-row::before,
  .bf-armed .bf-split .bf-node::before,
  .bf-armed .bf-split::after {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 560px) {
  .bf-split {
    flex-direction: column;
    gap: 44px;
  }
  .bf-split::after {
    display: none;
  }
  .bf-split .bf-node::before {
    top: -44px;
    height: 44px;
  }
  .bf-split .bf-node:first-child::before {
    display: none;
  }
  .bf-node {
    width: 100%;
  }
}

.footer {
  background: var(--ink);
  color: var(--bone);
}

.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 74px var(--pad) 54px;
  display: grid;
  grid-template-columns: minmax(190px, 1.02fr) repeat(3, minmax(0, 1fr)) minmax(
      0,
      1.12fr
    );
  gap: 38px;
}
.footer-logo {
  width: min(300px, 100%);
  height: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-dk);
  color: rgba(246, 242, 242, 0.78);
  background: rgba(246, 242, 242, 0.04);
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.footer-social a:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(246, 242, 242, 0.76);
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--gold-lt);
}
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(246, 242, 242, 0.76);
  line-height: 1.85;
}
.footer-col address a:hover {
  color: var(--gold-lt);
}
.hours {
  font-size: 13px;
  color: var(--muted-lt);
  margin-top: 16px;
}

@media (max-width: 1240px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 44px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-social {
    margin-top: 20px;
  }
}
@media (max-width: 620px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo,
  .footer-social {
    margin-inline: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-col address {
    text-align: center;
  }
  .disclosures {
    text-align: center;
  }
  .disc-links {
    justify-content: center;
  }

  .footer-base {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .footer-legal {
    order: -1;
    justify-content: center;
  }
}

.disclosures {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px var(--pad);
  border-top: 1px solid var(--line-dk);
  font-size: 11.5px;
  line-height: 1.72;
  color: rgba(246, 242, 242, 0.62);
}
.disclosures p {
  margin: 0 0 13px;
}
.disclosures a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.disc-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.disc-links a {
  font-size: 12.5px;
}
.footer-base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--pad) 40px;
  border-top: 1px solid var(--line-dk);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted-lt);
}
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: var(--muted-lt);
  transition: color 0.25s var(--ease);
}
.footer-legal button:hover {
  color: var(--gold-lt);
}

@media (max-width: 760px) {
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
}

.modal {
  border: 0;
  border-radius: 4px;
  padding: 0;
  max-width: 540px;
  width: calc(100% - 32px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 90px -30px rgba(6, 32, 24, 0.55);
}
.modal::backdrop {
  background: rgba(6, 32, 24, 0.62);
  backdrop-filter: blur(3px);
}

.modal-body {
  padding: 24px 40px 30px;
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 22px;
  background: var(--ink);
  color: var(--bone);
  border-bottom: 1px solid var(--line-dk);

  position: sticky;
  top: 0;
  z-index: 2;
}
.modal-mark {
  width: 26px;
  height: auto;
  flex: none;
  display: block;
}
.modal-head-title {
  flex: 1;
  min-width: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.modal-x {
  position: static;
  flex: none;
  width: 34px;
  height: 34px;
  padding: 0;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: rgba(246, 242, 242, 0.66);
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.modal-x:hover {
  color: var(--gold-lt);
}

.modal h2 {
  font-size: 25px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.modal-body > p:not(.modal-fine) {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 12px;
}
.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  margin-bottom: 6px;
}
.modal-fine {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 14px;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
}
.modal-fine-last {
  padding-bottom: 0;
}

.modal-wide {
  max-width: 1020px;
}

.modal-doc {
  max-width: 660px;
}
.modal-doc .modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
}
.modal-doc .modal-body {
  max-height: 62vh;
  overflow-y: auto;
  padding: 22px 40px 30px;
}
.modal-doc h3 {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-weight: 600;
  margin: 22px 0 8px;
}
.modal-doc h3:first-of-type {
  margin-top: 18px;
}
.modal-doc .doc-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.modal-doc a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.modal-doc a:hover {
  color: var(--gold-dk);
}

.modal-doc .modal-body p {
  color: #616b65;
  font-size: 14px;
  line-height: 1.72;
}
.modal-doc .doc-date {
  color: var(--muted);
}

.modal-video {
  max-width: 940px;
  background: var(--ink);
}
.modal-video .modal-head {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dk);
}
.modal-video .modal-head-title {
  color: var(--bone);
}
.modal-video .modal-x {
  color: var(--bone);
}
.modal-video video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #000;
}

.modal-article {
  max-width: 720px;
}
.modal-article .art-hero {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin: 0 0 22px;
  border-radius: 2px;
}
.modal-article .art-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(23px, 2.2vw, 29px);
  line-height: 1.24;
  color: var(--ink);
  margin: 0 0 10px;
}
.modal-article .modal-actions {
  margin-top: 22px;
}

.modal-bio {
  max-width: 840px;
}
.bio-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(22px, 2.4vw, 34px);
  align-items: start;
}
.bio-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: var(--bone);
}
.bio-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.bio-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.24;
  color: var(--ink);
  margin: 0 0 4px;
}
.bio-text .doc-date {
  margin-bottom: 16px;
}

.bio-text > p {
  font-size: 14px;
  line-height: 1.72;
  color: #616b65;
}
.bio-text > p + p {
  margin-top: 1.1em;
}
.bio-text > .modal-fine {
  margin-top: 22px;
}
@media (max-width: 640px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
  .bio-photo {
    max-width: 220px;
  }
}
.modal-split {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
}
.modal-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35);
}
.modal-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 22px 18px;
  background: linear-gradient(transparent, rgba(6, 32, 24, 0.9));
  color: var(--bone);
  font-size: 12.5px;
  line-height: 1.5;
}
.modal-wide .modal-body {
  padding: 28px 34px 30px;
}
.modal-wide h2 {
  font-size: clamp(21px, 1.9vw, 27px);
}
.modal-list {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 22px;
}
.modal-list li {
  font-size: 12.8px;
  line-height: 1.5;
  color: var(--muted);
}
.modal-list b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 12.5px;
  margin-bottom: 2px;
}
@media (max-width: 840px) {
  .modal-split {
    grid-template-columns: 1fr;
  }
  .modal-media {
    height: 160px;
  }
  .modal-list {
    grid-template-columns: 1fr;
  }
}

.book-form {
  display: grid;
  gap: 11px;
  padding-top: 6px;
}
.book-form label {
  display: grid;
  gap: 5px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.book-form input:not([type='checkbox']),
.book-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 3px;
  padding: 11px 14px;
  font-size: 14.5px;
  color: var(--ink);
}
.book-form input:not([type='checkbox']):focus,
.book-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
}
.book-form .pill {
  justify-self: start;
  margin-top: 6px;
}
.range {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 11px 14px;
  margin: 0;
  background: #fff;
}
.range legend {
  font-size: 12.5px;
  color: var(--muted);
  padding: 0 6px;
}
.range input[type='range'] {
  width: 100%;
  accent-color: var(--gold);
}
.range output {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: 17px;
  color: var(--gold);
}
.book-sent {
  display: none;
  padding-top: 16px;
  color: var(--gold);
  font-size: 15px;
}
.modal.sent .book-form {
  display: none;
}
.modal.sent .book-sent {
  display: block;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  isolation: isolate;
  min-height: clamp(400px, 33vw, 540px);
  display: flex;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.66);
}
.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6, 32, 24, 0.95) 0%,
    rgba(6, 32, 24, 0.9) 44%,
    rgba(6, 32, 24, 0.6) 76%,
    rgba(6, 32, 24, 0.3) 100%
  );
}
.page-hero-in {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(84px, 7.6vw, 112px) var(--pad) clamp(44px, 4.6vw, 68px);
}

.page-crumbs {
  position: absolute;
  top: clamp(30px, 3.4vw, 46px);
  left: 0;
  right: 0;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 242, 242, 0.6);
}
.page-crumbs a {
  color: inherit;
  transition: color 0.25s var(--ease);
}
.page-crumbs a:hover {
  color: var(--gold-lt);
}
.page-crumbs span[aria-current] {
  color: rgba(246, 242, 242, 0.9);
}
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  max-width: 15ch;
  margin: 0 0 20px;
  letter-spacing: -0.022em;
}
.page-hero h1 em {
  color: var(--gold-lt);
}
.page-hero .lead-lg {
  max-width: 52ch;
  font-size: clamp(16px, 1.3vw, 18.5px);
  color: rgba(246, 242, 242, 0.85);
  margin: 0;
}

.intro {
  padding-bottom: var(--sec);
}
.intro-in {
  margin-top: clamp(20px, 2.4vw, 34px);
  gap: 0;
  align-items: start;
}
.intro-h {
  grid-column: half-start / mid;
  padding-inline-end: clamp(28px, 3.4vw, 56px);
}
.intro-h h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  margin: 0;
}
.intro-b {
  grid-column: mid / half-end;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.intro-b p + p {
  margin-top: 18px;
}
.dark .intro-b {
  color: rgba(246, 242, 242, 0.78);
}
.intro-key {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 25px);
  color: var(--ink);
  line-height: 1.32;
}
.dark .intro-key {
  border-color: var(--line-dk);
  color: var(--gold-lt);
}
@media (max-width: 900px) {
  .intro-in {
    grid-template-columns: 1fr;
  }
  .intro-h,
  .intro-b {
    grid-column: 1;
    padding-inline: var(--pad);
  }
  .intro-b {
    margin-top: 20px;
  }
}

.svc-list {
  padding-bottom: var(--sec);
}

.svc {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  align-items: start;
  grid-template-columns: clamp(170px, 17vw, 240px) minmax(0, 0.85fr) minmax(
      0,
      1.25fr
    );
  gap: clamp(22px, 2.4vw, 40px);
  padding-block: clamp(28px, 3vw, 42px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 150px;
}
.dark .svc {
  border-color: var(--line-dk);
}
.svc-media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  background: var(--bone);
  border: 1px solid var(--line);
}
.dark .svc-media {
  background: var(--ink-2);
  border-color: var(--line-dk);
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.4) brightness(0.95);
  transition:
    transform 0.6s var(--ease),
    filter 0.45s var(--ease);
}
.svc:hover .svc-media img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(1);
}
.svc-h {
  padding-inline-end: clamp(16px, 1.6vw, 28px);
}

.svc-go {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
  color: var(--gold-dk);
  transition:
    gap 0.25s var(--ease),
    color 0.25s var(--ease);
}
.svc-go svg {
  width: 15px;
  height: 15px;
}
.svc-go:hover,
.svc-go:focus-visible {
  gap: 14px;
  color: var(--ink);
}
.dark .svc-go {
  color: var(--gold-lt);
}
.dark .svc-go:hover {
  color: var(--bone);
}
.svc-b {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.66;
}
.dark .svc-b {
  color: rgba(246, 242, 242, 0.74);
}
.svc-n {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-dk);
  margin: 0 0 8px;
}
.svc-h h3 {
  font-size: clamp(21px, 2.2vw, 29px);
  margin: 0;
}
.dark .svc-h h3 {
  color: var(--bone);
}
.svc-b ul {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 22px;
}
.svc-b li {
  font-size: 14.5px;
  padding: 5px 0;
}

.svc-cta {
  max-width: var(--maxw);
  margin: clamp(34px, 3.6vw, 54px) auto 0;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(26px, 3vw, 52px);
  align-items: center;
}
.svc-cta-copy h3 {
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.22;
  margin: 0 0 12px;
  color: var(--ink);
}
.dark .svc-cta-copy h3 {
  color: var(--bone);
}
.svc-cta-copy p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 24px;
}
.dark .svc-cta-copy p {
  color: rgba(246, 242, 242, 0.76);
}
.svc-cta-media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/10;
  border: 1px solid var(--line);
}
.dark .svc-cta-media {
  border-color: var(--line-dk);
}
.svc-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.3);
}

@media (max-width: 1000px) {
  .svc {
    grid-template-columns: clamp(140px, 16vw, 190px) minmax(0, 1fr);
  }
  .svc-media {
    grid-row: span 2;
  }
  .svc-b {
    grid-column: 2;
  }
}
@media (max-width: 760px) {
  .svc {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc-media {
    grid-row: auto;
    aspect-ratio: 16/9;
  }
  .svc-b {
    grid-column: 1;
    margin-top: 0;
  }
  .svc-b ul {
    grid-template-columns: 1fr;
  }
  .svc-cta {
    grid-template-columns: 1fr;
  }
  .svc-cta-media {
    order: -1;
  }
}

.team {
  padding-bottom: var(--sec);
}

.team-group {
  max-width: var(--maxw);
  margin: clamp(30px, 3.4vw, 46px) auto 0;
  padding: 0 var(--pad);
}
.team-group img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.35/1;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: 2px;
}

.team-grid {
  max-width: var(--maxw);
  margin: clamp(30px, 3.4vw, 46px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}
.member {
  margin: 0;
  display: flex;
}

.member-open {
  width: 100%;
  display: grid;
  grid-template-columns: clamp(150px, 13vw, 200px) minmax(0, 1fr);
  gap: clamp(18px, 1.8vw, 28px);
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.member-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.member-name {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.member-open:hover .member-name,
.member-open:focus-visible .member-name {
  color: var(--gold-dk);
}
.member-sum {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #616b65;
}
.member-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--gold-dk);
  transition:
    gap 0.25s var(--ease),
    color 0.25s var(--ease);
}
.member-more svg {
  width: 15px;
  height: 15px;
}
.member-open:hover .member-more,
.member-open:focus-visible .member-more {
  gap: 14px;
  color: var(--ink);
}
.member-open:hover .member-photo img,
.member-open:focus-visible .member-photo img {
  transform: scale(1.035);
}
.member-photo img {
  transition: transform 0.55s var(--ease);
}
@media (max-width: 1060px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .member-open {
    max-width: 640px;
  }
}
@media (max-width: 480px) {
  .member-open {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .member-photo {
    max-width: 260px;
  }
}
.member-photo {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--ink-2);
}

.member-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.member h3 {
  font-size: 23px;
  margin: 0 0 4px;
}
.dark .member h3 {
  color: var(--bone);
}
.member-role {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin: 6px 0 0;
}
.dark .member-role {
  color: var(--gold);
}

.member p:not(.member-role) {
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--muted);
}
.dark .member p:not(.member-role) {
  color: rgba(246, 242, 242, 0.74);
}
.member-mail {
  display: inline-block;
  margin: 16px 20px 0 0;
  font-size: 13.5px;
  color: var(--gold-dk);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.dark .member-mail {
  color: var(--gold);
}

.faq {
  padding-bottom: var(--sec);
}
.faq-list {
  max-width: var(--maxw);
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding: 0 var(--pad);
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.34;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item p {
  padding: 0 clamp(20px, 8vw, 180px) 24px 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.card-grid {
  max-width: var(--maxw);
  margin: clamp(26px, 3.2vw, 44px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease),
    transform 0.5s var(--ease);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-tag {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.card h3 {
  font-size: 19px;
  margin: 12px 0 10px;
  line-height: 1.32;
}
.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.card-meta {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted-lt);
}
.card-more {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
}

.values {
  padding-bottom: var(--sec);
}
.values-grid {
  max-width: var(--maxw);
  margin: clamp(26px, 3.2vw, 44px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
}
.value {
  padding: 30px 26px 34px;
  border-top: 1px solid var(--line-dk);
  border-left: 1px solid var(--line-dk);
}
.value:first-child {
  border-left: 0;
}
.value-n {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  color: rgba(191, 158, 91, 0.32);
  display: block;
  margin-bottom: 16px;
}
.value h3 {
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--bone);
}
.value p {
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(246, 242, 242, 0.72);
}
@media (max-width: 760px) {
  .value {
    border-left: 0;
  }
}

.contact-grid {
  max-width: var(--maxw);
  margin: clamp(26px, 3.2vw, 44px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-block + .contact-block {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.contact-block h3 {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  font-weight: 600;
}
.contact-block address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
}
.contact-block a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.contact-block a:hover {
  border-color: currentColor;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid var(--line);
  background: #fff;
  padding: 13px 15px;
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  border-radius: 2px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.contact-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 4px;
}
.form-sent {
  display: none;
  padding: 16px 18px;
  background: rgba(191, 158, 91, 0.14);
  border: 1px solid var(--gold);
  font-size: 14.5px;
}
.contact-form.sent .form-sent {
  display: block;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .row2 {
    grid-template-columns: 1fr;
  }
}

.todo-note {
  max-width: var(--maxw);
  margin: clamp(22px, 2.6vw, 34px) auto 0;
  padding: 0 var(--pad);
}
.todo-note span {
  display: block;
  padding: 12px 16px;
  background: rgba(191, 158, 91, 0.16);
  border-left: 3px solid var(--gold);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink);
}
.dark .todo-note span {
  color: var(--bone);
}

.nav-link.is-active {
  color: var(--gold);
}
.header.on-dark .nav-link.is-active {
  color: var(--gold-lt);
}
.nav-link.is-active::after {
  transform: scaleX(1);
}

.portrait-plate {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 32% 24%,
      rgba(191, 158, 91, 0.16),
      transparent 58%
    ),
    var(--ink-2);
}
.member-photo.portrait-plate {
  aspect-ratio: 4/5;
}
.jimmy-photo.portrait-plate {
  min-height: clamp(420px, 34vw, 560px);
}
.portrait-plate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/mark-gold.png') center 46% / auto 52% no-repeat;
  opacity: 0.13;
}
.portrait-plate::after {
  content: attr(data-initials);
  position: relative;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1;
  color: rgba(213, 167, 93, 0.9);
  letter-spacing: 0.08em;
  transform: translateY(38%);
}
.jimmy-photo.portrait-plate::after {
  font-size: clamp(52px, 6vw, 86px);
}

.video-poster {
  position: relative;
}
.video-poster img {
  filter: grayscale(0.3) brightness(0.82);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(58px, 6vw, 84px);
  height: clamp(58px, 6vw, 84px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 32, 24, 0.52);
  border: 1px solid rgba(213, 167, 93, 0.7);
  color: var(--gold-lt);
  backdrop-filter: blur(2px);
}
.video-play svg {
  width: 46%;
  height: 46%;
  margin-left: 6%;
}

.video-frame {
  max-width: var(--maxw);
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding: 0 var(--pad);
}
.video-inner {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  aspect-ratio: 16/9;
  background: var(--ink-2);
  border-radius: 2px;
}
.video-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.82);
}
.video-frame figcaption {
  max-width: 980px;
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}
.video-frame figcaption b {
  color: var(--ink);
  font-weight: 600;
}
.dark .video-frame figcaption {
  color: rgba(246, 242, 242, 0.7);
}
.dark .video-frame figcaption b {
  color: var(--bone);
}

.sec-tone {
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.sec-ink2 {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dk);
}

.sec-centered > .section-bar {
  padding-inline: var(--pad);
  text-align: center;
}
.sec-centered .sec-head {
  justify-content: center;
  text-align: center;
}
.sec-centered .sec-head .section-h {
  max-width: 24ch;
  flex: 0 1 auto;
  text-align: center;
}
.sec-centered .video-inner,
.sec-centered .video-frame figcaption {
  margin-inline: auto;
}
.sec-centered .video-frame figcaption {
  text-align: center;
}

.trans-lead {
  max-width: 66ch;
  margin: clamp(20px, 2.2vw, 30px) auto 0;
  padding: 0 var(--pad);
  text-align: center;
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 1.74;
  color: var(--muted);
}

.video-cta {
  max-width: var(--maxw);
  margin: clamp(28px, 3.2vw, 44px) auto 0;
  padding: 0 var(--pad);
  text-align: center;
}

.post {
  padding-bottom: var(--sec);
}
.post-wrap {
  max-width: 820px;
  margin: clamp(30px, 3.6vw, 52px) auto 0;
  padding: 0 var(--pad);
}
.post-wrap > p {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--ink);
  margin: 0 0 20px;
}
.post-wrap h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.3;
  margin: 34px 0 14px;
}
.post-fine {
  font-size: 12.5px !important;
  line-height: 1.6 !important;
  color: var(--muted) !important;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 30px !important;
}
.post-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.map-frame {
  max-width: var(--maxw);
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding: 0 var(--pad) var(--sec);
}
.map-frame iframe {
  display: block;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bone);
}
.map-frame figcaption {
  max-width: 980px;
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}
.map-frame figcaption b {
  color: var(--ink);
  font-weight: 600;
}
.map-frame figcaption a {
  color: var(--gold-dk);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.stories-note {
  max-width: var(--maxw);
  margin: clamp(26px, 3vw, 40px) auto 0;
  padding: 18px var(--pad) 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
}
.stories-note {
  border-top: 0;
}
.team .stories-note {
  padding-top: 0;
}

form label.check-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--muted);
}

.contact-form > .pill {
  justify-self: start;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 38px);
}
.cta-row .pill {
  margin-top: 0;
}

.video-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink-2);
}

.floating-book {
  display: none;
}
@media (max-width: 900px) {
  .floating-book {
    display: inline-flex;
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 40;
    padding: 12px 20px;
    font-size: 13px;
    box-shadow: 0 12px 30px -10px rgba(6, 32, 24, 0.55);
  }

  .bio-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .bio-contact {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 999px) {
  .jimmy-full .jimmy-copy {
    grid-row: 1;
  }
  .jimmy-full .jimmy-rail {
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  .ph-stories {
    object-position: 38% 24% !important;
  }
}

@media (max-width: 999px) {
  #about .jimmy {
    margin-top: clamp(60px, 14vw, 72px);
  }
}

.protected body {
  -webkit-user-select: none;
  user-select: none;
}
.protected img,
.protected video {
  -webkit-user-drag: none;
  user-drag: none;
}
.protected input,
.protected textarea,
.protected select,
.protected address,
.protected .selectable,
.protected .book-form,
.protected .contact-form,
.protected .news-form {
  -webkit-user-select: text;
  user-select: text;
}

.review-badge {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 65;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 9px 10px 9px 18px;
  font-size: 12.5px;
  line-height: 1.3;
  box-shadow: 0 14px 34px -10px rgba(6, 32, 24, 0.55);
  max-width: calc(100vw - 28px);
}
.review-badge button {
  width: 24px;
  height: 24px;
  flex: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(246, 242, 242, 0.14);
  color: var(--bone);
  font-size: 14px;
  line-height: 1;
}
.review-badge button:hover {
  background: var(--gold);
  color: var(--ink);
}
.review-menu {
  position: fixed;
  z-index: 80;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 24px 54px -20px rgba(6, 32, 24, 0.4);
}
.review-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 13px 18px;
  font-size: 14px;
  color: var(--ink);
}
.review-menu button:hover {
  color: var(--gold-dk);
}
.review-menu svg {
  width: 16px;
  height: 16px;
  color: var(--gold-dk);
  flex: none;
}
.comment-ctx {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.comment-ctx b {
  color: var(--gold-dk);
}
.comment-form {
  display: grid;
  gap: 14px;
}
.comment-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.comment-opt {
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
}
.comment-form input,
.comment-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  border-radius: 2px;
  font-family: inherit;
}
.comment-form textarea {
  resize: vertical;
  min-height: 150px;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.comment-sent {
  padding: 16px 18px;
  background: rgba(191, 158, 91, 0.14);
  border: 1px solid var(--gold);
  font-size: 14.5px;
}
.comment-error {
  font-size: 13px;
  line-height: 1.6;
  color: #8a2f2f;
  background: rgba(138, 47, 47, 0.08);
  border: 1px solid rgba(138, 47, 47, 0.3);
  padding: 12px 14px;
  margin: 14px 0 0;
}

.review-mode body,
.review-mode .modal {
  -webkit-user-select: text;
  user-select: text;
}

.step-arrow {
  display: block;
  margin-bottom: 22px;
  color: rgba(191, 158, 91, 0.55);
}
.step-arrow svg {
  width: clamp(40px, 4vw, 56px);
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .step-arrow svg {
    transform: rotate(90deg);
  }
}

.bf-row + .bf-row::before,
.bf-split .bf-node::before {
  width: 2px;
  background: rgba(213, 167, 93, 0.6);
}
.bf-split::after {
  height: 2px;
  background: rgba(213, 167, 93, 0.6);
}

.step-arrow {
  opacity: 0.18;
  transition: opacity 0.35s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  .steps .step:nth-child(1) .step-arrow {
    animation: flowLit 4s linear infinite;
    animation-delay: 0.5s;
  }
  .steps .step:nth-child(2) .step-arrow {
    animation: flowLit2 4s linear infinite;
    animation-delay: 0.5s;
  }
  .steps .step:nth-child(3) .step-arrow {
    animation: flowLit3 4s linear infinite;
    animation-delay: 0.5s;
  }
  .steps .step:nth-child(4) .step-arrow {
    animation: flowLit4 4s linear infinite;
    animation-delay: 0.5s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .step-arrow {
    opacity: 1;
  }
}

@keyframes flowLit {
  0% {
    opacity: 0.18;
  }
  1%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0.18;
  }
}
@keyframes flowLit2 {
  0%,
  12% {
    opacity: 0.18;
  }
  13%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0.18;
  }
}
@keyframes flowLit3 {
  0%,
  25% {
    opacity: 0.18;
  }
  26%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0.18;
  }
}
@keyframes flowLit4 {
  0%,
  37% {
    opacity: 0.18;
  }
  38%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0.18;
  }
}

.steps .step:nth-child(1) {
  transition-delay: 0s;
}
.steps .step:nth-child(2) {
  transition-delay: 0.4s;
}
.steps .step:nth-child(3) {
  transition-delay: 0.8s;
}
.steps .step:nth-child(4) {
  transition-delay: 1.2s;
}

.steps .step:nth-child(1) .step-arrow svg {
  transform: rotate(9deg);
}
.steps .step:nth-child(2) .step-arrow svg {
  transform: rotate(-9deg);
}
.steps .step:nth-child(3) .step-arrow svg {
  transform: rotate(9deg);
}
.steps .step:nth-child(4) .step-arrow svg {
  transform: none;
}

.page-disclosure {
  background: var(--bone);
  padding: 26px 0 30px;
}
.page-disclosure p {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  font-size: 12px;
  line-height: 1.68;
  color: #6d756f;
}

/* EC-BTN-104 + EC-NAV-121: Re-assert hero / CTA text-white on buttons & links.
   Uses class~= (word match) not class*= (substring) to avoid matching hover:text-white etc. */
button[class~='text-white/90'],
a[class~='text-white/90'] {
  color: rgba(255, 255, 255, 0.9);
}
button[class~='text-white/80'],
a[class~='text-white/80'] {
  color: rgba(255, 255, 255, 0.8);
}
button[class~='text-white/70'],
a[class~='text-white/70'] {
  color: rgba(255, 255, 255, 0.7);
}
button[class~='text-white/60'],
a[class~='text-white/60'] {
  color: rgba(255, 255, 255, 0.6);
}
button[class~='text-white/50'],
a[class~='text-white/50'] {
  color: rgba(255, 255, 255, 0.5);
}
button[class~='text-white/40'],
a[class~='text-white/40'] {
  color: rgba(255, 255, 255, 0.4);
}
button[class~='text-white'],
a[class~='text-white'] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* EC-ANIM-008b / EC-ANIM-009: carousel-only override — scroll-reveal elements animate via IO in functions.php */
.scroll-fade-up:has([aria-roledescription='carousel']),
.scroll-fade-up:has([data-wpconvert-blog-filter-bar]),
.scroll-fade-left:has([aria-roledescription='carousel']),
.scroll-fade-right:has([aria-roledescription='carousel']),
.scroll-scale-in:has([aria-roledescription='carousel']) {
  opacity: 1 !important;
  transform: none !important;
}
