/* ============================================================
   Aria Travel — Design System
   Tokens, type, components. Shared by Home and Corporate.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  /* Color */
  --canvas: #F5F0E8;
  --canvas-soft: #EDE8DF;
  --ink: #07090F;
  --body: #3A3530;
  --mute: #7A7167;
  --gold: #C8A97E;
  --gold-active: #D4B892;
  --on-gold: #07090F;
  --white: #FFFFFF;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;

  /* Spacing */
  --xs: 4px;
  --sm: 8px;
  --md: 12px;
  --lg: 16px;
  --xl: 24px;
  --2xl: 32px;
  --3xl: 48px;
  --4xl: 64px;
  --5xl: 96px;

  /* Container */
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  section { padding: 48px 0; }
  .container { padding: 0 18px; }
}

.surface-cream { background: var(--canvas); color: var(--body); }
.surface-dark { background: var(--ink); color: rgba(255,255,255,0.85); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
}

.surface-cream .eyebrow { color: #a37c3e; }

h1.display-hero {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
}

.surface-cream h1.display-hero { color: var(--ink); }

h2.display-section {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 20px;
  text-wrap: balance;
}

.surface-dark h2.display-section,
h2.display-section-serif {
  color: var(--white);
}

h2.display-section-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-wrap: balance;
}

h3.display-card {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}

.lead {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--body);
  max-width: 56ch;
}

.surface-dark .lead { color: rgba(255,255,255,0.75); }

.body-text {
  font-size: 16px;
  line-height: 24px;
}

.body-sm {
  font-size: 14px;
  line-height: 20px;
}

.italic-gold {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

h2.display-section .italic-gold {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
}

.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 16px 28px;
  min-height: 48px;
  border-radius: var(--r-xl);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--on-gold);
}
.btn-primary:hover { background: var(--gold-active); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--canvas); }

