/* INDEX HERO */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 150px 5vw 100px;
  text-align: left;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .35;
  background:
    radial-gradient(ellipse 55% 9% at 20% 32%, rgba(191,154,82,.09), transparent 72%),
    radial-gradient(ellipse 68% 10% at 70% 42%, rgba(200,50,28,.10), transparent 72%),
    radial-gradient(ellipse 60% 8% at 38% 72%, rgba(191,154,82,.07), transparent 72%);
  filter: blur(10px);
}

.hero > *:not(.orb):not(.hero-grid) {
  position: relative;
  z-index: 20;
}

.orb,
.hero-grid {
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  will-change: transform;
}

.orb-1 {
  width: 700px;
  height: 700px;
  top: -180px;
  right: -180px;
  background: radial-gradient(circle, rgba(200,50,28,.22) 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -80px;
  left: 5%;
  background: radial-gradient(circle, rgba(191,154,82,.12) 0%, transparent 70%);
  animation: orbFloat 13s ease-in-out infinite reverse;
}

.orb-3 {
  width: 350px;
  height: 350px;
  top: 35%;
  left: 38%;
  background: radial-gradient(circle, rgba(200,50,28,.1) 0%, transparent 70%);
  animation: orbFloat 16s ease-in-out infinite 3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(28px,-36px) scale(1.05); }
  66% { transform: translate(-18px,22px) scale(.97); }
}


.hero-eyebrow {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  margin-top: clamp(2.5rem, 7vh, 5.5rem);
  margin-bottom: 2rem;
  color: var(--red2);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: fadeUp .8s .1s both;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform-origin: left;
  animation: lineGrow 1.2s .3s both;
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-headline {
  align-self: flex-start;
  max-width: 15ch;
  margin: 0;
  color: var(--white);
  font-family: var(--font-d);
  font-size: clamp(4.6rem, 8.5vw, 8.5rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: 0;
  text-align: left;
  animation: fadeUp .9s .2s both;
}

.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--red2) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradShift 4s ease-in-out infinite;
}

@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-headline .ghost {
  -webkit-text-stroke: 1px rgba(245,240,235,.2);
  -webkit-text-fill-color: transparent;
}

.hero-bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: auto;
  padding-bottom: 3.8rem;
  animation: fadeUp 1s .35s both;
}

.hero-bottom > div:first-child {
  max-width: 560px;
}

.hero-desc {
  max-width: 480px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  margin-left: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 0;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hstat {
  text-align: right;
}

.hstat-num {
  color: var(--white);
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}

.hstat-num em {
  color: var(--red2);
  font-style: normal;
}

.hstat-label {
  margin-top: 3px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  left: 5vw;
  margin-left: 0;
  bottom: 2.7rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dim);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: fadeUp 1.2s .8s both;
}

.scroll-line {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: var(--dim);
}

.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-100%);
  animation: scrollPulse 2.2s ease-in-out infinite 1.5s;
}

@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}


