/* =========================================================
   Soporte · Patrimonial Advisory
   Premium static landing for patrimonial.soporteconsulting.mx
   Namespace intentionally simple because this is a standalone subdomain.
   ========================================================= */

:root {
  --navy-950: #050d18;
  --navy-900: #071421;
  --navy-850: #0a1a2a;
  --navy-800: #0f2638;
  --ink: #15171b;
  --muted: #6b7078;
  --muted-2: #8b9098;
  --paper: #fbfaf7;
  --cream: #f5efe4;
  --white: #ffffff;
  --gold-500: #c9a24a;
  --gold-400: #e4c56f;
  --gold-700: #95712a;
  --line: rgba(201, 162, 74, 0.28);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 20px 70px rgba(7, 20, 33, 0.10);
  --shadow-strong: 0 35px 100px rgba(7, 20, 33, 0.32);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(201, 162, 74, 0.35);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(900px, calc(100% - 40px));
}

.section-pad {
  padding: clamp(78px, 9vw, 132px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold-500);
}

.eyebrow--light {
  color: var(--gold-400);
}

.eyebrow--light::before {
  background: var(--gold-400);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-900);
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-family: var(--font-serif);
}

p {
  margin: 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section-heading h2 {
  max-width: 840px;
  font-size: clamp(2.05rem, 4.5vw, 4.55rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.78;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(5, 13, 24, 0.84);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-nav .nav-cta {
  margin-left: 8px;
  border: 1px solid rgba(201, 162, 74, 0.60);
  background: rgba(201, 162, 74, 0.12);
  color: #f4dc9b;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 14px;
}

.nav-toggle span {
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle i {
  position: relative;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle i::before {
  top: -6px;
}

.nav-toggle i::after {
  top: 6px;
}

body.nav-open .nav-toggle i {
  background: transparent;
}

body.nav-open .nav-toggle i::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle i::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 150px 0 96px;
  background: var(--navy-950);
  color: var(--white);
}

.hero-bg,
.hero-bg picture,
.hero-bg img,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: saturate(0.82) contrast(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 12%, rgba(201, 162, 74, 0.28), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(201, 162, 74, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(5, 13, 24, 0.95), rgba(7, 20, 33, 0.78) 44%, rgba(7, 20, 33, 0.52)),
    linear-gradient(180deg, rgba(5, 13, 24, 0.36), rgba(5, 13, 24, 0.96));
}

.hero-noise {
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.1rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero-lead {
  max-width: 690px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--gold {
  border-color: rgba(201, 162, 74, 0.5);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500) 48%, #ad8436);
  color: var(--navy-950);
  box-shadow: 0 18px 46px rgba(201, 162, 74, 0.28);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  box-shadow: 0 24px 60px rgba(201, 162, 74, 0.36);
}

.btn--glass {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.btn--outline {
  border-color: rgba(201, 162, 74, 0.55);
  background: rgba(201, 162, 74, 0.06);
  color: var(--navy-900);
}

.btn--full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 54px 0 0;
}

.hero-metrics div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  margin-bottom: 22px;
  color: var(--gold-400);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(7, 20, 33, 0.58);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(22px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.panel-topline {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.02;
}

.hero-panel p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.panel-card-stack {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.panel-card-stack article {
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left-color: rgba(201, 162, 74, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.panel-card-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-card-stack strong {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.42;
}

/* Statement */

.statement {
  position: relative;
  background: var(--paper);
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 74, 0.14), transparent 33%),
    linear-gradient(180deg, rgba(7, 20, 33, 0.035), transparent 45%);
  pointer-events: none;
}

.statement .container {
  position: relative;
  padding: clamp(34px, 5vw, 62px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.statement h2 {
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 1.03;
}

.statement p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.78;
}

/* Services */

.services {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px 24px 26px;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 55px rgba(7, 20, 33, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-700));
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 74, 0.28);
  box-shadow: 0 30px 70px rgba(7, 20, 33, 0.09);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card--feature {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.18), transparent 40%),
    linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-color: rgba(201, 162, 74, 0.3);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid rgba(201, 162, 74, 0.55);
  border-radius: 999px;
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card--feature .card-number {
  color: var(--gold-400);
}

.service-card h3 {
  font-size: 1.24rem;
  line-height: 1.22;
}

.service-card--feature h3 {
  color: var(--white);
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card--feature p {
  color: rgba(255, 255, 255, 0.74);
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #333842;
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-card--feature li {
  color: rgba(255, 255, 255, 0.86);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-500);
}

/* Dark independent band */

.dark-band {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.24), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(201, 162, 74, 0.12), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: rgba(255, 255, 255, 0.78);
}

.dark-band h2,
.contact h2,
.risk-panel h2 {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.split--independent h2 {
  max-width: 640px;
  font-size: clamp(2.15rem, 4vw, 4.5rem);
  line-height: 1.02;
}

.split--independent p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 24px;
  line-height: 1.78;
}

.gold-rule {
  width: 160px;
  height: 2px;
  margin: 34px 0;
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

.small-copy {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.principles div {
  min-height: 152px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.principles strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-400);
  font-size: 1.04rem;
}

.principles span {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.94rem;
}

/* Model visual */

.model-section {
  background:
    radial-gradient(circle at top left, rgba(201, 162, 74, 0.13), transparent 32%),
    var(--paper);
}

.model-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.model-visual img {
  width: 100%;
}

/* Capabilities */

.capabilities {
  background: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability {
  padding: 28px;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.54), rgba(255,255,255,0.9));
}

.capability span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.capability h3 {
  font-size: 1.22rem;
}

.capability p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Family office */

.family-office {
  background:
    linear-gradient(180deg, var(--paper), #fff),
    radial-gradient(circle at center, rgba(201, 162, 74, 0.18), transparent 40%);
}

.fo-copy {
  position: sticky;
  top: 120px;
}

.fo-copy h2 {
  max-width: 560px;
  font-size: clamp(2.15rem, 4.2vw, 4.5rem);
  line-height: 1.02;
}

.fo-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  color: var(--gold-700);
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.fo-list {
  display: grid;
  gap: 16px;
}

.fo-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  column-gap: 22px;
  padding: 26px;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(7, 20, 33, 0.055);
}

.fo-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-weight: 900;
}

.fo-list h3 {
  font-size: 1.18rem;
}

.fo-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Process */

.process {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
}

.process .section-heading h2 {
  color: var(--white);
}

.process .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.62), transparent);
}

.process-track li {
  position: relative;
  z-index: 1;
  min-height: 284px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.process-track span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  border: 1px solid rgba(201, 162, 74, 0.62);
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--gold-400);
  font-weight: 900;
}

.process-track h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.process-track p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

/* Risk and who */

.risk-section {
  background: var(--paper);
}

.split--risk {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: stretch;
}

.risk-panel,
.who-panel {
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 54px);
}

