/*
  Samantha & Austin — proof of concept
  Editorial scrapbook system. No frameworks, no external font requests.
*/

:root {
  --paper: #f4efe4;
  --paper-deep: #e7dfcf;
  --ink: #171915;
  --muted: #6d6b63;
  --line: rgba(23, 25, 21, 0.24);
  --coral: #ef684d;
  --blue: #5368f6;
  --acid: #d9f85f;
  --soft-pink: #f1c9c2;
  --accent: var(--coral);
  --accent-contrast: #171915;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1440px;
  --page-pad: clamp(1.25rem, 4vw, 4.75rem);
  --radius-sm: 0.35rem;
  --radius-lg: 1.2rem;
  --shadow: 0 1.75rem 4rem rgba(22, 24, 18, 0.13);
}

body[data-theme="blue"] {
  --accent: var(--blue);
  --accent-contrast: #fff;
}

body[data-theme="acid"] {
  --accent: var(--acid);
  --accent-contrast: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 255, 255, 0.7), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  transition: background-color 350ms ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.035;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--accent-contrast);
  background: var(--accent);
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-200%);
}

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

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 5.75rem;
  padding: 0.9rem var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 228, 0.88);
  backdrop-filter: blur(16px);
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 0.3rem 1rem rgba(23, 25, 21, 0.05);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
}

.wordmark i {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-inline: 0.2rem 0.25rem;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-contrast);
  background: var(--accent);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}

.wordmark:hover i {
  transform: rotate(14deg) scale(1.08);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mood-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 100vw;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mood-button:hover {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.mood-button__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1.5rem;
  height: 1px;
  margin: 0.4rem auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  align-items: center;
  min-height: calc(100svh - 5.75rem);
  padding-top: clamp(3rem, 7vh, 7rem);
  padding-bottom: clamp(5rem, 9vh, 8rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-right: clamp(1rem, 4vw, 5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-grid;
  min-width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.6rem;
}

.hero h1,
.about-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.7rem, 9vw, 10.4rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.075em;
}

.hero h1 em {
  display: inline-block;
  margin: 0 0.06em 0 0.12em;
  color: var(--accent);
  font-weight: 400;
}

.hero__intro {
  max-width: 37rem;
  margin: clamp(2.2rem, 4vw, 4rem) 0 0 clamp(0rem, 7vw, 7.5rem);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 2rem 0 0 clamp(0rem, 7vw, 7.5rem);
}

.kenny-invite {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.5rem 0 0 clamp(0rem, 7vw, 7.5rem);
  color: var(--muted);
}

.kenny-invite > span {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.kenny-invite button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px dashed currentColor;
  background: transparent;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.kenny-invite button:hover {
  color: var(--ink);
  transform: translateX(0.2rem);
}

.kenny-invite button i {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.3rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--ink);
  border-radius: 100vw;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button--solid {
  color: var(--accent-contrast);
  background: var(--accent);
}

.button--outline {
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(0.2rem, -0.2rem);
}

.hero-collage {
  position: relative;
  min-height: clamp(32rem, 61vw, 46rem);
}

.photo-frame,
.gallery-card__image,
.profile-card__photo {
  position: relative;
  overflow: hidden;
  background-color: var(--paper-deep);
  background-position: center;
  background-size: cover;
}

.photo-frame::after,
.gallery-card__image::after,
.profile-card__photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 32%, rgba(10, 20, 35, 0.08));
  mix-blend-mode: soft-light;
}

.photo-frame.has-photo,
.gallery-card__image.has-photo,
.profile-card__photo.has-photo {
  background-color: #8d9389;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  padding: 1.25rem;
  color: rgba(23, 25, 21, 0.72);
  background:
    linear-gradient(135deg, transparent 49.4%, rgba(23, 25, 21, 0.17) 49.5%, rgba(23, 25, 21, 0.17) 50.5%, transparent 50.6%),
    linear-gradient(45deg, transparent 49.4%, rgba(23, 25, 21, 0.17) 49.5%, rgba(23, 25, 21, 0.17) 50.5%, transparent 50.6%),
    var(--paper-deep);
  transition: opacity 300ms ease;
}

.photo-placeholder span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 800;
}

.photo-placeholder strong {
  max-width: 15rem;
  align-self: end;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.1;
}

.photo-placeholder small {
  align-self: end;
  justify-self: end;
  padding: 0.25rem 0.45rem;
  background: var(--paper);
  font-family: ui-monospace, monospace;
  font-size: 0.58rem;
}

