@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/cormorant-garamond-400.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("../fonts/cormorant-garamond-500.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../fonts/cormorant-garamond-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("../fonts/cormorant-garamond-700.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/manrope-400.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("../fonts/manrope-500.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../fonts/manrope-600.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("../fonts/manrope-700.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url("../fonts/manrope-800.woff2") format("woff2");
}

:root {
  --paper: #f7f4ec;
  --paper-soft: #fbf8f1;
  --ink: #17201b;
  --green: #25483a;
  --gold: #aa9364;
  --line: #d9d1bf;
  --graphite: #3b403c;
  --muted: #77736a;
  --success: #6f8c73;
  --white: #fffdf7;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-soft: 0 24px 80px rgba(23, 32, 27, 0.08);
  --shadow-line: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(170, 147, 100, 0.08), transparent 28rem),
    linear-gradient(135deg, rgba(37, 72, 58, 0.04), transparent 36rem),
    var(--paper);
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(23, 32, 27, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 27, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  border: 1px solid rgba(217, 209, 191, 0.78);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.82);
  box-shadow: var(--shadow-line), 0 18px 60px rgba(23, 32, 27, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 22px 0 28px;
}

.brand-lockup {
  display: inline-grid;
  gap: 2px;
  min-width: 190px;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.64rem;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand-subline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.46em;
}

.brand-subline::before,
.brand-subline::after {
  display: block;
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.brand-subline::after {
  width: 42px;
  background: linear-gradient(90deg, var(--gold), var(--gold) calc(100% - 6px), transparent calc(100% - 6px));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  border-radius: 999px;
  padding: 11px 14px;
  color: rgba(23, 32, 27, 0.78);
  font-size: 0.82rem;
  font-weight: 650;
  transition: color 500ms var(--ease), background 500ms var(--ease), transform 500ms var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(217, 209, 191, 0.42);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(37, 72, 58, 0.16);
  border-radius: 999px;
  color: var(--green);
  background: transparent;
}

.mobile-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 500ms var(--ease), opacity 500ms var(--ease);
}

.nav-open .mobile-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .mobile-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px 13px 22px;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform 600ms var(--ease), background 600ms var(--ease), color 600ms var(--ease), box-shadow 600ms var(--ease);
}

.btn:active {
  transform: scale(0.985);
}

.btn-primary {
  color: var(--paper-soft);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(37, 72, 58, 0.22);
}

.btn-secondary {
  color: var(--green);
  background: rgba(37, 72, 58, 0.08);
}

.btn-link {
  padding-inline: 0;
  color: var(--green);
  background: transparent;
}

.btn .btn-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.14);
  transition: transform 600ms var(--ease), background 600ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover .btn-dot {
  background: rgba(251, 248, 241, 0.22);
  transform: translateX(2px);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-tight {
  padding: 78px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.hero {
  min-height: 100dvh;
  padding: 118px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 70px;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 8.4vw, 8.4rem);
}

.page-hero h1,
.section-title {
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.hero-copy {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(23, 32, 27, 0.72);
  font-size: clamp(1.04rem, 1.4vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.architectural-stage {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.plane {
  position: absolute;
  border: 1px solid rgba(217, 209, 191, 0.76);
  background: linear-gradient(135deg, rgba(251, 248, 241, 0.96), rgba(247, 244, 236, 0.58));
  box-shadow: var(--shadow-line), var(--shadow-soft);
  transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg));
  animation: floatPlane 11s var(--ease) infinite alternate;
}

.plane-one {
  inset: 36px 34px auto auto;
  width: 63%;
  height: 70%;
  --rotate: -3deg;
}

.plane-two {
  right: 108px;
  bottom: 30px;
  width: 48%;
  height: 58%;
  --rotate: 5deg;
  animation-delay: -3s;
}

.plane-three {
  right: 0;
  top: 128px;
  width: 32%;
  height: 42%;
  border-color: rgba(170, 147, 100, 0.5);
  background: rgba(170, 147, 100, 0.08);
  --rotate: 0deg;
  animation-delay: -6s;
}

.ledger-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left;
  animation: drawLine 3.2s var(--ease) both;
}

.ledger-a {
  top: 38%;
  right: 4%;
  width: 86%;
}

.ledger-b {
  top: 61%;
  right: 18%;
  width: 68%;
  animation-delay: 360ms;
}

.ledger-dot {
  position: absolute;
  top: calc(38% - 4px);
  right: 3.5%;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(170, 147, 100, 0.08);
  animation: pulseDot 2.8s var(--ease) infinite;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 180px;
  border: 1px solid rgba(217, 209, 191, 0.78);
  border-radius: 18px;
  padding: 17px 18px;
  background: rgba(251, 248, 241, 0.86);
  box-shadow: var(--shadow-line), 0 22px 70px rgba(23, 32, 27, 0.1);
  backdrop-filter: blur(12px);
  animation: chipFloat 8s var(--ease) infinite alternate;
}

.floating-chip strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1;
}

.floating-chip span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chip-one {
  top: 17%;
  left: 2%;
}

.chip-two {
  right: 2%;
  bottom: 12%;
  animation-delay: -2.8s;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 74px;
  align-items: start;
}

.copy-large {
  color: rgba(23, 32, 27, 0.75);
  font-size: clamp(1.15rem, 1.8vw, 1.72rem);
  line-height: 1.5;
}

.rule-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.rule-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.rule-item span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
}

.rule-item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.rule-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.panel-shell {
  border: 1px solid rgba(217, 209, 191, 0.78);
  border-radius: 28px;
  padding: 8px;
  background: rgba(23, 32, 27, 0.035);
}

.panel-core {
  border: 1px solid rgba(217, 209, 191, 0.8);
  border-radius: 22px;
  padding: 28px;
  background: var(--paper-soft);
  box-shadow: var(--shadow-line), var(--shadow-soft);
}

.report-card {
  display: grid;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(170, 147, 100, 0.08), transparent 42%),
    var(--paper-soft);
}

