/* SNG Consulting
   Built September 2026. Brand values from 02-brand-kit/SNG-Brand-Guide.html.
   Sky blue #4A90C4 fails contrast for body text on the neutral, so it is used
   only for rules, large type and UI. Links use #2E6FA0, which holds the hue
   and reaches 4.9 on white. */

:root{
  --ocean:#1B3A5C;
  --sky:#4A90C4;
  --lightsky:#7EAFD4;
  --neutral:#F0EEE9;
  --white:#FFFFFF;
  --deep:#122840;

  --ink:#16283C;
  --ink-soft:#4A5C70;
  --rule:#D9D6CF;
  --rule-dark:rgba(255,255,255,.22);
  --link:#2E6FA0;

  --serif:Georgia,"Times New Roman",Times,serif;
  --sans:"Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  --s-xs:.8125rem;
  --s-sm:.9375rem;
  --s-base:1.0625rem;
  --s-md:1.3125rem;
  --s-lg:1.625rem;
  --s-xl:2.0625rem;
  --s-2xl:2.625rem;
  --s-3xl:3.375rem;

  --measure:34rem;
  --page:66rem;
  --gutter:clamp(1.25rem,5vw,4rem);
  --section-y:clamp(3.5rem,8vw,6.5rem);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:var(--sans);
  font-size:var(--s-base);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}

h1,h2,h3,h4{font-family:var(--serif);font-weight:400;margin:0;text-wrap:balance;letter-spacing:-.005em}
h1{font-size:clamp(2rem,5.2vw,var(--s-3xl));line-height:1.08}
h2{font-size:clamp(1.65rem,3.8vw,var(--s-xl));line-height:1.16}
h3{font-size:var(--s-md);line-height:1.3}
p{margin:0}
ul{margin:0}

a{color:var(--link);text-decoration-thickness:1px;text-underline-offset:.18em}
a:hover{text-decoration-thickness:2px}
:focus-visible{outline:2px solid var(--sky);outline-offset:3px}

