
:root {
  --ink: #1c1c1c;
  --ink-2: #262626;
  --paper: #f4f2ee;
  --paper-2: #fffaf2;
  --teal: #01b8af;
  --teal-dark: #009b94;
  --muted: #6a6a6a;
  --line: rgba(28,28,28,.14);
  --shadow: 0 24px 70px rgba(0,0,0,.16);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: var(--ink);
  padding: 10px 14px;
  z-index: 9999;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28,28,28,.94);
  backdrop-filter: blur(12px);
  color: #f9f9f9;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 132px;
  max-height: 48px;
  object-fit: contain;
}
.brand span {
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  font-size: .91rem;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(249,249,249,.86);
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.10);
  outline: none;
}
.nav-toggle { display: none; }
.hero {
  position: relative;
  min-height: clamp(460px, 70vh, 720px);
  color: #f9f9f9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(28,28,28,.91), rgba(28,28,28,.62)),
    url('../images/monthly-reporting.jpg') center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(244,242,238,0), var(--paper));
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--max));
  text-align: center;
  padding: 80px 0 110px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 18px;
}
.kicker::before, .kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1 {
  font-family: "Space Mono", monospace;
  font-size: clamp(3.2rem, 10vw, 7rem);
  letter-spacing: -.08em;
  color: var(--teal);
  text-transform: uppercase;
  text-shadow: 0 10px 45px rgba(0,0,0,.34);
}
.hero p {
  margin: 20px auto 0;
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  color: rgba(249,249,249,.92);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(1,184,175,.22);
}
.btn-primary:hover { background: #22d5cc; }
.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
}
main { overflow: hidden; }
.section {
  padding: clamp(54px, 8vw, 96px) 0;
}
.section.dark {
  background: var(--ink-2);
  color: #f0f0f0;
}
.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}
.intro-card {
  position: relative;
  margin-top: -72px;
  z-index: 5;
  background: var(--ink-2);
  color: #f0f0f0;
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 54px);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
}
.intro-card h2 {
  font-family: "EB Garamond", Georgia, serif;
  color: var(--teal);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 500;
  margin-bottom: 14px;
}
.intro-card p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(240,240,240,.84);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}
.section-heading {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 52px);
}
.section-heading .eyebrow {
  color: var(--teal);
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
}
.section-heading h2 {
  margin-top: 10px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--teal);
  font-size: clamp(2.3rem, 7vw, 4.4rem);
}
.section-heading p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
}
.dark .section-heading p { color: rgba(240,240,240,.76); }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card-image {
  height: 230px;
  overflow: hidden;
  background: #ddd;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}
.card h3 {
  font-family: "EB Garamond", Georgia, serif;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 500;
}
.card p { margin: 0; color: var(--muted); }
.card .btn {
  margin-top: auto;
  align-self: flex-start;
  background: var(--teal);
  color: var(--ink);
}
.search-panel {
  margin: 0 auto clamp(24px, 4vw, 36px);
  max-width: 720px;
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px;
  border-radius: 999px;
}
.search-panel input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 1rem;
}
.search-panel button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 700;
  background: var(--teal);
  color: var(--ink);
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.quick-links a {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 700;
}
.quick-links a:hover, .quick-links a:focus-visible {
  background: rgba(1,184,175,.18);
  outline: none;
}
.page-hero {
  padding: clamp(86px, 12vw, 150px) 0 clamp(48px, 8vw, 86px);
  background: var(--ink-2);
  color: #f0f0f0;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
}
.page-hero p { max-width: 760px; color: rgba(240,240,240,.82); font-size: 1.16rem; }
.content-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
.content-block h2 {
  font-family: "EB Garamond", Georgia, serif;
  color: var(--teal-dark);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.placeholder-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.placeholder-list article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fbfbfb;
}
.placeholder-list h3 { font-family: "Space Mono", monospace; font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.placeholder-list p { margin: 0; color: var(--muted); }
.site-footer {
  background: #111;
  color: rgba(255,255,255,.72);
  padding: 36px 0;
}
.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-inner a { color: #fff; text-decoration: none; }

@media (max-width: 900px) {
  .nav { align-items: flex-start; padding: 14px 0; min-height: auto; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(28,28,28,.98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .grid { grid-template-columns: 1fr; }
  .card-image { height: 280px; }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .placeholder-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav { width: min(100% - 28px, var(--max)); }
  .brand img { width: 110px; }
  .brand span { font-size: .92rem; }
  .hero-inner, .wrap, .footer-inner { width: min(100% - 28px, var(--max)); }
  h1 { font-size: clamp(2.8rem, 18vw, 4.2rem); }
  .hero { min-height: 560px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .kicker::before, .kicker::after { width: 20px; }
  .intro-card { margin-top: -48px; }
  .card-image { height: 220px; }
  .search-panel { border-radius: 22px; flex-direction: column; }
  .search-panel button { min-height: 46px; }
  .quick-links { grid-template-columns: 1fr; }
}
