/* ═══════════════════════════════════════════════════════════════════
   Prabh Milne Ka Chao, Tohana
   Single stylesheet. Mobile-first. No framework.

   1.  Design tokens
   2.  Reset & base
   3.  Typography
   4.  Bilingual (EN / PA) visibility
   5.  Layout primitives
   6.  Components
   7.  Sections
   8.  Utilities
   9.  Motion & print
   ═══════════════════════════════════════════════════════════════════ */


/* ── 1. Design tokens ───────────────────────────────────────────── */

:root {
  /* Deep Nihang blue, kesari and muted gold, drawn from the
     organisation's existing emblem and banner artwork. */
  --c-deep:        #142B55;
  --c-deep-2:      #0D1C3A;
  --c-deep-soft:   #24406F;
  --c-accent:      #C1611F;   /* decorative only — 3.9:1 on ivory */
  --c-accent-ink:  #8F3F12;   /* text-safe kesari — 6.1:1 on ivory */
  --c-gold:        #A98A4C;
  --c-gold-soft:   #D9C79C;

  --c-surface:     #FAF6EE;
  --c-surface-2:   #F2EBDD;
  --c-line:        #E2D9C6;

  --c-text:        #2B2723;
  --c-muted:       #635C50;
  --c-on-dark:     #F3EDE1;
  --c-on-dark-dim: #BFB6A4;

  /* Typography */
  --f-display: 'Marcellus', 'Noto Serif Gurmukhi', Georgia, serif;
  --f-body:    'Source Sans 3', 'Noto Sans Gurmukhi', system-ui, -apple-system, sans-serif;
  --f-gurmukhi-display: 'Noto Serif Gurmukhi', 'Marcellus', Georgia, serif;
  --f-gurmukhi-body:    'Noto Sans Gurmukhi', 'Source Sans 3', system-ui, sans-serif;

  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-md:   clamp(1.125rem, 0.4vw + 1.05rem, 1.25rem);
  --t-lg:   clamp(1.375rem, 0.9vw + 1.2rem, 1.75rem);
  --t-xl:   clamp(1.75rem, 1.8vw + 1.35rem, 2.5rem);
  --t-2xl:  clamp(2.25rem, 3.4vw + 1.4rem, 3.75rem);

  --lh-tight: 1.18;
  --lh-snug:  1.35;
  --lh-body:  1.7;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-section: clamp(3.5rem, 7vw, 6.5rem);

  /* Shape */
  --r-sm: 2px;
  --r-md: 3px;
  --r-lg: 4px;
  --r-pill: 999px;

  --border: 1px solid var(--c-line);
  --shadow-sm: 0 1px 2px rgb(43 39 35 / 0.06), 0 2px 8px rgb(43 39 35 / 0.05);
  --shadow-md: 0 2px 4px rgb(43 39 35 / 0.06), 0 10px 28px rgb(43 39 35 / 0.09);

  --wrap: 74rem;
  --measure: 62ch;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── 2. Reset & base ────────────────────────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--c-surface);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--c-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--c-accent-ink); }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.icon {
  width: 1.125em;
  height: 1.125em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ── 3. Typography ──────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: -0.005em;
  color: var(--c-deep);
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}

h1 { font-size: var(--t-2xl); }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-lg); }

.eyebrow {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-ink);
  margin: 0 0 var(--s-3);
}
.eyebrow--light { color: var(--c-gold-soft); }
/* Gurmukhi has no case distinction — uppercasing only distorts it. */
[data-lang="pa"] .eyebrow { text-transform: none; letter-spacing: 0.04em; }


/* ── 4. Bilingual visibility ────────────────────────────────────── */

html[data-lang="en"] [lang="pa"]:not(.always),
html[data-lang="pa"] [lang="en"]:not(.always) { display: none; }

/* Gurmukhi needs its own faces and a little more leading. */
[lang="pa"] { font-family: var(--f-gurmukhi-body); line-height: 1.85; }
h1 [lang="pa"], h2 [lang="pa"], h3 [lang="pa"],
[lang="pa"].band__gurmukhi { font-family: var(--f-gurmukhi-display); line-height: 1.5; }


/* ── 5. Layout primitives ───────────────────────────────────────── */

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

