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

/* ── DESIGN TOKENS ── */
:root {
  --black:  #0d130f;
  --green:  #1b3d27;
  --gold:   #c9a86c;
  --cream:  #f2efe8;
  --white:  #ffffff;
  --muted:  #7a7870;
  --r:      18px;
  --gap:    12px;
}

/* ── BASE ── */
body {
  background: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--black);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--cream);
}

.logo {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.2px;
  color: var(--black);
  text-decoration: none;
}

.logo span { color: var(--gold); }

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}

nav a:hover { color: var(--black); }

nav a.active {
  color: var(--black);
  font-weight: 700;
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: .82rem !important;
}

/* ── OUTER WRAPPER ── */
.wrap {
  padding: 16px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* ── CARD BASE ── */
.card {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}

/* ── LETTERFORM ── */
.lf {
  position: absolute;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: .82rem;
  padding: 11px 20px;
  border-radius: 100px;
  text-decoration: none;
  width: fit-content;
  transition: opacity .15s;
  cursor: pointer;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-gold:hover { opacity: .85; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  padding: 11px 20px;
  border-radius: 100px;
  text-decoration: none;
  width: fit-content;
  transition: opacity .15s;
  cursor: pointer;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-dark:hover { opacity: .8; }

/* ── EYEBROW ── */
.eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.eyebrow-muted {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--black);
  border-radius: var(--r);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.4px;
}

.cta-banner-text p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}

.cta-banner-lf {
  font-size: 260px;
  color: rgba(255,255,255,.04);
  bottom: -50px;
  right: -20px;
}

/* ── FOOTER ── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 32px;
  flex-wrap: wrap;
  gap: 16px;
}

footer .logo { font-size: .9rem; }

.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-phone {
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.social-icon:hover { opacity: .75; }

.footer-copy {
  font-size: .72rem;
  color: var(--muted);
}

/* ── SECTION DIVIDER LABEL ── */
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.1);
}