.skip{position:absolute;left:-9999px;top:0;background:var(--ocean);color:#fff;padding:.75rem 1.25rem;z-index:100}
.skip:focus{left:0}

.wrap{max-width:var(--page);margin:0 auto;padding-left:var(--gutter);padding-right:var(--gutter)}
.section{padding-block:var(--section-y)}
.stack{display:flex;flex-direction:column;gap:1.25rem}
.stack-sm{display:flex;flex-direction:column;gap:.5rem}
.measure{max-width:var(--measure)}
.measure-wide{max-width:42rem}

.eyebrow{
  font-family:var(--sans);font-size:var(--s-xs);font-weight:700;
  letter-spacing:.2em;line-height:1.5;text-transform:uppercase;
  color:var(--ink-soft);margin:0;
}
.lede{font-size:var(--s-md);line-height:1.55;color:var(--ink-soft)}
.note{font-size:var(--s-sm);color:var(--ink-soft)}
.rulebar{height:2px;width:44px;background:var(--sky);margin-bottom:1.5rem}

/* grounds */
.g-neutral{background:var(--neutral)}
.g-ocean{background:var(--ocean);color:#fff}
.g-deep{background:var(--deep);color:#fff}
.g-ocean .eyebrow,.g-deep .eyebrow{color:var(--lightsky)}
.g-ocean .lede,.g-deep .lede,.g-ocean .note,.g-deep .note{color:#C3D6E6}
.g-ocean a,.g-deep a{color:var(--lightsky)}
.g-ocean .rulebar,.g-deep .rulebar{background:var(--lightsky)}

/* header */
.site-head{border-bottom:1px solid var(--rule);background:var(--white)}
.head-in{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding-block:1.1rem}
.brand{display:block;line-height:0}
.brand img{width:116px}
.nav{display:flex;align-items:center;gap:clamp(.9rem,2.4vw,1.75rem)}
.nav a{
  font-size:var(--s-sm);color:var(--ink-soft);text-decoration:none;
  white-space:nowrap;padding-block:.35rem;border-bottom:2px solid transparent;
}
.nav a:hover{color:var(--ocean);border-bottom-color:var(--sky)}
.nav a[aria-current="page"]{color:var(--ocean);border-bottom-color:var(--sky)}
.nav .btn{margin-left:.25rem;color:#fff;border-bottom-color:var(--ocean)}
.nav .btn:hover{color:#fff;border-bottom-color:var(--deep)}
/* The active-page rule above is more specific than .nav .btn, which turned the
   button's own label navy-on-navy when Connect was the current page. */
.nav .btn[aria-current="page"]{color:#fff;border-bottom-color:var(--deep)}

/* Small screens: stack the header and wrap the links. The CTA button stays
   visible here, because Connect is no longer a text link in the nav and the
   button is the only header route to it. No hamburger for four items. */
@media(max-width:46rem){
  .head-in{flex-direction:column;align-items:flex-start;gap:.6rem;padding-block:.8rem}
  .nav{flex-wrap:wrap;gap:.2rem 1.15rem;width:100%}
  .nav a{padding-block:.72rem}          /* >=44px tap targets */
  /* Compact on a phone: the header CTA got its own full row and a lot of
     vertical weight before the hero. Still clears 44px to tap. */
  .nav .btn{display:inline-block;margin-left:0;margin-top:0;padding:.62rem 1.1rem}
  .brand{padding-block:.15rem}
  .brand img{width:104px}
}

.btn{
  display:inline-block;background:var(--ocean);color:#fff;
  font-size:var(--s-xs);font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  padding:.8rem 1.4rem;text-decoration:none;border:2px solid var(--ocean);
  transition:background .15s ease,color .15s ease;
}
.btn:hover{background:var(--deep);border-color:var(--deep);color:#fff}
.g-ocean .btn,.g-deep .btn{background:#fff;color:var(--ocean);border-color:#fff}
.g-ocean .btn:hover,.g-deep .btn:hover{background:var(--neutral);border-color:var(--neutral);color:var(--ocean)}
.btn-lg{padding:.95rem 1.75rem;font-size:var(--s-sm)}

/* hero */
.hero{padding-block:clamp(3.5rem,9vw,7rem)}
.hero h1{max-width:26ch}
.hero .lede{margin-top:1.6rem;max-width:38rem}
.hero .btn{margin-top:2.25rem}

/* roster */
.roster{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(15rem,100%),1fr));gap:2rem 2.5rem;margin-top:2.25rem}
.roster h3{font-size:var(--s-base);margin-bottom:.4rem}
.roster p{font-size:var(--s-sm);line-height:1.55;color:var(--ink-soft)}

/* phases */
.phases{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(13.5rem,100%),1fr));gap:0;margin-top:2.5rem}
.phase{border-top:2px solid var(--ocean);padding:1.25rem 1.5rem 1.75rem 0;
  display:flex;flex-direction:column}
.phase + .phase{padding-left:1.5rem}
.phase .n{font-family:var(--serif);color:var(--link);font-size:var(--s-sm);margin-bottom:.5rem}
.phase h3{margin-bottom:.55rem}
.phase p{font-size:var(--s-sm);line-height:1.55;color:var(--ink-soft)}
.phase .get{font-size:var(--s-xs);color:var(--link);letter-spacing:.02em;
  margin-top:auto;padding-top:1.1rem}
@media(max-width:52rem){.phase + .phase{padding-left:0}}

/* prose lists */
/* Two across rather than three or four: wider measure, easier to read. */
.points{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(21rem,100%),1fr));gap:2.5rem 3rem;margin-top:2.5rem}
.points h3{margin-bottom:.5rem}
.points p{font-size:var(--s-sm);line-height:1.6;color:var(--ink-soft)}
.g-neutral .points p{color:var(--ink-soft)}

.rows{margin-top:2.5rem;border-top:1px solid var(--rule)}
.row{border-bottom:1px solid var(--rule);padding-block:1.6rem;display:grid;gap:.55rem}
@media(min-width:48rem){.row{grid-template-columns:16rem 1fr;gap:2.5rem;align-items:start}}
.row h3{font-size:var(--s-base)}
.row p{font-size:var(--s-sm);line-height:1.6;color:var(--ink-soft)}
.g-ocean .row,.g-deep .row{border-color:var(--rule-dark)}
.g-ocean .rows,.g-deep .rows{border-color:var(--rule-dark)}
.g-ocean .row p,.g-deep .row p{color:#C3D6E6}

/* The label the list was missing, and a marker that echoes .rulebar instead of
   reading as a stray hyphen: longer, closer to the text, same sky bar. */
.ticks-label{
  font-size:var(--s-xs);font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--ink-soft);margin:0 0 .9rem;
}
.ticks{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.85rem;max-width:40rem}
.ticks li{padding-left:1.9rem;position:relative;font-size:var(--s-sm);line-height:1.6}
.ticks li::before{content:"";position:absolute;left:0;top:.7em;width:16px;height:2px;background:var(--sky)}
.g-ocean .ticks-label,.g-deep .ticks-label{color:var(--lightsky)}
.g-ocean .ticks li::before,.g-deep .ticks li::before{background:var(--lightsky)}

/* work cards */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(17rem,100%),1fr));gap:2.5rem 3rem;margin-top:2.5rem}
.card{border-top:2px solid var(--ocean);padding-top:1.25rem}
.card .who{font-size:var(--s-xs);letter-spacing:.14em;text-transform:uppercase;color:var(--link);margin-bottom:.6rem}
.card h3{margin-bottom:.7rem}
.card p{font-size:var(--s-sm);line-height:1.6;color:var(--ink-soft)}
.card p + p{margin-top:.8rem}

