/* ==========================================================================
   BONNIE HO — portfolio
   Static site (bonnie-ho.com)
   ========================================================================== */

/* --------------------------------------------------------------- fonts -- */
@font-face {
  font-family: "acumin-pro";
  src: url("assets/fonts/acumin-pro-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "acumin-pro";
  src: url("assets/fonts/acumin-pro-300i.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "acumin-pro";
  src: url("assets/fonts/acumin-pro-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------- tokens -- */
:root {
  /* site palette */
  --cream: hsl(51.43, 13.73%, 80%);        /* #d3d1c5 — primary text      */
  --ink: hsl(145, 100%, 0%);               /* #000000 — site background   */
  --accent: hsl(170, 45%, 15%);            /* #153732                      */
  --light-accent: hsl(157, 51%, 30%);      /* #257456 — buttons            */
  --dark-accent: hsl(358.86, 65.22%, 31.57%);

  --heading-font: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --body-font: "acumin-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* fluid type: (scale - 1) x 1.2% of the type viewport + 1rem */
  --type-viewport: min(100vw, 1500px);
  --type-step: calc(0.012 * var(--type-viewport));

  --h1: calc(3 * var(--type-step) + 1rem);      /* scale 4.0  */
  --h2: calc(1.8 * var(--type-step) + 1rem);    /* scale 2.8  */
  --h3: calc(1.2 * var(--type-step) + 1rem);    /* scale 2.2  */
  --h4: calc(0.6 * var(--type-step) + 1rem);    /* scale 1.6  */
  --text-large: calc(0.5 * var(--type-step) + 1rem);
  --text-normal: 1rem;
  --text-small: calc(-0.1 * var(--type-step) + 1rem);

  /* layout */
  --gutter: 4vw;
  --max-width: 1500px;
  --container: min(var(--max-width), calc(100vw - 2 * var(--gutter)));

  /* fluid engine grid */
  --fe-gap-row: 11px;
  --fe-gap-col: 11px;
  --fe-row: calc(var(--container) * 0.0215);

  --header-height: 80.8px;
  --transition: 200ms ease;
}

@media (max-width: 767px) {
  :root {
    --gutter: 6vw;
    --type-viewport: min(100vh, 900px);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1.4;
}

h1 { font-size: var(--h1); line-height: 1.232; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

p { margin: 0; }
p + p { margin-top: 1.8em; }

strong { font-weight: 700; }

.text-small { font-size: var(--text-small); }
.text-large { font-size: var(--text-large); }

.rich-text a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 calc(100% - 0.05em);
  background-repeat: repeat-x;
  background-size: 1px 1px;
  padding-bottom: 0.05em;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--heading-font);
  text-transform: uppercase;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

/* -------------------------------------------------------------- header -- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  color: var(--cream);
}

.header-background {
  position: absolute;
  inset: 0;
  background: var(--ink);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14.4px var(--gutter);
}

.header-logo img {
  width: auto;
  max-height: 52px;
}

.header-nav {
  display: inline-flex;
  align-items: center;
}

.header-nav a {
  display: inline-block;
  padding-bottom: 1.6px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

.header-nav li + li {
  margin-left: 2.3vw;
}

.header-nav ul {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav a:hover,
.header-nav a:focus-visible,
.header-nav .is-active a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 calc(100% - 1.6px);
  background-repeat: repeat-x;
  background-size: 1px 1px;
}

.header-burger {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.header-burger span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-open .header-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .header-burger span:nth-child(2) { opacity: 0; }
.site-header.is-open .header-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 991px) {
  .header-burger { display: block; }

  .header-inner { padding: 12px var(--gutter); }

  .header-logo img { max-height: 42px; }

  .header-logo,
  .header-burger {
    position: relative;
    z-index: 2;
  }

  .header-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: block;
    padding: calc(66px + 6vh) var(--gutter) 6vh;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .header-nav a:hover,
  .header-nav a:focus-visible,
  .header-nav .is-active a {
    background-image: none;
    opacity: 0.65;
  }

  .site-header.is-open .header-nav {
    opacity: 1;
    visibility: visible;
  }

  .header-nav ul {
    display: block;
  }

  .header-nav li + li { margin-left: 0; }

  .header-nav a {
    display: block;
    padding: 14px 0;
    font-size: var(--h4);
    font-family: var(--heading-font);
  }
}

/* ------------------------------------------------------------ sections -- */
.page-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
}

/* the header is fixed, so the first section carries its height */
main > .page-section:first-child {
  padding-top: var(--header-height);
}

.page-section.section-height--small { min-height: 33vh; }
.page-section.section-height--medium { min-height: 66vh; }
.page-section.section-height--large { min-height: 100vh; }

.page-section:has(> .content-wrapper > .gallery-section),
.page-section:has(> .content-wrapper > .portfolio-grid),
.page-section:has(> .content-wrapper > .user-items-list) {
  min-height: 0;
}

.page-section.theme-bright-inverse {
  background: #ffffff;
  color: var(--accent);
}

.section-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-background-overlay {
  position: absolute;
  inset: 0;
  background: var(--ink);
}

.content-wrapper {
  position: relative;
  width: 100%;
  padding-top: var(--section-pad, 3.3vmax);
  padding-bottom: var(--section-pad, 3.3vmax);
}

/* --------------------------------------------------------- fluid grid -- */
.layout-grid {
  --fe-gutter: calc(var(--gutter) - var(--fe-gap-col));
  --fe-cell: calc((var(--max-width) - (var(--fe-gap-col) * 7)) / 8);
  position: relative;
  display: grid;
  row-gap: var(--fe-gap-row);
  column-gap: var(--fe-gap-col);
  grid-auto-rows: minmax(24px, auto);
  grid-template-columns:
    minmax(var(--fe-gutter), 1fr)
    repeat(8, minmax(0, var(--fe-cell)))
    minmax(var(--fe-gutter), 1fr);
  overflow-x: clip;
}

@media (min-width: 768px) {
  .layout-grid {
    --fe-cell: calc((var(--max-width) - (var(--fe-gap-col) * 23)) / 24);
    grid-auto-rows: minmax(var(--fe-row), auto);
    grid-template-columns:
      minmax(var(--fe-gutter), 1fr)
      repeat(24, minmax(0, var(--fe-cell)))
      minmax(var(--fe-gutter), 1fr);
  }
}

.grid-cell {
  position: relative;
  min-width: 0;
}

.grid-cell .blk {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* image blocks are taken out of flow so the grid rows keep their height */
.grid-cell--image .blk {
  position: absolute;
  inset: 0;
}

.grid-cell--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.grid-cell--image.is-stretched img {
  object-fit: cover;
}

.grid-cell--text .rich-text > * + * {
  margin-top: 1.4em;
}

.grid-cell--text h1 + p,
.grid-cell--text h2 + p,
.grid-cell--text h3 + p,
.grid-cell--text h4 + p {
  margin-top: 1em;
}

/* dotted rule, per the site's custom CSS */
.blk--rule {
  justify-content: center;
}

.blk--rule hr {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 3.1px dotted currentColor;
  background: transparent;
}

/* social icon block */
.blk--social {
  justify-content: center;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* --------------------------------------------------------- auto layout -- */
.user-items-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  width: var(--container);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.user-items-list .list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10%;
  text-align: center;
}

.list-item-media {
  width: 75%;
  margin-bottom: 8%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}

.list-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-item-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
}

.list-item-content > * {
  margin-inline: auto;
}

.list-item-content__title {
  width: 100%;
  max-width: 75%;
  font-family: var(--heading-font);
  font-size: calc(0.2 * var(--type-step) + 1rem);
  font-weight: 500;
  line-height: 1.3;
}

.list-item-content__description {
  width: 100%;
  max-width: 75%;
  margin-top: 6%;
  font-size: calc(-0.1 * var(--type-step) + 1rem);
  line-height: 1.8;
}

.list-item-content__button-wrapper {
  width: 100%;
  max-width: 75%;
  margin-top: 7%;
}

@media (max-width: 767px) {
  .user-items-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100vw - 30px);
  }
}

@media (max-width: 575px) {
  .user-items-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2em 2.6em;
  border: 0;
  border-radius: 0.51em;
  background: rgba(37, 116, 86, 0.63);
  color: var(--cream);
  font-family: "Poppins", var(--heading-font);
  font-size: calc(-0.2 * var(--type-step) + 1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  background: var(--light-accent);
}

/* ------------------------------------------------------- portfolio grid -- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  width: 100%;
  max-width: calc(var(--max-width) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 3.3vmax var(--gutter);
}

.portfolio-grid--basic {
  gap: 40px;
}

.portfolio-grid .grid-item {
  position: relative;
  display: block;
}

.grid-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.portfolio-grid--basic .grid-image {
  aspect-ratio: 3 / 4;
}

.portfolio-grid--basic .portfolio-text {
  position: static;
  display: block;
  padding: 20px 0 0;
  text-align: left;
  opacity: 1;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.42;
  transition: opacity var(--transition);
}

.portfolio-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7%;
  text-align: center;
  transition: opacity var(--transition);
}

.portfolio-title {
  width: 100%;
  margin: 0;
  font-family: var(--heading-font);
  font-size: var(--h3);
  font-weight: 500;
  line-height: 1.4;
}

.portfolio-grid--basic .portfolio-title {
  font-size: calc(0.2 * var(--type-step) + 1rem);
  line-height: 1.4;
}

.portfolio-grid .grid-item:hover .grid-image img {
  transform: scale(1.03);
}

@media (min-width: 1537px) {
  .portfolio-grid--overlay .portfolio-overlay,
  .portfolio-grid--overlay .portfolio-text { opacity: 0; }

  .portfolio-grid--overlay .grid-item:hover .portfolio-overlay { opacity: 0.42; }
  .portfolio-grid--overlay .grid-item:hover .portfolio-text { opacity: 1; }
}

@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.5vmax var(--gutter);
  }
}

/* ----------------------------------------------------------- galleries -- */
.gallery-section {
  width: 100%;
  max-width: calc(var(--max-width) + 2 * var(--gutter));
  margin: 0 auto;
  padding: var(--gutter);
}

/* strips = justified rows (widths are computed in script.js) */
.gallery-strips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gallery-gutter, 20px);
}

.gallery-strips figure {
  flex: 0 0 auto;
  width: calc(var(--ar) * var(--row-height, 300px));
  margin: 0;
  min-width: 0;
}

.gallery-strips .gallery-media {
  aspect-ratio: var(--ar);
}

/* grid = fixed aspect ratio columns */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: var(--gallery-gutter, 30px);
}