.has-photo > .photo-placeholder {
  opacity: 0;
  visibility: hidden;
}

.photo-frame--hero {
  position: absolute;
  top: 2%;
  right: 2%;
  width: min(92%, 34rem);
  height: 82%;
  border: 0.8rem solid #fffdf7;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
  background-position: center 48%;
}

.tape {
  position: absolute;
  z-index: 3;
  width: 7rem;
  height: 2rem;
  background: rgba(222, 210, 174, 0.78);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transform: rotate(-8deg);
}

.tape--top {
  top: 0;
  left: 40%;
}

.hero-note {
  position: absolute;
  right: -1.2rem;
  bottom: 2%;
  z-index: 4;
  width: min(18rem, 53%);
  padding: 1.4rem;
  background: var(--accent);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
  transform: rotate(-3deg);
}

.hero-note__star {
  position: absolute;
  top: -1.4rem;
  right: 1.2rem;
  font-size: 2.4rem;
}

.hero-note p {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.2;
}

.vertical-note {
  position: absolute;
  top: 18%;
  left: -2.2rem;
  margin: 0;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scribble--loop {
  position: absolute;
  bottom: 8%;
  left: -3rem;
  width: 10rem;
  height: 7rem;
  border: 3px solid var(--ink);
  border-color: var(--ink) transparent var(--ink) var(--ink);
  border-radius: 48% 52% 52% 48%;
  transform: rotate(22deg);
}

.scribble--loop::after {
  position: absolute;
  right: -1.5rem;
  bottom: -0.6rem;
  width: 2rem;
  height: 2rem;
  content: "";
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(-20deg) skew(-18deg);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-style: normal;
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  color: var(--accent-contrast);
  background: var(--accent);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.6rem;
  padding: 0.85rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  animation: ticker 26s linear infinite;
}

.ticker__track i {
  font-style: normal;
  font-size: 0.85rem;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.hello {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(7rem, 12vw, 12rem);
}

.section-number {
  position: absolute;
  top: 5rem;
  right: var(--page-pad);
  color: rgba(23, 25, 21, 0.08);
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 1;
}

.hello h2,
.section-heading h2,
.story-teaser h2,
.about-copy h2,
.about-cta h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 6.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hello__body {
  align-self: end;
}

.hello__body > p,
.about-copy__columns p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.55;
}

.drop-cap::first-letter {
  float: left;
  margin: 0.12em 0.12em 0 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 4.2em;
  line-height: 0.7;
}

.mini-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.mini-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-list span::before {
  content: "✦";
  color: var(--accent);
}

.moments {
  padding-block: clamp(5rem, 10vw, 10rem);
  color: #f9f5eb;
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.section-heading > p {
  max-width: 26rem;
  margin: 0 0 0.5rem;
  color: currentColor;
  font-family: var(--serif);
  font-size: 1.1rem;
  opacity: 0.7;
}

.section-heading--light {
  color: #f9f5eb;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2.6rem);
  align-items: start;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.gallery-card {
  margin: 0;
}

.gallery-card--tall {
  grid-column: 1 / span 5;
}

.gallery-card--wide {
  grid-column: 7 / -1;
  margin-top: 7rem;
}

.gallery-card--square {
  grid-column: 2 / span 4;
  margin-top: 2rem;
}

.gallery-card--portrait {
  grid-column: 7 / span 4;
  margin-top: 9rem;
}

.gallery-card--landscape {
  grid-column: 4 / span 7;
  margin-top: 4rem;
}

.gallery-card__image {
  aspect-ratio: 4 / 5;
  border: 0.65rem solid #f7f3e9;
  background-position: center;
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.18);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card--wide .gallery-card__image,
.gallery-card--landscape .gallery-card__image {
  aspect-ratio: 16 / 10;
}

.gallery-card--wide .gallery-card__image {
  background-position: center 53%;
}

.gallery-card--square .gallery-card__image {
  aspect-ratio: 1;
  background-position: center 67%;
}

.gallery-card--portrait .gallery-card__image {
  aspect-ratio: 3 / 4;
}

.gallery-card:hover .gallery-card__image {
  transform: rotate(-1deg) scale(1.012);
}

.gallery-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.2rem 0;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.gallery-card figcaption i {
  color: rgba(249, 245, 235, 0.5);
  font-size: 0.85rem;
}

.story-teaser {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 11rem);
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(7rem, 12vw, 12rem);
}

.story-teaser__art {
  position: relative;
  min-height: 42rem;
}

.photo-frame--story {
  position: absolute;
  inset: 0 1.5rem 2rem 0;
  border: 0.75rem solid #fffdf7;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  background-position: center;
}

.round-sticker {
  position: absolute;
  right: -2rem;
  bottom: 0;
  display: grid;
  width: 9rem;
  height: 9rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: center;
  transform: rotate(9deg);
}

.story-teaser__copy > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 2rem 0 2.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.little-things {
  padding-block: clamp(6rem, 10vw, 10rem);
  background: #272925;
}

.things-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding-inline: 0;
}

.thing-card {
  position: relative;
  min-height: 32rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--ink);
  transition: transform 250ms ease;
}

