/* ─────────────────────────────────────────────
   Manolin Investment Group — Shared Styles
   Fonts: Cormorant Garamond (serif), Jost (sans)
   Colors: #060a16 (dark navy), #1a1a2e (text), #fff
───────────────────────────────────────────── */

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

html, body {
  background: #060a16;
  font-family: 'Jost', sans-serif;
  color: #ffffff;
}

/* ── Fixed nav (inner pages) ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 64px;
  background: rgba(6, 10, 22, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  text-decoration: none;
  display: block;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-top: 3px;
}

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  position: relative;
  width: 100%;
  height: 320px;
  background-image: url('https://images.unsplash.com/photo-1564955731632-aae2940730ec?fm=jpg&q=85&w=2400&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: flex-end;
  padding: 0 64px 56px;
  padding-top: 120px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 22, 0.75);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 52px;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ── Shared section label ── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26, 26, 46, 0.45);
}

/* ── Footer CTA (dark, with button) ── */
.footer-cta {
  background: #060a16;
  padding: 80px 64px;
  text-align: center;
}

.footer-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.footer-btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 36px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.footer-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}

/* ── Footer info (contact page bottom) ── */
.footer-info {
  background: #060a16;
  padding: 80px 64px;
  text-align: center;
}

.footer-info p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-info a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.footer-info a:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  margin: 32px auto;
}

.footer-copyright {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

/* ── Mobile styles ── */
@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 11px;
  }

  .page-hero {
    padding: 100px 24px 40px;
    height: auto;
    min-height: 220px;
  }

  .page-title {
    font-size: 36px;
  }

  .footer-cta {
    padding: 60px 24px;
  }

  .footer-cta p {
    font-size: 24px;
  }

  .footer-info {
    padding: 60px 24px;
  }
}
