:root {
  color-scheme: dark;
  --navy: #000b1c;
  --navy-elevated: #00152b;
  --navy-card: #061f3b;
  --navy-surface: #0a2d4d;
  --gold: #e6b84b;
  --gold-light: #f7d36c;
  --gold-bright: #ffe98a;
  --gold-deep: #b78924;
  --gold-metallic: #d7a438;
  --ivory: #fff4d6;
  --slate: #6d88a6;
  --slate-light: #b5c1cf;
  --text-muted: #b5c1cf;
  --text-subtle: #748296;
  --border: rgb(230 184 75 / 0.2);
  --border-soft: rgb(230 184 75 / 0.09);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --container: 100vw;
  --gutter: 40px;
  --section-y: clamp(5.5rem, 12vh, 9rem);
  --radius-sm: 10px;
  --radius-image: 16px;
  --radius-card: 20px;
  --radius-pill: 100px;
  --shadow-card: 0 24px 80px rgb(0 0 0 / 0.22);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: clip;
  background: var(--navy);
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--navy);
  border-radius: 99px;
  background: var(--gold-deep);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

main {
  position: relative;
}

.container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section-anchor {
  position: absolute;
  top: 12%;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 20000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  background: var(--ivory);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 220ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

/* Loading and fixed interface */
.site-loader {
  position: fixed;
  z-index: 15000;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--navy);
}

.site-loader::before,
.site-loader::after {
  position: absolute;
  border: 1px solid var(--border-soft);
  content: "";
}

.site-loader::before {
  inset: 22px;
}

.site-loader::after {
  inset: 32px;
  border-color: rgb(230 184 75 / 0.06);
}

.site-loader__inner {
  display: grid;
  width: min(280px, calc(100vw - 4rem));
  justify-items: center;
  gap: 1.125rem;
}

.site-loader__line {
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgb(255 244 214 / 0.12);
}

.site-loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
}

.site-loader__value {
  color: var(--text-subtle);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.page-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: rgb(255 244 214 / 0.04);
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  box-shadow: 0 0 18px rgb(230 184 75 / 0.6);
  transform: scaleX(0);
  transform-origin: left;
}

.cursor-glow {
  position: fixed;
  z-index: 35;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgb(230 184 75 / 0.075), transparent 68%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

/* Brand and navigation */
.site-header {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ivory);
  transition:
    background 400ms ease,
    border-color 400ms ease,
    transform 500ms var(--ease-expo);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--border-soft);
  background: rgb(0 11 28 / 0.82);
  backdrop-filter: blur(20px) saturate(130%);
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.site-header__inner {
  width: 100%;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand__logo {
  display: block;
  width: clamp(158px, 13.5vw, 194px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.brand__logo--footer {
  width: clamp(180px, 16vw, 224px);
  max-height: none;
}

.site-loader__logo {
  display: block;
  width: min(260px, 72vw);
  aspect-ratio: 426 / 381;
  filter: drop-shadow(0 0 20px rgb(230 184 75 / 0.18));
}

.site-loader__logo svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.site-loader__stroke {
  fill: transparent;
  stroke: var(--gold-light);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-loader__fill {
  fill: var(--gold-light);
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 36px;
  display: block;
  flex: 0 0 auto;
  color: var(--gold-light);
  font-family: var(--font-display);
  filter: drop-shadow(0 0 12px rgb(230 184 75 / 0.25));
}

.brand-mark span {
  position: absolute;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.brand-mark span:first-child {
  top: -1px;
  left: 2px;
}

.brand-mark span:last-child {
  right: 0;
  bottom: -2px;
  font-style: italic;
}

.brand-mark::after {
  position: absolute;
  right: -2px;
  bottom: 2px;
  left: -1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: rotate(-5deg);
}

.brand-mark--loader {
  width: 68px;
  height: 61px;
  transform: scale(1.35);
}

.brand-mark--loader span {
  font-size: 3.4rem;
}

.brand-copy {
  display: grid;
  gap: 0.13rem;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}

.brand-copy small {
  color: rgb(255 244 214 / 0.6);
  font-size: 0.53rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.3vw, 2.4rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.7rem;
  color: rgb(255 244 214 / 0.72);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 400ms var(--ease-expo);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ivory);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.8rem;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 450ms var(--ease-expo),
    box-shadow 450ms ease,
    border-color 450ms ease,
    background 450ms ease,
    letter-spacing 450ms var(--ease-expo);
}

.nav-cta {
  min-height: 46px;
  padding: 0.75rem 1.4rem;
  border-color: rgb(230 184 75 / 0.45);
  background: rgb(0 11 28 / 0.32);
  backdrop-filter: blur(12px);
}

.nav-cta::before {
  position: absolute;
  inset: -120% -45%;
  content: "";
  background: linear-gradient(
    100deg,
    transparent 40%,
    rgb(255 233 138 / 0.4) 50%,
    transparent 60%
  );
  transform: translateX(-55%) rotate(8deg);
  transition: transform 900ms var(--ease-expo);
}

.nav-cta:hover::before {
  transform: translateX(55%) rotate(8deg);
}

.nav-cta:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 36px rgb(230 184 75 / 0.2);
  transform: translateY(-2px);
}

.nav-cta span,
.nav-cta svg {
  position: relative;
}

.nav-cta svg,
.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 350ms var(--ease-expo);
}

.nav-cta:hover svg,
.button:hover svg {
  transform: translateX(4px);
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(
    135deg,
    var(--gold-deep),
    var(--gold) 50%,
    var(--gold-light)
  );
  color: var(--navy);
  box-shadow: 0 8px 30px rgb(230 184 75 / 0.24);
}

.button--primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-deep)
  );
  opacity: 0;
  transition: opacity 450ms ease;
}

.button--primary:hover {
  box-shadow: 0 14px 46px rgb(230 184 75 / 0.34);
}

.button--primary:hover::before {
  opacity: 1;
}

.button--primary span,
.button--primary svg {
  position: relative;
}

.button--ghost {
  border-color: rgb(255 244 214 / 0.28);
  background: rgb(0 11 28 / 0.16);
  color: var(--ivory);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: var(--gold-light);
  background: rgb(230 184 75 / 0.12);
}

.button--outline {
  border-color: rgb(230 184 75 / 0.55);
  background: rgb(230 184 75 / 0.055);
  color: var(--ivory);
}

.button--square {
  border-radius: 0;
}

.button--outline:hover {
  border-color: var(--gold-light);
  background: rgb(230 184 75 / 0.14);
  box-shadow: 0 10px 38px rgb(230 184 75 / 0.14);
  letter-spacing: 0.14em;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgb(0 11 28 / 0.45);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 350ms var(--ease-expo);
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 1050;
  inset: 0;
  display: none;
  padding: calc(var(--header-h) + 3.5rem) var(--gutter) 2rem;
  visibility: hidden;
  background: var(--navy);
  opacity: 0;
}