.btn-secondary-light {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(245,240,232,0.6);
}
.btn-secondary-light:hover { background: rgba(245,240,232,0.08); border-color: var(--canvas); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.btn-link:hover { border-color: var(--gold); color: var(--gold); }

.surface-cream .btn-link { color: var(--ink); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7,9,15,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}

@media (max-width: 480px) {
  .nav-inner { padding: 12px 16px; }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.logo-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('assets/logo-aria.png') center/contain no-repeat;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-mark--lg {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.logo .badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 8px;
  border: 1px solid rgba(200,169,126,0.4);
  border-radius: var(--r-pill);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  transition: color 180ms ease;
}
.nav-link:hover { color: var(--gold); }

.nav .btn { min-height: 42px; padding: 12px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  color: var(--white);
  padding: 8px 10px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links .nav-link-hideable { display: none; }
}

@media (max-width: 480px) {
  .logo { font-size: 17px; }
  .logo .badge { font-size: 9px; padding: 3px 6px; }
  .logo-mark { width: 24px; height: 24px; }
  .nav .btn { padding: 10px 14px; font-size: 13px; min-height: 38px; }
  .nav-links { gap: 12px; }
  .nav-link { font-size: 13px; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
}

.card-soft {
  background: var(--canvas-soft);
}

.card-dark {
  background: #0E1117;
  color: rgba(255,255,255,0.85);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
}

.card-bordered-gold {
  border: 1px solid rgba(200,169,126,0.35);
  background: linear-gradient(180deg, #ffffff 0%, #fbf6ec 100%);
}

@media (max-width: 768px) {
  .card, .card-dark { padding: 28px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 120px; padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 100px; padding-bottom: 56px; }
  .hero-grid { gap: 32px; }
  .hero-sub { font-size: 16px; line-height: 24px; margin-bottom: 28px; }
  h1.display-hero { font-size: 38px; line-height: 1.1; }
  .btn { width: 100%; padding: 14px 20px; }
  .btn-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-link { width: auto; align-self: flex-start; }
}

.hero-sub {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  margin-bottom: 36px;
}

.surface-cream .hero-sub { color: var(--body); }

/* ---------- Image placeholder ---------- */
.placeholder {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--canvas-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(7,9,15,0.04) 0px,
    rgba(7,9,15,0.04) 1px,
    transparent 1px,
    transparent 10px
  );
  z-index: 0;
}

.placeholder.dark {
  background: #0E1117;
}
.placeholder.dark::before {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 10px
  );
}

.placeholder-label {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 8px 12px;
  border: 1px dashed rgba(122,113,103,0.4);
  border-radius: var(--r-sm);
  background: rgba(245,240,232,0.6);
}

.placeholder.dark .placeholder-label {
  color: rgba(255,255,255,0.5);
  background: rgba(7,9,15,0.6);
  border-color: rgba(255,255,255,0.18);
}

/* Hero image overlay (dark hero with photo placeholder) */
.hero-photo {
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: var(--r-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(200,169,126,0.10), transparent 60%),
    radial-gradient(50% 60% at 0% 90%, rgba(200,169,126,0.06), transparent 60%),
    var(--ink);
}

/* ---------- Grid utilities ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Feature list ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  font-size: 15px;
  line-height: 22px;
  color: var(--body);
  padding-left: 22px;
  position: relative;
}

@media (max-width: 480px) {
  .feature-list li { font-size: 14px; }
  .card { padding: 24px; }
  h3.display-card { font-size: 20px; }
  h2.display-section, h2.display-section-serif { font-size: 28px; }
  .lead { font-size: 16px; line-height: 24px; }
  .section-head { margin-bottom: 36px; }
  .grid-3, .grid-2 { gap: 14px; }
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.feature-list.on-dark li { color: rgba(255,255,255,0.78); }

/* ---------- Stepper / Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.step {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
}

.step p { font-size: 15px; line-height: 22px; color: var(--body); }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Pillar card (services) ---------- */
.pillar {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--canvas-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.pillar h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 20px; color: var(--ink); }
.pillar p { font-size: 15px; line-height: 22px; color: var(--body); }

/* ---------- Bifurcacao cards ---------- */
.path-card-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
}

.path-card-label .num {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Anchor clause ---------- */
.anchor-clause {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.005em;
}

.surface-dark .anchor-clause { color: rgba(255,255,255,0.5); }
.surface-cream .anchor-clause { color: var(--mute); }

/* ---------- Modelo comercial items ---------- */
.model-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

@media (max-width: 860px) {
  .model-items { grid-template-columns: 1fr; }
}

.model-item {
  border-top: 1px solid rgba(200,169,126,0.3);
  padding-top: 24px;
}

.model-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.model-item p {
  font-size: 15px;
  line-height: 22px;
  color: rgba(255,255,255,0.72);
}

.tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(200,169,126,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 480px) {
  footer.site-footer { padding: 48px 0 28px; }
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .footer-tagline { font-size: 16px; }
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color 180ms ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo-block .logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 32ch;
  line-height: 1.4;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(7,9,15,0.18), 0 2px 6px rgba(7,9,15,0.10);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 28px rgba(7,9,15,0.22); }

/* ============================================================
   Editorial visuals (no photo dependencies)
   ============================================================ */

/* Hero monogram card — Home */
.monogram-card {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: var(--r-xl);
  background:
    radial-gradient(70% 60% at 50% 35%, rgba(200,169,126,0.10), transparent 60%),
    linear-gradient(180deg, #0E1117 0%, #07090F 100%);
  border: 1px solid rgba(200,169,126,0.18);
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255,255,255,0.7);
}

.monogram-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(200,169,126,0.04) 0px,
    rgba(200,169,126,0.04) 1px,
    transparent 1px,
    transparent 14px
  );
  pointer-events: none;
}

.monogram-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  aspect-ratio: 1/1;
  background: url('assets/logo-aria.png') center/contain no-repeat;
  opacity: 0.95;
  filter: drop-shadow(0 0 40px rgba(200,169,126,0.08));
}

.monogram-card .top-row,
.monogram-card .bottom-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.monogram-card .top-row .gold { color: var(--gold); }

.monogram-card .corner-cut {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(200,169,126,0.45);
  border-style: solid;
  z-index: 3;
}
.corner-cut.tl { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.corner-cut.tr { top: 16px; right: 16px; border-width: 1px 1px 0 0; }
.corner-cut.bl { bottom: 16px; left: 16px; border-width: 0 0 1px 1px; }
.corner-cut.br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

@media (max-width: 480px) {
  .monogram-card { aspect-ratio: 5/4; padding: 24px; }
}

/* Quote panel — used in diferencial section instead of photo */
.quote-panel {
  background: #07090F;
  border-radius: var(--r-xl);
  padding: 40px 36px;
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.quote-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 90% 10%, rgba(200,169,126,0.12), transparent 60%);
  pointer-events: none;
}

