/* SEYRRA Consulting — site styles
   Brand: Tanzanite Navy #2B2D6B · Accent Pink #E91E63 · Soft Blue #A7B8D9 · Light Neutral #F6F8FC */

:root {
  --navy: #2B2D6B;
  --navy-deep: #22244F;
  --navy-dark: #1A1B3D;
  --pink: #E91E63;
  --pink-text: #C2185B;
  --blue: #A7B8D9;
  --blue-text: #5E70A8;
  --ground: #F4F6FA;      /* page background — off-white, not stark */
  --surface: #FFFFFF;     /* cards and panels sit above the ground */
  --line: #E1E6F0;
  --body: #4A4D74;
  --white: #FFFFFF;

  --font: "Segoe UI", "Source Sans 3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --wrap: 1200px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* anchored links land at the top of a section, clear of the sticky header */
:target, section[id], [id^="about-"], #team, #values, #services, #how-we-work { scroll-margin-top: 78px; }
@media (min-width: 1060px) { :target, section[id] { scroll-margin-top: 84px; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.54;
  color: var(--navy);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { max-width: 100%; }

a { color: var(--navy); }
a:hover { color: var(--pink-text); }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 16px; top: 16px; z-index: 100;
  background: var(--navy); color: var(--white);
  padding: 12px 20px; text-decoration: none;
}

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

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 246, 250, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 64px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 38px; height: 28px; object-fit: contain; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 17px; font-weight: 600; letter-spacing: 0.1em; color: var(--navy); }
.brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; color: var(--blue-text); margin-top: 4px; }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--line); border-radius: 4px;
  color: var(--navy); cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.nav { display: none; }
.nav.is-open { display: block; }
.nav > ul { display: flex; flex-direction: column; gap: 2px; padding: 10px 0 18px; }
.nav a {
  display: block; padding: 11px 2px; min-height: 44px;
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em; text-decoration: none;
}
.nav a[aria-current="page"] { color: var(--pink-text); }
/* Contact: same background as the header, carried by weight and colour */
.nav a.nav-contact { color: var(--pink-text); font-weight: 700; }
.nav a.nav-contact:hover { color: var(--navy); }

@media (min-width: 1060px) {
  .nav-toggle { display: none; }
  .nav { display: block !important; }
  .nav > ul { flex-direction: row; align-items: center; gap: 26px; padding: 0; }
  .nav a { padding: 6px 0; border-bottom: 1px solid transparent; min-height: 0; }
  .nav a[aria-current="page"] { border-bottom-color: var(--pink); color: var(--navy); }
}
@media (max-width: 1059px) {
  .site-header .wrap { flex-wrap: wrap; }
  .nav { flex-basis: 100%; border-top: 1px solid var(--line); }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 24px;
  border: 1px solid transparent; border-radius: 4px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); color: var(--white); }
.btn-ghost { border-color: #C3CBDE; color: var(--navy); background: transparent; }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: #EEF1F7; color: var(--navy); }

/* ---------- shared ---------- */

.eyebrow {
  display: flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--blue-text);
}
.eyebrow::before {
  content: ""; width: 20px; height: 2px; flex: none; background: var(--pink);
}

section { padding-block: 56px; }
@media (min-width: 760px) { section { padding-block: 76px; } }

.section-neutral { background: var(--surface); }

h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12; font-weight: 600; letter-spacing: -0.024em;
  max-width: 23ch;
}
h2 {
  font-size: clamp(23px, 2.9vw, 33px);
  line-height: 1.2; font-weight: 600; letter-spacing: -0.014em;
  max-width: 24ch;
}
h3 { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.35; font-weight: 600; letter-spacing: -0.005em; }

.lead { font-size: clamp(16.5px, 1.7vw, 18px); line-height: 1.55; color: var(--body); max-width: 62ch; }
.prose { color: var(--body); max-width: 68ch; }
.prose + .prose { margin-top: 12px; }

