/* LEGACY — Strategic Advisory Group.
   Register: private bank crossed with an architecture journal.
   Boardroom frame: deep ink-green + brass; porcelain article body;
   Marcellus capitals, Spectral text, Plex Mono registry labels;
   one continuous brass hairline (the through-line). */

/* ---------------------------------------------------------------- fonts */
@font-face {
  font-family: 'Marcellus';
  src: url('/assets/fonts/marcellus.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Spectral';
  src: url('/assets/fonts/spectral.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Spectral';
  src: url('/assets/fonts/spectral-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Spectral';
  src: url('/assets/fonts/spectral-semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/assets/fonts/plex-mono.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------------------------------------------------------------- tokens */
:root {
  --deep: #13211b;        /* boardroom ink-green */
  --deep-2: #182a22;      /* raised dark panel */
  --deep-line: rgba(240, 236, 224, 0.14);
  --ivory: #f0ece0;       /* text on dark */
  --ivory-2: rgba(240, 236, 224, 0.72);
  --brass: #b08d4a;
  --brass-2: #8f6f33;
  --porcelain: #f7f7f3;   /* article ground — cool, not cream */
  --porcelain-2: #efefe9;
  --graphite: #23282a;
  --graphite-2: #4c5255;
  --mute: #7d8285;
  --line: rgba(35, 40, 42, 0.14);
  --line-2: rgba(35, 40, 42, 0.38);
  --display: 'Marcellus', 'Iowan Old Style', Georgia, serif;
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
  --shell: 1112px;
  --measure: 66ch;
  --rail: 76px;
  --dur: 0.6s;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  color-scheme: light;
}

/* ---------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--porcelain);
  color: var(--graphite);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(176, 141, 74, 0.28); }

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brass); color: var(--deep); padding: 10px 18px;
  font-family: var(--mono); font-size: 12px; text-decoration: none;
}
.skip:focus { left: 0; }

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

/* ---------------------------------------------------------------- type */
h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  line-height: 1.16;
  letter-spacing: 0.005em;
  margin: 0.2em 0 0;
  max-width: 22ch;
  text-wrap: balance;
}
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.28;
  letter-spacing: 0.01em;
  margin: 2.7em 0 0.6em;
  max-width: 32ch;
  color: var(--deep);
  text-wrap: balance;
}
h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 2em 0 0.4em;
}
p { margin: 0 0 1.15em; max-width: var(--measure); }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.1em;
}

.lede {
  font-size: clamp(1.1rem, 1.8vw, 1.26rem);
  line-height: 1.7;
  color: var(--graphite-2);
  max-width: 58ch;
}

article a, .qa a {
  color: var(--brass-2);
  text-decoration: underline;
  text-decoration-color: rgba(176, 141, 74, 0.45);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s var(--ease), color 0.2s var(--ease);
}
article a:hover, .qa a:hover { color: var(--brass); text-decoration-color: var(--brass); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid var(--line-2);
  color: var(--graphite);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { border-color: var(--brass-2); color: var(--brass-2); }
.btn:active { transform: translateY(1px) scale(0.99); transition-duration: 0.08s; }
.btn-primary { background: var(--deep); color: var(--ivory); border-color: var(--deep); }
.btn-primary:hover { background: var(--brass-2); border-color: var(--brass-2); color: var(--porcelain); }
.btn-lg { padding: 17px 30px; }

/* dark-ground variants */
.site-head .btn-primary, .hero .btn-primary, .page-cta .btn-primary {
  background: var(--brass); border-color: var(--brass); color: var(--deep);
}
.site-head .btn-primary:hover, .hero .btn-primary:hover, .page-cta .btn-primary:hover {
  background: var(--ivory); border-color: var(--ivory); color: var(--deep);
}
.hero .btn-ghost { border-color: var(--deep-line); color: var(--ivory); }
.hero .btn-ghost:hover { border-color: var(--brass); color: var(--brass); }

/* ---------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--deep) 88%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--deep-line);
  color: var(--ivory);
}
@media (prefers-reduced-transparency: reduce) {
  .site-head { background: var(--deep); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.head-row {
  display: flex; align-items: center; gap: clamp(14px, 2.6vw, 36px);
  min-height: 78px;
}
.wordmark { text-decoration: none; display: flex; flex-direction: column; gap: 3px; margin-right: auto; }
.wm {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.32em;
  color: var(--ivory);
}
.wm-sub {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--brass);
}
.nav-d > ul { display: flex; flex-wrap: nowrap; gap: clamp(6px, 1.3vw, 20px); list-style: none; margin: 0; padding: 0; }
.nav-d li { position: relative; }
.nav-link {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-2);
  padding: 31px 2px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s var(--ease);
}
.nav-link:hover { color: var(--ivory); }
.nav-link.is-active { color: var(--brass); }
.nav-link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: var(--brass);
}
.caret {
  width: 5px; height: 5px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px) scale(0.985);
  transform-origin: top center;
  min-width: 300px;
  background: var(--deep-2);
  border: 1px solid var(--deep-line);
  box-shadow: 0 22px 48px -20px rgba(0, 0, 0, 0.55);
  list-style: none; margin: 0; padding: 10px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-menu:hover .menu, .has-menu:focus-within .menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.menu a {
  display: block; padding: 10px 24px;
  font-family: var(--serif); font-size: 15px; text-decoration: none;
  color: var(--ivory-2);
  transition: color 0.15s var(--ease), background 0.15s var(--ease), transform 0.15s var(--ease);
}
.menu a:hover, .menu a[aria-current] { color: var(--brass); background: rgba(176, 141, 74, 0.07); transform: translateX(4px); }

.nav-toggle {
  display: none;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: none; border: 1px solid var(--deep-line); color: var(--ivory);
  padding: 10px 14px; cursor: pointer;
  align-items: center; gap: 8px;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 14px; height: 1px; background: currentColor; content: '';
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -4px; }
.nav-toggle-bars::after { position: absolute; top: 4px; }

.nav-m { display: none; border-top: 1px solid var(--deep-line); background: var(--deep); }
.nav-m > ul { list-style: none; margin: 0; padding: 10px 24px 26px; }
.nav-m a, .nav-m summary {
  display: block; padding: 13px 2px;
  font-family: var(--serif); font-size: 17px; text-decoration: none;
  color: var(--ivory); border-bottom: 1px solid var(--deep-line);
  cursor: pointer;
}
.nav-m summary { list-style: none; position: relative; }
.nav-m summary::-webkit-details-marker { display: none; }
.nav-m summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 6px; height: 6px;
  border-right: 1px solid var(--brass); border-bottom: 1px solid var(--brass);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.nav-m details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.nav-m details ul { list-style: none; margin: 0; padding: 0 0 0 18px; }
.nav-m details a { font-size: 15.5px; color: var(--ivory-2); }
.nav-m a[aria-current] { color: var(--brass); }
.nav-m-cta { padding-top: 22px; }
.nav-m-cta .btn-primary { background: var(--brass); border-color: var(--brass); color: var(--deep); }

@media (max-width: 1080px) {
  .nav-d, .head-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-m.open { display: block; }
}

/* ---------------------------------------------------------------- hero / page head (dark) */
.hero, .page-head {
  background:
    radial-gradient(900px 420px at 88% -160px, rgba(176, 141, 74, 0.13), transparent 62%),
    var(--deep);
  color: var(--ivory);
}
.hero { padding: clamp(76px, 12vh, 150px) 0 clamp(56px, 9vh, 100px); }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.5rem); max-width: 17ch; color: var(--ivory); letter-spacing: -0.008em; line-height: 1.1; }
.hero-rule {
  height: 1px; background: var(--brass); width: min(220px, 30%);
  margin: clamp(22px, 3.5vh, 34px) 0 0;
  transform-origin: left center;
}
.hero-p {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem); line-height: 1.7;
  color: var(--ivory-2); max-width: 56ch;
  margin-top: clamp(20px, 3vh, 30px);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 4.5vh, 44px); }