.mobile-menu__glow {
  position: absolute;
  right: -25vw;
  bottom: -20vw;
  width: 80vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(230 184 75 / 0.12), transparent 66%);
}

.mobile-menu nav {
  position: relative;
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.75rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 4rem);
  line-height: 1;
}

.mobile-menu nav a span {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.mobile-menu__cta {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  padding-inline: 3.25rem;
  font-size: 16px;
  text-align: center;
}

.mobile-menu__cta svg {
  position: absolute;
  right: 1.25rem;
  width: 17px;
  height: 17px;
}

.mobile-menu__footer {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  left: var(--gutter);
  display: flex;
  justify-content: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
  color: var(--text-subtle);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgb(230 184 75 / 0.35);
  border-radius: var(--radius-pill);
  background: rgb(0 21 43 / 0.84);
  color: var(--ivory);
  box-shadow: 0 14px 40px rgb(0 0 0 / 0.25);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition:
    width 420ms var(--ease-expo),
    gap 420ms var(--ease-expo),
    padding 420ms var(--ease-expo),
    transform 350ms var(--ease-expo),
    border-color 350ms ease,
    background 350ms ease;
}

.whatsapp-float span {
  width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(8px);
  transition:
    width 420ms var(--ease-expo),
    opacity 220ms ease,
    transform 420ms var(--ease-expo);
}

.whatsapp-float svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .whatsapp-float:is(:hover, :focus-visible) {
    width: 198px;
    gap: 0.65rem;
    padding-inline: 1rem;
    border-color: var(--gold-light);
    background: var(--navy-elevated);
    transform: translateY(-4px);
  }

  .whatsapp-float:is(:hover, :focus-visible) span {
    width: 124px;
    opacity: 1;
    transform: translateX(0);
  }
}

/* Global typography */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.45rem;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.display-title {
  max-width: 980px;
  margin-bottom: 1.6rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.1vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.post-scroll-title {
  line-height: 1.2;
}

.display-title em,
.final-cta h2 em,
.hero__title em {
  color: var(--gold-light);
  font-weight: 400;
}

.body-large {
  color: rgb(255 244 214 / 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 300;
  line-height: 1.75;
}

.body-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgb(230 184 75 / 0.55);
  background: rgb(230 184 75 / 0.055);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.text-link::before {
  content: none;
}

.text-link::after {
  content: none;
}

.text-link:hover {
  border-color: var(--gold-light);
  background: rgb(230 184 75 / 0.14);
  box-shadow: 0 10px 38px rgb(230 184 75 / 0.14);
  color: var(--ivory);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.68fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(3.5rem, 8vw, 6.5rem);
}

.section-heading--split .display-title {
  margin-bottom: 0;
}

.section-heading--split > p {
  max-width: 52ch;
  margin-bottom: 0.3rem;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

/* Hero frame experience */
.experience {
  position: relative;
  min-height: 100svh;
  background: var(--navy);
}

.experience-stage {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #07101a;
  isolation: isolate;
}

#frameCanvas,
.experience-fallback {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(0 11 28 / 0.82) 0%,
      rgb(0 11 28 / 0.34) 48%,
      rgb(0 11 28 / 0.06) 73%
    ),
    linear-gradient(
      0deg,
      rgb(0 11 28 / 0.7),
      transparent 45%,
      rgb(0 11 28 / 0.28)
    );
  transition: opacity 300ms linear;
}

.hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(4.8rem, 10vh, 7.5rem);
}

.hero__eyebrow {
  width: max-content;
  margin-bottom: 1.2rem;
  padding: 0.52rem 0.85rem;
  border: 1px solid rgb(230 184 75 / 0.28);
  border-radius: var(--radius-pill);
  background: rgb(0 11 28 / 0.34);
  color: var(--gold-light);
  backdrop-filter: blur(10px);
}

.hero__eyebrow::before {
  display: none;
}

.hero__title {
  max-width: min(1120px, 86vw);
  margin-bottom: 1.35rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero__copy {
  max-width: 610px;
  margin-bottom: 1.7rem;
  color: rgb(255 244 214 / 0.8);
  font-size: clamp(0.93rem, 1.3vw, 1.08rem);
  font-weight: 300;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  color: rgb(255 244 214 / 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__trust i,
.final-cta small i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.chapter-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(5rem, 11vh, 8rem);
  pointer-events: none;
}

.chapter {
  position: absolute;
  bottom: clamp(5rem, 11vh, 8rem);
  left: var(--gutter);
  width: min(1040px, calc(100% - 2 * var(--gutter)));
  visibility: hidden;
  opacity: 0;
  transform: translateY(45px);
}

.chapter__label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter__label i {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.chapter h2 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.7vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.chapter > p:not(.chapter__label) {
  max-width: 500px;
  margin-bottom: 0;
  color: rgb(255 244 214 / 0.74);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
}

.chapter a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  min-height: 44px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgb(230 184 75 / 0.55);
  background: rgb(230 184 75 / 0.055);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: auto;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.chapter a:hover {
  border-color: var(--gold-light);
  background: rgb(230 184 75 / 0.14);
  box-shadow: 0 10px 38px rgb(230 184 75 / 0.14);
  color: var(--ivory);
}

.experience-ui {
  position: absolute;
  right: clamp(1rem, 2.3vw, 2.5rem);
  bottom: clamp(5rem, 11vh, 8rem);
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  color: rgb(255 244 214 / 0.62);
}

.experience-ui__word {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.experience-ui__rail {
  width: 1px;
  height: 120px;
  overflow: hidden;
  background: rgb(255 244 214 / 0.18);
}

.experience-ui__rail i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--gold-light), var(--gold-deep));
  transform: scaleY(0);
  transform-origin: top;
}

.experience-ui__count {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.experience-ui__count b {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--border-soft);
  background: var(--navy);
}

.marquee__track {
  width: max-content;
  display: flex;
  padding-block: 1.7rem;
  animation: marquee-loop 38s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-inline: 1.25rem;
  white-space: nowrap;
}

.marquee__group span {
  color: rgb(255 244 214 / 0.48);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.1vw, 1.7rem);
}

.marquee__group i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgb(230 184 75 / 0.45);
}

@keyframes marquee-loop {
  to {
    transform: translateX(-50%);
  }
}

/* Positioning */
.positioning {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgb(10 45 77 / 0.45), transparent 32%),
    var(--navy);
}

.positioning::before {
  position: absolute;
  top: 8%;
  right: -3%;
  color: rgb(230 184 75 / 0.03);
  content: "ESCUTA";
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 16rem);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}

.positioning__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.positioning__copy {
  position: relative;
  z-index: 2;
}

.positioning__copy .body-large {
  max-width: 44ch;
  margin-top: 2rem;
}

.positioning__copy .body-copy {
  max-width: 44ch;
  margin-bottom: 1.5rem;
}