.section { padding-block: var(--s-section); }
.section--tint { background: var(--c-surface-2); }
.section--dark { background: var(--c-deep); color: var(--c-on-dark); }
.section--dark h2 { color: var(--c-on-dark); }

.section__head { max-width: var(--measure); margin-bottom: var(--s-7); }
.section__head h2 { margin-bottom: var(--s-3); }
.section__intro { color: var(--c-muted); font-size: var(--t-md); }
.section--dark .section__intro { color: var(--c-on-dark-dim); }
.section__more { margin-top: var(--s-7); }
.section__more--pair { display: flex; flex-wrap: wrap; gap: var(--s-4); }

/* A row of buttons that is not preceded by section spacing. */
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-4); margin: 0; }

.split { display: grid; gap: var(--s-7); }
.split__body > p { max-width: var(--measure); color: var(--c-muted); }
.split__body > h2 { margin-bottom: var(--s-5); }

@media (min-width: 56rem) {
  .split { grid-template-columns: 5fr 7fr; gap: var(--s-9); align-items: center; }
  .split--reverse .split__media { order: 2; }
}


/* ── 6. Components ──────────────────────────────────────────────── */

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -100%;
  z-index: 100;
  padding: var(--s-3) var(--s-5);
  background: var(--c-deep);
  color: var(--c-on-dark);
  text-decoration: none;
}
.skip-link:focus { top: var(--s-4); color: var(--c-on-dark); }

/* Utility bar */
.utility {
  background: var(--c-deep-2);
  color: var(--c-on-dark-dim);
  font-size: var(--t-xs);
}
.utility__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  align-items: center;
  justify-content: space-between;
  min-height: 2.75rem;
  padding-block: var(--s-2);
}
.utility__contact { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); margin: 0; }
.utility__contact a,
.utility a { display: inline-flex; align-items: center; gap: var(--s-2); color: inherit; text-decoration: none; }
.utility__contact a:hover, .utility a:hover { color: var(--c-gold-soft); }
.utility__right { display: flex; align-items: center; gap: var(--s-5); }

.lang-toggle {
  background: none;
  border: 1px solid rgb(255 255 255 / 0.28);
  color: var(--c-on-dark);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.lang-toggle:hover { background: rgb(255 255 255 / 0.12); border-color: var(--c-gold-soft); }

/* Social */
.social { display: flex; gap: var(--s-4); }
.social a { color: inherit; display: block; }
.social .icon { width: 1.25rem; height: 1.25rem; }
.social--sm .icon { width: 1.05rem; height: 1.05rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-surface);
  border-bottom: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 4.5rem;
  padding-block: var(--s-3);
}

.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; color: inherit; }
.brand__mark { width: 3rem; height: 3rem; }
.brand__text { display: flex; flex-direction: column; }
.brand__name {
  font-family: var(--f-display);
  font-size: var(--t-md);
  line-height: 1.2;
  color: var(--c-deep);
}
.brand__place {
  font-size: var(--t-xs);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--c-muted);
}
[data-lang="pa"] .brand__place { text-transform: none; letter-spacing: 0.02em; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: none;
  border: var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 5px; width: 1.25rem; }