/* TICKER */
.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: .85rem 0;
  background: var(--red);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  color: rgba(255,255,255,.8);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-sep {
  color: rgba(255,255,255,.35);
  font-size: .45rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* COMMON SECTIONS */
.section,
.cta-section,
.contact-strip,
.map-section {
  position: relative;
  z-index: 5;
}

.section {
  padding: 8rem 5vw;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  color: var(--red2);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.lbl-c {
  justify-content: center;
}

.lbl-c::before {
  display: none;
}

.lbl-c::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(270deg, var(--red), transparent);
}

h2.display {
  color: var(--white);
  font-family: var(--font-d);
  font-size: clamp(2.6rem,5vw,5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

h2.display em {
  font-style: italic;
  background: linear-gradient(135deg, var(--red2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body-text {
  color: var(--muted);
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.85;
}

/* PRICING */
.pricing-section {
  background: var(--bg2);
}

.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.p-toggle {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.tog-lbl {
  color: var(--dim);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: color .25s;
}

.tog-lbl.on {
  color: var(--white);
}

.tog-track {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--border);
  cursor: none;
  transition: background .3s;
}

.tog-track.annual {
  background: var(--red);
  border-color: var(--red);
}

.tog-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .3s cubic-bezier(.25,1,.5,1);
}

.tog-track.annual .tog-knob {
  transform: translateX(22px);
}

.save-pill,
.offer-tag {
  display: inline-block;
  border-radius: 2px;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.save-pill {
  padding: .25rem .65rem;
  background: var(--gold);
}

.offer-tag {
  margin-bottom: 1rem;
  padding: .25rem .7rem;
  background: var(--red);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.pricing-card {
  position: relative;
  padding: 3rem 2.5rem;
  background: var(--bg2);
  transition: background .3s, transform .3s;
}

.pricing-card:hover {
  background: var(--bg3);
  transform: translateY(-4px);
}

.pricing-card.hot {
  background: var(--bg);
}

.pricing-card.hot::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: .35rem 1rem;
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.plan-tier {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.plan-amount {
  margin-bottom: .25rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 4.2rem;
  font-weight: 300;
  line-height: 1;
}

.plan-amount sup {
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 300;
  vertical-align: super;
}

.plan-amount span {
  color: var(--muted);
  font-size: 1rem;
}

.plan-tagline {
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.65;
}

.plan-div {
  height: 1px;
  margin-bottom: 2rem;
  background: var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2.5rem;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.5;
}

.plan-features li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: .12rem;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
}

.plan-features li.is-included::before {
  content: "\2713";
  color: #55d678;
}

.plan-features li.is-excluded {
  color: rgba(245,240,235,.34);
}

.plan-features li.is-excluded::before {
  content: "\2212";
  color: var(--red2);
}

.plan-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: .9rem;
  border-radius: 2px;
  border: none;
  font-family: var(--font-b);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  transition: all .25s;
}

.plan-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s;
}

.plan-cta:hover::after {
  transform: translateX(100%);
}

.plan-cta-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.plan-cta-ghost:hover {
  border-color: rgba(200,50,28,.4);
  color: var(--white);
}

.plan-cta-solid {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 28px var(--red-glow);
}

.plan-cta-solid:hover {
  background: var(--red2);
  box-shadow: 0 0 50px var(--red-glow);
}

/* INTRO */
.intro-section {
  background: var(--bg);
  text-align: center;
}

.intro-section h2 {
  margin-bottom: 1.25rem;
  color: var(--red2);
  font-family: var(--font-d);
  font-size: clamp(1.6rem,3.5vw,2.8rem);
  font-style: italic;
  font-weight: 400;
}

.intro-section h3 {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: clamp(1.4rem,3vw,2.2rem);
  font-weight: 300;
  line-height: 1.3;
}

/* SERVICES */
.services-section {
  background: var(--bg2);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 5rem;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  cursor: none;
  text-decoration: none;
  transition: padding-left .35s cubic-bezier(.25,1,.5,1);
}

.service-row:focus-visible {
  outline: 2px solid rgba(232,71,46,.72);
  outline-offset: 6px;
}

.service-row:first-child {
  border-top: 1px solid var(--border);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200,50,28,.06) 0%, transparent 55%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.25,1,.5,1);
}

.service-row:hover,
.service-row:focus-visible {
  padding-left: 1rem;
}

.service-row:hover::before,
.service-row:focus-visible::before {
  transform: scaleX(1);
}

.svc-num,
.svc-name,
.svc-desc,
.svc-tags {
  position: relative;
}

.svc-num {
  color: var(--red2);
  font-family: var(--font-d);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .06em;
  transition: transform .3s;
}

.service-row:hover .svc-num,
.service-row:focus-visible .svc-num {
  transform: scale(1.15);
}

.svc-name {
  margin-bottom: .25rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0;
  transition: color .2s, letter-spacing .3s;
}

.service-row:hover .svc-name,
.service-row:focus-visible .svc-name {
  color: var(--gold);
  letter-spacing: .01em;
}

.svc-desc {
  max-width: 480px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.6;
}

.svc-tags {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.svc-tag {
  padding: .2rem .65rem;
  border: 1px solid var(--border);
  border-radius: 1px;
  color: var(--dim);
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}

.service-row:hover .svc-tag,
.service-row:focus-visible .svc-tag {
  border-color: rgba(200,50,28,.35);
  color: var(--muted);
}

/* PROCESS */
.process-section {
  background: var(--bg3);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 5% 50%, rgba(200,50,28,.07) 0%, transparent 60%);
}

.proc-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.proc-step {
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem;
  background: var(--bg3);
  text-align: center;
  transition: background .3s;
}

.proc-step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s;
}

.proc-step:hover {
  background: var(--bg2);
}

.proc-step:hover::after {
  transform: scaleX(1);
}

.pstep-num {
  margin-bottom: .25rem;
  color: rgba(200,50,28,.1);
  font-family: var(--font-d);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  transition: color .4s;
}

.proc-step:hover .pstep-num {
  color: rgba(200,50,28,.28);
}

.proc-step-img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 4px 14px rgba(200,50,28,.2));
}