.editorial-image {
  position: relative;
  min-height: min(74vh, 790px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-image);
  background: var(--navy-elevated);
}

.editorial-image::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(
    155deg,
    rgb(247 211 108 / 0.55),
    transparent 40% 70%,
    rgb(109 136 166 / 0.35)
  );
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.editorial-image::after {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 58%;
  content: "";
  background: linear-gradient(to top, rgb(0 11 28 / 0.96), transparent);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.05);
}

.editorial-image figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 3vw, 2.5rem);
}

.editorial-image figcaption span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.editorial-image figcaption strong {
  max-width: 440px;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.18;
}

/* Benefits */
.benefits {
  background: var(--navy-elevated);
}

.benefits::before {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  content: "";
  background-image:
    linear-gradient(rgb(230 184 75 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(230 184 75 / 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
  pointer-events: none;
}

.benefit-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.benefit-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.6rem, 3.2vw, 3rem);
  overflow: hidden;
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, rgb(6 31 59 / 0.98), rgb(0 21 43 / 0.96));
  transition:
    transform 600ms var(--ease-expo),
    box-shadow 600ms ease;
}

.benefit-card:nth-child(1),
.benefit-card:nth-child(4) {
  grid-column: span 7;
}

.benefit-card:nth-child(2),
.benefit-card:nth-child(3) {
  grid-column: span 5;
}

.benefit-card::before,
.spotlight-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(
    155deg,
    rgb(230 184 75 / 0.5),
    transparent 43%,
    rgb(109 136 166 / 0.22)
  );
  opacity: 0.52;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 500ms ease;
}

.benefit-card::after,
.spotlight-card::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--spot-x, 50%) var(--spot-y, 0%),
    rgb(230 184 75 / 0.15),
    transparent 44%
  );
  transition: opacity 500ms ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-7px);
}

.benefit-card:hover::before,
.benefit-card:hover::after,
.spotlight-card:hover::after {
  opacity: 1;
}

.benefit-card__number {
  position: absolute;
  top: 1.7rem;
  right: 2rem;
  color: rgb(230 184 75 / 0.11);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.benefit-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgb(230 184 75 / 0.055);
  color: var(--gold-light);
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefit-card strong {
  max-width: 540px;
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.18;
}

.benefit-card p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.75;
}

/* Property types horizontal story */
.types {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 20%, rgb(10 45 77 / 0.55), transparent 38%),
    var(--navy);
}

.types__stage {
  height: 100svh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.types__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.types__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2.5rem;
}

.types__heading .display-title {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
}

.types__heading > p:last-child {
  margin: 0 0 0.3rem;
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
}

.types__viewport {
  overflow: visible;
}

.types__track {
  width: max-content;
  display: flex;
  gap: 1.25rem;
  padding-inline: var(--gutter) max(var(--gutter), 6vw);
  will-change: transform;
}

.type-card {
  position: relative;
  width: clamp(360px, 58vw, 820px);
  height: clamp(360px, 49vh, 540px);
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--navy-elevated);
  isolation: isolate;
}

.types__end-cta {
  position: relative;
  width: clamp(360px, 53vw, 740px);
  height: clamp(360px, 49vh, 540px);
  min-height: 0;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.8rem, 3.5vw, 3.4rem);
  border: 1px solid rgb(230 184 75 / 0.38);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #061a32 0%, #0b3a62 52%, #1c4b51 100%);
}

.types__end-label {
  position: absolute;
  z-index: 2;
  top: 1.75rem;
  right: 4.4rem;
  left: 4.4rem;
  margin-bottom: 0;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.types__end-cta h3 {
  max-width: 620px;
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-align: center;
}

.types__end-cta p {
  width: 100%;
  max-width: 520px;
  margin: 0 0 1.7rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
}

.types__end-cta .button {
  align-self: center;
}

.type-card::after {
  position: absolute;
  z-index: 5;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(
    155deg,
    rgb(230 184 75 / 0.52),
    transparent 45% 70%,
    rgb(109 136 166 / 0.22)
  );
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.type-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-expo);
}

.type-card:hover img {
  transform: scale(1.055);
}

.type-card__veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 11 28 / 0.9), rgb(0 11 28 / 0.18) 72%),
    linear-gradient(0deg, rgb(0 11 28 / 0.8), transparent 60%);
}

.type-card--architectural {
  background:
    linear-gradient(90deg, rgb(230 184 75 / 0.07) 1px, transparent 1px) 0 0 /
      46px 46px,
    linear-gradient(rgb(230 184 75 / 0.07) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 70% 30%, rgb(230 184 75 / 0.14), transparent 30%),
    var(--navy-card);
}

.type-card--architectural::before {
  position: absolute;
  right: 9%;
  bottom: 14%;
  width: 32%;
  height: 56%;
  border: 1px solid rgb(230 184 75 / 0.26);
  box-shadow:
    -22px -22px 0 -21px rgb(230 184 75 / 0.42),
    22px 22px 0 -21px rgb(230 184 75 / 0.2);
  content: "";
  transform: skewY(-8deg);
}

.type-card--blueprint {
  background:
    linear-gradient(
      35deg,
      transparent 46%,
      rgb(230 184 75 / 0.14) 47%,
      transparent 48%
    ),
    linear-gradient(
      145deg,
      transparent 46%,
      rgb(109 136 166 / 0.16) 47%,
      transparent 48%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgb(109 136 166 / 0.28),
      transparent 29%
    ),
    var(--navy-surface);
  background-size:
    90px 90px,
    90px 90px,
    auto,
    auto;
}

.type-card__letter {
  position: absolute;
  right: 5%;
  bottom: -12%;
  color: rgb(230 184 75 / 0.09);
  font-family: var(--font-display);
  font-size: clamp(14rem, 28vw, 26rem);
  font-style: italic;
  line-height: 1;
}