.report-card .kicker {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-card h3 {
  max-width: 420px;
  margin: 24px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.report-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.chart-line {
  width: 100%;
  height: 150px;
  margin: 30px 0 0;
}

.chart-line path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 680;
  stroke-dashoffset: 680;
  animation: tracePath 2.6s var(--ease) forwards;
}

.chart-line .gold-path {
  stroke: var(--gold);
  stroke-width: 1.4;
  animation-delay: 420ms;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.feature-block {
  position: relative;
  min-height: 280px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.feature-block h3 {
  max-width: 480px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.feature-block p {
  max-width: 520px;
  color: var(--muted);
}

.feature-block::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 78%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.two-up {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: stretch;
}

.two-up .panel-core {
  min-height: 330px;
}

.two-up h2,
.member-preview h2 {
  margin: 12px 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.member-preview {
  display: grid;
  gap: 16px;
  min-height: 360px;
  align-content: center;
}

.member-preview p {
  max-width: 680px;
  color: var(--muted);
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.quiet-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.quiet-list span {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.quiet-list span::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.page-hero {
  padding: 142px 0 82px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(23, 32, 27, 0.72);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.archive-card {
  display: grid;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: var(--paper-soft);
  transition: transform 650ms var(--ease), border-color 650ms var(--ease), box-shadow 650ms var(--ease);
}

.archive-card:hover {
  border-color: rgba(170, 147, 100, 0.7);
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
}

.archive-card time {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-card h2,
.archive-card h3 {
  margin: 24px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 0.98;
}

.archive-card p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 50px;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  background: var(--paper-soft);
  box-shadow: var(--shadow-soft);
}

.auth-page {
  min-height: 100dvh;
  display: grid;
  align-items: center;
}

.auth-shell {
  display: grid;
  grid-template-columns: 0.8fr minmax(320px, 460px);
  gap: 56px;
  align-items: center;
}

.auth-shell h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.auth-shell p,
.form-note {
  color: var(--muted);
}

.form-note {
  margin: 18px 0 0;
  font-size: 0.88rem;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  color: var(--graphite);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(247, 244, 236, 0.72);
  outline: none;
  transition: border-color 450ms var(--ease), box-shadow 450ms var(--ease), transform 450ms var(--ease);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 72, 58, 0.08);
  transform: translateY(-1px);
}

.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.form-status {
  display: none;
  margin-bottom: 18px;
  border: 1px solid rgba(111, 140, 115, 0.35);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--green);
  background: rgba(111, 140, 115, 0.09);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(170, 147, 100, 0.46);
  color: var(--graphite);
  background: rgba(170, 147, 100, 0.12);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px;
  background: rgba(251, 248, 241, 0.68);
}

.legal-nav a {
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  transition: color 500ms var(--ease), background 500ms var(--ease), transform 500ms var(--ease);
}

.legal-nav a:hover,
.legal-nav a.active {
  color: var(--ink);
  background: rgba(217, 209, 191, 0.42);
  transform: translateX(2px);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 48px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.legal-content p,
.legal-content li {
  color: rgba(23, 32, 27, 0.74);
}

.legal-content a {
  color: var(--green);
  font-weight: 750;
}

.footer-note {
  max-width: 420px;
  color: var(--muted);
}

.content-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(170, 147, 100, 0.46);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(170, 147, 100, 0.08);
}

.subtle-link {
  color: var(--green);
  font-weight: 750;
}

.alert {
  border: 1px solid rgba(170, 147, 100, 0.42);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--graphite);
  background: rgba(170, 147, 100, 0.11);
}

.alert-success {
  border-color: rgba(111, 140, 115, 0.42);
  color: var(--green);
  background: rgba(111, 140, 115, 0.1);
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 70px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links h4 {
  margin: 0 0 14px;
  color: var(--graphite);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  color: var(--muted);
  font-size: 0.8rem;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: none;
  width: min(430px, calc(100% - 40px));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: rgba(251, 248, 241, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.cookie-banner.is-visible {
  display: block;
  animation: revealUp 800ms var(--ease) both;
}

.cookie-banner p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drawLine {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes tracePath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulseDot {
  50% {
    transform: scale(1.25);
    box-shadow: 0 0 0 14px rgba(170, 147, 100, 0);
  }
}

@keyframes floatPlane {
  to {
    transform: translate3d(-10px, 16px, 0) rotate(calc(var(--rotate, 0deg) * -0.5));
  }
}

@keyframes chipFloat {
  to {
    transform: translate3d(8px, -14px, 0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    background: rgba(251, 248, 241, 0.94);
    box-shadow: var(--shadow-soft);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .hero-grid,
  .split,
  .form-grid,
  .footer-grid,
  .two-up,
  .legal-layout,
  .portal-grid,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .architectural-stage {
    min-height: 500px;
  }

  .metrics-strip,
  .archive-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand-lockup {
    min-width: 154px;
  }

  .brand-name {
    font-size: 1.34rem;
  }

  .brand-subline {
    font-size: 0.48rem;
    letter-spacing: 0.34em;
  }

  .brand-subline::before,
  .brand-subline::after {
    width: 24px;
  }

  .hero {
    padding-top: 98px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 5rem);
  }

  .section {
    padding: 76px 0;
  }

  .page-hero {
    padding: 112px 0 54px;
  }

  .floating-chip {
    min-width: 150px;
    padding: 14px;
  }

  .plane-one {
    width: 72%;
  }

  .plane-two {
    right: 44px;
    width: 58%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Preview-faithful direction: Umbral Patrimonial */
body.page-mock {
  display: block;
  min-height: 100dvh;
  padding: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(170, 147, 100, 0.16), transparent 32rem),
    radial-gradient(circle at 12% 18%, rgba(37, 72, 58, 0.06), transparent 28rem),
    linear-gradient(180deg, #f5f0e7 0%, #f9f6ef 54%, #eee8dd 100%);
}

body.page-mock::before {
  opacity: 0.18;
  background-size: 58px 58px;
}

.page-mock .site-shell {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 18%, rgba(255, 253, 247, 0.86), transparent 25rem),
    radial-gradient(circle at 20% 15%, rgba(170, 147, 100, 0.11), transparent 22rem),
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(244, 238, 227, 0.78));
  box-shadow: none;
}

.page-mock .site-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(170, 147, 100, 0.14) 14.05%, transparent 14.2%),
    linear-gradient(90deg, transparent 0 51%, rgba(170, 147, 100, 0.08) 51.05%, transparent 51.2%),
    linear-gradient(180deg, transparent 0 49%, rgba(170, 147, 100, 0.12) 49.1%, transparent 49.25%);
}

.page-mock .site-header {
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 20;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-mock .nav {
  width: calc(100% - 108px);
  min-height: 52px;
  margin: 0 auto;
  padding: 0;
}

.page-mock .brand-lockup {
  min-width: 170px;
}

.page-mock .brand-name {
  color: var(--green);
  font-size: 1.55rem;
  line-height: 0.88;
}

.page-mock .brand-subline {
  width: 150px;
  color: var(--ink);
  font-size: 0.45rem;
  letter-spacing: 0.42em;
}

.page-mock .brand-subline::before {
  width: 54px;
}

.page-mock .brand-subline::after {
  width: 58px;
}

.page-mock .nav-links {
  gap: 34px;
  margin-left: auto;
}

.page-mock .nav-links a {
  padding: 6px 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 650;
  background: transparent;
}

.page-mock .nav-links a:hover,
.page-mock .nav-links a.active {
  color: var(--green);
  background: transparent;
  transform: translateY(-1px);
}

.page-mock .nav-actions {
  margin-left: 34px;
}

.page-mock .btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 7px;
  font-size: 0.72rem;
  box-shadow: none;
}

.page-mock .btn-primary,
.page-mock .btn-secondary {
  color: var(--paper-soft);
  background: linear-gradient(180deg, #1d4b3d, #0e3b30);
  box-shadow: 0 16px 30px rgba(12, 55, 44, 0.18), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.lock-mark,
.arrow-mark,
.lock-mini,
.mail-icon,
.phone-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.lock-mark {
  width: 10px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: 0.82;
}

.lock-mark::before {
  position: absolute;
  right: 2px;
  bottom: 7px;
  left: 2px;
  height: 5px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  content: "";
}

.arrow-mark {
  width: 17px;
  height: 1px;
  background: currentColor;
}

.arrow-mark::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.mock-main,
.mock-screen {
  min-height: inherit;
}

.mock-screen {
  position: relative;
  min-height: 100dvh;
  padding: 132px 5.5vw 42px;
}

.mock-eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mock-screen h1 {
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.mock-screen p,
.mock-screen small {
  color: rgba(23, 32, 27, 0.76);
}

.mock-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.mock-text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(170, 147, 100, 0.7);
  padding: 0 0 9px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 650;
}

.home-copy {
  position: relative;
  z-index: 4;
  width: min(460px, 42vw);
  margin-top: 92px;
}

.home-copy p {
  max-width: 360px;
  margin: 24px 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.portal-architecture {
  position: absolute;
  top: 112px;
  left: 32.8%;
  z-index: 2;
  width: min(790px, 58vw);
  height: auto;
  perspective: 900px;
}

.portal-architecture img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 46px rgba(59, 50, 35, 0.12));
}

.portal-wall {
  position: absolute;
  border: 1px solid rgba(199, 188, 166, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(211, 199, 178, 0.42)),
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(170, 147, 100, 0.12) 83px, transparent 84px);
  box-shadow: 0 24px 58px rgba(63, 54, 38, 0.14), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.portal-wall-back {
  top: 22px;
  right: 28px;
  width: 318px;
  height: 360px;
}

.portal-wall-mid {
  top: 44px;
  right: 84px;
  width: 286px;
  height: 330px;
  transform: translateX(-22px);
}

.portal-wall-front {
  top: 78px;
  left: 26px;
  width: 332px;
  height: 348px;
  background:
    linear-gradient(90deg, rgba(177, 163, 139, 0.24), rgba(255, 253, 247, 0.94) 32%, rgba(205, 192, 169, 0.28)),
    repeating-linear-gradient(180deg, transparent 0 66px, rgba(170, 147, 100, 0.12) 67px, transparent 68px);
}

.portal-opening {
  position: absolute;
  top: 144px;
  left: 154px;
  width: 162px;
  height: 232px;
  border: 12px solid rgba(213, 202, 183, 0.82);
  background: #fbf7ef;
  box-shadow: 22px 22px 44px rgba(68, 59, 44, 0.18) inset, 0 12px 42px rgba(67, 56, 39, 0.15);
}

.portal-opening::before {
  position: absolute;
  inset: -34px -52px auto auto;
  width: 116px;
  height: 62px;
  border-right: 10px solid rgba(213, 202, 183, 0.8);
  border-bottom: 10px solid rgba(213, 202, 183, 0.8);
  content: "";
}

.portal-courtyard {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 86px;
  background: linear-gradient(180deg, rgba(244, 240, 231, 0), rgba(226, 217, 201, 0.86));
}

.portal-tree {
  position: absolute;
  right: -28px;
  bottom: 74px;
  width: 84px;
  height: 118px;
  border-radius: 70% 42% 54% 42%;
  background:
    radial-gradient(circle at 40% 34%, rgba(37, 72, 58, 0.36), transparent 22px),
    radial-gradient(circle at 52% 48%, rgba(37, 72, 58, 0.28), transparent 30px),
    radial-gradient(circle at 62% 18%, rgba(37, 72, 58, 0.22), transparent 28px);
  filter: blur(0.2px);
}

.portal-tree::after {
  position: absolute;
  right: 33px;
  bottom: -64px;
  width: 1px;
  height: 76px;
  content: "";
  background: rgba(37, 72, 58, 0.42);
}

.floor-line {
  position: absolute;
  bottom: -20px;
  left: 214px;
  width: 1px;
  height: 340px;
  background: linear-gradient(180deg, rgba(170, 147, 100, 0.85), rgba(170, 147, 100, 0));
  transform-origin: top;
}

.info-screen,
.legal-screen,
.members-screen {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 72px;
  align-items: center;
}

.info-copy,
.legal-copy,
.members-copy {
  position: relative;
  z-index: 5;
  max-width: 500px;
  margin-top: 74px;
}

.info-copy h1,
.legal-copy h1,
.members-copy h1 {
  font-size: clamp(3.4rem, 5vw, 5.3rem);
}

.info-copy p,
.legal-copy p,
.members-copy p {
  max-width: 410px;
  margin-top: 20px;
  font-size: 0.92rem;
  line-height: 1.75;
}

.info-panel,
.legal-panel,
.members-panel {
  position: relative;
  z-index: 4;
  margin-top: 78px;
  border: 1px solid rgba(203, 192, 170, 0.76);
  border-radius: 10px;
  padding: 34px;
  background: rgba(255, 253, 247, 0.62);
  box-shadow: 0 28px 58px rgba(48, 41, 30, 0.12), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.ledger-list {
  display: grid;
  gap: 0;
}

.ledger-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(203, 192, 170, 0.68);
  padding: 22px 0;
}

.ledger-item:first-child {
  padding-top: 0;
}

.ledger-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ledger-item span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.ledger-item h2,
.ledger-item h3 {
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.ledger-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.legal-panel {
  max-height: 500px;
  overflow: auto;
  padding-right: 42px;
}

.legal-panel h2 {
  margin: 28px 0 8px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p,
.legal-panel li {
  color: rgba(23, 32, 27, 0.74);
  font-size: 0.86rem;
  line-height: 1.7;
}

.legal-panel a {
  color: var(--green);
  font-weight: 750;
}

.members-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.member-tile {
  min-height: 170px;
  border: 1px solid rgba(203, 192, 170, 0.72);
  border-radius: 10px;
  padding: 22px;
  background: rgba(255, 253, 247, 0.58);
}

.member-tile time {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-tile h2 {
  margin: 18px 0 8px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
}

.member-tile p {
  color: var(--muted);
  font-size: 0.82rem;
}

.floor-one { transform: rotate(0deg); }
.floor-two { transform: rotate(11deg); }
.floor-three { transform: rotate(-11deg); }
.floor-four { transform: rotate(20deg); opacity: 0.58; }
.floor-five { transform: rotate(-20deg); opacity: 0.58; }

.home-pills {
  position: absolute;
  top: 40.5%;
  right: 5.2vw;
  z-index: 4;
  display: grid;
  gap: 16px;
  width: 268px;
}

.mini-tile {
  display: grid;
  grid-template-columns: 30px 1fr 8px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(203, 192, 170, 0.82);
  border-radius: 10px;
  padding: 16px 18px;
  background: rgba(255, 253, 247, 0.76);
  box-shadow: 0 18px 40px rgba(43, 37, 27, 0.08), 0 1px 0 rgba(255, 255, 255, 0.78) inset;
  transition: transform 700ms var(--ease), box-shadow 700ms var(--ease);
}

.mini-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(43, 37, 27, 0.13);
}

.mini-tile strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.mini-tile i,
.confidential-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.confidential-row i {
  width: 100%;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(170, 147, 100, 0.88), rgba(170, 147, 100, 0.16));
}

.tile-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(37, 72, 58, 0.22);
  border-radius: 6px;
}

.tile-line {
  background:
    linear-gradient(135deg, transparent 47%, var(--green) 48% 52%, transparent 53%),
    radial-gradient(circle at 70% 28%, var(--gold) 0 2px, transparent 3px);
}

.tile-doc {
  background:
    linear-gradient(var(--green), var(--green)) 50% 32% / 10px 1px no-repeat,
    linear-gradient(var(--green), var(--green)) 50% 50% / 12px 1px no-repeat,
    linear-gradient(var(--green), var(--green)) 50% 68% / 8px 1px no-repeat;
}

.confidential-row {
  position: absolute;
  right: 5.5vw;
  bottom: 7vh;
  left: 5.5vw;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 0.78rem;
}

.confidential-row::after {
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.lock-mini {
  width: 11px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.lock-mini::before {
  position: absolute;
  right: 2px;
  bottom: 8px;
  left: 2px;
  height: 6px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.reports-copy,
.thesis-copy,
.contact-copy {
  position: relative;
  z-index: 5;
  width: 430px;
  margin-top: 76px;
}

.reports-copy {
  margin-top: 4px;
}

.reports-copy h1,
.contact-copy h1 {
  font-size: clamp(3rem, 4.2vw, 4.5rem);
}

.reports-copy p,
.thesis-copy p,
.contact-copy p {
  margin: 14px 0 0;
  font-size: 1.05rem;
}

.reports-copy small {
  display: block;
  max-width: 330px;
  margin-top: 32px;
  font-size: 0.78rem;
  line-height: 1.7;
}

.filter-row {
  display: flex;
  gap: 38px;
  margin-top: 32px;
}

.filter-row button {
  border: 0;
  border-bottom: 1px solid rgba(170, 147, 100, 0.58);
  padding: 0 28px 10px 0;
  color: var(--green);
  font-size: 0.78rem;
  background: transparent;
}

.month-rail {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, 0.9fr) auto;
  align-items: center;
  width: 610px;
  margin-top: 24px;
  border: 1px solid rgba(203, 192, 170, 0.72);
  border-radius: 10px;
  padding: 18px 18px 14px;
  background: rgba(255, 253, 247, 0.58);
}

.month-rail strong,
.month-rail span {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
}

.month-rail strong {
  position: relative;
  color: var(--green);
  font-size: 0.94rem;
}

.month-rail strong::after {
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 44px;
  height: 3px;
  content: "";
  background: var(--green);
}

.month-rail span {
  color: var(--muted);
}

.month-rail i {
  color: var(--gold);
  font-style: normal;
}

.report-metrics {
  display: flex;
  gap: 56px;
  margin: 22px 0 18px;
}

.report-metrics div {
  position: relative;
  min-width: 130px;
}

.report-metrics div + div::before {
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -28px;
  width: 1px;
  content: "";
  background: rgba(170, 147, 100, 0.45);
}

.report-metrics span,
.report-metrics em {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
}

.report-metrics strong {
  display: block;
  margin: 7px 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.paper-stage {
  position: absolute;
  top: 88px;
  right: 20px;
  width: 780px;
  height: 590px;
  perspective: 1100px;
}

.report-paper {
  position: absolute;
  width: 260px;
  height: 440px;
  border: 1px solid rgba(199, 188, 166, 0.78);
  padding: 48px 42px 34px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(237, 229, 216, 0.84)),
    repeating-linear-gradient(180deg, transparent 0 58px, rgba(170, 147, 100, 0.11) 59px, transparent 60px);
  box-shadow: 0 34px 64px rgba(57, 48, 34, 0.18), 0 1px 0 rgba(255, 255, 255, 0.84) inset;
  transform-origin: bottom center;
}

.report-paper time {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-paper h2 {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
}

.paper-main {
  z-index: 5;
  top: 38px;
  left: 82px;
  width: 318px;
  height: 514px;
  transform: rotate(7deg) translateZ(90px);
  animation: paperFloat 8s var(--ease) infinite alternate;
}

.paper-two {
  z-index: 4;
  top: 96px;
  left: 326px;
  transform: rotate(9deg) translateZ(30px);
  opacity: 0.84;
}

.paper-three {
  z-index: 3;
  top: 130px;
  left: 496px;
  transform: rotate(8deg);
  opacity: 0.58;
}

.paper-four {
  z-index: 2;
  top: 170px;
  left: 660px;
  transform: rotate(8deg);
  opacity: 0.38;
}

.paper-chart {
  width: 100%;
  margin-top: 44px;
  overflow: visible;
}

.paper-chart path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
}

.paper-chart .paper-chart-gold {
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}

.paper-chart circle {
  fill: var(--green);
}

.report-paper footer {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid rgba(170, 147, 100, 0.45);
  padding-top: 18px;
}

.report-paper footer span {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

.report-paper footer i {
  color: var(--ink);
  font-size: 0.72rem;
  font-style: normal;
}

.thesis-copy {
  margin-top: 66px;
}

.thesis-copy h1 {
  font-size: clamp(3.6rem, 5vw, 5.4rem);
}

.thesis-copy p {
  max-width: 405px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  line-height: 1.75;
}

.macro-board {
  position: absolute;
  top: 116px;
  right: -16px;
  width: 930px;
  height: 520px;
}

.macro-gridlines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(170, 147, 100, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 147, 100, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
}

.macro-curves {
  position: absolute;
  inset: 38px 0 0;
  width: 100%;
  height: 430px;
}

.macro-curves path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: tracePath 3s var(--ease) forwards;
}

.macro-curves .curve-gold {
  stroke: var(--gold);
  stroke-width: 1.7;
  animation-delay: 260ms;
}

.macro-curves .curve-soft {
  stroke: rgba(37, 72, 58, 0.26);
  stroke-width: 1.2;
  stroke-dasharray: 5 7;
  animation-delay: 520ms;
}

.point {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 253, 247, 0.9);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(37, 72, 58, 0.08);
}

.p1 { left: 248px; top: 335px; opacity: 0.35; }
.p2 { left: 372px; top: 245px; }
.p3 { left: 482px; top: 286px; }
.p4 { left: 606px; top: 266px; background: var(--gold); }
.p5 { right: 36px; top: 84px; }

.macro-chip {
  position: absolute;
  z-index: 4;
  min-width: 180px;
  border: 1px solid rgba(203, 192, 170, 0.78);
  border-radius: 9px;
  padding: 15px 18px 14px 48px;
  background: rgba(255, 253, 247, 0.8);
  box-shadow: 0 18px 38px rgba(43, 37, 27, 0.1), 0 1px 0 rgba(255, 255, 255, 0.84) inset;
}

.macro-chip::before {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green);
  border-radius: 6px;
  content: "";
}

.macro-chip strong,
.macro-chip span {
  display: block;
  font-size: 0.72rem;
}

.macro-chip strong {
  color: var(--green);
}

.macro-chip span {
  color: var(--muted);
}

.chip-liquidez { top: 46px; left: 164px; }
.chip-pmi { top: 162px; left: 178px; }
.chip-btc { top: 264px; left: 178px; }
.chip-risk { right: 120px; bottom: 72px; }

.macro-bottom-bar {
  position: absolute;
  right: 54px;
  bottom: 18px;
  left: 54px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(203, 192, 170, 0.72);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.62);
}

.macro-bottom-bar div {
  position: relative;
  padding: 23px 46px 24px;
}

.macro-bottom-bar div + div {
  border-left: 1px solid rgba(170, 147, 100, 0.48);
}

.macro-bottom-bar strong,
.macro-bottom-bar span {
  display: block;
}

.macro-bottom-bar strong {
  color: var(--green);
  font-size: 0.86rem;
}

.macro-bottom-bar span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.macro-bottom-bar i {
  position: absolute;
  top: 24px;
  right: 42px;
  color: var(--green);
  font-style: normal;
}

.contact-copy {
  margin-top: 116px;
}

.contact-copy p {
  max-width: 360px;
  font-size: 0.88rem;
  line-height: 1.8;
}

.contact-line {
  width: 220px;
  height: 1px;
  margin: 52px 0 40px;
  background: linear-gradient(90deg, var(--gold), var(--gold) calc(100% - 8px), transparent calc(100% - 8px));
}

.contact-line::after {
  display: block;
  width: 6px;
  height: 6px;
  margin-left: 214px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  transform: translateY(-2.5px);
}

.contact-methods {
  display: grid;
  gap: 18px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(23, 32, 27, 0.82);
  font-size: 0.82rem;
}

.mail-icon,
.phone-icon {
  width: 19px;
  height: 14px;
  border: 1px solid var(--green);
}

.mail-icon::before {
  position: absolute;
  inset: 2px;
  border-top: 1px solid var(--green);
  border-left: 1px solid var(--green);
  content: "";
  transform: rotate(45deg) translate(2px, -4px);
}

.phone-icon {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-28deg);
}

.contact-rays {
  position: absolute;
  right: 180px;
  bottom: -28px;
  z-index: 1;
  width: 520px;
  height: 330px;
  transform-origin: bottom left;
}

.contact-rays span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 640px;
  background: linear-gradient(180deg, rgba(170, 147, 100, 0.75), rgba(170, 147, 100, 0));
  transform-origin: bottom;
}

.contact-rays span:nth-child(1) { transform: rotate(47deg); }
.contact-rays span:nth-child(2) { transform: rotate(54deg); }
.contact-rays span:nth-child(3) { transform: rotate(61deg); }
.contact-rays span:nth-child(4) { transform: rotate(68deg); }
.contact-rays span:nth-child(5) { transform: rotate(75deg); }
.contact-rays span:nth-child(6) { transform: rotate(82deg); }

.mock-form {
  position: absolute;
  top: 172px;
  left: 47.5%;
  z-index: 5;
  width: 340px;
  border: 1px solid rgba(203, 192, 170, 0.78);
  border-radius: 8px;
  padding: 42px 42px 38px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 28px 58px rgba(48, 41, 30, 0.16), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.mock-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.mock-form label span {
  color: var(--muted);
  font-size: 0.72rem;
}

.mock-form input,
.mock-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(203, 192, 170, 0.74);
  border-radius: 0;
  padding: 9px 0 12px;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.mock-form textarea {
  min-height: 66px;
  resize: vertical;
}

.mock-form input:focus,
.mock-form textarea:focus {
  border-color: var(--green);
  box-shadow: none;
  transform: none;
}

.mock-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  margin-bottom: 22px !important;
}

.mock-check input {
  width: 15px;
  accent-color: var(--green);
}

.investor-panel {
  position: absolute;
  top: 172px;
  right: 46px;
  z-index: 6;
  width: 322px;
  min-height: 488px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 8px;
  padding: 38px 38px 34px;
  color: var(--paper-soft);
  background:
    radial-gradient(circle at 88% 12%, rgba(111, 140, 115, 0.28), transparent 12rem),
    linear-gradient(145deg, #205242, #06372d);
  box-shadow: 0 34px 72px rgba(7, 45, 36, 0.34), 0 1px 0 rgba(255, 255, 255, 0.16) inset;
}

.investor-panel h2,
.investor-panel h3 {
  margin: 0;
  color: var(--paper-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
}

.investor-panel h2 {
  font-size: 2rem;
}

.investor-panel h3 {
  font-size: 1.35rem;
}

.investor-panel p {
  color: rgba(251, 248, 241, 0.78);
  font-size: 0.82rem;
  line-height: 1.75;
}

.investor-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  margin: 22px 0 36px;
  border-radius: 7px;
  padding: 0 20px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 750;
  background: var(--paper-soft);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.investor-panel i {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 38px;
  background: linear-gradient(90deg, var(--gold), var(--gold) calc(100% - 8px), transparent calc(100% - 8px));
}

@keyframes paperFloat {
  to {
    transform: rotate(5deg) translate3d(-8px, 10px, 90px);
  }
}

@media (max-width: 1180px) {
  body.page-mock {
    display: block;
    padding: 14px;
  }

  .page-mock .site-shell {
    width: 100%;
    min-height: calc(100dvh - 28px);
  }

  .page-mock .nav {
    width: calc(100% - 46px);
  }

  .portal-architecture,
  .paper-stage,
  .macro-board,
  .investor-panel {
    opacity: 0.7;
    transform: scale(0.86);
    transform-origin: top right;
  }

  .home-pills {
    right: 34px;
  }

  .mock-form {
    left: auto;
    right: 330px;
    transform: scale(0.92);
    transform-origin: top right;
  }
}

@media (max-width: 900px) {
  .page-mock .site-shell {
    border-radius: 0;
    min-height: auto;
  }

  .page-mock .site-header {
    position: relative;
    top: auto;
    padding-top: 22px;
  }

  .page-mock .nav {
    width: calc(100% - 30px);
  }

  .page-mock .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(251, 248, 241, 0.96);
  }

  .page-mock .nav-open .nav-links {
    display: grid;
  }

  .page-mock .mobile-toggle {
    display: block;
  }

  .page-mock .nav-actions .btn-secondary {
    display: none;
  }

  .mock-screen {
    display: grid;
    gap: 28px;
    padding: 56px 24px 36px;
  }

  .info-screen,
  .legal-screen,
  .members-screen {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-copy,
  .reports-copy,
  .thesis-copy,
  .contact-copy,
  .info-copy,
  .legal-copy,
  .members-copy {
    width: auto;
    margin-top: 0;
  }

  .info-panel,
  .legal-panel,
  .members-panel {
    margin-top: 0;
  }

  .legal-panel {
    max-height: none;
  }

  .members-panel {
    grid-template-columns: 1fr;
  }

  .portal-architecture,
  .home-pills,
  .paper-stage,
  .macro-board,
  .macro-bottom-bar,
  .mock-form,
  .investor-panel,
  .contact-rays,
  .confidential-row {
    position: relative;
    inset: auto;
    width: auto;
    min-height: auto;
    transform: none;
    opacity: 1;
  }

  .portal-architecture {
    width: min(430px, 100%);
    height: 420px;
  }

  .paper-stage {
    height: 520px;
    overflow: hidden;
  }

  .paper-main {
    left: 20px;
  }

  .paper-two {
    left: 270px;
  }

  .paper-three,
  .paper-four {
    display: none;
  }

  .macro-board {
    height: 420px;
  }

  .macro-bottom-bar {
    grid-template-columns: 1fr;
  }

  .macro-bottom-bar div + div {
    border-top: 1px solid rgba(170, 147, 100, 0.48);
    border-left: 0;
  }

  .mock-form,
  .investor-panel {
    padding: 28px;
  }

  .month-rail,
  .report-metrics {
    width: 100%;
    overflow-x: auto;
  }
}

/* Legacy visual homepage */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper-soft);
  background: var(--green);
  transform: translateY(-140%);
  transition: transform 520ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

body.museum-home {
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(170, 147, 100, 0.13), transparent 24rem),
    radial-gradient(circle at 84% 16%, rgba(37, 72, 58, 0.10), transparent 30rem),
    linear-gradient(115deg, rgba(255, 253, 247, 0.92), rgba(239, 232, 219, 0.58)),
    #faf7ef;
}

body.museum-home::before {
  z-index: 1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(37, 72, 58, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 147, 100, 0.025) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.museum-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 40%, rgba(255, 253, 247, 0.92), transparent 19rem),
    linear-gradient(120deg, transparent 0 52%, rgba(170, 147, 100, 0.11) 52.15%, transparent 52.4%),
    linear-gradient(132deg, transparent 0 64%, rgba(37, 72, 58, 0.07) 64.15%, transparent 64.35%);
}

.museum-home .museum-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 24;
  width: min(1280px, calc(100% - 48px));
  margin: 0;
  border: 1px solid rgba(170, 147, 100, 0.24);
  border-radius: 999px;
  background: rgba(250, 247, 239, 0.78);
  box-shadow: 0 24px 80px rgba(65, 52, 35, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.museum-nav {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 72px);
  min-height: 78px;
  padding: 8px 16px 8px 24px;
}

.museum-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 12vw, 174px);
}

.museum-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.museum-home .museum-nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.museum-home .museum-nav-links a {
  position: relative;
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(23, 32, 27, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 520ms var(--ease), background 520ms var(--ease), transform 520ms var(--ease);
}

.museum-home .museum-nav-links a:hover,
.museum-home .museum-nav-links a.active {
  color: var(--ink);
  background: rgba(170, 147, 100, 0.12);
  transform: translateY(-1px);
}

.museum-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.museum-access {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 12px 0 18px;
  color: var(--paper-soft);
  font-size: 0.75rem;
  font-weight: 750;
  background: linear-gradient(145deg, #315846, #0b3c31);
  box-shadow: 0 18px 38px rgba(37, 72, 58, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 560ms var(--ease), box-shadow 560ms var(--ease);
}

.museum-access span {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 253, 247, 0.36);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255, 253, 247, 0.9) 49% 52%, transparent 53%),
    radial-gradient(circle at 50% 50%, rgba(255, 253, 247, 0.17), transparent 60%);
  transition: transform 560ms var(--ease), background 560ms var(--ease);
}

.museum-access:hover {
  box-shadow: 0 24px 48px rgba(37, 72, 58, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.museum-access:hover span {
  transform: translateX(2px) rotate(-45deg);
}

.museum-home .mobile-toggle {
  color: var(--green);
  background: rgba(255, 253, 247, 0.58);
}

.museum-main,
.museum-footer {
  position: relative;
  z-index: 4;
}

.museum-home .museum-header {
  display: none;
}

.museum-hero-raster {
  position: relative;
  z-index: 5;
  width: 100%;
  height: clamp(760px, 100dvh, 1024px);
  min-height: 100dvh;
  overflow: hidden;
  background: #faf7ef;
}

.museum-hero-raster > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.museum-logo-mask {
  position: absolute;
  top: 2.2%;
  left: 2.5%;
  z-index: 3;
  width: clamp(250px, 25vw, 390px);
  height: clamp(126px, 13vw, 205px);
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 18%, rgba(255, 253, 247, 0.92), transparent 10rem),
    linear-gradient(110deg, rgba(250, 247, 239, 0.98), rgba(250, 247, 239, 0.9));
  box-shadow: 26px 0 54px rgba(250, 247, 239, 0.78);
}

.museum-hero-raster .museum-official-logo {
  position: absolute;
  top: 2.6%;
  left: 3.2%;
  z-index: 4;
  width: clamp(208px, 18.6vw, 286px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(65, 52, 35, 0.06));
  animation: officialLogoSettle 1200ms var(--ease) 200ms both;
}

.museum-hero-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 8px;
  outline-offset: 3px;
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease), background 520ms var(--ease);
}

.hotspot:focus-visible {
  outline: 2px solid var(--green);
  background: rgba(37, 72, 58, 0.08);
}

.hotspot-cta::after,
.hotspot-acceso-top::after,
.raster-hotspot::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 253, 247, 0.34) 48%, transparent 62%);
  transform: translateX(-36%);
  transition: opacity 520ms var(--ease), transform 760ms var(--ease), box-shadow 520ms var(--ease);
}