.quote-panel .qmark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 96px;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.quote-panel blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  color: #fff;
  margin: 0 0 24px;
  position: relative;
  text-wrap: balance;
}

.quote-panel cite {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  display: block;
}

.quote-panel .meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 480px) {
  .quote-panel { padding: 28px 24px; }
  .quote-panel .qmark { font-size: 72px; }
}

/* ============================================================
   Links page (Linktree-style)
   ============================================================ */
.links-body {
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 32px 20px 24px;
}

.links-container {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.links-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 4px;
  background: var(--ink);
  margin-bottom: 18px;
}
.links-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.links-brandmark {
  width: 28px;
  height: 28px;
  background: url('assets/logo-aria.png') center/contain no-repeat;
  margin-bottom: 14px;
  opacity: 0.9;
}

.links-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--canvas);
  margin-bottom: 8px;
  line-height: 1;
}

.links-handle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 4px;
}

.links-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  text-align: center;
}

.links-bio {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,240,232,0.65);
  text-align: center;
  max-width: 36ch;
  margin: 0 0 4px;
}

.links-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links-group + .links-group { margin-top: 12px; }

.links-group-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
  padding-left: 4px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  text-decoration: none;
}

.link-card:active { transform: scale(0.985); }

.link-card.cream {
  background: var(--canvas);
  color: var(--ink);
}
.link-card.cream:hover { background: var(--canvas-soft); }

.link-card.dark {
  background: transparent;
  border: 1px solid rgba(200,169,126,0.25);
  color: var(--canvas);
}
.link-card.dark:hover { border-color: rgba(200,169,126,0.55); background: rgba(200,169,126,0.04); }

.link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(200,169,126,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.link-card.cream .link-icon { background: rgba(200,169,126,0.18); }

.link-icon.solid-red { background: #FF0000; color: #fff; }
.link-icon.solid-green { background: #25D366; color: #fff; }

.link-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.link-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.link-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  color: inherit;
}
.link-arrow {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.links-divider {
  width: 40px;
  height: 1px;
  background: rgba(200,169,126,0.25);
  border: 0;
  margin: 20px auto;
}

.links-footer {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--mute);
  text-align: center;
  margin-top: 18px;
  padding-bottom: 8px;
}

.links-badge { margin-bottom: 8px; }

/* ============================================================
   Home v2 — editorial, type-led
   ============================================================ */

/* Hero watermark monogram (decorative, behind text) */
.hero-v2 {
  position: relative;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 140px 0 100px;
  overflow: hidden;
}

/* Hero globe — big spinning globe on the right side */
.hero-globe {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}

.hero-globe .aria-globe-wrap {
  filter: drop-shadow(0 24px 60px rgba(200,169,126,0.18));
}

@media (max-width: 1100px) {
  .hero-globe { right: 2%; opacity: 0.85; }
}

@media (max-width: 760px) {
  .hero-globe {
    position: relative;
    top: auto; right: auto;
    transform: none;
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
    opacity: 1;
  }
}

.hero-v2 .hero-watermark {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-46%);
  width: 720px;
  max-width: 90vw;
  aspect-ratio: 1/1;
  background: url('assets/logo-aria.png') center/contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  filter: grayscale(0.2);
}

.hero-v2 .hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 20% 30%, rgba(200,169,126,0.10), transparent 60%),
    radial-gradient(35% 60% at 90% 90%, rgba(200,169,126,0.06), transparent 65%);
  pointer-events: none;
}

.hero-v2 .container { position: relative; z-index: 2; }

.hero-v2 .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-v2 .eyebrow-row .seal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,126,0.4);
  background: url('assets/logo-aria.png') center/70% no-repeat;
  flex-shrink: 0;
}
.hero-v2 .eyebrow-row .eyebrow { margin-bottom: 0; }

h1.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 28px;
  max-width: 14ch;
  text-wrap: balance;
}

h1.hero-headline .italic-gold {
  font-style: italic;
  font-weight: 700;
}

