/* pawankhatri.com - author site
   Konan & Spade look and feel: Inter headings, Source Serif 4 body, gold accent,
   light/dark rhythm.

   Fonts are linked from the document head (see BaseLayout.astro), not @imported
   here. An @import would chain HTML -> style.css -> googleapis -> gstatic, so
   the font request could not start until this file had downloaded and parsed. */

:root {
  --ink: #16202e;          /* near-black navy (K&S secondary) */
  --ink-soft: #3d4551;
  --muted: #6b717b;
  --paper: #f2f2f2;        /* light neutral section bg */
  --paper-2: #ffffff;
  --line: #e3e3e1;
  --accent: #b38432;       /* K&S gold */
  --accent-ink: #8f671f;   /* darker gold, hover */
  --accent-on-dark: #c59b59;
  --dark: #16202e;         /* K&S brand dark (navy) - dark section bg */
  --dark-2: #1e2937;       /* card on dark */
  --dark-line: #2c3a4b;
  --white: #ffffff;
  --maxw: 760px;
  --wide: 1380px;
  --gutter: 28px;
  /* Headings and UI chrome share one sans; reading text is a serif. */
  --heading: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --body: "Source Serif 4", ui-serif, Georgia, "Iowan Old Style", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand, .hero h1, .facts .n, .book-cover .t {
  font-family: var(--heading);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: var(--wide); margin: 0 auto; padding: 0 var(--gutter); }

/* ---- Header ---- */
.site-head {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  border-radius: 0;
  position: sticky; top: 0; z-index: 20;
}
.site-head .head-bar {
  width: 100%; max-width: none; margin: 0; padding: 30px clamp(24px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-radius: 0;
}
/* Just the initials, so they need more weight and size than a full name would
   to hold the corner. */
.brand { font-family: var(--heading); font-weight: 700; font-size: 22px;
  letter-spacing: .01em; color: var(--ink); line-height: 1.1; white-space: nowrap; }
.brand:hover { text-decoration: none; color: var(--accent); }
.brand small { display: block; font-family: var(--sans); font-weight: 500;
  font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav { font-family: var(--sans); font-size: 14.5px; font-weight: 500; display: flex; gap: 26px; }
.nav a { color: var(--ink-soft); padding: 4px 0; position: relative;
  transition: color .15s ease; }
.nav a:hover { color: var(--accent); text-decoration: none; }
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -31px;
  height: 2px; background: var(--accent); }

/* ---- Mobile menu toggle ----
   Hidden on desktop, and only revealed on phones when JS is available (the
   .js class is set inline in the head). Without JS the nav degrades to a
   visible stacked row rather than hiding behind a button that cannot open. */
.nav-toggle { display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-right: -9px; padding: 0;
  background: none; border: 0; border-radius: 8px; cursor: pointer;
  color: var(--ink); }
.nav-toggle:hover { color: var(--accent); }
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav-toggle-bars { position: relative; display: block; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px; transition: background .15s ease; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute;
  left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .2s ease; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
/* Open state: the three bars become an X. */
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ---- Hero ---- */
.hero { padding: 140px 0 128px; border-bottom: 1px solid var(--line); }
.hero .wrap-wide { display: grid; grid-template-columns: 1.4fr .9fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-block; font-family: var(--sans); font-size: 12.5px;
  letter-spacing: .04em; color: var(--accent-ink); font-weight: 600; margin: 0 0 20px;
  padding: 7px 15px; border: 1px solid rgba(179,132,50,.4); border-radius: 999px;
  background: rgba(179,132,50,.07); }
.hero h1 { font-size: 54px; line-height: 1.06; margin: 0 0 20px; font-weight: 700; letter-spacing: -1px; }
.hero p.lede { font-size: 21px; color: var(--ink-soft); margin: 0 0 28px; }
.portrait {
  border-radius: 14px; border: 1px solid var(--line);
  width: 100%; max-width: 340px; margin-left: auto; aspect-ratio: 4/5;
  object-fit: cover; object-position: 50% 22%;
  box-shadow: 0 18px 44px rgba(22,32,46,.14);
}

/* ---- Buttons ---- */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 13px 24px; border-radius: 8px; display: inline-block;
  border: 1px solid var(--accent); background: var(--accent); color: #fff;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--accent-ink); border-color: var(--accent-ink); color:#fff; text-decoration: none; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: rgba(179,132,50,.08); color: var(--accent-ink); border-color: var(--accent); }

/* ---- Sections ---- */
section { padding: 92px 0; border-bottom: 1px solid var(--line); }
section.tight { padding: 64px 0; }
h2 { font-size: 33px; line-height: 1.14; margin: 0 0 22px; font-weight: 700; letter-spacing: -0.6px; }
h3 { font-size: 21px; margin: 32px 0 10px; font-weight: 600; letter-spacing: -0.2px; }
.section-label { font-family: var(--sans); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-ink); font-weight: 600; margin: 0 0 10px; }
p { margin: 0 0 18px; }
.muted { color: var(--muted); }

/* ---- Cards ---- */
.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 28px;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: 0 14px 34px rgba(22,32,46,.09); border-color: #d7d7d4; transform: translateY(-2px); }
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card .num { font-family: var(--heading); font-size: 15px; font-weight: 700;
  color: var(--accent); letter-spacing: .06em; display: inline-block;
  padding-bottom: 12px; margin-bottom: 4px; border-bottom: 2px solid rgba(179,132,50,.35); }
.invert .card .num { color: var(--accent-on-dark); border-bottom-color: rgba(197,155,89,.35); }

/* Two-column section head */
.sec-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px 56px; align-items: end; margin-bottom: 76px; }
.sec-head .muted { font-size: 17px; line-height: 1.6; }

/* Linked cards (What I work on) */
.work-grid { gap: 20px; }
a.card.linked { display: flex; flex-direction: column; color: inherit; position: relative; overflow: hidden; }
a.card.linked:hover { text-decoration: none; }
.invert a.card.linked { color: #cdd3db; }
.invert a.card.linked h3 { color: #fff; }
a.card.linked::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--accent); transition: width .22s ease; }
.invert a.card.linked::before { background: var(--accent-on-dark); }
a.card.linked:hover::before { width: 100%; }
.card .card-arrow { margin-top: 18px; font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--accent); }
.invert .card .card-arrow { color: var(--accent-on-dark); }
a.card.linked:hover .card-arrow { text-decoration: underline; text-underline-offset: 3px; }