.hotspot:hover,
.raster-hotspot:hover {
  transform: translateY(-2px);
}

.hotspot-cta:hover::after,
.hotspot-acceso-top:hover::after,
.raster-hotspot:hover::after {
  opacity: 1;
  transform: translateX(36%);
}

.hotspot-logo {
  top: 3.8%;
  left: 3.2%;
  width: 27%;
  height: 10%;
}

.hotspot-filosofia {
  top: 6%;
  left: 55%;
  width: 6.5%;
  height: 4.8%;
}

.hotspot-reportes {
  top: 6%;
  left: 63%;
  width: 6.6%;
  height: 4.8%;
}

.hotspot-capital {
  top: 6%;
  left: 71%;
  width: 5.5%;
  height: 4.8%;
}

.hotspot-contacto {
  top: 6%;
  left: 78%;
  width: 6.7%;
  height: 4.8%;
}

.hotspot-acceso-top {
  top: 5.1%;
  left: 84.4%;
  width: 12.5%;
  height: 5.8%;
}

.hotspot-cta {
  top: 63.4%;
  left: 4.6%;
  width: 14.7%;
  height: 6.3%;
}

.hotspot-acceso {
  top: 64.6%;
  left: 21.8%;
  width: 13.5%;
  height: 5.2%;
}

