/* Allan Ventures LLC — Private-Bank Stationery (approved 2026-09-12) */

@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/libre-baskerville-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/libre-baskerville-400i.woff2') format('woff2');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/libre-baskerville-700.woff2') format('woff2');
}

:root {
  --navy: #0e1b2e;
  --navy-deep: #0a1422;
  --gold: #c9a227;
  --ivory: #f5f1e6;
  --ivory-dim: #efe9d9;
  --panel: #fbf8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Baskerville, 'Libre Baskerville', Georgia, serif;
  background: var(--ivory);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(180deg, rgba(245, 241, 230, .96), rgba(245, 241, 230, 0));
}
.nav .brand { display: flex; align-items: center; gap: 14px; }
.nav .brand img { height: 34px; width: auto; }
.nav .brand span { letter-spacing: .28em; font-size: 14px; }
.nav .links { display: flex; gap: 36px; font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; }
.nav .links a:hover, .nav .links a.active { color: var(--gold); }

/* Video hero (home) */
.hero-video {
  position: relative;
  min-height: 94vh;
  background: var(--navy);
  color: var(--ivory);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
}
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video .scrim { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 45%, var(--navy) 98%); }
.intro { text-align: center; padding: 72px 24px 64px; }
.intro .sub { margin-top: 0; }
.nav-dark { color: var(--ivory); background: linear-gradient(180deg, rgba(14, 27, 46, .92), rgba(14, 27, 46, 0)); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Hero (interior/static) */
.hero {
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 80px;
}
.hero .mark { height: 240px; width: auto; margin-bottom: 40px; }
h1.display { font-size: clamp(30px, 5vw, 58px); font-weight: 400; letter-spacing: .16em; }

/* Interior page header */
.page-header { text-align: center; padding: 160px 24px 64px; }
.page-header .mark { height: 96px; width: auto; margin-bottom: 26px; }
.page-header h1 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 400; letter-spacing: .18em; }

/* Shared elements */
.rule { width: 72px; height: 1px; background: var(--gold); margin: 26px auto; }
.rule-wide { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); max-width: 1060px; margin: 0 auto; }
.kicker { font-size: 12px; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); }
.sub { font-size: 16px; letter-spacing: .06em; opacity: .82; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* Sections */
.section { padding: 96px 48px; }
.section .inner { max-width: 1060px; margin: 0 auto; }
.section h2 { font-size: 13px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 18px; }
.section .lede { text-align: center; font-size: 21px; line-height: 1.75; max-width: 680px; margin: 0 auto 64px; font-style: italic; }
.section-alt { background: var(--ivory-dim); }

/* Company cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  display: block; padding: 44px 32px; text-align: center;
  border-top: 2px solid var(--gold); background: var(--panel);
  box-shadow: 0 1px 0 rgba(14, 27, 46, .08), 0 10px 30px -18px rgba(14, 27, 46, .2);
  transition: transform .25s ease, box-shadow .25s ease;
}
a.card:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(14, 27, 46, .08), 0 18px 40px -18px rgba(14, 27, 46, .3); }
.card .diamond { color: var(--gold); font-size: 13px; margin-bottom: 20px; }
.card h3 { font-size: 19px; letter-spacing: .14em; font-weight: 400; margin-bottom: 6px; }
.card .role { font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.card p { font-size: 14.5px; line-height: 1.7; opacity: .8; }

/* Prose blocks (The Firm) */
.prose { max-width: 680px; margin: 0 auto; font-size: 16.5px; line-height: 1.85; }
.prose p + p { margin-top: 22px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 900px; margin: 56px auto 0; text-align: center; }
.principles h4 { font-size: 12.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin: 14px 0 10px; font-weight: 400; }
.principles p { font-size: 14px; line-height: 1.7; opacity: .8; }
.principles .diamond { color: var(--gold); font-size: 12px; }

.company { max-width: 720px; margin: 0 auto 72px; text-align: center; }
.company:last-child { margin-bottom: 0; }
.company h3 { font-size: 22px; letter-spacing: .16em; font-weight: 400; }
.company .role { font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin: 8px 0 20px; }
.company p { font-size: 16px; line-height: 1.8; opacity: .85; }
.company .more { display: inline-block; margin-top: 18px; font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid transparent; padding-bottom: 2px; }
.company .more:hover { border-bottom-color: var(--gold); }

/* Contact / correspondence */
.contact-strip { text-align: center; padding: 84px 48px; }
.contact-strip .email { display: inline-block; font-size: 22px; letter-spacing: .08em; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.contact-strip .email:hover { color: var(--gold); }
.contact-strip .addr { margin-top: 18px; font-size: 13.5px; letter-spacing: .18em; text-transform: uppercase; opacity: .65; }
.contact-note { max-width: 520px; margin: 26px auto 0; font-size: 14.5px; line-height: 1.75; opacity: .75; font-style: italic; }

/* Footer */
.footer {
  padding: 52px 48px; text-align: center;
  background: var(--navy); color: rgba(245, 241, 230, .7);
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
}
.footer img { height: 40px; width: auto; margin-bottom: 16px; }
.footer nav { margin-bottom: 16px; display: flex; justify-content: center; gap: 28px; }
.footer nav a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 720px) {
  body { overflow-x: hidden; }
  .nav { flex-direction: column; gap: 14px; padding: 18px 16px; }
  .nav .links { gap: 22px; font-size: 11.5px; letter-spacing: .16em; }
  .hero { padding-top: 170px; }
  .hero > div { max-width: 100%; }
  .hero .mark { height: 160px; }
  .hero-video { min-height: 88vh; }
  .intro { padding: 56px 24px 48px; }
  h1.display { font-size: 23px; letter-spacing: .1em; }
  .sub { max-width: 100%; }
  .page-header { padding-top: 180px; }
  .page-header h1 { letter-spacing: .12em; }
  .kicker { font-size: 10.5px; letter-spacing: .22em; }
  .sub { font-size: 15px; }
  .section { padding: 72px 24px; }
  .section h2 { letter-spacing: .26em; }
  .cards, .principles { grid-template-columns: 1fr; }
  .contact-strip { padding: 64px 24px; }
  .contact-strip .email { font-size: 18px; }
}