.stack { display: flex; flex-direction: column; gap: 15px; align-items: flex-start; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

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

.hero { position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
.ribbon {
  position: absolute; right: -80px; bottom: -60px; width: min(620px, 72%);
  opacity: 0.5; pointer-events: none; z-index: 0;
}
@media (min-width: 900px) { .ribbon { width: min(440px, 38%); right: -60px; bottom: -90px; } }
/* hero copy runs across the page rather than sitting in a narrow column */
.hero > .wrap > .stack > h1 { max-width: 34ch; }
.hero > .wrap > .stack > .lead { max-width: 92ch; }
@media (max-width: 759px) { .ribbon { opacity: 0.28; right: -110px; } }

/* dark hero — the anchor block of the page */
.hero-dark {
  background: var(--navy);
  color: var(--white);
  padding-block: 76px;
}
@media (min-width: 760px) { .hero-dark { padding-block: 100px; } }
.hero-dark h1 { color: var(--white); }
.hero-dark .lead { color: #CDD5E8; }
.hero-dark .eyebrow { color: #C6D2EA; }

/* the promise, carried as a sentence above the headline rather than a label */
.hero-dark .eyebrow {
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: none;
  gap: 13px;
}
.hero-dark .eyebrow::before { width: 30px; }
.hero-dark .ribbon { opacity: 0.32; }

/* ---------- cards & grids ---------- */

.grid { display: grid; gap: 14px; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.section-neutral .card { background: var(--ground); border-color: transparent; }
.card .num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue-text);
}
.card .problem { font-size: 17px; font-weight: 600; line-height: 1.45; color: var(--navy); }
.card p { color: var(--body); font-size: 16px; }
.card .more { font-size: 15px; font-weight: 600; text-decoration: none; margin-top: auto; padding-top: 4px; }

.quote-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; font-size: 16.5px; line-height: 1.5; color: var(--navy);
}
.section-neutral .quote-card { background: var(--ground); border-color: transparent; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 9px; border: 1px solid var(--line); border-radius: 3px; color: var(--blue-text);
}
.section-neutral .tag { border-color: #D8DFEC; }

/* ---------- lists ---------- */

.checks { display: flex; flex-direction: column; gap: 9px; }
.checks li { display: flex; gap: 12px; font-size: 16px; line-height: 1.55; color: var(--body); }
.checks li::before {
  content: ""; flex: none; width: 5px; height: 5px; margin-top: 10px;
  background: var(--pink); border-radius: 50%;
}

.rows li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.rows li:last-child { border-bottom: 0; }
.rows strong { display: block; font-size: 17px; font-weight: 600; margin-bottom: 3px; }
.rows span { color: var(--body); font-size: 16px; }

.split { display: grid; gap: 28px; }
@media (min-width: 900px) { .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 60px; align-items: start; } }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: grid; gap: 22px;
}
.section-neutral .panel { background: var(--ground); border-color: transparent; }
@media (min-width: 900px) { .panel { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; padding: 32px 36px; } }
.panel .label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-text); margin-bottom: 12px; display: block;
}

.step-num {
  width: 36px; height: 36px; border-radius: 3px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--navy);
}

/* ---------- CTA band ---------- */

.cta {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.cta::after {
  content: ""; position: absolute; left: 32px; bottom: 0;
  width: 80px; height: 2px; background: var(--pink);
}
.cta h2 { color: var(--white); font-size: clamp(22px, 2.6vw, 29px); }
.cta p { color: #CDD5E8; max-width: 60ch; font-size: 16.5px; line-height: 1.55; }
@media (min-width: 900px) {
  .cta { flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; padding: 46px 52px; }
  .cta::after { left: 64px; }
  .cta .btn { flex: none; }
}

/* ---------- forms ---------- */

.form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 18px;
}
@media (min-width: 760px) { .form { padding: 38px; } }
.form h2 { font-size: 21px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue-text); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; font-weight: 400; color: var(--navy);
  letter-spacing: normal; text-transform: none;
  width: 100%; padding: 12px 14px;
  border: 1px solid #C9D2E5; border-radius: 4px; background: var(--surface);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--blue); border-color: var(--navy);
}
.field-row { display: grid; gap: 18px; }
@media (min-width: 620px) { .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.form .note { font-size: 14px; font-weight: 400; letter-spacing: normal; text-transform: none; color: var(--body); }

/* ---------- footer ---------- */

.site-footer { background: var(--navy); color: var(--white); padding-block: 44px 22px; }
.site-footer .brand-name, .site-footer a, .site-footer span { color: var(--white); }
.site-footer .brand-sub { color: var(--blue); }
.site-footer a:hover { color: var(--blue); }
.site-footer .prose { color: #CDD5E8; }
.footer-top { display: grid; gap: 26px 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-brand { grid-column: 1 / -1; }
.footer-contact { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer-contact a { font-size: 15px; text-decoration: none; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; } .footer-brand { grid-column: auto; } }
.footer-top h4 {
  margin: 0 0 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--blue);
}
.footer-top li { margin-bottom: 7px; }
.footer-top a, .footer-top span { font-size: 15px; text-decoration: none; }
.footer-bottom {
  margin-top: 30px; padding-top: 16px; border-top: 1px solid rgba(167, 184, 217, 0.25);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13px;
}
.footer-bottom span { color: #AFBAD6; }
.pillars { font-weight: 600; letter-spacing: 0.12em; color: var(--blue) !important; }

/* ---------- checklist pages ---------- */

.chk-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }

.chk-body { display: grid; gap: 32px; }
@media (min-width: 900px) { .chk-body { max-width: 860px; } }

.chk-group h2 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-text); padding-bottom: 12px; margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.ticks { display: flex; flex-direction: column; gap: 11px; }
.ticks li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; line-height: 1.55; color: var(--navy);
}
.ticks .tick {
  flex: none; width: 17px; height: 17px; margin-top: 4px;
  border: 1.5px solid #B9C4DA; border-radius: 3px; background: var(--surface);
}