.page-head {
  padding: clamp(52px, 8vh, 92px) 0 clamp(36px, 6vh, 60px);
}
.page-head h1 { color: var(--ivory); }
.page-head .hero-rule { margin-bottom: 0; }

/* ---------------------------------------------------------------- through-line article */
main { padding-bottom: clamp(64px, 9vh, 110px); }
.article { position: relative; padding-top: clamp(30px, 4.5vh, 48px); }
@media (min-width: 761px) {
  .article { padding-left: var(--rail); }
  .article::before {
    content: '';
    position: absolute;
    left: calc(clamp(20px, 4vw, 40px) + 4px);
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(rgba(176, 141, 74, 0.5), rgba(176, 141, 74, 0.18) 70%, transparent);
  }
  .article h2 { position: relative; }
  .article h2::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--rail) + 0.5px);
    top: 0.5em;
    width: 8px; height: 8px;
    border: 1px solid var(--brass);
    border-radius: 50%;
    background: var(--porcelain);
    transform: translateX(-50%);
  }
}

.plain { max-width: var(--measure); margin: 0 0 1.3em; padding: 0; list-style: none; }
.plain li {
  padding: 0.55em 0 0.55em 1.7em; position: relative;
  border-bottom: 1px solid var(--line);
}
.plain li:first-child { border-top: 1px solid var(--line); }
.plain li::before {
  content: ''; position: absolute; left: 2px; top: 1.25em;
  width: 8px; height: 1px; background: var(--brass);
}

