/* ============================================================
   HIGHMERE BRANDS LLC — Public Corporate Website
   Clean B2B corporate style: white background, dark text,
   subtle neutral accents, generous spacing, responsive.
   ============================================================ */

:root {
  --ink: #1a1f27;
  --ink-soft: #46505e;
  --muted: #79818e;
  --line: #e4e7ec;
  --accent: #2f5a4e;          /* deep neutral green, professional */
  --accent-soft: #eef3f1;
  --bg: #ffffff;
  --bg-alt: #f7f8f9;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section.block { padding: 88px 0; }
section.block.alt { background: var(--bg-alt); }

/* ---------- header / nav ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand .mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; letter-spacing: .5px;
}
.brand .name { font-weight: 700; font-size: 16px; letter-spacing: .04em; }
.brand .name small { display: block; font-weight: 400; font-size: 11px; color: var(--muted); letter-spacing: .08em; }

nav.primary ul { display: flex; gap: 8px; list-style: none; }
nav.primary a {
  display: block; padding: 10px 16px; border-radius: 8px;
  color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
nav.primary a:hover { background: var(--accent-soft); color: var(--accent); }
nav.primary a.active { color: var(--accent); background: var(--accent-soft); }

/* mobile nav */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none; cursor: pointer; padding: 10px;
  font-size: 22px; color: var(--ink); line-height: 1;
}
@media (max-width: 820px) {
  .nav-toggle-label { display: block; }
  nav.primary { display: none; width: 100%; }
  nav.primary ul { flex-direction: column; padding: 8px 0 16px; gap: 2px; }
  .nav-toggle:checked ~ nav.primary { display: block; }
  .nav-bar { flex-wrap: wrap; height: auto; padding: 14px 0; }
  .nav-toggle-label { margin-left: auto; }
}

/* ---------- typography ---------- */
h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.15; letter-spacing: -0.01em; font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 36px); line-height: 1.2; letter-spacing: -0.005em; font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }
p  { color: var(--ink-soft); }
.lead { font-size: 19px; color: var(--ink-soft); max-width: 640px; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { margin-top: 14px; font-size: 18px; }

/* ---------- hero ---------- */
.hero { padding: 120px 0 110px; border-bottom: 1px solid var(--line); }
.hero h1 { max-width: 780px; }
.hero .lead { margin: 24px 0 40px; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 10px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #264c42; }
.btn-outline { border: 1.5px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 32px 28px;
}
.card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  font-weight: 700; font-size: 16px; margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15.5px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.step {
  padding: 32px 28px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
}
.step .num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; margin-bottom: 18px;
}

/* ---------- company band ---------- */
.company-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.company-band .text { max-width: 620px; }
.company-band .text p { margin-top: 16px; }

/* ---------- contact strip ---------- */
.contact-strip {
  text-align: center; max-width: 640px; margin: 0 auto;
}
.contact-strip .email {
  display: inline-block; margin: 28px 0 32px;
  font-size: clamp(20px, 3vw, 28px); font-weight: 600;
  color: var(--accent); text-decoration: none;
  border-bottom: 2px solid var(--accent-soft);
}
.contact-strip .email:hover { border-color: var(--accent); }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: 88px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 44px); }
.page-hero .lead { margin-top: 18px; }

/* ---------- legal / long-form ---------- */
.legal-body { padding: 72px 0 96px; }
.legal-body .content { max-width: 760px; }
.legal-body h2 {
  font-size: 24px; margin: 48px 0 14px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 8px; }
.legal-body h3 { font-size: 17px; margin: 26px 0 10px; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 16px; }
.legal-body ul { padding-left: 22px; margin: 12px 0; }
.legal-body li { margin: 6px 0; }
.legal-body .updated { color: var(--muted); font-size: 14px; margin-top: 20px; }

/* ---------- footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 56px 0 40px;
  margin-top: 0;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--muted); }
.footer-links ul { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 14.5px; }
.footer-links a:hover { color: var(--accent); }
.footer-note {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--muted);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------- misc ---------- */
a { color: var(--accent); }
.text-link { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--accent-soft); }
.text-link:hover { border-color: var(--accent); }

.divider { height: 1px; background: var(--line); border: none; margin: 0; }

/* 404 */
.notfound { text-align: center; padding: 140px 24px 160px; }
.notfound .code { font-size: 72px; font-weight: 700; color: var(--accent); line-height: 1; }
.notfound h1 { font-size: 28px; margin: 18px 0 12px; }
.notfound p { color: var(--muted); margin-bottom: 32px; }