.type-card__number {
  position: absolute;
  z-index: 2;
  top: 1.6rem;
  right: 1.8rem;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.type-card__content {
  position: absolute;
  z-index: 3;
  right: clamp(1.6rem, 4vw, 3.3rem);
  bottom: clamp(2rem, 4vw, 3.6rem);
  left: clamp(1.6rem, 4vw, 3.3rem);
  max-width: none;
}

.type-card__content h3 {
  width: 100%;
  max-width: none;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
  white-space: nowrap;
}

.type-card__content p {
  width: 50%;
  max-width: none;
  min-width: 320px;
  margin-bottom: 1.2rem;
  color: rgb(255 244 214 / 0.72);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.type-card__content a {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid rgb(230 184 75 / 0.55);
  background: rgb(230 184 75 / 0.055);
  color: var(--ivory);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  overflow: visible;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.type-card__content a:hover {
  border-color: var(--gold-light);
  background: rgb(230 184 75 / 0.14);
  box-shadow: 0 10px 38px rgb(230 184 75 / 0.14);
  color: var(--ivory);
}

.types__progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.types__progress > span {
  width: min(380px, 30vw);
  height: 1px;
  overflow: hidden;
  background: rgb(255 244 214 / 0.12);
}

.types__progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.types__progress b {
  color: var(--text-subtle);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Opportunities */
.opportunities {
  overflow: hidden;
  background: var(--navy-elevated);
}

.curation-state {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
}

.curation-state__visual {
  position: relative;
  min-height: 690px;
}

.curation-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-image);
  background: var(--navy-card);
  box-shadow: var(--shadow-card);
}

.curation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curation-photo--one {
  top: 0;
  left: 0;
  width: 66%;
  height: 70%;
}

.curation-photo--two {
  top: 9%;
  right: 0;
  width: 39%;
  height: 42%;
}

.curation-photo--three {
  right: 8%;
  bottom: 0;
  width: 55%;
  height: 46%;
}

.curation-state__seal {
  position: absolute;
  z-index: 4;
  bottom: 11%;
  left: 8%;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgb(0 11 28 / 0.35));
}

.curation-state__copy {
  position: relative;
  align-self: center;
  padding: clamp(2rem, 4.5vw, 4rem);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #061a32 0%, #0b3a62 52%, #1c4b51 100%);
}

.curation-state__index {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  color: var(--text-subtle);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.curation-state__copy h3 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.06;
}

.curation-state__copy > p:not(.eyebrow) {
  margin-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.78;
}

.curation-state__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.7rem;
  padding: 0;
  list-style: none;
}

.curation-state__copy li {
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: rgb(255 244 214 / 0.65);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.curation-state__copy .button {
  width: 100%;
}

.curation-state__copy small {
  display: block;
  margin-top: 1.2rem;
  color: var(--text-subtle);
  font-size: 0.63rem;
  line-height: 1.65;
}

/* Process */
.process {
  background: var(--navy);
}

.process__heading {
  max-width: 850px;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline__line {
  position: absolute;
  top: 47px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  overflow: hidden;
  background: rgb(230 184 75 / 0.12);
}

.timeline__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 12% 88%,
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
}

.timeline-step {
  position: relative;
  padding-inline: clamp(0.4rem, 1.6vw, 1.5rem);
  text-align: center;
}

.timeline-step__node {
  position: relative;
  z-index: 2;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
  border: 1px solid rgb(230 184 75 / 0.25);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
  box-shadow: inset 0 0 30px rgb(230 184 75 / 0.035);
}

.timeline-step h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.77rem;
  font-weight: 300;
  line-height: 1.72;
}

/* Regions */
.regions {
  overflow: hidden;
  background: var(--navy-elevated);
}

.regions::after {
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgb(230 184 75 / 0.025);
  content: "SP";
  font-family: var(--font-display);
  font-size: clamp(14rem, 38vw, 38rem);
  font-weight: 600;
  line-height: 0.7;
  pointer-events: none;
}

.regions__heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.regions__heading .display-title {
  max-width: 900px;
}

.regions__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.regions__media {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-image);
  background: var(--navy-card);
}

.regions__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgb(0 11 28 / 0.88), transparent 55%);
  pointer-events: none;
}

.regions__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.regions__media-caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
}

.regions__media-caption span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.regions__media-caption b {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
}

.region-list {
  border-top: 1px solid var(--border-soft);
}

.region-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 1.2rem;
  padding-block: clamp(1.7rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  transition:
    padding-left 500ms var(--ease-expo),
    background 400ms ease;
}

.region-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(var(--gold-light), var(--gold-deep));
  transform: scaleY(0);
  transition: transform 500ms var(--ease-expo);
}

.region-item.is-active,
.region-item:hover {
  padding-left: 1.2rem;
  background: linear-gradient(90deg, rgb(230 184 75 / 0.05), transparent 72%);
}

.region-item.is-active::before,
.region-item:hover::before {
  transform: scaleY(1);
}

.region-item > span {
  padding-top: 0.45rem;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.region-item h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  transition: color 350ms ease;
}

.region-item.is-active h3,
.region-item:hover h3 {
  color: var(--gold-light);
}

.region-item p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.72;
}

/* As descrições acompanham a largura disponível de cada região. */
.regions .region-item > div,
.regions .region-item p {
  width: auto !important;
  max-width: none !important;
  height: auto !important;
}

.region-item > i {
  padding-top: 0.25rem;
  color: var(--gold);
  font-size: 1.3rem;
  font-style: normal;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition:
    opacity 350ms ease,
    transform 500ms var(--ease-expo);
}

.region-item.is-active > i,
.region-item:hover > i {
  opacity: 1;
  transform: translate(0);
}

.regions .section-action {
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  margin-top: 2.5rem;
}

/* O CTA ocupa uma linha própria, centralizada sob a foto e a lista de regiões. */
.regions .region-list__action {
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin-top: clamp(1rem, 3vw, 2.5rem);
  padding-top: 0;
  border-bottom: 0;
}

/* O link mantém a altura compacta do CTA. */
.regions .region-list__action .text-link {
  align-self: center;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  min-height: 48px;
}

/* Possibilidades para a busca */
.partners {
  background: var(--navy);
}

.partners.section {
  padding-block: clamp(3.5rem, 5vw, 5rem) clamp(4.5rem, 7vw, 7rem);
}

.partners__layout {
  display: grid;
  grid-template-areas:
    "copy media"
    "note note";
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  align-items: center;
  column-gap: clamp(3rem, 8vw, 10rem);
  row-gap: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border-soft);
}

.partners__copy {
  grid-area: copy;
  max-width: none;
}

.partners__copy .display-title {
  max-width: none;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  font-size: clamp(2.8rem, 4.2vw, 4.7rem);
  line-height: 1.08;
}

.partners__copy .body-large,
.partners__copy .body-copy {
  max-width: 61ch;
}

.partners__copy .button {
  margin-top: 1.5rem;
}

.partners__media {
  grid-area: media;
  align-self: stretch;
  min-height: clamp(410px, 43vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(230 184 75 / 0.22);
  border-radius: var(--radius-image);
  background: var(--navy-card);
  box-shadow: var(--shadow-card);
}

.partners__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-expo);
}

@media (hover: hover) {
  .partners__media:hover img {
    transform: scale(1.035);
  }
}

.partners__note {
  grid-area: note;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
  color: var(--text-subtle);
  font-size: 0.58rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .partners__layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    column-gap: clamp(2rem, 5vw, 4rem);
  }

  .partners__media {
    min-height: 470px;
  }
}

