/* SAS Dial Foundation — design system
   One stylesheet for every page. Tokens first, then layout, then components.
   Palette carried over from the holding page: deep green, gold, warm cream. */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- tokens ---------- */
:root {
  --green:        #1f4d3f;
  --green-deep:   #13322a;
  --green-soft:   #eaf1ed;
  --gold:         #c08a2e;
  --gold-soft:    #f6ecd9;
  --cream:        #f7f5f0;
  --white:        #ffffff;
  --ink:          #17231e;
  --body:         #4a5b53;
  --muted:        #7d8b84;
  --line:         #e2ddd3;

  --serif: Georgia, "Times New Roman", "Noto Serif", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1140px;
  --gut: 24px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(23,35,30,.05), 0 12px 32px rgba(23,35,30,.07);
  --shadow-lg: 0 2px 4px rgba(23,35,30,.06), 0 24px 60px rgba(23,35,30,.12);
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p + p { margin-top: 1em; }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 760px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--cream); }
.section--green { background: var(--green); color: rgba(255,255,255,.82); }
.section--green h2, .section--green h3, .section--green h4 { color: #fff; }

.eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 14px;
}
.section--green .eyebrow { color: #e8c88a; }
.lede { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--body); }
.section--green .lede { color: rgba(255,255,255,.85); }
.rule { height: 3px; width: 54px; background: var(--gold); border-radius: 2px; margin: 18px 0 26px; }
.center { text-align: center; }
.center .rule { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 8px 20px rgba(192,138,46,.28); }
.btn--gold:hover { background: #a9761f; }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-deep); }
.btn--ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { border: 1px solid var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--green); color: var(--green); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-name { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); line-height: 1.15; }
.brand-name span { display: block; font-family: var(--sans); font-size: 9.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-size: .9rem; font-weight: 500; color: var(--body);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color .18s, border-color .18s; }
.nav a:hover { color: var(--green); }
.nav a[aria-current="page"] { color: var(--green); border-bottom-color: var(--gold); }
.nav .btn { padding: 10px 20px; }

.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0 18px;
    box-shadow: var(--shadow); display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px var(--gut); border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); background: var(--green-soft); }
  .nav .btn { margin: 14px var(--gut) 0; justify-content: center; }
}

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(19,50,42,.93) 0%, rgba(19,50,42,.78) 45%, rgba(19,50,42,.42) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: clamp(72px, 11vw, 132px); padding-bottom: clamp(72px, 11vw, 132px); }
.hero h1 { color: #fff; max-width: 17ch; }
.hero p { color: rgba(255,255,255,.88); max-width: 54ch; margin-top: 20px; font-size: clamp(1.02rem, 2vw, 1.18rem); }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero .eyebrow { color: #e8c88a; }

/* page banner (interior pages) */
.banner { position: relative; color: #fff; overflow: hidden; background: var(--green-deep); }
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.banner .wrap { position: relative; z-index: 2; padding: clamp(54px, 7vw, 86px) var(--gut); }
.banner h1 { color: #fff; }
.banner p { color: rgba(255,255,255,.85); max-width: 58ch; margin-top: 14px; }

/* ---------- grids and cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { margin-bottom: 10px; }
.card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 18px;
  background: var(--green-soft); color: var(--green); font-weight: 700; font-size: .95rem;
}
.card--photo { padding: 0; overflow: hidden; }
.card--photo img { height: 210px; width: 100%; object-fit: cover; }
.card--photo .body { padding: 26px 28px 30px; }

.split { display: grid; gap: clamp(30px, 5vw, 60px); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); height: 100%;
  max-height: 460px; object-fit: cover; width: 100%; }

.ticklist { list-style: none; margin-top: 22px; }
.ticklist li { position: relative; padding-left: 32px; margin-bottom: 13px; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .48em; width: 16px; height: 16px;
  border-radius: 50%; background: var(--gold-soft);
  box-shadow: inset 0 0 0 2px var(--gold);
}
.section--green .ticklist li::before { background: rgba(255,255,255,.14); box-shadow: inset 0 0 0 2px #e8c88a; }

/* ---------- stat band ---------- */
.stats { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.1rem, 4.6vw, 3rem); color: var(--gold); line-height: 1; }
.section--green .stat .n { color: #e8c88a; }
.stat .k { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 12px; color: var(--muted); }
.section--green .stat .k { color: rgba(255,255,255,.72); }

/* ---------- quote ---------- */
.quote { border-left: 3px solid var(--gold); padding: 6px 0 6px 28px; }
.quote p { font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.55rem); color: var(--ink); line-height: 1.45; }
.quote cite { display: block; margin-top: 16px; font-style: normal; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- people ---------- */
.person { text-align: center; }
.person .avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem;
}
.person .role { font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* ---------- forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--green-soft); border-color: var(--green);
}

/* ---------- cta band ---------- */
.cta { background: var(--green-deep); color: rgba(255,255,255,.85); text-align: center; }
.cta h2 { color: #fff; }
.cta .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 64px 0 28px; font-size: .9rem; }
.site-footer a { color: rgba(255,255,255,.62); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 16px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.footer-bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; }
.footer-brand svg { width: 40px; height: 40px; margin-bottom: 16px; }

/* ---------- misc ---------- */
.note {
  background: var(--gold-soft); border: 1px solid #ecd9b4; border-radius: var(--radius);
  padding: 20px 24px; font-size: .92rem;
}
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--green); color: #fff;
  padding: 10px 18px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

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