/* Epitro Holdings — static site styles */

:root {
  --navy: #082e47;
  --navy-2: #0d3a5c;
  --navy-tint: #eef3f7;
  --ink: #1a2733;
  --muted: #5b6b78;
  --line: #e2e8ee;
  --bg: #ffffff;
  --gold: #c9a227;
  --radius: 14px;
  --maxw: 1120px;
  /* Headings / UI */
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  /* Body copy — Helvetica Light */
  --font-body: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  font-weight: 700;
}

.eyebrow,
.nav__links a,
.btn,
.invest-card__name,
.past__tags span,
.contact-lead a {
  font-family: var(--font);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo img { height: 60px; width: auto; display: block; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}
.hero__inner { max-width: 780px; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 0 34px;
}
.btn {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 52px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__stat { display: flex; flex-direction: column; gap: 6px; }
.hero__stat .num {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero__stat .lbl {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 210px;
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section--tint { background: var(--navy-tint); }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section__head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.section__head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* Why */
.why {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 92px 0;
}
.why blockquote {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
}
.why blockquote span { color: var(--gold); }

/* Values grid */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.value:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(8,46,71,0.10); }
.value h3 {
  font-size: 1.2rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.value h3::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.value p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

/* Criteria — What we look for */
.criteria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.criterion {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.criterion:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(8, 46, 71, 0.10);
}
.criterion h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 8px;
  padding-left: 28px;
  position: relative;
}
.criterion h3::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}
.criterion p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

/* Statement band */
.band {
  background: var(--navy);
  text-align: center;
  padding: 84px 0;
}
.band p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  font-family: var(--font);
}

/* Prose (portfolio write-up) */
.prose { max-width: 780px; margin: 0 auto; }
.prose p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 22px;
}
.prose p:last-child { margin-bottom: 0; }

/* ---------- Investments ---------- */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.invest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 26px;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.invest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8,46,71,0.12);
  border-color: #cdd9e3;
}
.invest-card__icon {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.invest-card__icon img { height: 100%; width: auto; }
.invest-card__name { font-size: 1.15rem; font-weight: 700; }
.invest-card__ext {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.past {
  margin-top: 56px;
  text-align: center;
}
.past h3 { color: var(--navy); font-size: 1.15rem; }
.past__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.past__tags span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 20px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.contact-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-lead { text-align: center; }
.contact-lead a {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}
.contact-lead a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer img { height: 84px; width: auto; display: block; }
.site-footer p { margin: 0; font-size: 0.95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .values, .invest-grid, .criteria { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav__links { gap: 18px; }
  .values, .invest-grid, .criteria { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 72px 0 80px; }
  .hero__stats { gap: 26px 40px; }
}