.hero-v2 .hero-sub-v2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 32ch;
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .hero-v2 { padding: 110px 0 64px; }
  h1.hero-headline { font-size: 44px; line-height: 1.02; }
  .hero-v2 .hero-watermark { width: 480px; opacity: 0.05; }
  .hero-v2 .eyebrow-row { gap: 12px; margin-bottom: 24px; }
  .hero-v2 .eyebrow-row .seal { width: 28px; height: 28px; }
}

/* Stats strip — thin gold rule with key terms */
.stat-strip {
  background: var(--ink);
  border-top: 1px solid rgba(200,169,126,0.18);
  border-bottom: 1px solid rgba(200,169,126,0.18);
  padding: 18px 0;
  color: rgba(255,255,255,0.6);
}

.stat-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stat-strip-inner span { display: inline-flex; align-items: center; gap: 10px; }
.stat-strip-inner .dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 600px) {
  .stat-strip { padding: 14px 0; }
  .stat-strip-inner { gap: 8px 18px; font-size: 10px; letter-spacing: 0.14em; }
}

/* Manifesto strip */
.manifesto {
  background: var(--canvas);
  padding: 120px 0;
  text-align: left;
}

.manifesto-inner { max-width: 880px; }

.manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: balance;
}

.manifesto blockquote .accent {
  font-weight: 700;
  color: var(--gold);
}

.manifesto .signoff {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: 14px;
}
.manifesto .signoff::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 480px) {
  .manifesto { padding: 64px 0; }
}

/* Principles — 3 stacked editorial rows */
.principles { background: var(--canvas-soft); padding: 96px 0; }

.principles-head { margin-bottom: 56px; max-width: 720px; }

.principle-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid rgba(7,9,15,0.10);
}
.principle-row:last-child { border-bottom: 1px solid rgba(7,9,15,0.10); }

.principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.principle-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.principle-body p {
  font-size: 16px;
  line-height: 26px;
  color: var(--body);
  max-width: 56ch;
}

@media (max-width: 720px) {
  .principle-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .principle-num { font-size: 42px; }
  .principles { padding: 64px 0; }
}

/* Bifurcação v2 — two distinct cards */
.bifurcacao { background: var(--canvas); padding: 120px 0; }

.bifurcacao-head { max-width: 760px; margin-bottom: 56px; }

.bifurcacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bif-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.bif-card.dark {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
}
.bif-card.dark h3, .bif-card.dark .bif-meta { color: var(--white); }
.bif-card.dark .bif-list li { color: rgba(255,255,255,0.72); }

.bif-meta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bif-meta .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
}

.bif-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}

.bif-card p.lead-card {
  font-size: 15px;
  line-height: 24px;
  color: var(--body);
  margin-bottom: 24px;
}
/* ============================================================
   Motion & polish — gold shadows, reveal, hover
   ============================================================ */

/* Smooth scroll already enabled on html */

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.2, 0.65, 0.2, 1),
              transform 720ms cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Hero headline + sub auto reveal on load */
@keyframes ariaFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-v2 .eyebrow-row { animation: ariaFadeUp 720ms cubic-bezier(0.2,0.65,0.2,1) 60ms both; }
h1.hero-headline      { animation: ariaFadeUp 880ms cubic-bezier(0.2,0.65,0.2,1) 140ms both; }
.hero-v2 .hero-sub-v2 { animation: ariaFadeUp 880ms cubic-bezier(0.2,0.65,0.2,1) 260ms both; }
.hero-v2 .btn-row     { animation: ariaFadeUp 880ms cubic-bezier(0.2,0.65,0.2,1) 380ms both; }

/* Hero watermark — gentle drift */
@keyframes ariaDrift {
  0%, 100% { transform: translateY(-46%) rotate(0deg); }
  50%      { transform: translateY(-44%) rotate(0.6deg); }
}
.hero-v2 .hero-watermark {
  animation: ariaDrift 14s ease-in-out infinite;
}

/* Stat-strip dot pulse */
@keyframes ariaDotPulse {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 0 0 rgba(200,169,126,0); }
  50%      { opacity: 1;   box-shadow: 0 0 0 4px rgba(200,169,126,0.10); }
}
.stat-strip-inner .dot {
  animation: ariaDotPulse 3.6s ease-in-out infinite;
}
.stat-strip-inner span:nth-child(2) .dot { animation-delay: 0.9s; }
.stat-strip-inner span:nth-child(3) .dot { animation-delay: 1.8s; }
.stat-strip-inner span:nth-child(4) .dot { animation-delay: 2.7s; }