@media (max-width: 767px) {
  .partners__layout {
    grid-template-areas:
      "copy"
      "media"
      "note";
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2rem;
    padding-top: 0;
    border-top: 0;
  }

  .partners__copy .display-title {
    font-size: clamp(2.2rem, 9.5vw, 3.1rem);
  }

  .partners__copy .eyebrow {
    font-size: 0.66rem !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap;
  }

  #conteudo .partners__copy .button {
    padding-inline: 0.8rem;
    font-size: 14px !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap;
  }

  .partners__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

/* FAQ */
.faq {
  background: linear-gradient(
    118deg,
    rgb(3 18 36) 0%,
    rgb(7 37 70) 54%,
    rgb(10 54 99) 100%
  );
}

.faq.section {
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1200px);
  justify-content: center;
  max-width: 1200px;
  margin-inline: auto;
  gap: clamp(3rem, 5vw, 4.5rem);
}

.faq__heading {
  position: relative;
  top: auto;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.faq__heading .eyebrow {
  justify-content: center;
}

.faq__heading .display-title {
  font-size: clamp(2.6rem, 4.3vw, 4.2rem);
  margin-inline: auto;
  margin-bottom: clamp(0.85rem, 1.4vw, 1.15rem) !important;
  height: auto !important;
  min-height: 0 !important;
}

.faq__heading .body-large {
  max-width: 680px;
  margin-inline: auto;
  margin-top: 0;
}

@media (min-width: 1025px) {
  .faq__heading {
    width: 100%;
    max-width: 1200px;
  }

  .faq__heading .display-title {
    width: 100% !important;
    max-width: none;
    white-space: nowrap;
  }
}

.accordion {
  border-top: 1px solid var(--border-soft);
}

.accordion-item {
  border-bottom: 1px solid var(--border-soft);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border: 0;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  transition: color 300ms ease;
}

/* Uma única largura para todos os controles do FAQ, inclusive após edições exportadas. */
#conteudo .accordion-item button {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 82px !important;
  padding: 1.6rem 0 !important;
  gap: 1.5rem !important;
}

.accordion-item button:hover,
.accordion-item.is-open button {
  color: var(--gold-light);
}

.accordion-item button i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 350ms var(--ease-expo);
}

.accordion-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  overflow: hidden;
}

.accordion-panel > div {
  padding: 0 4rem 1.8rem 0;
}

.accordion-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.final-cta__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(0 11 28 / 0.94),
      rgb(0 11 28 / 0.68) 58%,
      rgb(0 11 28 / 0.35)
    ),
    linear-gradient(0deg, var(--navy), transparent 35%, rgb(0 11 28 / 0.18));
}

.final-cta::after {
  position: absolute;
  z-index: 2;
  inset: 24px;
  border: 1px solid rgb(230 184 75 / 0.18);
  content: "";
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 3;
  padding-block: 8rem;
}

.final-cta h2 {
  max-width: 1020px;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.final-cta__content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 1.8rem;
  color: rgb(255 244 214 / 0.77);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 300;
  line-height: 1.75;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.final-cta small {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.3rem;
  color: rgb(255 244 214 / 0.58);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: -2px;
  padding-top: clamp(4rem, 8vw, 7rem);
  background: var(--navy);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) 0.6fr 0.8fr;
  gap: clamp(2.5rem, 7vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.site-footer__brand > p {
  max-width: 420px;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.site-footer__nav > span,
.site-footer__contact > span {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 16px !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6;
  transition: color 250ms ease;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: var(--gold-light);
}

.site-footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 4px !important;
  width: fit-content;
  font-size: 16px !important;
}

.site-footer__whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border-soft);
  color: var(--text-subtle);
}

.site-footer__disclaimer {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 14px !important;
  line-height: 1.5 !important;
  text-align: center;
}