.museum-raster-section {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: auto;
  overflow: hidden;
  background: #faf7ef;
  scroll-margin-top: 0;
  isolation: isolate;
}

.museum-raster-section img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  transform: scale(1.035);
  transition: transform 1600ms var(--ease), filter 1600ms var(--ease);
}

.museum-raster-section.is-visible img {
  transform: scale(1);
}

.museum-raster-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 247, 239, 0.14), transparent 18%, transparent 82%, rgba(250, 247, 239, 0.14)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.12), transparent 18%, transparent 84%, rgba(255, 253, 247, 0.18));
  opacity: 0;
  transition: opacity 1200ms var(--ease);
}

.museum-raster-section.is-visible::before {
  opacity: 1;
}

.museum-raster-section::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  z-index: 2;
  width: 24%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.26), transparent);
  transform: skewX(-12deg) translateX(-120%);
}

.museum-raster-section.is-visible::after {
  animation: rasterLightPass 1600ms var(--ease) 420ms both;
}

.raster-hotspots {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.raster-hotspot {
  position: absolute;
  display: block;
  border-radius: 10px;
  outline-offset: 3px;
  transition: transform 520ms var(--ease), background 520ms var(--ease), box-shadow 520ms var(--ease);
}

.raster-hotspot:focus-visible {
  outline: 2px solid var(--green);
  background: rgba(37, 72, 58, 0.08);
}

.filosofia-primary {
  top: 60.2%;
  left: 4.2%;
  width: 18.3%;
  height: 6.6%;
}

.filosofia-secondary {
  top: 60.4%;
  left: 24.2%;
  width: 13%;
  height: 6.4%;
}

.reportes-primary {
  top: 72.2%;
  left: 5%;
  width: 10.7%;
  height: 6.3%;
}

.reportes-secondary {
  top: 72.2%;
  left: 17.2%;
  width: 12.2%;
  height: 6.3%;
}

.reportes-login {
  top: 6.4%;
  right: 5.2%;
  width: 13.6%;
  height: 6.4%;
}

.capital-primary {
  top: 61.1%;
  left: 5.1%;
  width: 11.7%;
  height: 6.1%;
}

.capital-secondary {
  top: 61.1%;
  left: 18.5%;
  width: 10.2%;
  height: 6.1%;
}

.capital-login {
  top: 4%;
  right: 2.4%;
  width: 13.6%;
  height: 5.8%;
}

.miembros-primary {
  top: 51.6%;
  left: 3.7%;
  width: 14.3%;
  height: 6.3%;
}

.miembros-secondary {
  top: 51.6%;
  left: 19%;
  width: 13.4%;
  height: 6.3%;
}

.miembros-portal {
  top: 69%;
  right: 5.8%;
  width: 15.5%;
  height: 6.4%;
}

.contacto-primary {
  top: 39%;
  left: 68%;
  width: 17%;
  height: 18%;
}

.contacto-email {
  top: 34%;
  left: 20%;
  width: 18%;
  height: 18%;
}

.museum-section {
  position: relative;
  width: min(1440px, calc(100% - 64px));
  min-height: 100dvh;
  margin: 0 auto;
  padding: clamp(112px, 13vw, 188px) 0 clamp(84px, 10vw, 148px);
  scroll-margin-top: 132px;
}

.museum-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.museum-kicker::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.museum-home h1,
.museum-home h2,
.museum-home h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
}