.clause {
  max-width: var(--measure);
  padding-left: 1.5em;
  border-left: 2px solid rgba(176, 141, 74, 0.55);
  margin-bottom: 1.6em;
}
.clause strong { color: var(--deep); }

.plink { font-size: 1.05rem; }
.plink a { font-style: italic; }
.plink a::after { content: '\2192'; font-style: normal; margin-left: 0.45em; color: var(--brass); transition: margin-left 0.2s var(--ease); }
.plink a:hover::after { margin-left: 0.7em; }

/* ---------------------------------------------------------------- ledger index */
.ledger { border-top: 1px solid var(--line-2); margin: 1.5em 0 2.4em; max-width: 47rem; }
.row {
  display: grid;
  grid-template-columns: 3.6rem 1fr 2.4rem;
  align-items: baseline;
  gap: 0 12px;
  padding: 1.2rem 0.4rem 1.25rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.row:hover, .row:focus-visible { background: var(--porcelain-2); transform: translateX(0.6rem); }
.row-n {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--brass-2);
}
.row-body { display: block; }
.row-t {
  display: block;
  font-family: var(--display); font-size: clamp(1.16rem, 2vw, 1.38rem); line-height: 1.3;
  color: var(--deep);
  transition: color 0.2s var(--ease);
}
.row:hover .row-t, .row:focus-visible .row-t { color: var(--brass-2); }
.row-d { display: block; font-size: 0.96rem; color: var(--graphite-2); margin-top: 0.3em; max-width: 58ch; }
.row-a { position: relative; align-self: center; height: 1px; background: var(--line-2); transition: background 0.25s var(--ease); }
.row-a::after {
  content: ''; position: absolute; right: 0; top: -2.5px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--line-2); border-right: 1px solid var(--line-2);
  transform: rotate(45deg);
  transition: border-color 0.25s var(--ease);
}
.row:hover .row-a { background: var(--brass); }
.row:hover .row-a::after { border-color: var(--brass); }

/* ---------------------------------------------------------------- lifecycle */
.lifecycle { margin: 2.4em 0 2.6em; max-width: 54rem; }
.lifecycle ol {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  position: relative;
}
.lifecycle ol::before {
  content: ''; position: absolute; left: 4px; right: 4px; top: 3.5px;
  height: 1px; background: var(--brass);
  transform-origin: left center;
}
.js .in .lifecycle ol::before, .js .lifecycle.in ol::before { animation: draw 1.4s var(--ease) both; }
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.lifecycle li { position: relative; padding: 22px 6px 0 0; }
.lifecycle li::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--brass); background: var(--porcelain);
}
.lifecycle li.final::before { background: var(--brass); }
.lc-n {
  display: block;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--brass-2);
}
.lc-l {
  display: block;
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.08em; margin-top: 3px; color: var(--graphite);
}
@media (max-width: 760px) {
  .lifecycle ol { grid-template-columns: 1fr; gap: 0; }
  .lifecycle ol::before { left: 3.5px; right: auto; top: 4px; bottom: 4px; height: auto; width: 1px; transform-origin: center top; }
  .js .in .lifecycle ol::before, .js .lifecycle.in ol::before { animation-name: drawy; }
  @keyframes drawy { from { transform: scaleY(0); } to { transform: scaleY(1); } }
  .lifecycle li { padding: 0 0 18px 26px; }
  .lifecycle li::before { top: 5px; }
  .lc-l { display: inline; margin-left: 8px; }
  .lc-n { display: inline; }
}