.risk-panel {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.23), transparent 35%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-strong);
}

.risk-panel h2,
.who-panel h2 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.04;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold-400);
  font-weight: 900;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.78);
}

.who-panel {
  border: 1px solid rgba(7, 20, 33, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag-cloud span {
  padding: 10px 13px;
  border: 1px solid rgba(201, 162, 74, 0.32);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 780;
}

/* Advisor */

.advisor {
  background:
    radial-gradient(circle at 92% 20%, rgba(201, 162, 74, 0.13), transparent 28%),
    #fff;
}

.advisor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.advisor-card {
  position: sticky;
  top: 120px;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.72), rgba(255,255,255,0.94));
  box-shadow: var(--shadow-soft);
}

.advisor-card h2 {
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  line-height: 1.03;
}

.advisor-role {
  margin-top: 14px;
  color: var(--gold-700);
  font-weight: 850;
}

.advisor-card p:not(.eyebrow):not(.advisor-role) {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.78;
}

.advisor-card .btn {
  margin-top: 28px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-500), rgba(201, 162, 74, 0.08));
}

.timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 20, 33, 0.05);
}

.timeline span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-weight: 900;
}

.timeline strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.timeline em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

/* Cases */

.cases {
  background: var(--paper);
}

.case-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card,
.insight-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.case-card span,
.insight-card p {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--gold-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-card h3,
.insight-card h3 {
  font-size: clamp(1.38rem, 2.1vw, 2rem);
  line-height: 1.13;
}

.case-card p,
.insight-card span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Insights */

.insights {
  background: #fff;
}

.insight-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 228, 0.62));
}