.thing-card:hover {
  z-index: 2;
  transform: translateY(-0.75rem) rotate(-0.7deg);
}

.thing-card--blue { background: var(--blue); color: #fff; }
.thing-card--cream { background: var(--paper); }
.thing-card--coral { background: var(--coral); }

.thing-card__number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.thing-card__label {
  margin: 5rem 0 1rem;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.thing-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.thing-card__aside {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  left: clamp(1.5rem, 3vw, 3rem);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 0.95rem;
}

.closing {
  position: relative;
  min-height: 80vh;
  padding-top: clamp(8rem, 14vw, 14rem);
  padding-bottom: clamp(8rem, 14vw, 14rem);
  text-align: center;
}

.closing__mark {
  margin-bottom: 3rem;
  color: rgba(23, 25, 21, 0.08);
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  line-height: 0.6;
  letter-spacing: -0.12em;
}

.closing__mark span {
  color: var(--accent);
}

.closing > p {
  margin: 0 0 1.3rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing h2 {
  max-width: 62rem;
  margin-inline: auto;
}

.text-link--large {
  margin-top: 2.5rem;
  font-size: 1.3rem;
}

.site-footer {
  color: #f8f3e8;
  background: var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.wordmark--footer {
  justify-self: start;
  font-size: 2rem;
}

.site-footer__top p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  text-align: center;
}

.site-footer__top > a:last-child {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  color: rgba(248, 243, 232, 0.55);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__bottom button {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  text-transform: inherit;
  cursor: pointer;
}

/* Kenny's mainframe easter egg */

[hidden] {
  display: none !important;
}

body.is-hacked {
  overflow: hidden;
}

body.is-glitching > .site-header,
body.is-glitching > main,
body.is-glitching > .site-footer {
  animation: site-breach 110ms steps(2, end) 7;
}

body.is-glitching::after {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: grid;
  place-items: center;
  color: #101610;
  background: #b7ff00;
  content: "OVERRIDE_ACCEPTED";
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  pointer-events: none;
  animation: breach-flash 110ms steps(2, end) 7;
}

@keyframes site-breach {
  0% { filter: none; transform: translate(0); }
  20% { filter: invert(1) hue-rotate(80deg) contrast(2); transform: translate(-0.65rem, 0.2rem) skewX(2deg); }
  40% { filter: saturate(4) hue-rotate(190deg); transform: translate(0.7rem, -0.25rem) skewX(-3deg); }
  60% { filter: invert(1) grayscale(1) contrast(3); transform: translate(-0.25rem, 0.1rem); }
  80% { filter: hue-rotate(300deg) contrast(1.8); transform: translate(0.3rem, -0.15rem); }
  100% { filter: none; transform: translate(0); }
}

@keyframes breach-flash {
  0%, 100% { opacity: 0; }
  20%, 60% { opacity: 0.9; clip-path: inset(8% 0 68% 0); }
  40% { opacity: 0.35; clip-path: inset(72% 0 5% 0); }
  80% { opacity: 0.75; clip-path: inset(40% 0 35% 0); }
}

.hack-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: clamp(0.75rem, 3vw, 2.5rem);
  overflow: auto;
  place-items: center;
  color: #a9ff8a;
  background:
    radial-gradient(circle at 50% 20%, rgba(20, 91, 44, 0.24), transparent 36rem),
    #010502;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms steps(3, end);
}

.hack-overlay::before,
.hack-overlay::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hack-overlay::before {
  z-index: 4;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(0, 0, 0, 0.42) 4px
  );
  mix-blend-mode: multiply;
}

.hack-overlay::after {
  z-index: 5;
  box-shadow: inset 0 0 10rem rgba(0, 0, 0, 0.94);
  animation: terminal-flicker 4s linear infinite;
}

.hack-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hack-overlay__grid {
  position: fixed;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(84, 255, 116, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 255, 116, 0.16) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

.hack-terminal {
  position: relative;
  z-index: 2;
  width: min(68rem, 100%);
  max-height: calc(100svh - clamp(1.5rem, 6vw, 5rem));
  overflow: auto;
  border: 1px solid #61ff84;
  background: rgba(1, 9, 4, 0.94);
  box-shadow:
    0 0 0 1px rgba(97, 255, 132, 0.18),
    0 0 4rem rgba(14, 255, 84, 0.16),
    inset 0 0 4rem rgba(13, 77, 30, 0.12);
  opacity: 0;
  transform: scale(0.965) translateY(1rem);
  transition: opacity 220ms steps(3, end), transform 220ms steps(3, end);
}

.hack-overlay.is-active .hack-terminal {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hack-terminal__bar {
  position: sticky;
  top: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 3.1rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #61ff84;
  color: #d5ffce;
  background: #061309;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hack-terminal__lights {
  display: flex;
  gap: 0.45rem;
}

.hack-terminal__lights i {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0.7rem currentColor;
}

.hack-terminal__lights i:nth-child(2) { background: #ffd84f; }
.hack-terminal__lights i:nth-child(3) { background: #61ff84; }

.hack-terminal__signal {
  justify-self: end;
  color: #061309;
  background: #61ff84;
  padding: 0.18rem 0.4rem;
}

.hack-terminal__body {
  padding: clamp(1.3rem, 4vw, 3.3rem);
}

.hack-boot {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(97, 255, 132, 0.3);
  font-size: clamp(0.65rem, 1.4vw, 0.85rem);
}

.hack-boot p {
  margin: 0;
  opacity: 0;
}

.hack-boot p > span {
  color: #fff;
}

.hack-boot strong {
  color: #61ff84;
}

.hack-overlay.is-active .hack-boot p {
  animation: terminal-line 160ms steps(2, end) forwards;
}

.hack-overlay.is-active .hack-boot p:nth-child(1) { animation-delay: 120ms; }
.hack-overlay.is-active .hack-boot p:nth-child(2) { animation-delay: 310ms; }
.hack-overlay.is-active .hack-boot p:nth-child(3) { animation-delay: 500ms; }

.hack-reveal {
  opacity: 0;
  transform: translateY(0.5rem);
}

.hack-overlay.is-booted .hack-reveal {
  animation: terminal-reveal 240ms steps(3, end) forwards;
}

.hack-kicker {
  margin: 1.8rem 0 0.8rem;
  color: #61ff84;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hack-reveal h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: #d4ff42;
  font-family: inherit;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-shadow: 0.12rem 0 #ff2c73, -0.12rem 0 #17e9ff, 0 0 1.2rem rgba(183, 255, 0, 0.35);
}

.hack-reveal h2::before,
.hack-reveal h2::after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  content: attr(data-text);
  pointer-events: none;
}

.hack-reveal h2::before {
  color: #ff2c73;
  transform: translateX(0.09em);
  animation: title-glitch 2.3s steps(2, end) infinite;
}

.hack-reveal h2::after {
  color: #17e9ff;
  transform: translateX(-0.07em);
  animation: title-glitch 1.8s steps(2, end) infinite reverse;
}

.hack-message {
  max-width: 56rem;
  margin: 1.8rem 0 2rem;
  color: #efffec;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hack-message::after {
  display: inline-block;
  width: 0.62em;
  height: 1em;
  margin-left: 0.25em;
  vertical-align: -0.14em;
  background: #61ff84;
  content: "";
  animation: terminal-cursor 850ms steps(1, end) infinite;
}

.hack-summary {
  border: 1px solid rgba(97, 255, 132, 0.38);
  background: rgba(45, 255, 87, 0.035);
}

.hack-summary > p {
  margin: 0;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(97, 255, 132, 0.38);
  color: #061309;
  background: #61ff84;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hack-summary ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hack-summary li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.25fr) 1fr;
  gap: 1rem;
  padding: 0.85rem 1rem 0.85rem 2rem;
  border-bottom: 1px dashed rgba(97, 255, 132, 0.22);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hack-summary li:last-child {
  border-bottom: 0;
}

.hack-summary li::before {
  position: absolute;
  top: 0.85rem;
  left: 0.8rem;
  color: #d4ff42;
  content: ">";
  font-weight: 900;
}

.hack-summary code {
  color: #d4ff42;
  font-family: inherit;
  font-weight: 800;
}

.hack-summary li span {
  color: #c3d9be;
}

.hack-summary li strong {
  color: #fff;
}

.hack-terminal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hack-return {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border: 1px solid #61ff84;
  color: #061309;
  background: #61ff84;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0.35rem 0.35rem 0 #16391e;
  transition: color 120ms steps(2, end), background 120ms steps(2, end), transform 120ms steps(2, end);
}

.hack-return:hover,
.hack-return:focus-visible {
  color: #61ff84;
  background: #061309;
  outline: 1px dashed #d4ff42;
  outline-offset: 0.3rem;
  transform: translate(-0.15rem, -0.15rem);
}

.hack-terminal__footer > p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: #61ff84;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hack-terminal__footer > p i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0.7rem currentColor;
  animation: signal-pulse 1s steps(2, end) infinite;
}

@keyframes terminal-line {
  from { opacity: 0; transform: translateX(-0.4rem); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes terminal-reveal {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes title-glitch {
  0%, 84%, 100% { clip-path: inset(100% 0 0 0); }
  86% { clip-path: inset(12% 0 58% 0); transform: translate(0.08em, -0.03em); }
  90% { clip-path: inset(70% 0 7% 0); transform: translate(-0.1em, 0.03em); }
  94% { clip-path: inset(38% 0 42% 0); transform: translate(0.05em, 0); }
}

@keyframes terminal-cursor {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes terminal-flicker {
  0%, 96%, 100% { opacity: 1; }
  97% { opacity: 0.88; }
  98% { opacity: 0.98; }
}

@keyframes signal-pulse {
  50% { opacity: 0.25; }
}

/* About page */

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: calc(100svh - 5.75rem);
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.about-hero h1 {
  font-size: clamp(4.2rem, 8vw, 9rem);
  line-height: 0.86;
}

.about-hero h1 em {
  color: var(--accent);
  font-weight: 400;
}

.about-hero__copy > p:last-child {
  max-width: 34rem;
  margin: 2.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.about-hero__art {
  position: relative;
  min-height: clamp(33rem, 55vw, 46rem);
}

.photo-frame--about-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 78%;
  border: 0.7rem solid #fffdf7;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  background-position: center 52%;
}

.photo-frame--about-small {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 48%;
  height: 48%;
  border: 0.6rem solid #fffdf7;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
  background-position: center 64%;
}

.about-hero__caption {
  position: absolute;
  right: 0;
  bottom: 5%;
  padding: 0.8rem 1rem;
  background: var(--acid);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  transform: rotate(3deg);
}

.manifesto {
  padding-block: clamp(7rem, 12vw, 13rem);
  color: #fff;
  background: var(--blue);
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.manifesto__statement {
  max-width: 65rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.manifesto__statement em {
  color: var(--acid);
  font-weight: 400;
}

.about-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 10rem);
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(7rem, 12vw, 12rem);
}

.about-copy__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-self: end;
}

.about-copy__columns p:last-child {
  padding-top: 1.4rem;
  border-top: 1px solid var(--ink);
}

.profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  padding-bottom: clamp(7rem, 12vw, 12rem);
}

.profile-card {
  display: grid;
  grid-template-rows: minmax(25rem, 55vw) auto;
  border: 1px solid var(--ink);
}

.profile-card__photo {
  min-height: 25rem;
  border-bottom: 1px solid var(--ink);
}

.profile-card--samantha .profile-card__photo {
  background-color: var(--soft-pink);
  background-position: center 28%;
}

.profile-card--austin .profile-card__photo {
  background-color: var(--paper-deep);
  background-position: center 26%;
}

.profile-card__copy {
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.profile-card__copy h2 {
  margin: 0 0 1.3rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.profile-card__copy > p:not(.eyebrow) {
  max-width: 32rem;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.profile-card__prompt {
  display: block;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-section {
  padding-block: clamp(6rem, 10vw, 11rem);
  color: #f9f5eb;
  background: var(--ink);
}

.timeline {
  margin-top: 5rem;
  padding-left: var(--page-pad);
  list-style: none;
  counter-reset: timeline;
}

.timeline li {
  display: grid;
  grid-template-columns: 4rem 12rem minmax(0, 1fr);
  align-items: start;
  gap: clamp(1rem, 4vw, 4rem);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.timeline__marker {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.65rem;
}

.timeline__date {
  margin: 0.8rem 0 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline h3 {
  max-width: 54rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.about-cta {
  padding-top: clamp(8rem, 14vw, 14rem);
  padding-bottom: clamp(8rem, 14vw, 14rem);
  text-align: center;
}

.about-cta .eyebrow {
  justify-content: center;
}

.about-cta .button {
  margin-top: 2.5rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal][data-delay="1"] { transition-delay: 100ms; }
.js [data-reveal][data-delay="2"] { transition-delay: 200ms; }

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(0.23rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-0.23rem) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 1.2rem var(--page-pad) 2rem;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    transform: scaleY(0);
    transform-origin: top;
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    visibility: visible;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .mood-button {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero h1 {
    font-size: clamp(4rem, 9.5vw, 7rem);
  }

  .hero-collage {
    min-height: 36rem;
  }

  .story-teaser__art {
    min-height: 34rem;
  }

  .thing-card {
    min-height: 28rem;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 1.25rem;
  }

  .site-header {
    min-height: 4.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .hero__copy {
    padding-right: 0;
  }

  .hero h1,
  .about-hero h1 {
    font-size: clamp(4.1rem, 21vw, 6.5rem);
  }

  .hero__intro,
  .hero__actions {
    margin-left: 0;
  }

  .kenny-invite {
    margin-left: 0;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero-collage {
    min-height: 37rem;
    margin-top: 4rem;
  }

  .photo-frame--hero {
    right: 4%;
    width: 88%;
  }

  .hero-note {
    right: 0.2rem;
  }

  .vertical-note,
  .scribble--loop {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .hello,
  .section-heading,
  .story-teaser,
  .about-hero,
  .about-copy,
  .manifesto__inner {
    grid-template-columns: 1fr;
  }

  .hello {
    gap: 3rem;
  }

  .section-number {
    top: 4rem;
  }

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

  .gallery-card--tall,
  .gallery-card--wide,
  .gallery-card--square,
  .gallery-card--portrait,
  .gallery-card--landscape {
    grid-column: auto;
    margin-top: 0;
  }

  .gallery-card--wide,
  .gallery-card--landscape {
    grid-column: 1 / -1;
  }

  .gallery-card figcaption {
    display: grid;
  }

  .story-teaser {
    gap: 4rem;
  }

  .story-teaser__art {
    min-height: 34rem;
  }

  .round-sticker {
    right: 0;
    width: 7.5rem;
    height: 7.5rem;
  }

  .things-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .thing-card {
    min-height: 25rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__top p {
    text-align: left;
  }

  .site-footer__top > a:last-child {
    justify-self: start;
  }

  .site-footer__bottom {
    display: grid;
  }

  .hack-overlay {
    padding: 0;
    place-items: stretch;
  }

  .hack-terminal {
    width: 100%;
    max-height: 100svh;
    min-height: 100svh;
    border-inline: 0;
  }

  .hack-terminal__bar {
    grid-template-columns: auto 1fr;
    font-size: 0.55rem;
  }

  .hack-terminal__bar > span:nth-child(2) {
    justify-self: end;
  }

  .hack-terminal__signal {
    display: none;
  }

  .hack-terminal__body {
    padding: 1.25rem;
  }

  .hack-reveal h2 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hack-summary li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .hack-terminal__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero {
    gap: 4rem;
    min-height: auto;
  }

  .about-hero__art {
    min-height: 36rem;
  }

  .manifesto__inner {
    gap: 2rem;
  }

  .about-copy {
    gap: 3rem;
  }

  .about-copy__columns,
  .profiles {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-rows: 30rem auto;
  }

  .timeline li {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .timeline__date {
    align-self: center;
  }

  .timeline h3 {
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .about-hero h1 {
    font-size: clamp(3.7rem, 20vw, 5.4rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gallery-card--wide,
  .gallery-card--landscape {
    grid-column: auto;
  }

  .gallery-card--wide .gallery-card__image,
  .gallery-card--landscape .gallery-card__image {
    aspect-ratio: 16 / 10;
  }

  .about-hero__art {
    min-height: 30rem;
  }

  .profile-card {
    grid-template-rows: 24rem auto;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