.pstep-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: .7rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 400;
}

.pstep-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 10px var(--red); transform: scale(1); }
  50% { box-shadow: 0 0 20px var(--red), 0 0 40px rgba(200,50,28,.3); transform: scale(1.3); }
}

.pstep-desc {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.8;
}

/* STEPS */
.steps-section {
  background: var(--bg);
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8vw;
  align-items: center;
}

.steps-left h2 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: clamp(2.2rem,4.5vw,4rem);
  font-weight: 300;
  line-height: 1.05;
}

.steps-left h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--red2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-bullets {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 1.5rem 0 2rem;
  list-style: none;
}

.steps-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.65;
}

.steps-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

.steps-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.sstat-num {
  color: var(--white);
  font-family: var(--font-d);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.sstat-num em {
  color: var(--red2);
  font-style: normal;
}

.sstat-lbl {
  margin-top: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.steps-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem;
  background: var(--bg2);
  transition: background .3s;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height .4s;
}

.step-card:hover {
  background: var(--bg3);
}

.step-card:hover::before {
  height: 100%;
}

.step-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(200,50,28,.2));
}

.step-card h3 {
  margin-bottom: .55rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 400;
}

.step-card p {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.75;
}

/* PILLARS */
.pillars-section {
  background: var(--bg2);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 3.5rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg2);
  transition: background .4s;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.25,1,.5,1);
}

.pillar-card:hover {
  background: var(--bg3);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-canvas {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.pillar-geo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity .4s, transform .6s cubic-bezier(.25,1,.5,1);
}

.pillar-card:hover .pillar-geo {
  opacity: 1;
  transform: scale(1.04);
}

.pillar-canvas-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  width: fit-content;
  padding: .3rem .7rem;
  border: 1px solid rgba(200,50,28,.2);
  border-radius: 2px;
  background: rgba(10,9,8,.6);
  color: var(--red2);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pillar-big-num {
  align-self: flex-end;
  color: transparent;
  font-family: var(--font-d);
  font-size: 7rem;
  font-weight: 300;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  transition: -webkit-text-stroke-color .4s;
}

.pillar-card:hover .pillar-big-num {
  -webkit-text-stroke-color: rgba(200,50,28,.18);
}

.pillar-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem 2.25rem 2.25rem;
}

.pillar-body h3 {
  margin-bottom: .75rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
  transition: color .25s;
}

.pillar-card:hover .pillar-body h3 {
  color: var(--gold);
}

.pillar-body p {
  flex: 1;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.8;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  color: var(--red2);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap .2s, color .2s;
}

.pillar-link:hover {
  gap: .75rem;
  color: var(--gold);
}

/* GOALS */
.goals-section {
  background: var(--bg);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 3rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.goal-card {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.75rem;
  background: var(--bg2);
  text-align: center;
  transition: background .3s;
}

.goal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.goal-card:hover {
  background: var(--bg3);
}

.goal-card:hover::before {
  transform: scaleX(1);
}

.goal-icon {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(200,50,28,.25));
}

.goal-card h3 {
  margin-bottom: .55rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
}

.goal-card p {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.7;
}

/* CTA */
.cta-section {
  overflow: hidden;
  padding: 10rem 5vw;
  background: var(--bg2);
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(200,50,28,.11) 0%, transparent 65%);
}

.cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(200,50,28,.15) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  animation: ctaOrb 5s ease-in-out infinite;
}

@keyframes ctaOrb {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .8; }
  50% { transform: translate(-50%,-50%) scale(1.3); opacity: 1; }
}

.cta-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  font-family: var(--font-d);
  font-size: clamp(8rem,20vw,24rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  -webkit-text-stroke: 1px rgba(255,255,255,.028);
  transform: translate(-50%,-50%);
  animation: bgWordDrift 12s ease-in-out infinite;
}

@keyframes bgWordDrift {
  0%, 100% { transform: translate(-50%,-50%) rotate(-2deg) scale(1); }
  50% { transform: translate(-50%,-50%) rotate(2deg) scale(1.04); }
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner .section-label {
  justify-content: center;
}

.cta-inner .display {
  margin: 0 auto 1.5rem;
}

.cta-inner .body-text {
  max-width: 460px;
  margin: 0 auto 3rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* CONTACT STRIP */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  padding: 5rem 5vw;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.cs-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  text-align: center;
  transition: border-color .25s, background .25s;
}

.cs-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.cs-item:hover {
  border-color: rgba(200,50,28,.3);
  background: rgba(200,50,28,.03);
}

.cs-item:hover::before {
  transform: scaleX(1);
}

.cs-icon {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(200,50,28,.3));
}

.cs-title {
  margin-bottom: .5rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 400;
}

.cs-desc {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.7;
}

.cs-desc a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.cs-desc a:hover {
  color: var(--white);
}

.cs-desc strong {
  color: var(--white);
  font-weight: 500;
}

.contact-kicker {
  margin-bottom: .75rem;
  color: var(--red2);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* MAP */
.map-section {
  overflow: hidden;
  padding: 6rem 5vw 5rem;
  background: var(--bg);
}

.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,50,28,.05) 0%, transparent 70%);
}

.map-outer {
  position: relative;
  overflow: visible;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

#office-map {
  z-index: 1;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg3);
}

.leaflet-container {
  background: #080706 !important;
  font-family: var(--font-b);
}

.leaflet-tile-pane {
  filter: brightness(.35) contrast(1.35) saturate(.5) hue-rotate(195deg) invert(1) hue-rotate(180deg);
}

.leaflet-control-zoom a {
  background: rgba(14,12,10,.95) !important;
  color: var(--muted) !important;
  border-color: var(--border) !important;
  transition: all .2s;
}

.leaflet-control-zoom a:hover {
  background: var(--red) !important;
  color: #fff !important;
  border-color: var(--red) !important;
}

.leaflet-control-attribution {
  background: rgba(8,7,6,.8) !important;
  color: var(--dim) !important;
  font-size: .58rem !important;
}

.leaflet-control-attribution a {
  color: var(--dim) !important;
}

.office-marker {
  position: relative;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.marker-dot {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px 2px rgba(200,50,28,.7), 0 0 0 0 rgba(200,50,28,.5);
  animation: markerPulse 2.2s ease-out infinite;
  transition: transform .2s;
}

.office-marker:hover .marker-dot {
  transform: scale(1.6);
  box-shadow: 0 0 22px 6px rgba(200,50,28,.85), 0 0 0 0 rgba(200,50,28,.5);
}

@keyframes markerPulse {
  0% { box-shadow: 0 0 12px 2px rgba(200,50,28,.7), 0 0 0 0 rgba(200,50,28,.6); }
  60% { box-shadow: 0 0 20px 4px rgba(200,50,28,.5), 0 0 0 20px rgba(200,50,28,0); }
  100% { box-shadow: 0 0 12px 2px rgba(200,50,28,.7), 0 0 0 0 rgba(200,50,28,0); }
}

.marker-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,50,28,.5);
  animation: ringExpand 2.2s ease-out infinite .5s;
}

@keyframes ringExpand {
  0% { transform: scale(.5); opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; }
}

.city-card {
  position: absolute;
  z-index: 600;
  width: 340px;
  padding: 1.6rem 1.75rem;
  background: rgba(8,7,6,.97);
  border: 1px solid var(--border);
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  transition: opacity .25s, transform .25s;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0,0,0,.85);
}