.museum-home p {
  margin: 0;
  color: rgba(23, 32, 27, 0.68);
  line-height: 1.8;
  text-wrap: pretty;
}

.museum-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  grid-template-rows: 1fr auto;
  gap: clamp(42px, 7vw, 106px);
  align-items: center;
  padding-top: clamp(150px, 14vw, 196px);
}

.museum-hero::after {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: min(520px, 42vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(170, 147, 100, 0.52), transparent);
  transform: rotate(-28deg);
  transform-origin: right center;
}

.museum-hero-copy {
  max-width: 610px;
}

.museum-hero-copy h1 {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(4.6rem, 9.2vw, 9.7rem);
  line-height: 0.86;
}

.museum-hero-copy p {
  max-width: 520px;
  margin-top: 30px;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.museum-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 40px;
}

.museum-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 7px 8px 7px 22px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 620ms var(--ease), box-shadow 620ms var(--ease), background 620ms var(--ease), color 620ms var(--ease);
}

.museum-button:active {
  transform: scale(0.982);
}

.museum-button i {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform 620ms var(--ease), background 620ms var(--ease);
}

.museum-button i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  transform: translate(-62%, -50%) rotate(45deg);
}

.museum-button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform: translate(-62%, -50%);
}

.museum-button:hover {
  transform: translateY(-2px);
}

