:root {
  --primary-dark: #1c1523;
  --primary: #281e32;
  --primary-light: #5c4570;
  --cream: #f5f2ea;
  --cream-dim: #e9e4d6;
  --ink: #1a1a17;
  --ink-soft: #4a4a44;
  --serif: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --body: Cambria, Georgia, 'Times New Roman', serif;
}

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

html { height: 100%; }
body.home { height: 100%; overflow: hidden; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,234,0.7);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--primary);
  padding: 1.5rem 0;
}
.header-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.main-nav a {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--primary-light); }
.main-nav a.active { color: var(--primary-light); }
.nav-cta {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(201,204,210,0.5);
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-spacer {
  flex-shrink: 0;
  height: var(--header-h, 91px);
  background: var(--primary);
}
.hero-photo {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background-image: url('../img/AA5.jpg?v=3');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 50, 0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 1.5rem;
}
.hero-sub {
  color: rgba(245,242,234,0.85);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}
.hero .eyebrow { text-align: center; }

/* Footer */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 0;
}
body.home .site-footer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10;
  background: transparent;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: #fff; }

/* Interior content pages */
.page-hero {
  background-size: cover;
  background-position: center;
  padding: 10rem 2rem 4rem;
}
.page-hero-approach {
  background-image: linear-gradient(rgba(40, 30, 50, 0.55), rgba(40, 30, 50, 0.55)), url('../img/Tower1.avif');
}
.page-hero-team {
  background-image: linear-gradient(rgba(40, 30, 50, 0.55), rgba(40, 30, 50, 0.55)), url('../img/webpage2.webp');
  background-position: center 25%;
}
.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: 1.6rem;
}
.page-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 4.5rem 2rem 6rem;
}
.page-content-investors {
  max-width: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(rgba(40, 30, 50, 0.55), rgba(40, 30, 50, 0.55)), url('../img/Webpage1.jpeg');
  background-size: cover;
  background-position: center;
}
.page-content-investors > * {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-content h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}
.page-content h2:first-child { margin-top: 0; }
.h2-sm { font-size: 1.2rem; }
.page-content p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}
.page-content h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}
.page-content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  list-style: disc;
}
.page-content ul li {
  line-height: 1.6;
}
.person {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.person-photo {
  width: 190px;
  height: 220px;
  object-fit: cover;
  object-position: 50% 18%;
  flex-shrink: 0;
}
.person-info { flex: 1; }
.person h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.text-link {
  color: var(--primary);
  text-decoration: underline;
}
.person .role {
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
  display: block;
}

.page-content-top { padding-top: 9rem; }

.investor-gate, .investor-content {
  background: rgba(233, 228, 214, 0.78);
  border: 1px solid rgba(40,30,50,0.15);
  padding: 2rem;
  margin-bottom: 3rem;
}
.investor-gate h2, .investor-content h2 { margin-top: 0; }
.investor-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.investor-access-text {
  margin-top: 1.75rem;
  font-size: 0.85rem;
}
.investor-access-text p { margin-bottom: 1rem; }
.investor-form input {
  flex: 1;
  min-width: 160px;
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(40,30,50,0.3);
  background: #fff;
  color: var(--ink);
}
.btn-submit {
  font-family: var(--body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-submit:hover { background: var(--primary-light); }
.investor-error {
  color: #a3403f;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}
.investor-links { list-style: none; margin-top: 1rem; }
.investor-links li { margin-bottom: 0.6rem; }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--primary);
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  }
  .main-nav.open { display: flex; }
  .nav-cta { align-self: flex-start; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 1.25rem; }
  .main-nav { padding: 1.5rem 1.25rem 2rem; }
  .footer-inner { padding: 0 1.25rem; font-size: 0.7rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-hero { padding: 8rem 1.25rem 3rem; }
  .page-content { padding: 3rem 1.25rem 4rem; }
  .person { flex-direction: column; }
}