/* ----- Buttons: gold glow shadow on hover ----- */
.btn-primary {
  box-shadow: 0 1px 0 rgba(7,9,15,0.04);
  transition: background 220ms ease, transform 220ms ease, box-shadow 320ms ease;
}
.btn-primary:hover {
  box-shadow:
    0 8px 28px rgba(200,169,126,0.32),
    0 2px 6px rgba(200,169,126,0.18);
}

.btn-secondary, .btn-secondary-light {
  transition: background 220ms ease, transform 220ms ease,
              border-color 220ms ease, color 220ms ease, box-shadow 320ms ease;
}
.btn-secondary-light:hover {
  box-shadow: 0 6px 22px rgba(200,169,126,0.16);
}

/* ----- Bifurcação cards: lift + gold-tinted shadow ----- */
.bif-card {
  transition: transform 380ms cubic-bezier(0.2,0.65,0.2,1),
              box-shadow 380ms cubic-bezier(0.2,0.65,0.2,1);
  box-shadow: 0 1px 0 rgba(7,9,15,0.02);
}
.bif-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px -20px rgba(200,169,126,0.28),
    0 8px 24px -8px rgba(7,9,15,0.10);
}
.bif-card.dark:hover {
  box-shadow:
    0 24px 60px -20px rgba(200,169,126,0.35),
    0 0 0 1px rgba(200,169,126,0.18) inset;
}

/* ----- Process step cards (Corporate) ----- */
.step {
  transition: transform 380ms cubic-bezier(0.2,0.65,0.2,1),
              box-shadow 380ms cubic-bezier(0.2,0.65,0.2,1);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(200,169,126,0.22);
}

/* ----- Pillar cards (services) ----- */
.pillar {
  transition: transform 380ms cubic-bezier(0.2,0.65,0.2,1),
              box-shadow 380ms cubic-bezier(0.2,0.65,0.2,1);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(200,169,126,0.22);
}
.pillar-icon {
  transition: background 280ms ease, color 280ms ease, transform 280ms ease;
}
.pillar:hover .pillar-icon {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.05);
}

/* ----- Link cards on Links page ----- */
.link-card {
  position: relative;
  transition: background 220ms ease, border-color 220ms ease,
              transform 220ms ease, box-shadow 320ms ease;
}
.link-card.cream:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(200,169,126,0.32);
}
.link-card.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(200,169,126,0.22);
  background: rgba(200,169,126,0.05);
}
.link-arrow {
  transition: transform 280ms cubic-bezier(0.2,0.65,0.2,1);
}
.link-card:hover .link-arrow { transform: translateX(4px); }

/* ----- Nav links: animated gold underline ----- */
.nav-link {
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(0.2,0.65,0.2,1);
}
.nav-link:hover::after { transform: scaleX(1); }

/* ----- Badge subtle gold glow ----- */
.logo .badge,
.links-badge {
  transition: box-shadow 320ms ease, border-color 320ms ease;
}
.logo:hover .badge {
  box-shadow: 0 0 0 4px rgba(200,169,126,0.08);
  border-color: rgba(200,169,126,0.6);
}

/* ----- WhatsApp float — gentle attention pulse ----- */
@keyframes ariaWaPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(7,9,15,0.18), 0 2px 6px rgba(7,9,15,0.10), 0 0 0 0 rgba(37,211,102,0.45); }
  60%      { box-shadow: 0 6px 24px rgba(7,9,15,0.18), 0 2px 6px rgba(7,9,15,0.10), 0 0 0 14px rgba(37,211,102,0); }
}
.wa-float {
  animation: ariaWaPulse 3.2s ease-out infinite;
}
.wa-float:hover { animation-play-state: paused; }

/* ----- Section ambient gold glow (dark sections) ----- */
.surface-dark::after,
.hero-v2::after,
.cta-final::after {
  /* hooks reserved for future ambient effects */
}

/* ----- Avatar gentle ring shimmer ----- */
@keyframes ariaRingShimmer {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,126,0.0); }
  50%      { box-shadow: 0 0 0 8px rgba(200,169,126,0.06); }
}
.links-avatar {
  animation: ariaRingShimmer 5s ease-in-out infinite;
}