.site-footer__legal,
.site-footer__credits,
.site-footer__agency {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer__legal {
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.site-footer__legal a,
.site-footer__credits,
.site-footer__credits a,
.site-footer__agency,
.site-footer__agency a {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.site-footer__legal a,
.site-footer__credits a,
.site-footer__agency a {
  color: var(--text-muted);
  transition: color 250ms ease;
}

.site-footer__agency a {
  color: var(--gold-light);
}

.site-footer__legal a:hover,
.site-footer__credits a:hover,
.site-footer__agency a:hover {
  color: var(--gold-light);
}

.site-footer__credits {
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-start;
  color: var(--text-muted);
}

.site-footer__agency {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  gap: 0.25rem;
  padding-right: clamp(4.5rem, 6vw, 6rem);
  color: var(--text-muted);
  text-align: right;
}

/* Animation preparation */
.js .reveal-copy,
.js .reveal-card,
.js .image-reveal {
  visibility: hidden;
}

.split-reveal .line,
.hero__title .line {
  display: block;
}

.split-reveal .line-mask,
.hero__title .line-mask {
  overflow: clip;
}

/* Editor visual: estes estilos só existem dentro da prévia em editor.html. */
.studio-preview .site-loader,
.studio-preview .cursor-glow,
.studio-preview .page-progress {
  display: none !important;
}

.studio-preview .studio-selected {
  outline: 2px solid #e6b84b !important;
  outline-offset: 5px;
  cursor: crosshair !important;
}

.studio-preview a,
.studio-preview button {
  cursor: crosshair !important;
}

.studio-preview.studio-drag-mode,
.studio-preview.studio-drag-mode * {
  cursor: move !important;
  user-select: none !important;
}

/* O editor mostra estados normalmente animados como uma página contínua. */
.studio-preview .experience {
  min-height: 0;
}

.studio-preview .experience-stage {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.studio-preview .hero {
  position: relative;
  min-height: 100svh;
}

.studio-preview .chapter-stack {
  position: relative;
  inset: auto;
  display: grid;
  align-items: stretch;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: auto;
}

.studio-preview .chapter {
  position: relative;
  bottom: auto;
  left: auto;
  display: block !important;
  width: 100%;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  border-top: 1px solid rgb(230 184 75 / 0.22);
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

.studio-preview .experience-ui {
  display: none !important;
}

.studio-preview .accordion-item,
.studio-preview .accordion-panel,
.studio-preview .accordion-panel[hidden] {
  display: block !important;
  height: auto !important;
}

.studio-preview .accordion-item {
  border-color: rgb(230 184 75 / 0.24);
}

/* Widgets criados pelo editor visual. */
.studio-widget {
  position: relative;
}

.studio-widget--notice {
  max-width: 620px;
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-left: 2px solid var(--gold);
  background: rgb(230 184 75 / 0.08);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.studio-widget--divider {
  width: min(100%, 680px);
  height: 1px;
  margin: 1.5rem 0;
  border: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.studio-widget--icon {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  margin: 0.35rem 0.55rem 0.35rem 0;
  color: var(--gold-light);
  vertical-align: middle;
}

.studio-widget--icon svg,
.studio-widget--button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.studio-widget--button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0;
}

.studio-widget--button svg {
  width: 1rem;
  height: 1rem;
}

/* Responsive */
@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: clamp(1rem, 2.5vw, 2rem);
  }

  .desktop-nav,
  .site-header > .site-header__inner > .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
  }

  .mobile-menu {
    display: block;
  }

  .hero__title {
    max-width: min(820px, 80vw);
    font-size: clamp(2.45rem, 5.1vw, 3.9rem);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 1.15rem;
  }

  .desktop-nav a {
    font-size: 0.6rem;
  }

  .nav-cta {
    padding-inline: 1rem;
  }

  .positioning__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 4rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 76px;
    --gutter: 20px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .site-header > .site-header__inner > .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
  }

  .mobile-menu {
    display: block;
  }

  .hero__title {
    max-width: min(760px, 94vw);
    font-size: clamp(2.4rem, 5.5vw, 3.7rem);
  }

  .positioning__grid,
  .curation-state,
  .regions__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .positioning__grid {
    gap: 3.5rem;
  }

  .positioning__copy {
    max-width: 760px;
  }

  .editorial-image {
    min-height: 620px;
    aspect-ratio: 16 / 11;
  }

  .benefit-card:nth-child(n) {
    grid-column: span 6;
  }

  .types__heading {
    grid-template-columns: 1fr 0.5fr;
    gap: 2.5rem;
  }

  .curation-state__visual {
    min-height: 650px;
  }

  .curation-state__copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 1rem;
  }

  .timeline__line {
    display: none;
  }

  .regions__media {
    position: relative;
    top: auto;
    width: min(100%, 760px);
    aspect-ratio: 16 / 10;
  }

  .partners__panel {
    grid-template-columns: 0.55fr 1fr;
  }

  .partners__orb {
    width: min(30vw, 260px);
  }

  .trust-band__inner {
    grid-template-columns: 0.4fr 1fr;
  }

  .trust-band__meta {
    grid-column: 1 / -1;
    display: flex;
    padding-bottom: 2rem;
  }

  .faq__heading {
    position: relative;
    top: auto;
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --section-y: 5.5rem;
  }

  .site-header__inner {
    gap: 1rem;
  }

  .brand__logo {
    width: clamp(136px, 38vw, 158px);
    max-height: 44px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.48rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .display-title {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .experience-stage {
    min-height: 620px;
  }

  .experience-shade {
    background:
      linear-gradient(0deg, rgb(0 11 28 / 0.92), rgb(0 11 28 / 0.2) 72%),
      linear-gradient(90deg, rgb(0 11 28 / 0.42), transparent);
  }

  #frameCanvas {
    object-position: center;
  }

  .hero {
    padding-bottom: 4.5rem;
  }

  .hero__title {
    max-width: 100%;
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    line-height: 0.96;
  }

  .hero__copy {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    font-size: 0.55rem;
  }

  .chapter-stack {
    padding-bottom: 4.5rem;
  }

  .chapter {
    bottom: 4.5rem;
  }

  .chapter h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .chapter > p:not(.chapter__label) {
    max-width: calc(100% - 2.2rem);
    font-size: 0.84rem;
  }

  .experience-ui {
    right: 0.8rem;
    bottom: 4.5rem;
  }

  .experience-ui__rail {
    height: 80px;
  }

  .marquee__track {
    padding-block: 1.25rem;
  }

  .positioning__grid {
    gap: 2.8rem;
  }

  /* Impede que a proporção da imagem aumente a coluna além das margens mobile. */
  .positioning__grid > * {
    min-width: 0;
  }

  .editorial-image {
    width: 100%;
    max-width: 100%;
    min-height: 470px;
    aspect-ratio: 4 / 5;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card:nth-child(n) {
    min-height: 330px;
    grid-column: auto;
  }

  .types {
    min-height: auto;
    padding-block: var(--section-y);
  }

  .types__stage {
    height: auto;
    min-height: 0;
    display: block;
    overflow: visible;
  }

  .types__heading {
    display: block;
    margin-bottom: 2.6rem;
  }

  .types__heading .eyebrow {
    margin-bottom: 1.2rem;
  }

  .types__heading .display-title {
    margin-bottom: 1.2rem;
    font-size: clamp(2.15rem, 9.6vw, 3.25rem);
  }

  .types__viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .types__viewport::-webkit-scrollbar {
    display: none;
  }

  .types__track {
    gap: 0.8rem;
    padding-right: 1.25rem;
  }

  .type-card {
    width: calc(100vw - 2.5rem);
    height: 530px;
    scroll-snap-align: center;
  }

  .types__end-cta {
    width: calc(100vw - 2.5rem);
    min-height: 430px;
    scroll-snap-align: center;
  }

  .type-card__content h3 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .types__progress {
    display: none;
  }

  .curation-state__visual {
    min-height: 510px;
  }

  .curation-photo--one {
    width: 72%;
    height: 62%;
  }

  .curation-photo--two {
    top: 7%;
    width: 38%;
    height: 38%;
  }

  .curation-photo--three {
    right: 2%;
    width: 63%;
    height: 45%;
  }

  .curation-state__seal {
    bottom: 9%;
    left: 2%;
    width: 104px;
    height: 104px;
  }

  .curation-state__copy {
    padding: 1.7rem;
  }

  .curation-state__copy .button {
    padding-inline: 1.1rem;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    column-gap: 1.3rem;
    padding: 0;
    text-align: left;
  }

  .timeline-step__node {
    width: 72px;
    height: 72px;
    grid-row: 1 / 3;
    margin: 0;
  }

  .timeline-step h3 {
    align-self: end;
    margin-bottom: 0.45rem;
  }

  .regions__grid {
    gap: 2.8rem;
  }

  .regions__media {
    aspect-ratio: 4 / 5;
  }

  .region-item {
    grid-template-columns: 30px 1fr;
    gap: 0.6rem;
  }

  .region-item > i {
    display: none;
  }

  .region-item h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .partners__panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3rem 1.5rem 7rem;
  }

  .partners__orb {
    width: 210px;
  }

  .partners__copy .button {
    width: 100%;
    padding-inline: 1rem;
  }

  .partners__note {
    right: 1.5rem;
    bottom: 1.4rem;
    left: 1.5rem;
  }

  .trust-band__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-block: 3rem;
  }

  .trust-band__meta {
    grid-column: auto;
    display: grid;
    padding-bottom: 0;
  }

  .faq__grid {
    gap: 2.5rem;
  }

  .accordion-item button {
    min-height: 82px;
    font-size: 1.15rem;
  }

  .accordion-panel > div {
    padding-right: 0;
  }

  .final-cta {
    min-height: 820px;
  }

  .final-cta::after {
    inset: 12px;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-footer__legal {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
  }

  .site-footer__credits {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    text-align: center;
  }

  .site-footer__agency {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    padding-right: 0;
    text-align: center;
  }

  .site-footer__disclaimer {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .brand-copy small {
    display: none;
  }

  .mobile-menu nav a {
    font-size: 2.2rem;
  }

  .hero__eyebrow {
    font-size: 0.55rem;
  }

  .hero__title {
    font-size: clamp(2.45rem, 10vw, 2.7rem);
  }

  .button {
    min-height: 50px;
    padding-inline: 1.1rem;
    font-size: 0.62rem;
  }

  .type-card {
    height: 490px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

/* Em telas muito estreitas, a caixa fixa do título cede espaço às duas margens. */
@media (max-width: 380px) {
  #conteudo .positioning__copy .post-scroll-title {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (pointer: coarse) {
  .cursor-glow,
  .benefit-card::after,
  .spotlight-card::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee__track {
    transform: none !important;
  }

  .cursor-glow {
    display: none;
  }
}

/* ========================================================================
   Base editorial — padrão legível e estável em todos os tamanhos de tela.
   Estas regras vêm por último para também respeitar ajustes já exportados
   pelo editor visual, sem deixar medidas antigas quebrarem o fluxo do texto.
   ======================================================================== */

/* Texto corrido: 16 px / entrelinha 1,5 em desktop, notebook, tablet e mobile. */
#conteudo p,
#conteudo li,
.site-footer p:not(.site-footer__disclaimer),
.site-footer li,
.site-footer a {
  font-size: 16px !important;
  line-height: 1.5 !important;
  height: auto !important;
  min-height: 0 !important;
  overflow-wrap: break-word;
}

/* Rótulos e marcadores: sempre 12 px. */
#conteudo .eyebrow,
#conteudo .chapter__label,
#conteudo .hero__trust,
#conteudo .curation-state__index,
#conteudo .curation-state__copy li,
#conteudo .timeline-step__node,
#conteudo .types__end-label,
#conteudo .regions__media-caption span,
.site-footer__contact > span,
.site-footer__contact > p {
  font-size: 12px !important;
  line-height: 1.5 !important;
  height: auto !important;
  min-height: 0 !important;
}

.site-footer__contact > p {
  font-size: 16px !important;
}

.site-footer__contact > span {
  font-size: 16px !important;
}

#conteudo .button,
#conteudo .type-card a,
#conteudo .text-link {
  font-size: 16px !important;
  line-height: 1.25 !important;
  white-space: normal;
  text-align: center;
}

#conteudo .post-scroll-title {
  line-height: 1.2 !important;
}

/* A mascara da animacao de linhas precisa de uma pequena folga para descendentes, como o "g". */
#conteudo .benefits .section-heading--split .display-title.split-reveal .line-mask {
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

#conteudo .type-card a {
  min-height: 44px !important;
  height: auto !important;
}

/* Evita cortes quando o editor aumentar fontes ou reduzir a largura dos blocos. */
#conteudo .body-copy,
#conteudo .body-large,
#conteudo .benefit-card p,
#conteudo .curation-state__copy p,
#conteudo .timeline-step p,
#conteudo .region-list p,
#conteudo .accordion-panel p,
#conteudo .final-cta p {
  max-width: 100% !important;
}

@media (max-width: 767px) {
  #conteudo .type-card__content h3 {
    white-space: normal;
  }

  #conteudo .type-card__content p {
    width: auto;
    min-width: 0;
  }

  /* Em telas estreitas, CTAs permanecem fáceis de tocar e não extravasam. */
  #conteudo .button,
  #conteudo .type-card a {
    min-height: 52px;
    max-width: 100%;
  }
}