.gallery-grid figure {
  margin: 0;
  min-width: 0;
}

.gallery-grid .gallery-media {
  aspect-ratio: var(--gallery-ar, 1.5);
}

.gallery-media {
  position: relative;
  overflow: hidden;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid .gallery-media img {
  object-fit: cover;
}

.gallery-lightbox-link {
  display: block;
  height: 100%;
  cursor: zoom-in;
}

figcaption {
  padding: 15px 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(min(var(--cols, 3), 2), minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: minmax(0, 1fr); }

  .gallery-strips {
    display: block;
  }

  .gallery-strips figure {
    width: 100% !important;
  }

  .gallery-strips figure + figure {
    margin-top: var(--gallery-gutter, 20px);
  }
}

/* slideshow */
.gallery-slideshow {
  position: relative;
}

.gallery-slideshow-viewport {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.gallery-slideshow figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}

.gallery-slideshow figure.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-slideshow figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slideshow-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 32px;
  transform: translateY(-50%);
  border: 0;
  background: none;
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.slideshow-control--prev { left: 8px; }
.slideshow-control--next { right: 8px; }

.slideshow-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  height: 100px;
  align-items: center;
}

.slideshow-thumbs button {
  width: 80px;
  height: 80px;
  padding: 0;
  border: 0;
  background: none;
  opacity: 0.45;
  cursor: pointer;
  transition: opacity var(--transition);
}

