/* ── SHARED DESIGN SYSTEM — The Setup Co. ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1E3A10;
  --fairway: #2D5016;
  --mid:    #4A7C22;
  --light:  #EAF3DE;
  --gold:   #B8780A;
  --goldlt: #F5E6C8;
  --cream:  #FAF8F3;
  --ink:    #151510;
  --muted:  #6B6B5A;
  --border: #D8D4C4;
  --white:  #FFFFFF;
  --navy:   #1A3557;
  --sky:    #E6F1FB;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  transition: background .3s, border-color .3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(30,58,16,0.97);
  border-bottom-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: .02em;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,.65); transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--forest);
  background: var(--gold); padding: .55rem 1.3rem;
  border-radius: 2px; text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: #D4920F; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: white; transition: all .2s; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
}
.footer-brand .f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
  margin-bottom: .5rem;
}
.footer-brand .f-logo span { color: var(--gold); font-style: italic; }
.footer-brand p {
  font-size: .82rem; color: rgba(255,255,255,.35);
  line-height: 1.65; max-width: 220px;
}
.footer-col h4 {
  font-size: .68rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: .8rem;
}
.footer-col a {
  display: block; font-size: .85rem; color: rgba(255,255,255,.55);
  text-decoration: none; margin-bottom: .4rem; transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 960px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.22); }

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Cormorant Garamond', serif; }
.section-label {
  font-size: .68rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mid); margin-bottom: .8rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 700;
  color: var(--forest); line-height: 1.1; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--mid); }
.lead {
  font-size: 1.05rem; color: var(--muted);
  max-width: 600px; line-height: 1.7; font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--forest);
  font-size: .8rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none;
  padding: .9rem 2.2rem; border-radius: 2px; border: none; cursor: pointer;
  transition: background .2s, transform .15s; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: #D4920F; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; background: transparent;
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.7);
  font-size: .78rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none;
  padding: .9rem 2rem; border-radius: 2px; cursor: pointer;
  transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-outline-dark {
  display: inline-block; background: transparent;
  border: 1px solid var(--forest); color: var(--forest);
  font-size: .78rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none;
  padding: .9rem 2rem; border-radius: 2px; cursor: pointer;
  transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.btn-outline-dark:hover { background: var(--forest); color: var(--white); }

/* ── CARDS ── */
.card-raised {
  background: var(--white); border: .5px solid var(--border);
  border-radius: 4px; padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

/* ── UTILS ── */
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 1.2rem 0; }
.divider { border: none; border-top: .5px solid var(--border); margin: 1.5rem 0; }
.grid { display: flex; align-items: center; background-image:
  repeating-linear-gradient(90deg,rgba(255,255,255,.015) 0,rgba(255,255,255,.015) 1px,transparent 1px,transparent 80px),
  repeating-linear-gradient(0deg,rgba(255,255,255,.015) 0,rgba(255,255,255,.015) 1px,transparent 1px,transparent 80px); }
.page-wrap { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 2rem; max-width: 960px; margin: 0 auto; }

/* ── MOBILE ── */
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 56px; left: 0; right: 0; background: rgba(30,58,16,.98);
    padding: 1.5rem 2rem; gap: 1rem; z-index: 99;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1/-1; }
}