.chk-score { border-left: 3px solid var(--pink); }
.chk-score .rows li { padding: 12px 0; }

.chk-sources { font-size: 14px; line-height: 1.6; color: var(--blue-text); }

/* the three pillars read as words, not as labels */
#values .card .num { text-transform: none; letter-spacing: 0.02em; font-size: 13px; color: var(--pink-text); }

/* ---------- "What We Offer" submenu ---------- */

.sub-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 2px; min-height: 44px; width: 100%;
  background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 500; color: var(--navy);
  text-align: left;
}
.sub-toggle svg { width: 15px; height: 15px; flex: none; transition: transform .15s ease; }
.has-sub.is-open .sub-toggle svg { transform: rotate(180deg); }
.sub-toggle.is-section { color: var(--pink-text); }

.submenu { display: none; }
.has-sub.is-open .submenu { display: block; }
.submenu a {
  display: block; padding: 9px 2px 9px 16px;
  font-size: 15px; font-weight: 400; color: var(--body); text-decoration: none;
}
.submenu a:hover, .submenu a[aria-current="page"] { color: var(--pink-text); }

@media (min-width: 1060px) {
  .has-sub { position: relative; }
  .sub-toggle { width: auto; min-height: 0; padding: 6px 0; border-bottom: 1px solid transparent; }
  .sub-toggle.is-section { color: var(--navy); border-bottom-color: var(--pink); }
  .submenu {
    position: absolute; top: calc(100% + 14px); left: -18px; z-index: 60;
    min-width: 262px; padding: 8px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(43, 45, 107, 0.10);
  }
  .has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }
  .submenu a { padding: 9px 12px; border-radius: 3px; }
  .submenu a:hover { background: var(--ground); }
}

/* footer: the page you are on is named, not linked */
.footer-top .is-here {
  font-size: 15px; color: #97A3C4; cursor: default;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-top .is-here::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink); flex: none;
}

/* ---------- item grid: heading across the top, items in columns ---------- */

.items { display: grid; gap: 26px 40px; width: 100%; margin-top: 22px; }
@media (min-width: 720px) { .items { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 960px) { .items { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .items.items-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.items li::before {
  content: ""; display: block; width: 24px; height: 2px; background: var(--pink); margin-bottom: 14px;
}
.items strong { display: block; font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 5px; line-height: 1.35; }
.items span { color: var(--body); font-size: 16px; }

/* ---------- team: profile on the left, bio on the right ---------- */

.profile { width: 100%; margin-top: 10px; }
.profile h3 { margin: 0; }
.profile .role { font-size: 17px; font-weight: 600; color: var(--navy); margin-top: -4px; }
@media (min-width: 900px) { .team-left { position: sticky; top: 104px; } }
.bio .prose { max-width: none; }
.bio .prose + .prose { margin-top: 14px; }

/* full-width section headings no longer wrap into a narrow column */
.wrap.stack > h2 { max-width: 40ch; }
