/* LENOX WEALTH — static site stylesheet */

:root {
  --navy: #14202e;
  --navy-deep: #0c141d;
  --cream: #f7f4ee;
  --gold: #b6924a;
  --gold-light: #d8bd85;
  --text-dark: #1c2530;
  --text-muted: #5a6472;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--text-dark); }

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

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

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

/* ---------- Header / Nav ---------- */

header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo img { height: 42px; width: auto; }

nav.primary-nav { display: flex; align-items: center; gap: 28px; }

nav.primary-nav a {
  color: #eae6db;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

nav.primary-nav a:hover { color: var(--gold-light); }

.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-deep);
  padding: 14px 0;
  min-width: 180px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 8px 20px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

.nav-toggle { display: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,20,29,0.15) 0%, rgba(12,20,29,0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-inner .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: block;
}

.hero-inner h1 { color: #fff; max-width: 780px; }

.hero-inner .lede {
  color: #dcdfe4;
  max-width: 680px;
  font-size: 1.05rem;
  margin-top: 14px;
}

.hero-small { min-height: 42vh; }

/* ---------- Sections ---------- */

section { padding: 72px 0; }
section.tight { padding: 48px 0; }
.rule { border: none; border-top: 1px solid rgba(20,32,46,0.15); margin: 18px 0 34px; width: 60px; border-top-width: 2px; border-color: var(--gold); }

.section-alt { background: #efe9dc; }
.section-navy { background: var(--navy); color: #eae6db; }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy p { color: #cdd2d8; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.center-col { max-width: 760px; margin: 0 auto; text-align: left; }
.text-center { text-align: center; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 32px 26px;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(20,32,46,0.06);
}

.card img { height: 52px; width: auto; margin-bottom: 18px; }

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px 0;
}

.icon-row figure {
  margin: 0;
  text-align: center;
  width: 150px;
}

.icon-row img { height: 56px; width: auto; margin: 0 auto 14px; }
.icon-row figcaption { font-size: 0.92rem; font-weight: 500; color: var(--navy); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}

.feature-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  break-inside: avoid;
  font-size: 0.98rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.benefit-block { margin-bottom: 44px; }
.benefit-block h3 { color: var(--gold); font-family: 'Jost', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 10px; }
.benefit-block h4 { margin-bottom: 10px; }

.stat-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  margin-top: 36px;
}
.stat-strip .stat { text-align: center; min-width: 150px; }
.stat-strip .stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); font-weight: 600; }

.btn {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--gold);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--gold); color: #fff; }

.section-navy .btn { color: #fff; }
.section-navy .btn:hover { background: var(--gold); }

.image-frame img { border-radius: 4px; }

.pull-image { width: 100%; height: 340px; object-fit: cover; border-radius: 4px; }

/* ---------- Contact ---------- */

.contact-block { text-align: center; max-width: 620px; margin: 0 auto; }
.contact-block .email { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); display: inline-block; margin: 20px 0; }
.disclosure { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin-top: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--navy-deep);
  color: #9aa2ac;
  padding: 44px 0 28px;
  text-align: center;
}

footer.site-footer .foot-logo {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

footer.site-footer p { color: #838c96; font-size: 0.85rem; margin: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  nav.primary-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 24px;
    gap: 4px;
    display: none;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  nav.primary-nav.open { display: flex; }
  nav.primary-nav a { padding: 10px 0; width: 100%; }
  .has-dropdown .dropdown {
    display: none;
    position: static;
    background: transparent;
    box-shadow: none;
    padding-left: 14px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
  }
  .two-col { grid-template-columns: 1fr; }
  .feature-list { columns: 1; }
}
