/* ─────────────────────────────────────────────
   youngmenarewelcomehere.com — Shared Styles
   ───────────────────────────────────────────── */

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

:root {
  --bg-darkest:  #0c0c14;
  --bg-dark:     #101018;
  --bg-medium:   #181826;
  --bg-card:     #1b1b28;
  --gold:        #c8963c;
  --gold-light:  #e8b84e;
  --amber:       #c96a30;
  --text:        #f0ede6;
  --text-sub:    #a8a49c;
  --text-muted:  #625e58;
  --border:      rgba(200,150,60,.2);
  --border-sub:  rgba(255,255,255,.06);
  --radius:      8px;
  --max:         1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-darkest);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Nav ─────────────────────────────────────── */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(12,12,20,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-sub);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.3;
}

.nav-logo span {
  display: block;
  font-size: .65rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}

.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--bg-darkest);
  padding: .45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
}

.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--bg-darkest); }

/* ── Buttons ─────────────────────────────────── */

.btn {
  display: inline-block;
  padding: .9rem 2.1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-darkest);
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(200,150,60,.4);
  color: var(--text-sub);
  background: transparent;
}

.btn-outline:hover { border-color: var(--gold); color: var(--text); }

/* ── Typography ──────────────────────────────── */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

p { color: var(--text-sub); line-height: 1.8; margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: block;
}

.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}

/* ── Layout ──────────────────────────────────── */

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

section { padding: 6rem 2rem; }

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

/* ── Verse blocks ────────────────────────────── */

.verse-inline {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  background: rgba(200,150,60,.04);
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}

.verse-inline p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: .4rem;
}

.verse-ref {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Footer ──────────────────────────────────── */

footer {
  background: #080810;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-sub);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 2rem;
}

.footer-brand h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: .6rem; }
.footer-brand p { font-size: .88rem; }

.footer-col h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: .5rem; }

.footer-col ul li a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  nav { padding: 1rem 1.25rem; }
}
