/* ═══════════════════════════════════════════════════════════════════════════
   Elevate with AI — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Custom Font ─────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Above the Beyond';
  src: url('../fonts/Above the Beyond Serif Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ─── Brand Tokens ────────────────────────────────────────────────────────── */
:root {
  --navy:   #162C3D;
  --silver: #E9E7E5;
  --white:  #FFFFFF;
  --blush:  #D8C2BA;

  --text-dark:  #162C3D;
  --text-mid:   rgba(22,44,61,0.6);
  --text-light: rgba(22,44,61,0.35);

  --font-display: 'Above the Beyond', Georgia, serif;
  --font-body:    'Avenir', 'Avenir Next', 'Century Gothic', Arial, sans-serif;

  --h1: 60px;
  --h2: 20px;
  --body: 16px;

  --max-width: 1140px;
  --section-pad: 100px;
}

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Base ────────────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--silver);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(22,44,61,0.08); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 72px;
  width: auto;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--navy);
  padding: 12px 24px;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.nav-cta:hover { opacity: 0.85; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: 176px;
  padding-bottom: 80px;
  background: var(--silver);
}
.page-hero .eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: normal;
  color: var(--navy);
  line-height: 1.05;
  max-width: 700px;
}
.page-hero p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
.eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 14px;
  display: block;
}
h2.display {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: normal;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 20px;
}
h3.subhead {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 12px;
}
p.lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: opacity 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { opacity: 0.82; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  padding: 100px 48px;
  text-align: center;
}
.cta-band .eyebrow { color: var(--blush); opacity: 0.8; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: normal;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-band p {
  font-size: var(--body);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 64px 48px 40px;
  border-top: 1px solid rgba(233,231,229,0.08);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(233,231,229,0.1);
}
.footer-logo img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.7;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(233,231,229,0.4);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(233,231,229,0.65);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(233,231,229,0.65);
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-social a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(233,231,229,0.5);
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--blush); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(233,231,229,0.3);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --h1: 44px; --section-pad: 72px; }

  .container { padding: 0 28px; }
  .nav-inner  { padding: 0 28px; }

  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--silver);
    padding: 24px 28px 32px;
    gap: 20px;
  }
  .nav-toggle { display: flex; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-band { padding: 72px 28px; }
}

@media (max-width: 600px) {
  :root { --h1: 36px; }
  .container { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }
  .cta-band { padding: 60px 20px; }
  .footer { padding: 48px 20px 32px; }
}