.museum-button:hover i {
  transform: translateX(3px) translateY(-1px);
}

.museum-button-primary {
  color: var(--paper-soft);
  background: linear-gradient(145deg, #315846, #0b3c31);
  box-shadow: 0 20px 46px rgba(37, 72, 58, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.museum-button-primary i {
  color: var(--paper-soft);
  background: rgba(255, 253, 247, 0.13);
}

.museum-button-light {
  color: var(--green);
  background: var(--paper-soft);
  box-shadow: 0 18px 42px rgba(5, 42, 34, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.museum-button-light i {
  background: rgba(37, 72, 58, 0.08);
}

.museum-link {
  position: relative;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 780;
}

.museum-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0.7);
  transform-origin: left;
  transition: transform 520ms var(--ease);
}

.museum-link:hover::after {
  transform: scaleX(1);
}

.museum-hero-wall {
  position: relative;
  min-height: clamp(520px, 62vw, 760px);
  border-radius: 2px;
  perspective: 1400px;
}

.museum-wall-plane {
  position: absolute;
  inset: 3% 0 0 8%;
  border: 1px solid rgba(170, 147, 100, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.92), rgba(239, 232, 219, 0.52)),
    linear-gradient(135deg, transparent 0 56%, rgba(170, 147, 100, 0.12) 56.2%, transparent 56.55%);
  box-shadow:
    28px 34px 90px rgba(65, 52, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: rotateY(-10deg) rotateX(2deg);
  transform-origin: left center;
}

.museum-wall-plane::before,
.museum-wall-plane::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.museum-wall-plane::before {
  inset: 12% 12% 12% 10%;
  border: 1px solid rgba(170, 147, 100, 0.14);
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(37, 72, 58, 0.035) 42px 43px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(170, 147, 100, 0.04) 42px 43px);
}

.museum-wall-plane::after {
  right: -7%;
  bottom: 18%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, rgba(170, 147, 100, 0.8), transparent);
  transform: rotate(-17deg);
}

.museum-emboss {
  position: absolute;
  top: 50%;
  left: 57%;
  width: min(560px, 62%);
  max-width: none;
  opacity: 0.92;
  transform: translate(-50%, -50%) rotateY(-7deg);
  animation: museumBreath 8s var(--ease) infinite alternate;
}

.museum-wall-label {
  position: absolute;
  left: 12%;
  bottom: 7%;
  max-width: 300px;
  border-left: 1px solid var(--gold);
  padding-left: 18px;
}

.museum-wall-label span,
.museum-wall-label strong {
  display: block;
}

.museum-wall-label span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.museum-wall-label strong {
  margin-top: 9px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.05;
}

.museum-ledger {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.78fr 1fr 1.22fr;
  gap: 0;
  border: 1px solid rgba(170, 147, 100, 0.22);
  background: rgba(255, 253, 247, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 22px 70px rgba(65, 52, 35, 0.08);
}

.museum-ledger article {
  min-height: 132px;
  padding: clamp(22px, 3vw, 36px);
}

.museum-ledger article + article {
  border-left: 1px solid rgba(170, 147, 100, 0.22);
}

.museum-ledger span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.museum-ledger strong {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.03;
}

.museum-ledger p {
  max-width: 280px;
  margin-top: 12px;
  font-size: 0.86rem;
}

.museum-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 8vw, 128px);
  align-items: end;
}

.museum-section-head h2,
.museum-report-copy h2,
.museum-private-room h2,
.museum-contact-copy h2 {
  font-size: clamp(3.7rem, 7.4vw, 7.6rem);
  line-height: 0.9;
}

.museum-philosophy {
  display: grid;
  align-content: center;
}

.museum-philosophy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(54px, 8vw, 104px);
}