/* ---- Facts strip ---- */
.facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.facts div { padding: 8px 22px; border-left: 2px solid var(--line); }
.facts div:first-child { border-left: 0; padding-left: 0; }
.facts .n { font-size: 34px; font-weight: 600; display:block; line-height:1; }
.facts .l { font-family: var(--sans); font-size: 12.5px; color: var(--muted);
  letter-spacing: .04em; margin-top: 6px; display:block; }

/* ---- Book block ---- */
.book { display: grid; grid-template-columns: 300px 1fr; gap: 52px; align-items: center; }
.book-cover {
  aspect-ratio: 5/8; border-radius: 3px; border: 1px solid var(--line);
  background: linear-gradient(160deg, #1d1916, #2c2620);
  color: var(--paper); padding: 30px 26px; display: flex; flex-direction: column;
  box-shadow: 0 18px 40px rgba(20,17,15,.22);
}
.book-cover .k { font-family: var(--sans); font-size: 11px; letter-spacing:.18em;
  text-transform: uppercase; color: #c9a96a; }
.book-cover .t { font-size: 30px; font-weight: 600; margin-top: auto; line-height: 1.1; }
.book-cover .s { font-size: 13.5px; color: #cbbfae; margin-top: 12px; font-style: italic; line-height:1.4; }
.book-cover .a { font-family: var(--sans); font-size: 12px; letter-spacing:.08em;
  text-transform: uppercase; color: #9a8f7d; margin-top: 18px; }
.book-cover-img {
  width: 100%; height: auto; display: block; border-radius: 3px;
  border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(20,17,15,.22);
}

/* ---- Prose (about / framework) ---- */
.prose { max-width: var(--maxw); }
.prose p, .prose li { font-size: 19px; }
.prose blockquote {
  border-left: 3px solid var(--accent); margin: 26px 0; padding: 4px 0 4px 22px;
  font-style: italic; color: var(--ink-soft); font-size: 21px;
}
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }

/* ---- FAQ ---- */
.faq details {
  border: 1px solid var(--line); border-radius: 4px; background: var(--white);
  padding: 4px 22px; margin-bottom: 12px;
}
.faq summary { font-weight: 600; cursor: pointer; padding: 16px 0; list-style: none; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { padding: 16px 0 6px; margin: 0; color: var(--ink-soft); }

/* ---- Footer ---- */
.site-foot { background: var(--dark); color: #b7bec9; padding: 56px 0 40px; border-top: 1px solid var(--dark-line); }
.site-foot a { color: #e6e9ee; }
.site-foot a:hover { color: var(--accent-on-dark); }
.site-foot .cols { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.site-foot .cols > div:first-child { flex: 0 0 60%; max-width: 60%; }
.site-foot h4 { font-family: var(--sans); font-size: 12px; letter-spacing:.14em;
  text-transform: uppercase; color: #8b93a0; margin: 0 0 14px; font-weight: 600; }
.site-foot ul { list-style: none; padding: 0; margin: 0; font-size: 15px;
  font-family: var(--sans); }
.site-foot li { margin-bottom: 9px; }
.site-foot .fine { font-family: var(--sans); font-size: 13px; color: #6f7885;
  margin-top: 36px; border-top: 1px solid var(--dark-line); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ---- Dark section utility (Konan & Spade light/dark rhythm) ---- */
.invert { background: var(--dark); color: #cdd3db; border-bottom-color: var(--dark-line); }
.invert h1, .invert h2, .invert h3, .invert h4 { color: #fff; }
.invert .section-label { color: var(--accent-on-dark); }
.invert .muted { color: #9aa2ae; }
.invert a:not(.btn) { color: var(--accent-on-dark); }
.invert .card { background: var(--dark-2); border-color: var(--dark-line); color: #cdd3db; }
.invert .card:hover { border-color: #37424f; box-shadow: 0 14px 34px rgba(0,0,0,.35); }
.invert .facts div { border-left-color: var(--dark-line); }
.invert .btn.ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.invert .btn.ghost:hover { background: rgba(197,155,89,.14); color: var(--accent-on-dark); border-color: var(--accent-on-dark); }
.invert .faq details { background: var(--dark-2); border-color: var(--dark-line); }
.invert .faq summary { color: #fff; }
.invert .faq summary::after { color: var(--accent-on-dark); }
.invert .faq details[open] summary { border-bottom-color: var(--dark-line); }
.invert .faq details p { color: #b6bdc7; }
.invert .eyebrow { color: var(--accent-on-dark); border-color: rgba(197,155,89,.4); background: rgba(197,155,89,.1); }

/* ---- Data table (framework) ---- */
.tbl { width:100%; border-collapse: collapse; font-family: var(--sans); font-size: 15px; margin: 22px 0; background: var(--white); border-radius: 10px; overflow: hidden; }
.tbl th, .tbl td { border: 1px solid var(--line); padding: 11px 13px; text-align: left; }
.tbl th { font-family: var(--sans); font-size: 13px; letter-spacing: .03em; background: var(--paper); font-weight: 600; }
.tbl td.r { text-align: right; font-variant-numeric: tabular-nums; }
.tbl tr:last-child td { font-weight: 700; }

/* ---- Blog post featured image ---- */
.post-hero { width: 100%; max-width: var(--maxw); height: auto; aspect-ratio: 16/9;
  object-fit: cover; border-radius: 14px; border: 1px solid var(--line);
  margin: 6px 0 30px; box-shadow: 0 18px 44px rgba(22,32,46,.12); }

/* ---- Misc ---- */
.kicker-line { width: 54px; height: 3px; background: var(--accent); margin: 0 0 24px; }
.center { text-align: center; }
.lead-cta { background: var(--paper-2); }

/* ---- Page hero (inner pages) ---- */
.page-hero { padding: 116px 0 92px; border-bottom: 1px solid var(--line); }
.page-hero.split .wrap-wide { display: grid; grid-template-columns: 1.35fr .9fr; gap: 56px; align-items: center; }
.page-hero h1 { font-size: 46px; line-height: 1.07; margin: 0 0 20px; font-weight: 700; letter-spacing: -1px; }
.page-hero .lede { font-size: 21px; color: var(--ink-soft); margin: 0 0 26px; }
.page-hero .kicker-line { margin-top: 4px; }

/* ---- Facts strip (section wrapper) ---- */
.factstrip { padding: 40px 0; }
.factstrip .facts .n { color: var(--ink); }
.factstrip .facts .n .u { color: var(--accent); }

/* ---- CTA band ---- */
.cta-band .wrap-wide, .cta-band .wrap { text-align: center; }
.cta-band h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-band .muted { max-width: 56ch; margin: 0 auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* ---- Mode cards (framework) ---- */
.mode-card { position: relative; }
.mode-card .mode-tag { font-family: var(--sans); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 700; color: var(--accent); display: inline-block;
  padding: 5px 12px; border-radius: 999px; background: rgba(179,132,50,.09);
  border: 1px solid rgba(179,132,50,.3); margin-bottom: 14px; }
.invert .mode-card .mode-tag { color: var(--accent-on-dark); background: rgba(197,155,89,.12); border-color: rgba(197,155,89,.35); }

/* ---- Inversion bar chart (framework) ---- */
.bars { margin: 30px 0 12px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--white); overflow: hidden; box-shadow: 0 12px 34px rgba(22,32,46,.06); }
.bars-legend { display: flex; flex-wrap: wrap; gap: 22px; padding: 16px 26px; border-bottom: 1px solid var(--line);
  background: var(--paper); font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.bars-legend span { display: inline-flex; align-items: center; gap: 8px; }
.swatch { width: 26px; height: 9px; border-radius: 999px; display: inline-block; }
.swatch.eval { background: linear-gradient(90deg,#c3cad3,#9aa4b0); }
.swatch.geo { background: linear-gradient(90deg,var(--accent),#c9a45b); }
.bar-row { padding: 18px 26px; border-bottom: 1px solid var(--line); }
.bar-row:last-child { border-bottom: 0; }
.bar-row.zero { background: rgba(179,132,50,.045); }
.bar-name { font-size: 15.5px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.bar-name .flag { font-family: var(--sans); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; color: #b23b3b; background: rgba(178,59,59,.09); border: 1px solid rgba(178,59,59,.28);
  border-radius: 999px; padding: 3px 9px; margin-left: 10px; vertical-align: middle; white-space: nowrap; }
.bar-line { display: grid; grid-template-columns: 96px 1fr 48px; align-items: center; gap: 14px; margin-top: 11px; }
.bar-tag { font-family: var(--sans); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.bar { height: 10px; border-radius: 999px; background: #ececea; overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; min-width: 2px; }
.bar i.eval { background: linear-gradient(90deg,#c3cad3,#9aa4b0); }
.bar i.geo { background: linear-gradient(90deg,var(--accent),#c9a45b); }
.bar-num { font-family: var(--heading); font-size: 14px; font-weight: 700; text-align: right;
  font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.bar-num.z { color: #b23b3b; }

/* ---- Scoring dimension chips (framework) ---- */
.dims { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 6px; }
.dim { border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; background: var(--white);
  min-width: 150px; }
.dim b { display: block; font-family: var(--heading); font-size: 22px; color: var(--accent-ink);
  line-height: 1; margin-bottom: 6px; }
.dim span { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }

/* ---- Prose refinements ---- */
.prose h2 { margin-top: 44px; }
.prose h2:first-child { margin-top: 0; }
.prose a { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(179,132,50,.4); }
.prose a:hover { text-decoration-color: var(--accent); }
.inshort { list-style: none; padding: 0; margin: 8px 0 0; }
.inshort li { position: relative; padding-left: 30px; margin-bottom: 14px; font-size: 18px; }
.inshort li::before { content: ""; position: absolute; left: 0; top: 11px; width: 14px; height: 14px;
  border-radius: 50%; border: 3px solid var(--accent); }

/* ---- 404 links ---- */
.quick-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.quick-links a { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; background: var(--white); }
.quick-links a:hover { border-color: var(--accent); color: var(--accent-ink); text-decoration: none; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  body { font-size: 18px; }
  .hero .wrap-wide { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 40px 0 40px; }
  .hero h1 { font-size: 38px; }
  /* On phones the portrait leads: above the copy, smaller, and left aligned
     with it (the base rule right-aligns it for the desktop side-by-side). */
  .hero .wrap-wide > div:last-child { order: -1; }
  .portrait { max-width: 180px; margin-left: 0; }
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2,1fr); gap: 18px 0; }
  .facts div:nth-child(3) { border-left: 0; padding-left: 0; }
  .book { grid-template-columns: 1fr; gap: 28px; }
  .book-cover, .book-cover-img { max-width: 260px; }
  .sec-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .site-foot .cols { flex-direction: column; gap: 24px; }
  .site-foot .cols > div:first-child { flex-basis: auto; max-width: 100%; }
  .nav { gap: 18px; }
  .brand small { display: none; }
  .page-hero { padding: 52px 0 40px; }
  .page-hero.split .wrap-wide { grid-template-columns: 1fr; gap: 30px; }
  .page-hero h1 { font-size: 34px; }
  .bar-line { grid-template-columns: 78px 1fr 42px; gap: 10px; }
  .bars-legend { gap: 16px; padding: 14px 20px; }
  .bar-row { padding: 16px 20px; }
  .dim { flex: 1 1 42%; min-width: 0; }
}
/* Below ~600px the brand and the four nav links cannot share one row: flex
   squeezed both, wrapping the brand onto two lines and clipping "The Authority
   Map". Stack them instead — brand on top, nav as its own row. The nav is
   scrollable as a safety net if link text ever grows. */
@media (max-width: 600px) {
  /* Brand and the toggle share the top row; the nav takes a full-width row
     beneath it when open (flex-basis:100% forces the wrap). */
  .site-head .head-bar { flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 0; padding: 14px var(--gutter); }
  .brand { font-size: 19px; }

  /* No-JS fallback: nav stays a visible row, no button. */
  .nav { flex-basis: 100%; gap: 20px; font-size: 13.5px; padding-top: 10px; }
  .nav a { white-space: nowrap; padding: 2px 0; }
  .nav a.is-active::after { bottom: -4px; }

  /* With JS: collapse the nav behind the hamburger. The panel is taken out of
     flow and overlays the page rather than pushing it down — .site-head is
     sticky, so it is the containing block and its z-index carries the panel
     above the content beneath. */
  .js .nav-toggle { display: inline-flex; }
  .js .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    padding: 2px var(--gutter) 10px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(22, 32, 46, .13);
  }
  .js .nav.is-open { display: flex; }
  .js .nav a { padding: 13px 0; font-size: 15px; border-top: 1px solid var(--line);
    white-space: normal; }
  .js .nav a.is-active { color: var(--accent); }
  .js .nav a.is-active::after { display: none; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 32px; }
}
