:root {
  --light: #ffffff;
  --dark: #000000;
  --cream: #f6f1e6;
  --cream-deep: #efe7d5;
  --ink: #161c27;
  --ink-soft: #222a39;
  --ink-line: rgba(246, 241, 230, 0.14);
  --bronze: #a86b25;
  --gold: #d89a3e;
  --gold-bright: #faa632;
  --gold-pale: #f4d9a6;
  --stone: #dcd2b9;
  --text: #2a2822;
  --text-soft: #5b584e;
  --text-oncream-muted: #736f60;
  --max: 1180px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 22px;
  }
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--bronze);
}
.eyebrow.on-dark {
  color: var(--gold-pale);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--bronze));
  color: #181307;
}
.btn-gold:hover {
  box-shadow: 0 14px 30px -10px rgba(168, 107, 37, 0.55);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 230, 0.35);
}
.btn-ghost-dark:hover {
  border-color: var(--gold-bright);
  color: var(--gold-pale);
}
.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: rgba(22, 28, 39, 0.25);
}
.btn-ghost-light:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

/* ---------- NAV ---------- */
header.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.site-nav.solid {
  padding: 14px 0;
  border-bottom: 1px solid var(--stone);
}
header.site-nav.solid::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 34px;
  transition: filter 0.4s ease;
}
.nav-logo-mark {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
header.site-nav:not(.solid) .logo-on-light {
  display: none;
}
header.site-nav.solid .logo-on-dark {
  display: none;
}

nav.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}
nav.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--cream);
  opacity: 0.85;
  position: relative;
  padding: 4px 0;
  transition:
    opacity 0.3s,
    color 0.3s;
}
header.site-nav.solid nav.nav-links a {
  color: var(--ink);
  opacity: 0.75;
}
nav.nav-links a:hover {
  opacity: 1;
}
nav.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: var(--gold-bright);
  transition: width 0.3s ease;
}
nav.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-cta .btn {
  padding: 11px 22px;
  font-size: 13px;
}
header.site-nav:not(.solid) .btn-ghost-light {
  display: none;
}
header.site-nav.solid .btn-ghost-dark {
  display: none;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 600;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
header.site-nav.solid .burger span {
  background: var(--ink);
}
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 960px) {
  nav.nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  nav.nav-links.open {
    transform: translateX(0);
  }
  nav.nav-links a {
    color: var(--cream) !important;
    font-size: 20px;
    opacity: 1;
  }
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at 75% 18%, #262f42 0%, var(--ink) 55%, #0f131b 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(246, 241, 230, 0.035) 0px,
      rgba(246, 241, 230, 0.035) 1px,
      transparent 1px,
      transparent 120px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(246, 241, 230, 0.035) 0px,
      rgba(246, 241, 230, 0.035) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-copy .eyebrow .rule {
  width: 38px;
  height: 1px;
  background: var(--gold-bright);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: 1.04;
  font-weight: 400;
  margin-bottom: 26px;
  color: var(--cream-deep);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--gold-pale), var(--gold-bright) 55%, var(--bronze));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 18px;
  color: rgba(246, 241, 230, 0.78);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
@media (max-width: 640px) {
  .hero-actions {
    justify-content: center;
    width: 100%;
  }
}

.hero-proof {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
  max-width: 520px;
}
.hero-proof div strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-pale);
  font-weight: 500;
}
.hero-proof div span {
  font-size: 12px;
  color: rgba(246, 241, 230, 0.55);
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.compass-hero {
  width: min(92%, 440px);
  animation: heroFloat 9s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.2deg);
  }
}
.compass-hero .needle-group {
  transform-origin: 100px 100px;
  animation: needleSway 7s ease-in-out infinite;
}
@keyframes needleSway {
  0%,
  100% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.5);
}
.scroll-hint .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-bright), transparent);
  animation: hintMove 2.2s ease-in-out infinite;
}
@keyframes hintMove {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

/* ---------- Fixed compass guide ---------- */
.compass-guide {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 66px;
  height: 66px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.compass-guide.show {
  opacity: 1;
  pointer-events: auto;
}
.compass-guide:hover,
.compass-guide:focus-visible {
  transform: translateY(-50%) scale(1.08);
}
.compass-guide:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
  border-radius: 50%;
}
.compass-guide .to-top-label {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  margin-right: 12px;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(22, 28, 39, 0.9);
  padding: 7px 12px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.compass-guide:hover .to-top-label,
.compass-guide:focus-visible .to-top-label {
  opacity: 1;
}
.compass-guide svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}
.compass-guide .needle-mini {
  transform-origin: 50px 50px;
  transition: transform 0.12s linear;
}
@media (max-width: 960px) {
  .compass-guide {
    display: none;
  }
}

/* ---------- SECTION generic ---------- */
section {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 640px) {
  section {
    padding: 76px 0;
  }
}
.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head .eyebrow {
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.16;
}
.section-head p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 16.5px;
  max-width: 560px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- QUESTION section ---------- */
.question-sec {
  background: var(--cream);
  text-align: center;
  padding: 150px 0 130px;
}
.question-sec .compass-tick {
  width: 46px;
  margin: 0 auto 30px;
  opacity: 0.85;
}
.question-sec h2 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.18;
  max-width: 920px;
  margin: 0 auto;
}
.question-sec h2 .accent {
  font-style: italic;
  color: var(--bronze);
}
.question-sec .sub {
  margin-top: 28px;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- QUEM SOMOS ---------- */
.mission {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 217, 166, 0.08), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(168, 107, 37, 0.1), transparent 55%);
  pointer-events: none;
}
.mission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 860px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.mission-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-pale);
  position: sticky;
  top: 120px;
}
.mission-text p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.5;
  color: rgba(246, 241, 230, 0.94);
}
.mission-text p + p {
  margin-top: 26px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  color: rgba(246, 241, 230, 0.68);
  line-height: 1.8;
}

