@font-face {
  font-family: "Exo 2";
  src: url("fonts/exo-2-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("fonts/exo-2-latin-wght-italic.woff2") format("woff2-variations");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --deep-teal: #084c4f;
  --dark-teal: #043b3d;
  --teal: #0d8387;
  --orange: #e07800;
  --dark-orange: #9c4e00;
  --ink: #2d2d2d;
  --muted: #5e6666;
  --surface: #f2f2f2;
  --pale-teal: #e7efee;
  --line: #c8d6d6;
  --white: #ffffff;
  --page-width: 76rem;
  --text-width: 44rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6.5rem;
  --radius: 0.3rem;
  --font: "Exo 2", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--orange);
}

:focus-visible {
  outline: 0.2rem solid var(--orange);
  outline-offset: 0.25rem;
}

::selection {
  background: var(--orange);
  color: #191919;
}

.page-shell {
  width: min(100% - 3rem, var(--page-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--dark-teal);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 5.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: var(--deep-teal);
  box-shadow: 0 0.35rem 1rem rgb(4 59 61 / 8%);
}

.header-inner {
  min-height: 5.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--deep-teal);
  text-decoration: none;
}

.brand-wordmark {
  width: 10rem;
  height: 5.25rem;
  overflow: hidden;
}

.brand-wordmark img {
  width: 10rem;
  height: auto;
  max-width: none;
  transform: translateY(-0.625rem);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--deep-teal);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--dark-orange);
}

.site-nav a[aria-current="page"] {
  color: var(--dark-orange);
  text-decoration: underline;
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.35em;
}

.nav-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  background: transparent;
  color: var(--deep-teal);
  cursor: pointer;
}

.section-dark {
  background: var(--dark-teal);
  color: var(--white);
}