.slideshow-thumbs button.is-active,
.slideshow-thumbs button:hover { opacity: 1; }

.slideshow-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------ lightbox -- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.97);
}

.lightbox.is-open { display: flex; }

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(92vw, 1500px);
  max-height: 88vh;
  margin: 0;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox-figure figcaption {
  max-width: 68ch;
  color: var(--cream);
  text-align: center;
}

.lightbox button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close { top: 16px; right: 20px; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------- animations -- */
/* Mirrors the source site's global animations:
   type "fade", curve "ease", duration 0.90s, 0.6s of stagger spread across
   the targets on the page. The .preFade class is applied by script.js, so
   with JS unavailable every element simply renders visible. */
.preFade {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.9s;
  transition-timing-function: ease;
}

.fadeIn {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .preFade {
    opacity: 1;
    transition: none;
  }
}


/* ------------------------------------------------- shared footer grid -- */
/* Footer markup lives in chrome.js; its grid placement lives here so the
   two halves stay together instead of being repeated on every page. */
.sec-001{--fe-gap-row:1px}
@media (max-width: 767px) {.b-196{grid-area:1/8/2/10;z-index:25}.b-196 .blk{justify-content:center}.b-196 .align-wrap{align-items:center;justify-content:center}.b-205{grid-area:2/2/3/10;z-index:22}.b-205 .blk{justify-content:center}.b-205 .align-wrap{align-items:center;justify-content:center}.b-198{grid-area:3/4/5/8;z-index:1}.b-198 .blk{justify-content:center}.b-198 .align-wrap{align-items:center;justify-content:center}.b-158{grid-area:3/2/5/4;z-index:3}.b-158 .blk{justify-content:center}.b-158 .align-wrap{align-items:center;justify-content:center}.b-195{grid-area:3/8/4/10;z-index:23}.b-195 .blk{justify-content:center}.b-195 .align-wrap{align-items:center;justify-content:center}.b-199{grid-area:5/2/7/5;z-index:4}.b-199 .blk{justify-content:flex-start}.b-199 .align-wrap{align-items:flex-start;justify-content:flex-start}.b-209{grid-area:7/3/10/9;z-index:27}.b-209 .blk{justify-content:flex-start}.b-209 .align-wrap{align-items:flex-start;justify-content:flex-start}.b-197{grid-area:6/9/9/10;z-index:26}.b-197 .blk{justify-content:center}.b-197 .align-wrap{align-items:center;justify-content:center}.sec-001{grid-template-rows:repeat(9,minmax(24px,auto))}}
@media (min-width: 768px) {.b-196{grid-area:1/25/2/26;z-index:25}.b-196 .blk{justify-content:flex-end}.b-196 .align-wrap{align-items:flex-end;justify-content:flex-end}.b-205{grid-area:2/2/3/26;z-index:22}.b-205 .blk{justify-content:flex-start}.b-205 .align-wrap{align-items:flex-start;justify-content:flex-start}.b-198{grid-area:3/3/6/8;z-index:1}.b-198 .blk{justify-content:center}.b-198 .align-wrap{align-items:center;justify-content:center}.b-158{grid-area:3/2/6/3;z-index:3}.b-158 .blk{justify-content:center}.b-158 .align-wrap{align-items:center;justify-content:center}.b-195{grid-area:4/8/5/9;z-index:23}.b-195 .blk{justify-content:center}.b-195 .align-wrap{align-items:center;justify-content:center}.b-199{grid-area:6/2/8/4;z-index:4}.b-199 .blk{justify-content:flex-start}.b-199 .align-wrap{align-items:flex-start;justify-content:flex-start}.b-209{grid-area:5/9/6/23;z-index:27}.b-209 .blk{justify-content:flex-start}.b-209 .align-wrap{align-items:flex-start;justify-content:flex-start}.b-197{grid-area:4/25/8/26;z-index:26}.b-197 .blk{justify-content:center}.b-197 .align-wrap{align-items:center;justify-content:center}}

/* ---------------------------------------------------- project pagination -- */
site-pagination {
  display: block;
  background: var(--ink);
  color: var(--cream);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem 2rem;
  width: 100%;
  max-width: calc(var(--max-width) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 10vmax var(--gutter) 3.3vmax;
}

.pagination-link {
  display: block;
  max-width: 46%;
  font-family: var(--heading-font);
  font-size: var(--h3);
  font-weight: 500;
  line-height: 1.4;
  transition: opacity var(--transition);
}

/* keeps "next" hard right even when there is no "previous" beside it */
.pagination-link--next {
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}

.pagination-link:hover,
.pagination-link:focus-visible {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .pagination {
    flex-direction: column;
    padding-top: 6.6vmax;
  }

  .pagination-link {
    max-width: 100%;
  }
}

/* -------------------------------------------------------------- footer -- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--cream);
}

.site-footer .content-wrapper {
  --section-pad: 3.3vmax;
}

.site-footer .rich-text {
  font-size: var(--text-small);
}

.site-footer a:hover {
  opacity: 0.7;
}

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