.museum-plaque {
  position: relative;
  min-height: 330px;
  border: 1px solid rgba(170, 147, 100, 0.22);
  padding: clamp(30px, 4vw, 54px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.74), rgba(239, 232, 219, 0.3)),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(170, 147, 100, 0.04) 68px 69px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 26px 74px rgba(65, 52, 35, 0.07);
  overflow: hidden;
  transition: transform 760ms var(--ease), box-shadow 760ms var(--ease), border-color 760ms var(--ease);
}

.museum-plaque::after {
  position: absolute;
  right: -52px;
  bottom: 30px;
  width: 220px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(170, 147, 100, 0.72));
  transform: rotate(-38deg);
}

.museum-plaque:hover {
  border-color: rgba(170, 147, 100, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 34px 92px rgba(65, 52, 35, 0.1);
  transform: translateY(-6px);
}

.museum-plaque span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.museum-plaque h3 {
  max-width: 620px;
  margin-top: 28px;
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
  line-height: 0.94;
}

.museum-plaque p {
  max-width: 520px;
  margin-top: 28px;
}

.museum-plaque-wide {
  grid-column: 1 / -1;
  min-height: 290px;
  margin-left: clamp(70px, 12vw, 190px);
}

.museum-reports {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1.28fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.museum-report-copy {
  max-width: 560px;
}

.museum-report-copy h2 {
  margin-top: 24px;
}

.museum-report-copy p {
  margin: 28px 0 36px;
}

.museum-report-stage {
  position: relative;
  min-height: 700px;
  perspective: 1600px;
}

.museum-report-stage::before {
  position: absolute;
  inset: 10% 0 12% 8%;
  border: 1px solid rgba(170, 147, 100, 0.15);
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 253, 247, 0.64), rgba(239, 232, 219, 0.3)),
    repeating-linear-gradient(0deg, transparent 0 56px, rgba(37, 72, 58, 0.035) 56px 57px);
  transform: rotateY(-9deg);
}