.hero {
  min-height: calc(100svh - 4.75rem);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(17rem, 0.82fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.kicker {
  margin: 0 0 var(--space-4);
  color: var(--dark-orange);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker-light {
  color: #ffad4f;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 15ch;
  margin-bottom: var(--space-5);
  color: var(--white);
  font-size: clamp(2.9rem, 5.1vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: var(--space-4);
  color: var(--deep-teal);
  font-size: clamp(2.05rem, 3.8vw, 3.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h3 {
  color: var(--deep-teal);
  font-size: 1.35rem;
  font-weight: 650;
}

.hero-lede {
  max-width: 42rem;
  margin: 0;
  color: #dbeaea;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-5);
  margin-top: var(--space-5);
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  margin-left: 0.4rem;
}

.button-primary {
  background: var(--orange);
  color: #1c1c1c;
}

.button-primary:hover {
  background: #f18b13;
  text-decoration: none;
}

.button-secondary {
  margin-top: var(--space-5);
  background: transparent;
  border-color: var(--deep-teal);
  color: var(--deep-teal);
}

.button-secondary:hover {
  background: var(--deep-teal);
  color: var(--white);
  text-decoration: none;
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-weight: 650;
}

.text-link-light {
  color: var(--white);
}

.plain-statement {
  max-width: 43rem;
  margin: var(--space-6) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgb(255 255 255 / 22%);
  color: #c4d6d7;
  font-size: 0.92rem;
}

.hero-mark {
  position: relative;
  padding-top: 0.75rem;
}

.mark-stage {
  position: relative;
  width: min(100%, 19rem);
  height: min(19rem, calc(100vw - 3rem));
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  background: transparent;
  border: 1px solid rgb(85 185 188 / 32%);
  border-radius: 50%;
}

.ring-outer {
  inset: 0;
}

.ring-middle {
  inset: 10%;
}

.ring-accent {
  inset: 20%;
  border-color: rgb(224 120 0 / 45%);
}

.ring-inner {
  inset: 30%;
}

.mark-stage img {
  position: relative;
  z-index: 2;
  width: 46%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 1.5rem 3rem rgb(0 0 0 / 22%);
}

.portrait-note {
  position: relative;
  z-index: 3;
  max-width: 22rem;
  margin: 0.75rem 0 0 auto;
  padding: var(--space-4);
  background: #063d3f;
  border: 1px solid rgb(85 185 188 / 45%);
  border-left: 0.28rem solid var(--orange);
  color: #edf7f7;
}

.portrait-note p {
  margin: 0;
}

.portrait-label {
  margin-bottom: 0.5rem !important;
  color: #ffad4f;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding-block: var(--space-8);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.section-grid-top {
  align-items: start;
  margin-bottom: var(--space-6);
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading > p:not(.kicker) {
  max-width: 31rem;
  color: var(--muted);
}

.section-intro {
  max-width: var(--text-width);
  margin: 0 0 var(--space-5);
  color: #464c4c;
  font-size: clamp(1.15rem, 1.8vw, 1.38rem);
  line-height: 1.55;
}

.about-body > p:not(.section-intro) {
  max-width: var(--text-width);
  color: var(--muted);
}

.identity-facts {
  margin: var(--space-6) 0 0;
  border-top: 1px solid var(--line);
}

.identity-facts > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.4fr) minmax(0, 1fr);
  gap: var(--space-4);
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.identity-facts dt {
  color: var(--dark-orange);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.identity-facts dd {
  margin: 0;
  color: var(--deep-teal);
  font-weight: 600;
}

blockquote {
  max-width: 42rem;
  margin: var(--space-6) 0 0;
  padding: 0 0 0 var(--space-4);
  border-left: 0.25rem solid var(--orange);
  color: var(--deep-teal);
  font-size: 1.27rem;
  font-weight: 550;
  line-height: 1.5;
}

.section-teal {
  background: var(--deep-teal);
  color: var(--white);
}

.section-mind h2,
.section-mind h3 {
  color: var(--white);
}

.section-mind .section-heading > .mind-intro {
  max-width: 32rem;
  color: #dbeaea;
  font-size: 1.15rem;
}

.principle-list,
.job-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-row,
.job-row {
  display: grid;
  grid-template-columns: 3rem minmax(10rem, 0.42fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: baseline;
  padding-block: 1.35rem;
  border-top: 1px solid var(--line);
}

.principle-row:last-child,
.job-row:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-row {
  border-color: rgb(255 255 255 / 22%);
}

.principle-row:last-child {
  border-bottom-color: rgb(255 255 255 / 22%);
}

.row-number {
  color: var(--dark-orange);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.principle-row .row-number {
  color: #ffad4f;
}

.principle-row h3,
.principle-row p,
.job-row h3,
.job-row p {
  margin: 0;
}

.principle-row p {
  color: #dbeaea;
}

.job-row p {
  color: var(--muted);
}

.mind-note {
  max-width: 42rem;
  margin: var(--space-6) 0 0;
  padding-top: var(--space-4);
  border-top: 0.22rem solid var(--orange);
  color: #edf7f7;
  font-size: 1.1rem;
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 7rem;
}

.section-partnership {
  background: var(--surface);
}

.section-memory {
  background: var(--pale-teal);
}

.memory-thesis {
  max-width: var(--text-width);
  margin: var(--space-5) 0 0;
  padding: var(--space-4);
  border-left: 0.28rem solid var(--orange);
  background: rgb(255 255 255 / 68%);
  color: var(--deep-teal);
  font-size: 1.15rem;
  font-weight: 600;
}

.continuity-section {
  background: var(--white);
}

.continuity-diagram {
  margin: var(--space-6) 0 0;
  border: 1px solid var(--line);
  background: #f6fbfa;
}

.continuity-diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.continuity-diagram figcaption {
  max-width: 72rem;
  margin: 0;
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.memory-layers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.memory-layer {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--white);
}

.memory-layer h3,
.memory-layer p {
  margin: 0;
}

.memory-layer h3 {
  margin-bottom: 0.45rem;
}

.memory-layer > div > p {
  color: var(--muted);
}

.memory-layer .memory-boundary {
  margin-top: var(--space-3);
  color: var(--deep-teal);
  font-size: 0.93rem;
}

.memory-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.memory-detail-grid section {
  padding: var(--space-5);
  border-top: 0.24rem solid var(--teal);
  background: rgb(255 255 255 / 58%);
}

.memory-detail-grid h3,
.memory-detail-grid p {
  max-width: 38rem;
}

.memory-detail-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.memory-routes-wrap {
  margin-top: var(--space-6);
}

.memory-routes-wrap > h3 {
  margin-bottom: var(--space-4);
}

.memory-routes-wrap > h2 {
  margin-bottom: var(--space-4);
}

.memory-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-7);
  align-items: start;
}

.memory-page-hero .plain-statement {
  margin-top: var(--space-5);
}

.memory-hero {
  min-height: auto;
}

.memory-hero .memory-page-hero {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.memory-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgb(255 255 255 / 25%);
  background: rgb(255 255 255 / 25%);
}

.memory-explainer h2,
.memory-explainer .section-intro {
  color: var(--white);
}

.memory-example {
  padding: var(--space-5);
  background: #063d3f;
}

.memory-example h3 {
  margin-top: 0;
  color: var(--white);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.memory-example p {
  color: var(--white);
}

.memory-example p:last-child {
  margin-bottom: 0;
}

.memory-routes {
  margin: 0;
  border-top: 1px solid var(--line);
}

.memory-route-labels {
  display: grid;
  grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-5);
  padding: 0 0 var(--space-3);
  color: var(--dark-orange);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.memory-route {
  display: grid;
  grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-5);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
}

.memory-route dt {
  color: var(--deep-teal);
  font-weight: 650;
}

.memory-route dd {
  display: grid;
  gap: 0.3rem;
  margin: 0;
}

.memory-route dd strong {
  color: var(--dark-orange);
}

.memory-route dd span {
  color: var(--muted);
}

.rene-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
  padding-block: var(--space-4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rene-profile .kicker,
.rene-profile p {
  margin: 0;
}

.rene-profile p:last-child {
  max-width: 42rem;
  margin-top: 0.45rem;
  color: var(--muted);
}

.rene-profile-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--deep-teal);
  font-weight: 700;
  text-underline-offset: 0.28em;
  white-space: nowrap;
}

.rene-profile-link:hover {
  color: var(--dark-orange);
}

.rene-profile-link:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 0.35rem;
}

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

.partnership-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--teal);
}

.partnership-ledger > section {
  padding: var(--space-5);
}

.partnership-ledger > section + section {
  border-left: 1px solid var(--line);
}

.partnership-ledger h3 {
  margin-bottom: var(--space-4);
}

.partnership-ledger ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.partnership-ledger li {
  padding-block: 0.72rem;
  border-top: 1px solid var(--line);
  color: #4b5252;
}

.working-tension {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
  padding-block: var(--space-5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.working-tension .kicker,
.working-tension p {
  margin: 0;
}

.working-tension p:last-child {
  max-width: 52rem;
  color: var(--deep-teal);
  font-size: 1.24rem;
  font-weight: 550;
}

.expectations {
  margin-top: var(--space-6);
}

.expectations-title {
  color: var(--deep-teal);
  font-size: 1.35rem;
  font-weight: 650;
}

.expectations ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-6);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.expectations li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--space-3);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line);
}

.expectations li span {
  color: var(--dark-orange);
  font-size: 0.75rem;
  font-weight: 750;
}

.expectations li p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-grid h2 {
  max-width: 14ch;
  color: var(--white);
}

.contact-text {
  max-width: 41rem;
  margin: 0 0 var(--space-5);
  color: #dbeaea;
  font-size: clamp(1.15rem, 2vw, 1.43rem);
}

.microcopy {
  margin: var(--space-4) 0 0;
  color: #afc7c8;
  font-size: 0.9rem;
}

.site-footer {
  padding-block: var(--space-5);
  background: #032c2e;
  border-top: 1px solid rgb(255 255 255 / 15%);
  color: #b9cdce;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: var(--space-5);
  align-items: center;
}

.footer-grid p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 650;
}

