/* ============================================================
   FRANK SANTO & THE VISIONMAKERS — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --black:      #080808;
  --dark:       #111111;
  --mid:        #1a1a1a;
  --gold:       #b8963e;
  --gold-light: #d4a843;
  --white:      #f0ede8;
  --gray:       #888888;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Lato', 'Helvetica Neue', sans-serif;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
}
p { color: rgba(240,237,232,0.75); }
a { color: inherit; text-decoration: none; }

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.7);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta a {
  padding: 8px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.2s;
}
.nav-links .nav-cta a:hover {
  background: var(--gold);
  color: var(--black);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── SECTIONS ── */
section { padding: 96px 52px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-dark { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.04); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240,237,232,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 52px 40px;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.45);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.68rem;
  color: rgba(240,237,232,0.2);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; gap: 20px; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    padding: 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-burger { display: flex; }
  section { padding: 72px 24px; }
  .site-footer { padding: 48px 24px 32px; }
}