.museum-report-card {
  position: absolute;
  border: 1px solid rgba(170, 147, 100, 0.22);
  background: #fffdf7;
  box-shadow: 0 30px 90px rgba(65, 52, 35, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform-style: preserve-3d;
}

.museum-report-main {
  top: 9%;
  left: 20%;
  z-index: 3;
  width: min(360px, 46%);
  transform: rotateZ(-3deg) rotateY(-13deg);
  animation: museumReportFloat 5.8s var(--ease) infinite alternate;
}

.museum-report-main img {
  display: block;
  width: 100%;
  height: auto;
}

.museum-report-back,
.museum-report-side {
  display: grid;
  align-content: end;
  width: 290px;
  min-height: 420px;
  padding: 34px;
}

.museum-report-back {
  top: 15%;
  right: 14%;
  z-index: 2;
  opacity: 0.78;
  transform: rotateZ(4deg) rotateY(-20deg) translateZ(-40px);
  animation: museumPaperBack 7.2s var(--ease) infinite alternate;
}

.museum-report-side {
  top: 29%;
  right: 0;
  z-index: 1;
  opacity: 0.52;
  transform: rotateZ(8deg) rotateY(-26deg) translateZ(-90px);
}

.museum-report-card span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.museum-report-card strong {
  margin-top: 18px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.02;
}

.museum-report-metrics {
  position: absolute;
  left: 5%;
  bottom: 7%;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: min(620px, 70%);
  border: 1px solid rgba(170, 147, 100, 0.26);
  background: rgba(250, 247, 239, 0.78);
  box-shadow: 0 22px 70px rgba(65, 52, 35, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.museum-report-metrics div {
  padding: 24px 28px;
}

.museum-report-metrics div + div {
  border-left: 1px solid rgba(170, 147, 100, 0.24);
}

.museum-report-metrics span,
.museum-report-metrics strong {
  display: block;
}

.museum-report-metrics span {
  color: rgba(23, 32, 27, 0.58);
  font-size: 0.72rem;
  font-weight: 750;
}

.museum-report-metrics strong {
  margin-top: 8px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.museum-capital {
  display: grid;
  align-content: center;
}

.museum-map-shell {
  margin-top: clamp(52px, 7vw, 96px);
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(170, 147, 100, 0.18);
  background: rgba(255, 253, 247, 0.38);
  box-shadow: 0 28px 88px rgba(65, 52, 35, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.museum-map {
  position: relative;
  min-height: clamp(460px, 46vw, 670px);
  border: 1px solid rgba(170, 147, 100, 0.16);
  background:
    radial-gradient(circle at 24% 34%, rgba(170, 147, 100, 0.12), transparent 16rem),
    linear-gradient(140deg, rgba(255, 253, 247, 0.92), rgba(239, 232, 219, 0.46));
  overflow: hidden;
}

.museum-map svg {
  position: absolute;
  inset: 8% 4% 8% 4%;
  width: 92%;
  height: 84%;
}

.map-grid {
  fill: none;
  stroke: rgba(170, 147, 100, 0.18);
  stroke-width: 1;
}

.map-route {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: museumDraw 2.9s var(--ease) 500ms forwards;
}

.map-route-green {
  stroke: var(--green);
}

.map-route-gold {
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-dasharray: 10 12;
  stroke-dashoffset: 1200;
}

.museum-map circle {
  fill: var(--green);
  stroke: #fffdf7;
  stroke-width: 5;
}

.museum-map-label {
  position: absolute;
  border: 1px solid rgba(170, 147, 100, 0.26);
  padding: 10px 14px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 12px 34px rgba(65, 52, 35, 0.08);
}

.label-liquidity {
  top: 18%;
  left: 11%;
}

.label-rates {
  top: 35%;
  right: 18%;
}

.label-mexico {
  bottom: 24%;
  left: 38%;
}

.label-bitcoin {
  right: 9%;
  bottom: 14%;
}

.museum-map-caption {
  position: absolute;
  left: 42px;
  bottom: 34px;
  color: rgba(23, 32, 27, 0.54);
  font-size: 0.82rem;
  font-weight: 720;
}

.museum-private {
  min-height: auto;
  padding-top: clamp(78px, 9vw, 128px);
}

.museum-private-room {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
  min-height: 720px;
  padding: clamp(42px, 7vw, 92px);
  color: var(--paper-soft);
  background:
    radial-gradient(circle at 82% 18%, rgba(170, 147, 100, 0.2), transparent 21rem),
    linear-gradient(145deg, #315846, #07362c);
  box-shadow: 0 42px 120px rgba(5, 42, 34, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.museum-private-room .museum-kicker {
  color: rgba(217, 209, 191, 0.95);
}

.museum-private-room h2 {
  margin-top: 24px;
  color: var(--paper-soft);
}

.museum-private-room p {
  max-width: 520px;
  margin: 28px 0 38px;
  color: rgba(251, 248, 241, 0.72);
}

.museum-member-console {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 16px;
  transform: rotate(-2deg);
}

.museum-member-console article {
  min-height: 170px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  padding: 28px;
  background: rgba(255, 253, 247, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transition: transform 620ms var(--ease), background 620ms var(--ease);
}

.museum-member-console article:nth-child(2),
.museum-member-console article:nth-child(3) {
  transform: translateY(38px);
}

.museum-member-console article:hover {
  background: rgba(255, 253, 247, 0.11);
  transform: translateY(-4px);
}

.museum-member-console article:nth-child(2):hover,
.museum-member-console article:nth-child(3):hover {
  transform: translateY(30px);
}

.museum-member-console span,
.museum-member-console strong {
  display: block;
}

.museum-member-console span {
  color: rgba(217, 209, 191, 0.82);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.museum-member-console strong {
  margin-top: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  font-weight: 600;
  line-height: 1.02;
}

.museum-contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
}

.museum-contact-copy p {
  max-width: 460px;
  margin: 28px 0 30px;
}

.museum-contact-copy a {
  color: var(--green);
  font-weight: 800;
}

.museum-form {
  position: relative;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(170, 147, 100, 0.22);
  padding: clamp(28px, 4vw, 56px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.78), rgba(239, 232, 219, 0.34)),
    linear-gradient(135deg, transparent 0 68%, rgba(170, 147, 100, 0.1) 68.15%, transparent 68.45%);
  box-shadow: 0 32px 90px rgba(65, 52, 35, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.museum-form label {
  display: grid;
  gap: 8px;
}

.museum-form label span {
  color: rgba(23, 32, 27, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
}

.museum-form input,
.museum-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(170, 147, 100, 0.32);
  border-radius: 0;
  padding: 12px 0 13px;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 520ms var(--ease), box-shadow 520ms var(--ease);
}

.museum-form textarea {
  min-height: 124px;
  resize: vertical;
}

.museum-form input:focus,
.museum-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 1px 0 var(--green);
}

.museum-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.museum-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 4px;
}

.museum-check input {
  width: 16px;
  accent-color: var(--green);
}

.museum-form-status {
  display: none;
  border-left: 1px solid var(--gold);
  padding-left: 14px;
  font-size: 0.86rem;
}

.museum-form-status.is-visible {
  display: block;
}

.museum-form-status.is-error {
  color: #7f3329;
}

.museum-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  border-top: 1px solid rgba(170, 147, 100, 0.22);
  padding: 34px 0 46px;
  color: rgba(23, 32, 27, 0.56);
  font-size: 0.8rem;
}

.museum-footer img {
  width: 142px;
  height: auto;
}

.museum-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.museum-footer a {
  color: var(--green);
  font-weight: 760;
}

.museum-footer p {
  margin: 0;
}

.museum-home .museum-cookie {
  z-index: 40;
}

.museum-home .museum-cookie .museum-button {
  min-height: 42px;
}

.museum-home .reveal {
  opacity: 0;
  transform: translateY(54px);
  filter: blur(10px);
  transition: opacity 1100ms var(--ease), transform 1100ms var(--ease), filter 1100ms var(--ease);
}

.museum-home .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes museumBreath {
  to {
    opacity: 1;
    transform: translate(-50%, -51.5%) rotateY(-7deg) scale(1.012);
  }
}

@keyframes officialLogoSettle {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rasterLightPass {
  from {
    transform: skewX(-12deg) translateX(-120%);
  }
  to {
    transform: skewX(-12deg) translateX(620%);
  }
}

@keyframes museumReportFloat {
  to {
    transform: rotateZ(-1deg) rotateY(-10deg) translate3d(-10px, 14px, 44px);
  }
}

@keyframes museumPaperBack {
  to {
    transform: rotateZ(2deg) rotateY(-17deg) translate3d(-12px, 16px, -30px);
  }
}

@keyframes museumDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1080px) {
  .museum-hero-raster {
    height: clamp(680px, 100dvh, 940px);
  }

  .museum-hero-raster img {
    display: block;
    object-position: 24% top;
  }

  .museum-raster-section img {
    object-position: left top;
  }

  .museum-section {
    width: min(100% - 40px, 980px);
  }

  .museum-hero,
  .museum-reports,
  .museum-private-room,
  .museum-contact,
  .museum-section-head {
    grid-template-columns: 1fr;
  }

  .museum-hero-wall {
    min-height: 560px;
  }

  .museum-ledger {
    grid-template-columns: 1fr;
  }

  .museum-ledger article + article {
    border-top: 1px solid rgba(170, 147, 100, 0.22);
    border-left: 0;
  }

  .museum-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .museum-plaque-wide {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .museum-hero-raster {
    height: 100dvh;
    min-height: 760px;
  }

  .museum-hero-raster > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
  }

  .museum-logo-mask {
    top: 2%;
    left: 3%;
    width: 88%;
    height: 18%;
  }

  .museum-hero-raster .museum-official-logo {
    top: 2.6%;
    left: 10%;
    width: min(74vw, 270px);
  }

  .museum-raster-section {
    min-height: 720px;
  }

  .museum-raster-section img {
    height: 720px;
    min-height: 720px;
    object-fit: cover;
    object-position: left top;
  }

  .raster-reportes img,
  .raster-capital img,
  .raster-miembros img {
    object-position: 14% top;
  }

  .raster-contacto img {
    object-position: left top;
  }

  .hotspot-logo {
    top: 3%;
    left: 3%;
    width: 52%;
    height: 12%;
  }

  .hotspot-filosofia,
  .hotspot-reportes,
  .hotspot-capital,
  .hotspot-contacto,
  .hotspot-acceso-top {
    display: none;
  }

  .hotspot-cta {
    top: 63%;
    left: 5%;
    width: 36%;
    height: 6%;
  }

  .hotspot-acceso {
    top: 63%;
    left: 44%;
    width: 30%;
    height: 6%;
  }

  .filosofia-primary,
  .reportes-primary,
  .capital-primary,
  .miembros-primary {
    top: 58%;
    left: 5%;
    width: 42%;
    height: 7%;
  }

  .filosofia-secondary,
  .reportes-secondary,
  .capital-secondary,
  .miembros-secondary {
    top: 58%;
    left: 50%;
    width: 38%;
    height: 7%;
  }

  .reportes-login,
  .capital-login,
  .miembros-portal {
    display: none;
  }

  .contacto-primary {
    top: 40%;
    left: 55%;
    width: 38%;
    height: 16%;
  }

  .contacto-email {
    top: 35%;
    left: 6%;
    width: 40%;
    height: 16%;
  }

  .museum-home .museum-header {
    top: 14px;
    width: calc(100% - 28px);
    border-radius: 28px;
  }

  .museum-nav {
    grid-template-columns: auto auto;
    min-height: 72px;
    padding: 8px 12px 8px 18px;
  }

  .museum-logo {
    width: 132px;
  }

  .museum-home .museum-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px;
    border: 1px solid rgba(170, 147, 100, 0.22);
    border-radius: 26px;
    background: rgba(250, 247, 239, 0.94);
    box-shadow: 0 22px 70px rgba(65, 52, 35, 0.12);
    backdrop-filter: blur(18px);
  }

  .museum-home .museum-header.nav-open .museum-nav-links {
    display: grid;
  }

  .museum-home .museum-nav-links a {
    padding: 13px 16px;
  }

  .museum-home .mobile-toggle {
    display: block;
  }

  .museum-access {
    min-height: 40px;
    padding-left: 14px;
    font-size: 0.7rem;
  }

  .museum-section {
    width: min(100% - 28px, 720px);
    padding-top: 118px;
  }

  .museum-hero {
    padding-top: 132px;
  }

  .museum-hero-copy h1,
  .museum-section-head h2,
  .museum-report-copy h2,
  .museum-private-room h2,
  .museum-contact-copy h2 {
    font-size: clamp(3.35rem, 15vw, 5.8rem);
  }

  .museum-report-stage {
    min-height: 620px;
  }

  .museum-report-main {
    left: 8%;
    width: min(330px, 62%);
  }

  .museum-report-back {
    right: 6%;
  }

  .museum-report-side {
    display: none;
  }

  .museum-report-metrics {
    left: 0;
    min-width: 100%;
    grid-template-columns: 1fr;
  }

  .museum-report-metrics div + div {
    border-top: 1px solid rgba(170, 147, 100, 0.24);
    border-left: 0;
  }

  .museum-member-console {
    grid-template-columns: 1fr;
    transform: none;
  }

  .museum-member-console article:nth-child(2),
  .museum-member-console article:nth-child(3),
  .museum-member-console article:nth-child(2):hover,
  .museum-member-console article:nth-child(3):hover {
    transform: none;
  }

  .museum-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .museum-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .museum-access {
    display: none;
  }

  .museum-hero-copy h1 {
    font-size: clamp(3.2rem, 18vw, 4.4rem);
  }

  .museum-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .museum-button {
    width: 100%;
    justify-content: space-between;
  }

  .museum-hero-wall {
    min-height: 430px;
  }

  .museum-wall-plane {
    inset: 2% 0 0 0;
    transform: none;
  }

  .museum-emboss {
    left: 54%;
    width: 84%;
    transform: translate(-50%, -50%);
  }

  .museum-ledger article {
    padding: 24px;
  }

  .museum-plaque {
    min-height: 270px;
    padding: 28px;
  }

  .museum-report-stage {
    min-height: 560px;
  }

  .museum-report-back {
    width: 220px;
    min-height: 340px;
  }

  .museum-map-label {
    position: static;
    display: inline-flex;
    margin: 10px 0 0 10px;
  }

  .museum-map-caption {
    right: 22px;
    left: 22px;
  }

  .museum-private-room {
    min-height: auto;
    padding: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .museum-home *,
  .museum-home *::before,
  .museum-home *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
