/* Agito Invest — light dairy-first polish */
:root {
  --agito-navy: #0a2540;
  --agito-gold: #b8862e;
  --agito-green: #1a6b4f;
}

.lead { text-wrap: pretty; }
.display-title { text-wrap: balance; }

html, body {
  min-height: 100%;
  background: #f8f7f4;
}
#root { min-height: 70vh; }

/* Responsive brand: square mark on mobile, horizontal lockup from sm+ */
.agito-logo { line-height: 0; max-width: 100%; }
.agito-logo__mark {
  display: block;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
}
.agito-logo__lockup {
  display: none;
  height: 2rem;
  width: auto;
  max-width: min(220px, 52vw);
}
@media (min-width: 640px) {
  .agito-logo__mark { display: none !important; }
  .agito-logo__lockup {
    display: block !important;
    height: 2.25rem;
  }
}
@media (min-width: 768px) {
  .agito-logo__lockup { height: 2.5rem; max-width: 240px; }
}

/* Landing brand: mark on narrow, lockup on wider */
.brand-responsive { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-responsive .brand-mark { display: block; height: 40px; width: 40px; }
.brand-responsive .brand-lockup { display: none; height: 40px; width: auto; }
@media (min-width: 640px) {
  .brand-responsive .brand-mark { display: none; }
  .brand-responsive .brand-lockup { display: block; }
}

/* Prestige doctrine band */
.agito-prestige {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.5rem) 1.25rem;
  background:
    linear-gradient(135deg, rgba(10, 37, 64, 0.97), rgba(10, 37, 64, 0.92)),
    radial-gradient(80% 80% at 100% 0%, rgba(184, 134, 46, 0.28), transparent 55%);
  color: #f8f7f4;
  border-top: 3px solid var(--agito-gold);
  border-bottom: 3px solid var(--agito-gold);
}
.agito-prestige__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.agito-prestige__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--agito-gold);
}
.agito-prestige__title {
  margin: 0 0 0.85rem;
  max-width: 22ch;
  font-family: Georgia, "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.18;
  font-weight: 400;
  color: #fff;
  text-wrap: balance;
}
.agito-prestige__lead {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(248, 247, 244, 0.78);
}
.agito-prestige__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .agito-prestige__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.agito-prestige__grid li {
  padding: 1rem 0 0;
  border-top: 1px solid rgba(184, 134, 46, 0.35);
}
.agito-prestige__grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.agito-prestige__grid span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(248, 247, 244, 0.7);
}
.agito-prestige__grid a {
  color: var(--agito-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 134, 46, 0.45);
}
.agito-prestige__grid a:hover {
  color: #d4a84b;
}
