:root {
  --bg: #fffdfb;
  --surface: #ffffff;
  --surface-soft: #fff7f6;
  --text: #1f2937;
  --muted: #4b5563;
  --brand: #c1272d;
  --brand-dark: #8c1d22;
  --teal: #13b8a6;
  --green: #65c957;
  --line: #e5e7eb;
  --focus: #0f766e;
  --shadow: 0 18px 50px rgba(31,41,55,.08);
  --shadow-soft: 0 10px 28px rgba(31,41,55,.055);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 0; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { max-width: 850px; }
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: .5rem .75rem;
  z-index: 999;
}
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255,253,251,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: .55rem 0;
}
.brand {
  display: flex;
  gap: .7rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
  flex: 0 0 auto;
}
.brand-mark {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(31,41,55,.08);
}
.brand-text strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.25rem;
  letter-spacing: .04em;
}
.brand-text small {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.2;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: .55rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.nav-list a {
  text-decoration: none;
  color: var(--text);
  padding: .35rem .55rem;
  border-radius: .45rem;
  font-weight: 600;
}
.nav-list a:hover { background: #f8ecea; }
.nav-list li:last-child a { border: 1px solid #e7b7b9; color: var(--brand-dark); }

.section { padding: clamp(3.4rem, 6vw, 5.25rem) 0; }
section[id] { scroll-margin-top: 0; }
.alt { background: var(--surface-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero {
  padding: clamp(3.2rem, 6vw, 5.4rem) 0 clamp(3.8rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 84% 22%, rgba(19,184,166,.15), transparent 25%),
    radial-gradient(circle at 16% 78%, rgba(101,201,87,.14), transparent 24%),
    linear-gradient(135deg, #fffdfb 0%, #fff5f2 100%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: .8rem;
  align-items: start;
}
.hero-logo {
  display: block;
  width: min(460px, 100%);
  height: auto;
  grid-column: 2;
  grid-row: 1 / span 5;
  justify-self: end;
  align-self: start;
  margin: .35rem 0 0;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: var(--shadow);
}
.kicker {
  color: var(--brand-dark);
  font-weight: 800;
  margin: 0 0 .5rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
}
h1, h2, h3 { line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.65rem); max-width: 18ch; margin-bottom: .9rem; letter-spacing: -.04em; }
h2 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.24rem); max-width: 62ch; color: #374151; margin-bottom: 1rem; }
.quote { font-style: italic; color: var(--muted); max-width: 60ch; margin-top: .35rem; }
.tagline { margin-top: .95rem; font-weight: 800; color: var(--brand-dark); letter-spacing: .01em; }
.section-intro { max-width: 72ch; color: var(--muted); }
.note { color: var(--brand-dark); font-weight: 700; }

.cta-row { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.55rem; }
.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: .7rem;
  padding: .82rem 1.08rem;
  cursor: pointer;
  background: #fff;
  color: var(--text);
  font-weight: 800;
}
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary:hover, .btn:hover { border-color: #cbd5e1; }

.grid-list, .priority-list { padding-left: 1.15rem; }
.grid-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.grid-list li,
.card-grid article {
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}
.priority-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .75rem;
  padding: 0;
  list-style: none;
}
.priority-list li {
  margin: 0;
  border-left: 4px solid rgba(193,39,45,.65);
  border-radius: .85rem;
  background: rgba(255,255,255,.75);
  padding: .85rem 1rem;
  box-shadow: var(--shadow-soft);
}
.card-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card-grid h3 { color: var(--brand-dark); }
.infographic-section { background: #fffdfb; }
.infographic-intro { max-width: 780px; margin-bottom: 1.45rem; }
.infographic-intro p { color: var(--muted); font-size: 1.05rem; }
.infographic-frame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.infographic-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.infographic-frame figcaption {
  padding: .8rem 1rem;
  color: var(--muted);
  font-size: .95rem;
  border-top: 1px solid var(--line);
}
.infographic-frame figcaption a { color: var(--brand-dark); font-weight: 800; }
.guardrail { margin-top: 1rem; font-weight: 700; color: #334155; }

.contact-section {
  border-bottom: 0;
  min-height: calc(100vh - 76px);
}
.contact-card {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
}
.contact-status {
  border: 1px solid #f0cbc9;
  border-radius: 1rem;
  background: #fff;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.contact-status strong,
.contact-status span,
.contact-status small { display: block; }
.contact-status strong { color: var(--brand-dark); font-size: 1.1rem; }
.contact-status span { margin-top: .35rem; font-weight: 800; }
.contact-status small { margin-top: .45rem; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 1.1rem 0; color: var(--muted); }
.footer-inner { display: flex; gap: 1rem; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-inner p { margin: 0; }
.footer-inner a { color: var(--brand-dark); font-weight: 700; }

a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .site-header { position: sticky; top: 0; }
  main > section[id]:not(#home) {
    margin-top: -1.75rem;
    padding-top: calc(clamp(3.4rem, 6vw, 5.25rem) + 1.75rem);
  }
}

@media (min-width: 980px) {
  html { scroll-padding-top: 0; }
  section[id] { scroll-margin-top: 0; }
}

@media (max-width: 759px) {
  .header-inner { align-items: flex-start; flex-direction: column; min-height: 0; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-text strong { font-size: 1.15rem; }
  .brand-text small { font-size: .78rem; }
  .nav-list { gap: .3rem; justify-content: flex-start; }
  .nav-list a { font-size: .92rem; padding: .3rem .42rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 2.6rem 0 3.4rem; }
  .hero-inner { display: block; }
  .hero-logo { width: min(440px, 100%); margin: 0 0 1.45rem; }
  h1 { max-width: 13ch; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (min-width: 760px) and (max-width: 979px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo { grid-column: auto; grid-row: auto; justify-self: start; width: min(460px, 100%); margin-bottom: .5rem; }
}