/* ---------------------------------------------------------------- continue + CTA */
.continue {
  margin-top: 3.4em;
  padding-top: 1.5em;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 30px;
  max-width: var(--measure);
}
.cont-label {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--mute);
}
.cont-pre { font-style: italic; color: var(--mute); }
.cont-item a { color: var(--deep); text-decoration: none; border-bottom: 1px solid var(--brass); padding-bottom: 1px; transition: color 0.2s var(--ease); }
.cont-item a:hover { color: var(--brass-2); }
.cont-item a::after { content: '\2192'; margin-left: 0.4em; color: var(--brass); }

.page-cta {
  margin-top: 3.6em;
  background: var(--deep);
  padding: clamp(30px, 4.5vw, 48px);
  max-width: 47rem;
  position: relative;
}
.page-cta::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(176, 141, 74, 0.35);
  pointer-events: none;
}

/* ---------------------------------------------------------------- FAQ */
.qa { padding: 0.4em 0 0.9em; border-bottom: 1px solid var(--line); max-width: var(--measure); }
.qa h2 { margin-top: 1.2em; font-size: clamp(1.22rem, 2.2vw, 1.5rem); }
.qa:first-of-type h2 { margin-top: 0.4em; }

/* ---------------------------------------------------------------- contact */
.contact-grid {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 1fr);
  align-items: start;
  margin: 1.5em 0 2.5em;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form h2 { margin-top: 0; }
.field { margin-bottom: 1.6em; }
.field label {
  display: block;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--graphite-2); margin-bottom: 8px;
}
.field .opt { color: var(--mute); text-transform: none; letter-spacing: 0.06em; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--serif); font-size: 16.5px; color: var(--graphite);
  background: transparent;
  border: none; border-bottom: 1px solid var(--line-2);
  padding: 8px 2px 10px;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}
.field textarea { resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--brass); }
.field input:focus-visible, .field textarea:focus-visible { outline: none; }
.form-status { font-style: italic; color: var(--brass-2); min-height: 1.4em; margin: 0 0 1em; }
.notice {
  border: 1px solid rgba(176, 141, 74, 0.5);
  padding: clamp(18px, 2.5vw, 26px);
  background: var(--porcelain-2);
}
.notice p { font-size: 14px; font-style: italic; color: var(--graphite-2); margin: 0; line-height: 1.7; }

/* ---------------------------------------------------------------- footer */
.site-foot {
  background: var(--deep);
  color: var(--ivory-2);
  padding: clamp(48px, 7vh, 84px) 0 42px;
}
.foot-brand {
  font-size: 15px; color: var(--ivory);
  letter-spacing: 0.02em;
  padding-bottom: 26px; margin: 0 0 36px;
  border-bottom: 1px solid var(--deep-line);
  max-width: none;
}
.foot-brand .wm { font-size: 16px; letter-spacing: 0.3em; }
.foot-brand em { color: var(--ivory-2); }
.foot-cols {
  display: grid; gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 44px;
}
@media (max-width: 760px) { .foot-cols { grid-template-columns: 1fr; } }
.foot-h {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 15px;
}
.foot-h a { text-decoration: none; color: inherit; }
.foot-h a:hover { color: #c7a35e; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols li { margin-bottom: 9px; }
.foot-cols li a {
  font-size: 14px; text-decoration: none; color: var(--ivory-2);
  transition: color 0.2s var(--ease);
}
.foot-cols li a:hover { color: var(--ivory); }
.foot-legal {
  font-size: 12.5px; font-style: italic; line-height: 1.85;
  color: rgba(240, 236, 224, 0.52);
  border-top: 1px solid var(--deep-line);
  padding-top: 28px; margin: 0; max-width: none;
}

/* ---------------------------------------------------------------- motion */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.in, .js .in > .reveal {
  opacity: 1; transform: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.js .hero .reveal:nth-child(1) { transition-delay: 0.05s; }
.js .hero .reveal:nth-child(2) { transition-delay: 0.14s; }
.js .hero .reveal:nth-child(3) { transition-delay: 0.26s; }
.js .hero .reveal:nth-child(4) { transition-delay: 0.34s; }
.js .hero .reveal:nth-child(5) { transition-delay: 0.44s; }
.js .hero-rule.reveal { transform: scaleX(0); transform-origin: left center; }
.js .hero-rule.reveal.in, .js .in > .hero-rule.reveal { transform: scaleX(1); transition-duration: 1s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- print */
@media print {
  .site-head, .site-foot, .page-cta, .nav-toggle { display: none; }
  body { background: #fff; }
  .hero, .page-head { background: #fff; color: #000; }
  .hero h1, .page-head h1 { color: #000; }
}
