/* Header sticky + container + footer */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px){ .container { padding: 0 20px; } }

section { padding: 48px 0; }
@media (min-width: 768px){ section { padding: 80px 0; } }
.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.section-title { max-width: 28ch; margin-bottom: 0.4em; }
.section-intro { color: var(--text-2); font-size: 1.04rem; max-width: 56ch; margin: 0 0 32px; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(0,0,0,0.18);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px){
  .header-wrap { height: var(--header-h-mobile); padding: 0 20px; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.005em;
}
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  flex: 0 0 38px;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name { white-space: nowrap; }
.brand__name em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

/* NAV desktop */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-family: var(--ff-ui);
  font-size: 0.96rem;
  color: var(--text-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-desktop a:hover { color: var(--text); }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent);
  transition: right 0.3s ease;
}
.nav-desktop a:hover::after { right: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}
.header-cta:hover { background: #1f3025; }
.header-cta svg { width: 16px; height: 16px; }
@media (max-width: 980px){
  .nav-desktop, .header-cta { display: none; }
}

/* FOOTER */
.site-footer {
  background: #1A2520;
  color: #D9DEDA;
  padding: 56px 0 28px;
  margin-top: 0;
}
.site-footer h4 {
  font-family: var(--ff-display);
  color: #fff;
  font-size: 1.15rem;
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px){
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-col p, .footer-col li, .footer-col a {
  color: #B8C0BA;
  font-size: 0.94rem;
  line-height: 1.65;
}
.footer-col a:hover { color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0.35em 0; display: flex; align-items: center; gap: 8px; }
.footer-col li svg { width: 14px; height: 14px; flex: 0 0 14px; color: #8B9690; }

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #8B9690;
}
.footer-bottom a { color: #B8C0BA; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }
