/* Mochi Rose Ventures LLC — site styles */

:root {
  --bg: #0a0e17;
  --bg-alt: #0d1320;
  --card: #131a28;
  --card-border: rgba(224, 185, 60, 0.25);
  --gold: #e0b93c;
  --gold-dark: #b8912a;
  --silver: #d9dde3;
  --text: #eef1f5;
  --text-muted: #99a2b1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

a {
  color: var(--gold);
  text-decoration: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--silver);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover,
nav a.active {
  color: var(--gold);
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #131a28;
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Hero */

.hero {
  padding: 64px 0;
  border-bottom: 1px solid var(--card-border);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 420px;
}

.hero-image {
  flex: 1 1 320px;
  text-align: center;
}

.hero-image img {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 50%;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

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

.hero-text p {
  color: var(--text-muted);
  max-width: 460px;
}

/* Feature strip */

.features {
  padding: 40px 0;
  border-bottom: 1px solid var(--card-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature {
  text-align: left;
}

.feature .icon {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 8px;
}

.feature h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.feature p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* Generic section */

.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--card-border);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.section-header p {
  color: var(--text-muted);
}

.two-col {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 380px;
}

.two-col p {
  color: var(--text-muted);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 28px;
}

.card h3 {
  color: var(--gold);
  font-size: 20px;
}

.card p {
  color: var(--text-muted);
}

/* Contact / info list */

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-muted);
}

.info-list li strong {
  color: var(--text);
  display: inline-block;
  min-width: 100px;
}

/* Footer */

footer {
  background: var(--bg-alt);
  padding: 40px 0 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  gap: 12px;
  max-width: 320px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 4px 0 0;
}

.footer-col h4 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--gold);
}

.disclaimer {
  border-top: 1px solid var(--card-border);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.copyright {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.copyright a {
  color: var(--text-muted);
  text-decoration: underline;
}

.copyright a:hover {
  color: var(--gold);
}

/* Legal pages */

.legal-notice {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-size: 18px;
  margin-top: 36px;
  color: var(--gold);
}

.legal-body h2:first-of-type {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  font-size: 15px;
}

.legal-body ul {
  padding-left: 22px;
}

.legal-body li {
  margin-bottom: 8px;
}

.legal-body address {
  font-style: normal;
  color: var(--text-muted);
}

.effective-date {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 34px;
  }
}