/* Caixas editoriais: a largura, e não uma quebra escrita, define as linhas. */
@media (min-width: 768px) {
  .chapter[data-chapter="1"] h2 {
    max-width: 9.7em;
  }

  .chapter[data-chapter="2"] h2 {
    max-width: 10.2em;
  }

  .chapter[data-chapter="3"] h2 {
    max-width: 11.7em;
  }

  .chapter[data-chapter="1"] > p:not(.chapter__label) {
    max-width: none;
  }

  .chapter[data-chapter="2"] > p:not(.chapter__label) {
    max-width: 500px;
  }

  .chapter[data-chapter="3"] > p:not(.chapter__label) {
    max-width: 470px;
  }
}

/* O texto explicativo acompanha visualmente a borda final da sequência de cards. */
#conteudo .types__heading .display-title {
  height: auto !important;
  min-height: 0 !important;
}

.types__heading > p:last-child,
.section-heading--split > p {
  justify-self: end;
  width: min(100%, 38ch);
  margin-left: auto;
}

/* Tags não podem encolher nem repartir palavras quando uma medida antiga é exportada. */
.curation-state__copy li {
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  height: auto !important;
  white-space: nowrap !important;
}

.curation-state__copy ul {
  align-items: center;
  gap: 0.625rem;
}

.curation-state__copy li {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.625rem 0.875rem !important;
  line-height: 1 !important;
}

@media (max-width: 767px) {
  .curation-state__copy ul { justify-content: center; }
}

/* A normalização de 12 px não deve alterar a geometria dos marcadores da timeline. */
#conteudo .timeline-step__node {
  width: 94px !important;
  min-width: 94px !important;
  max-width: 94px !important;
  height: 94px !important;
  min-height: 94px !important;
  line-height: 1 !important;
}

/* Cards de benefícios: borda dourada nítida em hover e foco pelo teclado. */
.benefit-card {
  border: 1px solid rgb(230 184 75 / 0.22);
  transition:
    transform 300ms var(--ease-expo),
    box-shadow 300ms ease,
    border-color 220ms ease;
}

@media (hover: hover) {
  .benefit-card:hover,
  .benefit-card:focus-within {
    border-color: var(--gold-light);
    box-shadow:
      0 0 0 1px rgb(247 211 108 / 0.38),
      0 18px 44px rgb(0 0 0 / 0.24);
  }
}

@media (max-width: 767px) {
  #conteudo .types__heading .display-title {
    font-size: clamp(1.625rem, 7.2vw, 1.75rem) !important;
    line-height: 1.2 !important;
  }

  #conteudo .button {
    position: relative;
    justify-content: center;
    padding-inline: 3.25rem;
    text-align: center;
  }

  #conteudo .button > span {
    display: block;
    max-width: 100%;
    text-align: center;
  }

  #conteudo .button > svg {
    position: absolute;
    right: 1.1rem;
  }

  #conteudo .partners__copy .button {
    padding-inline: 1rem;
    font-size: 14px !important;
    white-space: normal;
  }

  #conteudo .partners__copy .button > span {
    width: min(100%, 240px);
    max-width: 240px;
    margin-inline: auto;
  }

  .types__heading > p:last-child,
  .section-heading--split > p {
    width: min(100%, 38ch);
    margin-left: auto;
  }

  #conteudo .timeline-step__node {
    width: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    height: 72px !important;
    min-height: 72px !important;
  }
}

/* A cópia de apoio da seção de atendimento acompanha o alinhamento dos cards. */
.benefits .section-heading--split > p {
  width: min(100%, 52ch);
  text-align: right;
  text-wrap: balance;
}