.city-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.city-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 3px 3px 0 0;
}

.city-card-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.1rem;
}

.city-card-pin {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: dotPulse 2s ease-in-out infinite;
}

.city-card-name {
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.city-card-sub {
  margin-top: 2px;
  color: var(--red2);
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.city-card-info-block {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .9rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.city-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
}

.city-info-label {
  flex-shrink: 0;
  color: var(--dim);
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.city-info-val {
  max-width: 200px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 300;
  text-align: right;
  text-decoration: none;
  word-break: break-all;
  transition: color .2s;
}

a.city-info-val:hover {
  color: var(--white);
}

.city-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--red2);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap .2s, color .2s;
}

.city-card-cta:hover {
  gap: .6rem;
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1500px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 140px 5vw 4.5rem;
  }

  .hero-eyebrow {
    margin-top: clamp(1.4rem, 5vh, 4rem);
  }

  .hero-headline {
    max-width: 13ch;
    font-size: clamp(4.3rem, 8.8vw, 7.5rem);
  }

  .hero-bottom {
    width: min(860px, 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2.4rem;
    margin-top: clamp(3rem, 7vh, 5rem);
    padding-bottom: 7rem;
  }

  .hero-right {
    align-items: flex-start;
    margin-left: 0;
  }

  .hero-stats {
    display: none;
  }

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

  .scroll-hint {
    position: absolute;
    left: 5vw;
    bottom: 4.2rem;
    margin-top: 0;
  }
}

@media (max-width: 1100px) {
  .services-intro,
  .steps-layout {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
  }

  .svc-tags {
    display: none;
  }

  .proc-grid,
  .goals-grid,
  .steps-cards {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
    margin: 0 auto;
  }

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

  .pillar-canvas {
    height: 220px;
  }
}


@media (max-width: 768px) {
  .section {
    padding: 6rem 5vw;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-headline {
    font-size: clamp(4rem, 15vw, 6rem);
  }

  .hero-actions {
    gap: .85rem;
    flex-wrap: wrap;
  }

  .scroll-hint {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: clamp(3rem, 6vh, 4.5rem);
  }

  .btn-red,
  .btn-ghost {
    min-width: min(100%, 360px);
  }

  #office-map {
    height: 360px;
  }

  .city-card {
    width: 300px;
    padding: 1.4rem 1.5rem;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .btn-red,
  .btn-ghost,
  .plan-cta,
  .tog-track,
  .service-row {
    cursor: pointer;
  }

  .hero {
    padding: 112px 4.6vw 3.5rem;
  }

  .hero-eyebrow {
    gap: 10px;
    font-size: .62rem;
    letter-spacing: .15em;
  }

  .eyebrow-line {
    width: 34px;
  }

  .hero-headline {
    font-size: clamp(3.65rem, 16vw, 5rem);
  }

  .hero-desc {
    font-size: .94rem;
  }

  .hero-bottom {
    margin-top: 3rem;
    gap: 2rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-red,
  .hero-actions .btn-ghost {
    width: 100%;
  }

  .services-intro {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: .85rem;
    padding: 1.35rem 0;
  }

  .service-row:hover,
  .service-row:focus-visible {
    padding-left: .65rem;
  }

  .svc-num {
    font-size: .78rem;
  }

  .svc-name {
    font-size: 1.4rem;
  }

  .svc-desc {
    max-width: none;
    font-size: .84rem;
  }

  .proc-grid,
  .pillars-grid,
  .steps-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {

  .hero {
    padding-inline: 20px;
  }

  .hero-headline {
    font-size: clamp(3.1rem, 18vw, 4.2rem);
  }

  .hero-eyebrow {
    align-items: flex-start;
  }

  .scroll-hint {
    font-size: .62rem;
    letter-spacing: .12em;
  }

  .goals-grid,
  .proc-grid,
  .steps-cards {
    grid-template-columns: 1fr;
  }

  .city-card {
    width: 220px;
    padding: 1rem;
  }

  .city-card-name {
    font-size: .95rem;
  }

  .pillar-canvas {
    height: 180px;
  }

  .pillar-big-num {
    font-size: 5rem;
  }
}