/* ---------- SOBRE VIVIANE ---------- */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.about-badge {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2b3346, var(--ink) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px -20px rgba(22, 28, 39, 0.35);
}

/* ---------- PROFILE PHOTO (Viviane) ---------- */
.profile {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 3/3.6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(22, 28, 39, 0.35);
}
.profile::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(168, 107, 37, 0.25);
  pointer-events: none;
}
.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.about-badge svg {
  width: 88%;
  height: 88%;
}
.about-badge .monogram {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  fill: var(--gold-pale);
}

.about-copy .eyebrow {
  margin-bottom: 16px;
}
.about-copy h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  margin-bottom: 8px;
}
.about-copy .role {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.about-copy p {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 18px;
}
.about-credentials {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--stone);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 26px;
}
@media (max-width: 520px) {
  .about-credentials {
    grid-template-columns: 1fr;
  }
}
.about-credentials li {
  font-size: 13.8px;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.about-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
}

/* ---------- COMPASS DIRECTIONS (isso pode envolver) ---------- */
.directions {
  background: var(--cream-deep);
}
.compass-wheel-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 920px) {
  .compass-wheel-wrap {
    grid-template-columns: 1fr;
  }
}
.compass-wheel {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 1/1;
}
.compass-wheel svg {
  width: 100%;
  height: 100%;
}
.direction-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 40px;
}
@media (max-width: 520px) {
  .direction-list {
    grid-template-columns: 1fr;
  }
}
.direction-item .pt {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bronze);
  margin-bottom: 10px;
  display: block;
}
.direction-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.direction-item p {
  font-size: 14.5px;
  color: var(--text-soft);
}

/* ---------- SERVICES TABS ---------- */
.services {
  background: var(--cream);
}
.tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: var(--cream-deep);
  border-radius: 40px;
  margin-bottom: 50px;
}
.tab-btn {
  border: none;
  background: transparent;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.35s;
}
.tab-btn.active {
  background: var(--ink);
  color: var(--gold-pale);
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.service-index {
  border-top: 1px solid var(--stone);
}
.service-row {
  border-bottom: 1px solid var(--stone);
  padding: 34px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  transition: background 0.3s;
}
.service-row:hover {
  background: rgba(168, 107, 37, 0.045);
}
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  opacity: 0.8;
}
.service-body h3 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-body p {
  color: var(--text-soft);
  font-size: 15px;
  max-width: 680px;
}
.service-body .tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bronze);
  font-weight: 700;
  border: 1px solid var(--stone);
  padding: 5px 12px;
  border-radius: 20px;
}
.service-meta {
  margin-top: 16px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.service-meta span {
  font-size: 12.8px;
  color: var(--text-oncream-muted);
}
.service-meta b {
  color: var(--text);
  font-weight: 600;
}
.mini-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mini-list li {
  font-size: 14.3px;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
}
.mini-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bronze);
}
.result-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.result-list li {
  font-size: 13.6px;
  color: var(--text-soft);
  padding-left: 16px;
  position: relative;
}
.result-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--gold-bright);
  border-radius: 50%;
}

.bepro-banner {
  margin-top: 36px;
  padding: 30px 34px;
  border-radius: 4px;
  background: linear-gradient(120deg, var(--ink), #232c3d);
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.bepro-banner .badge {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold-pale);
  border: 1px solid rgba(246, 241, 230, 0.25);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bepro-banner p {
  color: rgba(246, 241, 230, 0.72);
  font-size: 14.5px;
  max-width: 560px;
}
.bepro-banner strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--cream);
  margin-bottom: 6px;
  font-weight: 500;
}

/* ---------- DIFERENCIAIS ---------- */
.diff {
  background: var(--ink);
  color: var(--cream);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
}
@media (max-width: 920px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}
.diff-cell {
  background: var(--ink);
  padding: 38px 30px;
}
.diff-cell .n {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 20px;
  display: block;
}
.diff-cell p {
  color: rgba(246, 241, 230, 0.75);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- RESULTADOS ---------- */
.results {
  background: var(--cream-deep);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.stat {
  text-align: left;
  padding-top: 22px;
  border-top: 2px solid var(--bronze);
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat .num .suffix {
  font-size: 0.42em;
  color: var(--bronze);
}
.stat p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
  max-width: 280px;
}
@media (max-width: 760px) {
  .stat {
    text-align: center;
  }
  .stat .num {
    justify-content: center;
  }
  .stat p {
    margin-left: auto;
    margin-right: auto;
  }
}
.results-foot {
  font-size: 15px;
  color: var(--text-soft);
  border-top: 1px solid var(--stone);
  padding-top: 26px;
}

/* ---------- CTA / FOOTER ---------- */
.cta {
  background: radial-gradient(ellipse at 30% 20%, #262f42, var(--ink) 60%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta .compass-cta {
  width: 64px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 54px);
  color: var(--cream);
  max-width: 840px;
  margin: 0 auto 34px;
  line-height: 1.2;
}
.cta h2 em {
  font-style: italic;
  color: var(--gold-pale);
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

footer {
  background: var(--ink);
  color: rgba(246, 241, 230, 0.6);
  padding: 60px 0 34px;
  border-top: 1px solid var(--ink-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }
}
.footer-logo {
  height: 32px;
  margin-bottom: 18px;
}
.footer-grid p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  color: var(--cream);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 14.5px;
  margin-bottom: 12px;
  color: rgba(246, 241, 230, 0.68);
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--gold-pale);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-line);
  font-size: 12.5px;
  color: rgba(246, 241, 230, 0.4);
}
@media (max-width: 760px) {
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid p {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

::selection {
  background: var(--gold-bright);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
