/* ── Local Processing LLC — Brand Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

:root {
  --blue:    #B7C9DA;
  --mist:    #DDE3EA;
  --ivory:   #FAFAF7;
  --charcoal:#222222;
  --slate:   #6B7785;
  --taupe:   #CDBEB0;
  --white:   #FFFFFF;
  --max:     1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16px;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: .75rem;
}

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,247,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mist);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(34,34,34,.06); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-monogram {
  width: 42px; height: 42px;
  border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-monogram span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--blue);
  line-height: 1;
}
.nav-brand-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.3;
}
.nav-brand-tag {
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--blue);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
}
.nav-cta:hover { background: var(--slate) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: .3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--slate); color: var(--white); }

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

.btn-light {
  background: var(--white);
  color: var(--charcoal);
}
.btn-light:hover { background: var(--ivory); }

/* ── DIVIDER ── */
.divider {
  width: 40px; height: 1.5px;
  background: var(--blue);
  margin: 1.25rem 0 1.5rem;
}
.divider-center { margin: 1.25rem auto 1.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.55);
  padding: 3rem 0 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.footer-brand-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: .4rem;
}
.footer-brand-tag {
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--blue);
  text-transform: uppercase;
}
.footer-brand-nmls {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  margin-top: .4rem;
}
.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .8rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .4rem;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  padding-top: 1.5rem;
  font-size: .75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── PILLS / TAGS ── */
.pill {
  display: inline-block;
  border: 1px solid var(--blue);
  padding: .35rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--mist);
  padding: 2rem;
}
.card-blue { border-color: var(--blue); background: var(--ivory); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--ivory); border-bottom: 1px solid var(--mist); padding: 1.5rem 2rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .section { padding: 3.5rem 0; }
}
