/* North Harbour Solutions - marketing site.
   Palette lifted from the portal's theme.css so the site and the product read
   as one company. Every pair below was contrast-checked, not eyeballed. */
:root {
  --anchor: #0F2E22;
  --anchor-soft: #17402F;
  --metal: #B8975A;
  --metal-soft: #C9AE7C;
  --metal-ink: #7A5E24;
  --base: #F7F3EA;
  --surface: #FCFAF5;
  --ink: #1E1E1C;
  --muted: #5C5749;
  --border: #E5DED0;
  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--base);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* --- header --------------------------------------------------------------- */

.site-header {
  background: var(--anchor);
  border-bottom: 3px solid var(--metal);
  padding: 1.15rem 0;
}
.brand { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--base);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-mark {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: var(--metal-soft);
  margin-top: 0.4rem;
}

/* --- hero ----------------------------------------------------------------- */

.hero {
  background: var(--anchor);
  color: var(--base);
  padding: 5.5rem 0 6rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
  max-width: 15ch;
}
.hero p {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(247, 243, 234, 0.86);
  max-width: 54ch;
  margin: 0 0 2.25rem;
}
.rule { width: 64px; height: 2px; background: var(--metal); margin: 0 0 2rem; }

.cta {
  display: inline-block;
  background: var(--metal);
  color: var(--anchor);
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.15s ease;
}
.cta:hover { background: var(--metal-soft); }

/* --- leakage framing ------------------------------------------------------ */

.leak {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
  text-align: center;
}
.leak .figure {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  color: var(--anchor);
  line-height: 1.1;
}
.leak p {
  color: var(--muted);
  max-width: 62ch;
  margin: 0.85rem auto 0;
  font-size: 1.02rem;
}

/* --- sections ------------------------------------------------------------- */

.what { padding: 4.5rem 0 1rem; }
.section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--metal-ink);
  margin-bottom: 0.75rem;
}
.what > .wrap > h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--anchor);
  margin: 0 0 2.75rem;
  max-width: 24ch;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
}
.card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--anchor);
  margin: 0 0 0.4rem;
}
.card .kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--metal-ink);
  margin-bottom: 1rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* --- contact -------------------------------------------------------------- */

.contact { padding: 5rem 0 5.5rem; text-align: center; }
.contact h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  color: var(--anchor);
  margin: 0 0 0.75rem;
}
.contact p { color: var(--muted); max-width: 48ch; margin: 0 auto 2rem; }
.email {
  font-family: var(--display);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--anchor);
  text-decoration: none;
  border-bottom: 2px solid var(--metal);
  padding-bottom: 3px;
  word-break: break-word;
}
.email:hover { color: var(--metal-ink); }

.site-footer {
  background: var(--anchor);
  color: rgba(247, 243, 234, 0.72);
  padding: 2rem 0;
  font-size: 0.85rem;
}
.site-footer .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; gap: 1rem; }
  .hero { padding: 3.5rem 0 4rem; }
  .what { padding: 3rem 0 0.5rem; }
  .contact { padding: 3.5rem 0 4rem; }
  body { font-size: 16px; }
}