/* A seção de seleção usa o mesmo alinhamento editorial à direita no desktop. */
.opportunities .section-heading--split > p {
  text-align: right;
}

@media (min-width: 768px) {
  .opportunities .section-heading--split {
    grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
    gap: clamp(1.5rem, 3.5vw, 4rem);
  }

  .opportunities__title {
    max-width: 760px;
    font-size: clamp(2rem, 3.55vw, 3.9rem);
    text-wrap: balance;
  }
}

@media (max-width: 767px) {
  #conteudo .opportunities__title {
    font-size: clamp(1.9rem, 7vw, 2rem);
    text-wrap: balance;
  }
}

@media (min-width: 768px) {
  #conteudo .type-card__content h3 {
    width: 100%;
    max-width: none;
    font-size: clamp(2rem, 2.6vw, 2.5rem) !important;
    white-space: nowrap;
  }

  #conteudo .type-card__content p {
    width: 50%;
    min-width: 320px;
    max-width: none !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  #conteudo .type-card__content a {
    width: fit-content;
    min-height: 46px !important;
    padding: 0.8rem 1rem;
    border: 1px solid rgb(230 184 75 / 0.55);
    box-sizing: border-box;
    overflow: visible;
  }

  #conteudo .chapter a {
    width: fit-content;
    border-bottom: 1px solid rgb(230 184 75 / 0.55);
  }

  #conteudo .types__end-cta {
    width: clamp(360px, 53vw, 740px);
    height: clamp(360px, 49vh, 540px);
  }

  #conteudo .types__end-cta h3 {
    max-width: 620px;
    margin-inline: auto;
    font-size: clamp(2rem, 2.6vw, 2.5rem) !important;
    text-align: center;
  }

  #conteudo .types__end-cta p {
    width: 100%;
    max-width: 520px !important;
    margin-inline: auto;
    line-height: 1.55 !important;
    text-align: center;
  }
}

/* O CTA final da sequencia de formatos ganha uma leitura mais ampla. */
#conteudo .types__end-label {
  position: static;
  align-self: center;
  margin: 0 0 0.45rem;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.35vw, 2.2rem) !important;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

#conteudo .types__end-cta p {
  margin-right: auto;
  margin-left: auto;
  text-align: center !important;
  text-wrap: balance;
}

@media (min-width: 768px) {
  #conteudo .types__end-cta p {
    max-width: 620px !important;
    text-wrap: balance;
  }
}

@media (min-width: 1100px) {
  #conteudo .types__end-cta p {
    width: max-content;
    max-width: none !important;
    white-space: nowrap;
  }
}

/* Ajustes de fluxo exclusivos de telas pequenas. */
@media (max-width: 767px) {
  /* A ação principal acompanha a caixa do texto e libera a indicação "Explore". */
  #conteudo .hero__actions {
    width: min(100%, 300px);
  }

  #conteudo .hero__actions .button {
    min-height: 50px;
    padding-inline: 1rem;
    letter-spacing: 0.08em;
  }

  /* O registro profissional deixa de disputar espaço com o indicador de cena. */
  #conteudo .hero__trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.18rem;
  }

  #conteudo .hero__trust i {
    display: none;
  }

  /* Títulos e cópias voltam ao fluxo natural, sem caixas exportadas do desktop. */
  #conteudo .section-heading--split .display-title,
  #conteudo .process__heading .display-title,
  #conteudo .regions__heading .display-title,
  #conteudo .partners__copy .display-title,
  #conteudo .faq__heading .display-title,
  #conteudo .final-cta__content h2 {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  /* Estes cinco títulos não recebem wrappers de linha no mobile: ocupam todo o gutter disponível. */
  #conteudo .mobile-fluid-title {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
  }

  #conteudo .section-heading--split > p,
  #conteudo .types__heading > p:last-child,
  #conteudo .benefits .section-heading--split > p,
  #conteudo .opportunities .section-heading--split > p {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin-left: 0;
    text-align: left;
  }

  /* A faixa horizontal ganha uma instrução explícita de arraste. */
  #conteudo .types__progress {
    display: flex;
    width: auto;
    margin: 1.25rem var(--gutter) 0;
  }

  #conteudo .types__progress > span {
    width: 72px;
  }

  #conteudo .types__progress i {
    transform: scaleX(0.6);
    transform-origin: left;
  }

  #conteudo .types__progress b {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  /* Linha contínua entre os quatro passos, posicionada atrás dos círculos. */
  #conteudo .timeline::before {
    position: absolute;
    z-index: 0;
    top: 36px;
    bottom: 36px;
    left: 35px;
    width: 1px;
    content: "";
    background: linear-gradient(var(--gold), rgb(230 184 75 / 0.2));
  }

  #conteudo .timeline-step {
    z-index: 1;
  }

  /* A observação deixa de ser absoluta para não cobrir o CTA. */
  #conteudo .partners__panel {
    padding: 3rem 1.5rem;
  }

  #conteudo .partners__copy .button {
    margin-bottom: 0;
  }

  #conteudo .partners__note {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 2rem 0 0 !important;
  }

  /* A área final reserva altura real para cada bloco, evitando sobreposição. */
  #conteudo .final-cta__content h2 {
    margin-bottom: 1.25rem !important;
  }

  #conteudo .final-cta__content > p {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 0 !important;
  }
}

/* Telefones largos e paisagem mantêm a mesma medida editorial do hero. */
@media (min-width: 480px) and (max-width: 767px) {
  #conteudo .hero__actions {
    width: min(100%, 360px);
  }
}

/* CTA da area de lazer: texto curto apenas em telas pequenas. */
.chapter__cta-label--mobile {
  display: none;
}

@media (max-width: 767px) {
  #conteudo .chapter[data-chapter="3"] a {
    width: fit-content;
    max-width: calc(100% - 3.5rem);
    margin-right: 3.5rem;
  }

  #conteudo .chapter[data-chapter="3"] .chapter__cta-label--desktop {
    display: none;
  }

  #conteudo .chapter[data-chapter="3"] .chapter__cta-label--mobile {
    display: inline;
  }

  /* Todos os formatos seguem a escala aprovada no primeiro card. */
  #conteudo .type-card__content h3 {
    font-size: 30px !important;
    line-height: 1.2;
  }

  #conteudo .type-card__content p {
    font-size: 15px !important;
  }

  #conteudo .types__end-cta p {
    font-size: 15px !important;
  }

  #conteudo .types .type-card__content a,
  #conteudo .types .types__end-cta a {
    font-size: 15px !important;
  }

  #conteudo .types__end-cta {
    height: 530px;
    min-height: 530px;
  }
}

@media (max-width: 420px) {
  #conteudo .types__end-cta {
    height: 490px;
    min-height: 490px;
  }
}