/* about */
/* Portrait is first in the DOM for the two-column desktop layout, but on a
   phone the name has to come first: this page is where someone who searched
   Sara's name confirms they have the right person. */
.bio{display:grid;gap:2rem;align-items:start}
.bio img{width:100%;max-width:22rem;order:2}
.bio .body{order:1}
@media(min-width:52rem){
  .bio{grid-template-columns:19rem 1fr;gap:3.5rem}
  .bio img{order:0;max-width:none}
  .bio .body{order:0}
}
.bio-links{display:flex;flex-wrap:wrap;gap:.6rem 1.5rem;margin-top:1.4rem;
  font-size:var(--s-sm)}
.bio .body p + p{margin-top:1.1rem}

.creds{list-style:none;padding:0;display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.5rem}
.creds li{font-size:var(--s-xs);border:1px solid var(--rule);padding:.4rem .8rem;color:var(--ink-soft)}

/* form */
.form{display:grid;gap:1.1rem;max-width:32rem;margin-top:2rem}
.field{display:grid;gap:.4rem}
.field label{font-size:var(--s-xs);letter-spacing:.12em;text-transform:uppercase;font-weight:700;color:#C3D6E6}
.field input,.field textarea{
  font:inherit;font-size:var(--s-base);color:#fff;
  background:rgba(255,255,255,.07);border:1px solid var(--rule-dark);
  padding:.75rem .9rem;border-radius:0;width:100%;
}
.field textarea{min-height:7.5rem;resize:vertical}
/* Was outline:none, which removed the focus ring on the one page that matters. */
.field input:focus-visible,.field textarea:focus-visible{background:rgba(255,255,255,.12);border-color:var(--lightsky);outline:2px solid var(--lightsky);outline-offset:2px}
.field input::placeholder,.field textarea::placeholder{color:#8FA8BE}
.hp{position:absolute;left:-9999px}

/* footer */
.site-foot{background:var(--deep);color:#fff;padding-block:2.75rem}
/* Every page used to dead-end here. On a 9-screen page that meant scrolling
   back to the top to go anywhere. */
.foot-nav{display:flex;flex-wrap:wrap;gap:.75rem 2rem;padding-bottom:1.75rem;
  margin-bottom:1.75rem;border-bottom:1px solid var(--rule-dark)}
.foot-nav a{color:#fff;text-decoration:none;font-size:var(--s-sm);
  display:inline-block;padding-block:.62rem;border-bottom:2px solid transparent}
.foot-nav a:hover{border-bottom-color:var(--lightsky)}
.foot-in{display:flex;flex-wrap:wrap;gap:1rem 2rem;align-items:center;justify-content:space-between;font-size:var(--s-sm)}
.site-foot a{color:var(--lightsky)}
.site-foot .meta{color:#9FB6C9}

@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}

@media print{
  .site-head,.site-foot,.btn{display:none}
  body{color:#000;background:#fff}
}