/* Contact */

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 162, 74, 0.22), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: rgba(255, 255, 255, 0.78);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 46px 46px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 700px;
  font-size: clamp(2.35rem, 5vw, 5.75rem);
  line-height: 0.98;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  line-height: 1.78;
}

.contact-details {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin-top: 34px;
}

.contact-details a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-details a::after {
  content: "↗";
  color: var(--gold-400);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  border-color: rgba(201, 162, 74, 0.58);
  background: rgba(201, 162, 74, 0.08);
}

.contact-form {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  outline: none;
  background: rgba(5, 13, 24, 0.46);
  color: var(--white);
  padding: 13px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

select option {
  background: var(--navy-900);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(201, 162, 74, 0.72);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.14);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid,
.consent.is-invalid {
  border-color: rgba(255, 125, 112, 0.72);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 20px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gold-500);
}

.form-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Footer */

.site-footer {
  padding: 56px 0 34px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 36px;
}

.site-footer p {
  max-width: 460px;
  margin-top: 18px;
  font-size: 0.92rem;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-400);
}

.legal-copy {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.legal-copy p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

/* Back to top */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 162, 74, 0.52);
  border-radius: 999px;
  background: rgba(7, 20, 33, 0.86);
  color: var(--gold-400);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Generic content pages */

.page-shell {
  min-height: 100svh;
  padding: 150px 0 86px;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.16), transparent 34%),
    linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: rgba(255, 255, 255, 0.78);
}

.page-card {
  max-width: 920px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
}

.page-card h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.page-card h2 {
  margin-top: 34px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.page-card p,
.page-card li {
  color: rgba(255, 255, 255, 0.72);
}

.page-card p {
  margin-top: 18px;
}

.page-card ul {
  margin-top: 14px;
}

/* Responsive */

@media (max-width: 1120px) {
  .site-nav a {
    padding-inline: 9px;
    font-size: 0.8rem;
  }

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

  .hero-panel {
    max-width: 680px;
  }

  .service-grid,
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid,
  .case-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(5, 13, 24, 0.94);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(20px);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding-inline: 16px;
  }

  .site-nav a::after {
    content: "→";
    color: var(--gold-400);
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .split,
  .split--risk,
  .advisor-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fo-copy,
  .advisor-card {
    position: relative;
    top: auto;
  }

  .process-track::before {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 82px;
  }

  .container,
  .narrow {
    width: min(100% - 30px, var(--container));
  }

  .site-header {
    padding: 12px 0;
  }

  .brand {
    width: 190px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 70px;
  }

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

  .hero-metrics,
  .service-grid,
  .principles,
  .capability-grid,
  .process-track,
  .case-grid,
  .insight-grid,
  .form-row--split {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: auto;
  }

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

  .section-pad {
    padding: 66px 0;
  }

  .section-heading h2,
  .statement h2,
  .split--independent h2,
  .fo-copy h2,
  .risk-panel h2,
  .who-panel h2,
  .advisor-card h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .statement .container,
  .risk-panel,
  .who-panel,
  .advisor-card,
  .contact-form,
  .hero-panel {
    border-radius: 24px;
  }

  .fo-list article {
    grid-template-columns: 1fr;
  }

  .fo-list span {
    margin-bottom: 20px;
  }

  .timeline::before {
    left: 28px;
  }

  .timeline div {
    grid-template-columns: 58px 1fr;
    padding: 18px;
  }

  .contact-details a {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 166px;
  }

  .nav-toggle span {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .hero-panel,
  .service-card,
  .capability,
  .fo-list article,
  .process-track li,
  .case-card,
  .insight-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Páginas auxiliares */
.legal-page {
  min-height: 100svh;
  padding: calc(var(--header-height) + 72px) 0 80px;
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 162, 74, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff, #fbf8f1);
}

.legal-page--center {
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--color-navy);
}

.legal-page__card,
.legal-page__article {
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.legal-page__card {
  max-width: 780px;
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
}

.legal-page__article {
  max-width: 900px;
  padding: clamp(30px, 6vw, 68px);
}

.legal-page h1 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-page h2 {
  margin: 36px 0 0;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.16;
}

.legal-page p {
  margin: 18px 0 0;
  color: var(--color-muted);
  line-height: 1.82;
}

.legal-page--center .legal-page__card {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.legal-page--center h1,
.legal-page--center p {
  color: var(--color-white);
}

.legal-page--center p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}
