/* Self-hosted webfonts — pinned to Montserrat / Source Sans Pro at the
   weights actually used. Do not swap for a CDN link: see AGENTS.md equivalent
   note in the sibling bàzilo project on why an unpinned font silently
   upgrades under you. */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/vendor/fonts/montserrat-bold-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/vendor/fonts/montserrat-bold-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/vendor/fonts/source-sans-pro-regular-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/vendor/fonts/source-sans-pro-regular-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/vendor/fonts/source-sans-pro-bold-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/vendor/fonts/source-sans-pro-bold-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Tokens ───────────────────────────────────────────────────────────
   Three values per hue, one job each — see the 13 Aug 2026 brand review.
   --accent is graphic-only (rules, borders, the mark itself): it clears
   3:1 but not 4.5:1, so it must never carry text or sit behind white text.
   --accent-ink is the text/fill-safe correction, used for the CTA and
   anything that needs to read as brand-orange while passing 4.5:1. */
:root {
  --brand: #1B4F72;
  --brand-light: #2C6B96;
  --accent: #D35400;
  --accent-ink: #A34000;
  --dark: #001F3F;
  --text: #334E68;
  --muted: #52677D;
  --rule: #C9D6E0;
  --bg-gradient: linear-gradient(135deg, #F0F4F8 0%, #FFFFFF 100%);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
  background: var(--bg-gradient);
  color: var(--text);
  line-height: 1.6;
}

:focus-visible {
  outline: 3px solid var(--accent-ink);
  outline-offset: 2px;
  border-radius: 2px;
}

.wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.card {
  max-width: 960px;
  width: 100%;
  background: #fff;
  border-top: 6px solid var(--brand);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 31, 63, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.brand img { width: 56px; height: 56px; }
.brand span {
  font-weight: 700;
  font-size: 24px;
  color: var(--brand);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
}

.main-nav a {
  color: var(--brand-light);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--accent-ink);
}

h1.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 8px;
  letter-spacing: normal;
}

.intro-text { font-size: 16px; margin-bottom: 32px; }
.founder-box {
  background: #F8FAFC;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
}
.founder-box strong { color: var(--brand); font-family: 'Montserrat', sans-serif; }

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 48px;
}
@media (max-width: 768px) { .grid { grid-template-columns: 1fr; } }

.service-box {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-box:hover { border-color: var(--brand-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 31, 63, 0.05); }
.service-box h3 {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  color: var(--brand);
  font-size: 17px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  display: inline-block;
}
.service-list { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.service-list li { position: relative; padding-left: 18px; margin-bottom: 8px; }
.service-list li::before { content: "\203A"; position: absolute; left: 0; color: var(--accent-ink); font-weight: bold; }
.service-note { font-size: 14px; margin-top: 12px; color: var(--muted); }

.trust-section {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.trust-section h4 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 24px;
}
.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logo-grid span { font-weight: 700; color: var(--muted); font-size: 14px; }
.trust-current { margin: 0 0 24px; font-size: 15px; color: var(--brand); }
.trust-current strong { font-family: 'Montserrat', sans-serif; }

footer {
  text-align: center;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  font-size: 13px;
  color: var(--muted);
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.social-link:hover { color: var(--accent-ink); }

.btn {
  display: inline-flex;
  background: var(--accent-ink);
  color: #fff;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 48px;
  transition: background 0.2s;
}
.btn:hover {
  background: var(--brand);
}