/* ----- Cards on cream surfaces (Bifurcação card 1) ----- */
.card {
  transition: transform 380ms cubic-bezier(0.2,0.65,0.2,1),
              box-shadow 380ms cubic-bezier(0.2,0.65,0.2,1);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(200,169,126,0.22);
}

/* ----- Primary CTA in bif cards: subtle gold ring on hover ----- */
.bif-card .btn-primary:hover {
  box-shadow:
    0 10px 30px rgba(200,169,126,0.36),
    0 0 0 4px rgba(200,169,126,0.10);
}

/* ----- Nav bar refined gold underline on scroll (subtle) ----- */
.nav {
  transition: background 240ms ease, border-color 240ms ease;
}

/* ----- Dashboard accent (corporate) ----- */
.dash {
  transition: transform 480ms cubic-bezier(0.2,0.65,0.2,1),
              box-shadow 480ms cubic-bezier(0.2,0.65,0.2,1);
}
.dash:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -24px rgba(200,169,126,0.30);
}

/* Hero v2 ambient layered glow strengthens slightly */
.hero-v2 .hero-glow {
  background:
    radial-gradient(50% 50% at 20% 30%, rgba(200,169,126,0.12), transparent 60%),
    radial-gradient(35% 60% at 90% 90%, rgba(200,169,126,0.08), transparent 65%);
}

/* CTA-final gold ring vignette */
.cta-final::before {
  background:
    radial-gradient(55% 75% at 50% 0%, rgba(200,169,126,0.14), transparent 65%),
    radial-gradient(60% 90% at 50% 100%, rgba(200,169,126,0.06), transparent 70%);
}

/* Bif-list dashes — soft pulse on hover */
.bif-card:hover .bif-list li::before { background: var(--gold); }
.bif-card.gold:hover .bif-list li::before { background: var(--ink); }

/* Smooth focus rings (accessibility, gold) */
:where(a, button, .btn):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
.bif-card.gold,
.bif-card.gold h3,
.bif-card.gold p.lead-card,
.bif-card.gold .bif-list li,
.bif-card.gold .bif-meta,
.bif-card.gold .bif-meta .num { color: var(--ink); }
.bif-card.gold .bif-list li::before { background: var(--ink); }

.bif-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bif-list li {
  font-size: 14px;
  line-height: 22px;
  color: var(--body);
  padding-left: 22px;
  position: relative;
}
.bif-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 860px) {
  .bifurcacao-grid { grid-template-columns: 1fr; gap: 12px; }
  .bif-card { padding: 32px 26px; }
  .bifurcacao { padding: 64px 0; }
}

/* CTA v2 */
.cta-final {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 50% 0%, rgba(200,169,126,0.10), transparent 65%);
  pointer-events: none;
}

.cta-final .inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 20px 0 24px;
  text-wrap: balance;
}

.cta-final h2 .italic-gold { font-style: italic; }

.cta-final p.cta-lead {
  font-size: 17px;
  line-height: 28px;
  color: rgba(255,255,255,0.7);
  max-width: 48ch;
  margin: 0 auto 28px;
}

.cta-final .anchor-clause { margin-bottom: 32px; }

@media (max-width: 480px) {
  .cta-final { padding: 64px 0; }
}
.links-name { margin-bottom: 2px; line-height: 1.05; }
.links-handle { margin-bottom: 2px; }
.links-avatar { margin-bottom: 8px; }
.links-badge { margin-bottom: 4px; }
.links-bio { margin-bottom: 4px; }

/* ---------- Misc ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head .lead { margin-top: 8px; }

.hr-thin {
  height: 1px;
  background: rgba(7,9,15,0.08);
  border: 0;
  margin: 0;
}

.surface-dark .hr-thin { background: rgba(255,255,255,0.08); }

/* Decorative rule under eyebrow */
.rule-gold {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* dashboard mock for corporate hero */
.dash {
  background: linear-gradient(180deg, #0E1117 0%, #14181F 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 24px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dash-row .label { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.dash-row .val { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; }
.dash hr { border: 0; height: 1px; background: rgba(255,255,255,0.06); }

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding-top: 12px;
}
.dash-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--gold), rgba(200,169,126,0.3));
  border-radius: 3px;
  opacity: 0.85;
}

.dash-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dash-meta .m-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.dash-meta .m-lbl {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