.nav-toggle__bars span {
  height: 1.5px;
  background: var(--c-deep);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav */
.nav {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  background: var(--c-surface);
  border-bottom: var(--border);
  box-shadow: var(--shadow-md);
}
.nav.is-open { display: block; }
.nav__list { padding: var(--s-3) var(--s-5) var(--s-5); }
.nav__list a {
  display: block;
  padding: var(--s-3) 0;
  font-size: var(--t-md);
  color: var(--c-text);
  text-decoration: none;
  border-bottom: var(--border);
}
.nav__list li:last-child a { border-bottom: 0; }
.nav__list a:hover, .nav__list a[aria-current] { color: var(--c-accent-ink); }

@media (min-width: 56rem) {
  .nav-toggle { display: none; }
  .nav {
    display: block;
    position: static;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav__list { display: flex; gap: var(--s-6); padding: 0; }
  .nav__list a {
    padding: var(--s-2) 0;
    font-family: var(--f-body);
    font-size: var(--t-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
  }
  [data-lang="pa"] .nav__list a { text-transform: none; letter-spacing: 0.02em; font-size: var(--t-base); }
  .nav__list a:hover, .nav__list a[aria-current] { border-bottom-color: var(--c-accent); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
[data-lang="pa"] .btn { text-transform: none; letter-spacing: 0.01em; font-size: var(--t-base); }

.btn--primary { background: var(--c-accent-ink); color: #fff; }
.btn--primary:hover { background: var(--c-deep); color: #fff; }

.btn--ghost { border-color: rgb(255 255 255 / 0.5); color: var(--c-on-dark); }
.btn--ghost:hover { background: var(--c-on-dark); color: var(--c-deep); }

.btn--outline { border-color: var(--c-deep); color: var(--c-deep); }
.btn--outline:hover { background: var(--c-deep); color: var(--c-on-dark); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 600;
  color: var(--c-accent-ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-arrow .icon { transition: transform 0.2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }


/* ── 7. Sections ────────────────────────────────────────────────── */

/* Hero — the original banner artwork, shown whole, over a colour panel. */
.hero { background: var(--c-deep); }

.hero__banner { display: block; }
.hero__banner img {
  width: 100%;
  /* The artwork is a fixed 1920×540 composition, so it is never cropped —
     it scales as a whole. A separate 1020×540 crop serves small screens. */
  aspect-ratio: 1020 / 540;
  object-fit: cover;
}
@media (min-width: 48rem) {
  .hero__banner img { aspect-ratio: 1920 / 540; }
}

.hero__panel {
  background: var(--c-deep);
  color: var(--c-on-dark);
  border-top: 3px solid var(--c-gold);
  padding-block: var(--s-8);
}
.hero__inner { max-width: 46rem; }
.hero__title { color: var(--c-on-dark); margin-bottom: var(--s-5); }
.hero__title::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin-top: var(--s-5);
  background: var(--c-gold);
}
.hero__lede {
  font-size: var(--t-md);
  color: var(--c-on-dark-dim);
  max-width: var(--measure);
  margin-bottom: var(--s-6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-4); }

/* Inner-page header — the counterpart to the homepage hero panel. */
.page-head {
  background: var(--c-deep);
  color: var(--c-on-dark);
  border-bottom: 3px solid var(--c-gold);
  padding-block: var(--s-8);
}
.page-head__inner { max-width: 46rem; }
.page-head h1 { color: var(--c-on-dark); margin-bottom: var(--s-4); }
.page-head h1::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin-top: var(--s-5);
  background: var(--c-gold);
}
.page-head__lede {
  font-size: var(--t-md);
  color: var(--c-on-dark-dim);
  max-width: var(--measure);
  margin-top: var(--s-5);
}

/* Long-form body copy */
.prose { max-width: var(--measure); }
.prose p { color: var(--c-muted); }
.prose h2 { margin-top: var(--s-7); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--s-6); margin-bottom: var(--s-3); font-size: var(--t-md); color: var(--c-accent-ink); }

/* A pulled-out list of the five vices, and similar enumerations. */
.list-marked { margin: 0 0 var(--s-4); display: grid; gap: var(--s-3); }
.list-marked li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  color: var(--c-muted);
}
.list-marked li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.72em;
  background: var(--c-accent);
  transform: rotate(45deg);
}

/* Gurbani band */
.band {
  background: var(--c-surface-2);
  border-block: 1px solid var(--c-line);
  padding-block: var(--s-8);
  text-align: center;
}
.band__inner { max-width: 48rem; }
.ikonkar {
  font-size: 2rem;
  line-height: 1;
  color: var(--c-gold);
  margin: 0 0 var(--s-5);
}
.band__quote { margin: 0; }
.band__gurmukhi {
  font-family: var(--f-gurmukhi-display);
  font-size: var(--t-lg);
  line-height: 1.9;
  color: var(--c-deep);
  margin-bottom: var(--s-4);
}
.band__translit { color: var(--c-accent-ink); font-size: var(--t-sm); letter-spacing: 0.02em; margin-bottom: var(--s-4); }
.band__meaning {
  font-family: var(--f-display);
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: var(--s-5);
  text-wrap: pretty;
}
.band__cite {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
[data-lang="pa"] .band__cite { text-transform: none; letter-spacing: 0.02em; }

/* About portrait */
.split__media img {
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.split__caption {
  margin-top: var(--s-3);
  font-size: var(--t-sm);
  color: var(--c-muted);
  border-left: 2px solid var(--c-gold);
  padding-left: var(--s-3);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (min-width: 40rem) { .gallery { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); } }

/* Gallery page — fewer, larger tiles than the homepage strip. */
@media (min-width: 40rem) { .gallery--page { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }

.gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--c-surface-2);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s var(--ease), filter 0.3s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); filter: brightness(1.04); }

/* Channels */
.channels { display: grid; gap: var(--s-4); }
@media (min-width: 40rem) { .channels { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .channels { grid-template-columns: repeat(4, 1fr); } }

.channel {
  display: grid;
  gap: var(--s-2);
  height: 100%;
  padding: var(--s-5);
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--r-sm);
  color: var(--c-on-dark);
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.channel:hover { background: rgb(255 255 255 / 0.1); border-color: var(--c-gold); color: var(--c-on-dark); }
.channel__icon { width: 1.75rem; height: 1.75rem; fill: none; stroke: currentColor; stroke-width: 1.7; color: var(--c-gold-soft); margin-bottom: var(--s-2); }
.channel__name { font-family: var(--f-display); font-size: var(--t-md); line-height: 1.3; }
.channel__meta { font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-on-dark-dim); }

/* Map */
.map { position: relative; display: block; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.map img { width: 100%; }
.map__badge {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.55rem 1rem;
  background: var(--c-surface);
  color: var(--c-deep);
  font-size: var(--t-sm);
  font-weight: 600;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.map:hover .map__badge { background: var(--c-deep); color: var(--c-on-dark); }

/* Contact block */
.contact { font-style: normal; margin-bottom: var(--s-6); }
.contact__row { display: flex; gap: var(--s-3); align-items: start; margin-bottom: var(--s-4); color: var(--c-muted); }
.contact__row .icon { margin-top: 0.35em; color: var(--c-accent); }
.contact__row strong { color: var(--c-text); font-weight: 600; }

/* Footer */
.footer { background: var(--c-deep-2); color: var(--c-on-dark-dim); padding-top: var(--s-8); font-size: var(--t-sm); }
.footer__inner { display: grid; gap: var(--s-7); padding-bottom: var(--s-7); }
@media (min-width: 48rem) { .footer__inner { grid-template-columns: 2fr 1fr 1.4fr; gap: var(--s-8); } }

.footer__brand img { width: 4.5rem; height: 4.5rem; margin-bottom: var(--s-4); }
.footer__name { font-family: var(--f-display); font-size: var(--t-md); color: var(--c-on-dark); margin-bottom: var(--s-2); }
.footer__tag { color: var(--c-on-dark-dim); }
.footer__heading {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin-bottom: var(--s-4);
}
[data-lang="pa"] .footer__heading { text-transform: none; letter-spacing: 0.02em; font-size: var(--t-sm); }
.footer a { color: var(--c-on-dark-dim); text-decoration: none; }
.footer a:hover { color: var(--c-gold-soft); text-decoration: underline; }
.footer__nav li { margin-bottom: var(--s-3); }
.footer__contact p { margin-bottom: var(--s-3); }
.footer__contact .social { margin-top: var(--s-5); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  justify-content: space-between;
  padding-block: var(--s-5);
  border-top: 1px solid rgb(255 255 255 / 0.1);
  font-size: var(--t-xs);
}
.footer__base p { margin: 0; }
.footer__dev a { color: var(--c-gold-soft); }

/* Lightbox */
.lightbox {
  /* Sized to the image rather than the viewport: the source photographs are
     only 277px square, so a full-width dialog would upscale them badly. */
  width: fit-content;
  max-width: min(92vw, 34rem);
  max-height: 90vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.lightbox::backdrop { background: rgb(13 28 58 / 0.9); }
.lightbox img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  margin-inline: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.lightbox__close {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgb(13 28 58 / 0.65);
  border: 1px solid rgb(255 255 255 / 0.4);
  border-radius: var(--r-pill);
  color: #fff;
  cursor: pointer;
}
.lightbox__close:hover { background: rgb(13 28 58 / 0.9); }


/* ── 8. Utilities ───────────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}


/* ── 9. Motion & print ──────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .utility, .nav, .nav-toggle, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  .section--dark, .footer { background: #fff !important; color: #000 !important; }
  a::after { content: " (" attr(href) ")"; font-size: 0.85em; }
}