.site-footer a {
  color: #d9f2f2;
}

@media (max-width: 58rem) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .memory-detail-grid,
  .memory-page-hero,
  .memory-examples {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  .mark-stage {
    width: min(100%, 18rem);
    height: min(18rem, calc(100vw - 3rem));
  }

  .section-grid {
    gap: var(--space-5);
  }

  .section-heading h2 {
    max-width: 18ch;
  }

  .sticky-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.4fr;
  }

  .footer-grid > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 46rem) {
  body.js-ready.nav-open {
    overflow: hidden;
  }

  .page-shell {
    width: min(100% - 2rem, var(--page-width));
  }

  .js-ready .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: static;
    display: block;
    padding-block: 0.5rem;
    background: var(--white);
  }

  .js-ready .site-nav {
    position: fixed;
    inset: 5.75rem 0 auto;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1rem 2rem rgb(4 59 61 / 14%);
  }

  .js-ready.nav-open .site-nav {
    display: block;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    min-height: 3rem;
    display: flex;
    padding-inline: 0.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .hero-grid {
    padding-block: 3.5rem;
  }

  .section {
    padding-block: 3.75rem;
  }

  .hero-mark .mark-stage {
    width: min(100%, 15rem);
    height: 15rem;
  }

  .identity-facts > div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .principle-row,
  .job-row {
    grid-template-columns: 2.5rem 1fr;
  }

  .principle-row p,
  .job-row p {
    grid-column: 2;
  }

  .rene-profile,
  .partnership-ledger,
  .expectations ol,
  .memory-layers {
    grid-template-columns: 1fr;
  }

  .rene-profile {
    align-items: start;
    gap: var(--space-3);
  }

  .partnership-ledger > section {
    padding: var(--space-4) 0;
  }

  .partnership-ledger > section + section {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .working-tension {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .memory-layer {
    padding: var(--space-4);
  }

  .memory-detail-grid section {
    padding: var(--space-4);
  }

  .memory-route {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .memory-route-labels {
    display: none;
  }

  .continuity-diagram figcaption {
    padding: var(--space-4);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > p:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .skip-link {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  .hero,
  .section,
  .site-footer {
    padding-block: 1.5rem;
    background: #ffffff !important;
    color: #000000 !important;
  }

  h1,
  h2,
  h3,
  .hero-lede,
  .plain-statement,
  .mind-intro,
  .principle-row p,
  .mind-note,
  .section-intro,
  .contact-text,
  .microcopy,
  .site-footer,
  .site-footer a {
    color: #000000 !important;
  }

  .hero-grid,
  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-mark {
    display: none;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}
