/* ======================================================================
   Haircut Beauty Salon — Mountain View
   Concept: the sandwich board on the sidewalk.
   Honest red prices on cream paper, with lavender as the only luxury.
   ====================================================================== */

:root {
  /* The sign red. The price red. The neon ribbon red. */
  --red:         #c52a27;
  --red-deep:    #971c1b;
  --red-shadow:  #6a1413;

  /* Sandwich board white + paper cream. */
  --paper:       #f4ecda;     /* the body background */
  --paper-warm:  #fbf6e9;     /* lighter card */
  --paper-edge:  #e3d9c1;

  /* Vintage yellow oval on the storefront sign. */
  --cream-yellow: #f0d181;

  /* The salon's lavender walls. Used sparingly. */
  --lavender:       #c5b1d6;
  --lavender-deep:  #6f4f93;
  --lavender-trim:  #efe7f4;

  /* Chalkboard. */
  --chalk-bg:    #181312;
  --chalk-soft:  #2a2220;
  --chalk-line:  rgba(255, 245, 230, 0.18);
  --chalk-ink:   #f3ead7;
  --chalk-faded: rgba(243, 234, 215, 0.62);

  /* Ink. */
  --ink:        #1d1715;
  --ink-soft:   #4f3f3a;
  --ink-faint:  #87766f;

  /* Type. */
  --display: 'Anton', 'Impact', system-ui, sans-serif;
  --body:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, Menlo, monospace;

  /* Rhythm. */
  --page-pad:    clamp(20px, 4vw, 56px);
  --section-y:   clamp(64px, 9vw, 128px);
  --max:         1260px;
  --max-text:    680px;
}

/* -------- reset & base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0ms !important; transition-duration: 0ms !important; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: var(--paper-warm);
  padding: 12px 16px; z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; outline: 3px solid var(--cream-yellow); }

/* -------- topbar ------------------------------------------------------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-edge);
  backdrop-filter: saturate(140%) blur(8px);
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--page-pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.topbar__brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  text-decoration: none;
  color: var(--red);
}
.topbar__brand-mark {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.02em;
  line-height: 1;
}
.topbar__brand-sub {
  display: inline-block;
  background: var(--cream-yellow);
  color: var(--red-deep);
  border: 1.5px solid var(--red-deep);
  border-radius: 100px;
  padding: 3px 9px 3px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar__nav {
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 24px);
  font-size: 14.5px;
  font-weight: 500;
}
.topbar__nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 120ms ease, color 120ms ease;
}
.topbar__nav a:hover, .topbar__nav a:focus-visible { border-bottom-color: var(--red); color: var(--red-deep); }
.topbar__phone {
  font-family: var(--mono);
  color: var(--red-deep) !important;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .topbar__nav a:not(.topbar__phone) { display: none; }
  .topbar__phone { font-size: 12.5px; }
  .topbar__inner { gap: 12px; }
  .topbar__brand { gap: 6px; flex-wrap: wrap; }
  .topbar__brand-sub { font-size: 9px; padding: 2px 7px 2px; }
}

/* -------- buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 2px;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease, box-shadow 120ms ease;
}
.btn--primary {
  background: var(--red);
  color: var(--paper-warm);
  box-shadow: 0 1px 0 var(--red-shadow), 0 3px 0 var(--red-shadow);
}
.btn--primary:hover { background: var(--red-deep); transform: translateY(1px); box-shadow: 0 1px 0 var(--red-shadow), 0 2px 0 var(--red-shadow); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper-warm); }
.btn--giant {
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: clamp(22px, 3.4vw, 30px);
  padding: 22px 38px;
  background: var(--paper-warm);
  color: var(--red-deep);
  border: 2px solid var(--paper-warm);
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 6px 0 rgba(0,0,0,0.18);
}
.btn--giant:hover { transform: translateY(2px); box-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 4px 0 rgba(0,0,0,0.18); }

/* -------- hero --------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(28px, 6vw, 56px) var(--page-pad) clamp(36px, 6vw, 64px);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  overflow: hidden;
}
.hero::before {
  /* faint paper-grain wash */
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(197, 177, 214, 0.10) 0%, transparent 60%),
    radial-gradient(circle at 80% 75%, rgba(197, 42, 39, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 920px) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 64px; }
}

.hero__left { min-width: 0; }
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  display: inline-flex; align-items: center;
  margin: 0 0 18px;
}
.dot {
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(197, 42, 39, 0.18);
}

.hero__title {
  margin: 0 0 26px;
  font-family: var(--display);
  color: var(--red);
  line-height: 0.86;
  letter-spacing: -0.005em;
}
.hero__title-line--shout {
  display: block;
  font-size: clamp(82px, 16vw, 220px);
  line-height: 0.82;
  text-shadow:
    0 2px 0 var(--red-shadow),
    0 6px 18px rgba(106, 20, 19, 0.20);
}
.hero__title-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream-yellow);
  color: var(--red-deep);
  border: 3px solid var(--red-deep);
  border-radius: 500px;
  padding: 14px 28px 12px;
  margin-top: 14px;
  font-family: var(--body);
  font-weight: 700;
  text-shadow: none;
  line-height: 1;
  letter-spacing: 0.16em;
  font-size: 14px;
  transform: rotate(-3deg);
  box-shadow: 0 4px 0 rgba(0,0,0,0.18);
}
.hero__title-badge span { display: block; }
.hero__title-badge span + span { margin-top: 4px; }

.hero__lede {
  font-size: clamp(17px, 1.6vw, 19.5px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 26px;
}
.hero__lede strong { color: var(--ink); font-weight: 600; }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}
.chip {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--paper-warm);
  border: 1.5px solid var(--paper-edge);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14.5px;
  font-weight: 500;
}
.chip__svc { color: var(--ink-soft); }
.chip__price {
  font-family: var(--display);
  color: var(--red);
  font-size: 20px;
  letter-spacing: 0.01em;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.hero__right { min-width: 0; }
.hero__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--paper-edge);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -30px rgba(106, 20, 19, 0.45),
    0 12px 24px -16px rgba(0,0,0,0.30);
  transform: rotate(-0.6deg);
}
.hero__photo img {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero__photo-cap {
  position: absolute;
  left: 14px; bottom: 14px;
  background: var(--paper-warm);
  color: var(--ink-soft);
  border: 1px solid var(--paper-edge);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 2px;
  max-width: 84%;
}

/* -------- strip / sandwich-board banner -------------------------------- */
.strip {
  background: var(--red);
  color: var(--paper-warm);
  border-block: 4px double rgba(255, 245, 230, 0.45);
}
.strip__list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--page-pad);
  list-style: none;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  font-family: var(--display);
  font-size: clamp(15px, 2vw, 22px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.strip__list li[aria-hidden="true"] { opacity: 0.45; }

/* -------- story -------------------------------------------------------- */
.story {
  padding: var(--section-y) var(--page-pad);
}
.story__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 880px) {
  .story__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 64px; }
}
.story__photo {
  margin: 0;
  border: 8px solid var(--paper-warm);
  outline: 1px solid var(--paper-edge);
  box-shadow: 0 30px 50px -28px rgba(0,0,0,0.30);
  transform: rotate(-1.2deg);
  background: var(--paper-warm);
}
.story__photo img {
  width: 100%; height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.story__copy { min-width: 0; }
.story__kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin: 0 0 14px;
}
.story__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 22ch;
}
.story__title em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 500;
  color: var(--red-deep);
}
.story__body {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: var(--max-text);
  margin: 0 0 16px;
}
.story__signature {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-faint);
  margin: 22px 0 0;
  letter-spacing: 0.02em;
}

/* -------- menu (chalkboard) -------------------------------------------- */
.menu {
  padding: var(--section-y) var(--page-pad);
  background: var(--chalk-bg);
  color: var(--chalk-ink);
  position: relative;
}
.menu::before {
  /* subtle chalkdust */
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(243,234,215,0.05) 0%, transparent 30%),
    radial-gradient(circle at 75% 80%, rgba(243,234,215,0.04) 0%, transparent 32%);
  pointer-events: none;
}
.menu__head {
  max-width: var(--max);
  margin: 0 auto clamp(36px, 6vw, 56px);
  position: relative;
}
.menu__eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-yellow);
  margin: 0 0 10px;
}
.menu__title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--chalk-ink);
}
.menu__title::after {
  content: '';
  display: block;
  width: 56px; height: 4px;
  background: var(--red);
  margin: 18px 0 0;
}
.menu__note {
  max-width: 60ch;
  margin: 22px 0 0;
  color: var(--chalk-faded);
  font-size: 16px;
  line-height: 1.6;
}

.menu__board {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (min-width: 760px) {
  .menu__board { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.menu__col { min-width: 0; }
.menu__group {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-yellow);
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--chalk-line);
}
.menu__group--second { margin-top: 36px; }

.menu__list {
  margin: 0;
  padding: 0;
}
.menu__row {
  display: flex; align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--chalk-line);
}
.menu__row dt {
  font-family: var(--body);
  font-weight: 500;
  font-size: 17.5px;
  color: var(--chalk-ink);
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
}
.menu__row dt::after {
  /* leader dots */
  content: ' . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .';
  color: var(--chalk-faded);
  margin-left: 8px;
  letter-spacing: 0.05em;
}
.menu__row dd {
  font-family: var(--display);
  font-size: 26px;
  color: var(--red);
  margin: 0;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
  white-space: nowrap;
}
.menu__row dd sup {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  vertical-align: super;
  color: var(--cream-yellow);
  margin-left: 2px;
}
.menu__small {
  margin: 24px 0 0;
  color: var(--chalk-faded);
  font-size: 14.5px;
  line-height: 1.6;
  font-style: italic;
}

/* -------- gallery ------------------------------------------------------ */
.gallery {
  padding: clamp(28px, 5vw, 64px) var(--page-pad);
  background: var(--paper-warm);
}
.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .gallery__grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: minmax(220px, auto);
    gap: 18px;
  }
}
.gallery__tile {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--paper-edge);
  background: var(--paper);
}
.gallery__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.gallery__tile:hover img { transform: scale(1.03); }

.gallery__tile--wide { grid-row: span 2; }
@media (max-width: 719px) {
  .gallery__tile--wide { grid-row: auto; }
}

/* -------- visit -------------------------------------------------------- */
.visit {
  padding: var(--section-y) var(--page-pad);
  background: var(--paper);
}
.visit__head {
  max-width: var(--max);
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.visit__eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin: 0 0 10px;
}
.visit__title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--red);
}
.visit__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 820px) {
  .visit__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; }
}

/* hours card — modeled on the printed sign in the window */
.visit__hours {
  background: var(--paper-warm);
  border: 3px solid var(--red);
  border-radius: 6px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 18px 30px -22px rgba(0,0,0,0.30);
  position: relative;
}
.visit__hours::before {
  /* pin */
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 1px 2px rgba(0,0,0,0.30);
}
.visit__hours-head {
  background: var(--red);
  color: var(--paper-warm);
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.08em;
  text-align: center;
  margin: -clamp(20px,3vw,32px) -clamp(20px,3vw,32px) clamp(16px, 3vw, 24px);
  padding: 12px 16px;
  border-radius: 3px 3px 0 0;
}
.hours {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
}
.hours th, .hours td {
  text-align: left;
  padding: 9px 8px;
  border-bottom: 1px dashed var(--paper-edge);
}
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours th {
  font-weight: 700;
  color: var(--ink);
  width: 22%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92em;
}
.hours td:nth-child(2) { color: var(--red-deep); font-family: var(--mono); font-weight: 600; }
.hours td:nth-child(3) { color: var(--ink-faint); font-family: var(--mono); font-size: 0.92em; padding: 9px 4px; }
.hours td:nth-child(4) { color: var(--red-deep); font-family: var(--mono); font-weight: 600; }
.visit__welcome {
  margin: 16px -4px 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}

.visit__where { min-width: 0; }
.visit__where-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 6px;
}
.visit__where-kicker--second { margin-top: 26px; }
.visit__where-line {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--ink);
}
.visit__where-line--big { font-family: var(--display); font-size: clamp(30px, 4vw, 42px); letter-spacing: 0.02em; color: var(--red); margin: 4px 0 0; }
.visit__where-line--big a { text-decoration: none; }
.visit__where-line--big a:hover { color: var(--red-deep); }
.visit__map { margin-top: 28px; }
.visit__map a {
  text-decoration: none;
  border-bottom: 1.5px solid var(--lavender-deep);
  padding-bottom: 2px;
  color: var(--lavender-deep);
  font-weight: 500;
}
.visit__map a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* -------- big CTA ------------------------------------------------------ */
.cta {
  background:
    linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--paper-warm);
  padding: clamp(64px, 9vw, 120px) var(--page-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  /* faint repeating stripes — sandwich-board edge */
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 12px, transparent 12px 28px);
  pointer-events: none;
}
.cta__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.cta__eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--cream-yellow);
}
.cta__title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  color: var(--paper-warm);
  text-shadow: 0 2px 0 rgba(0,0,0,0.25), 0 4px 18px rgba(0,0,0,0.20);
}
.cta__body {
  font-size: 17px;
  color: rgba(251, 246, 233, 0.86);
  margin: 0 0 40px;
}

/* -------- footer ------------------------------------------------------- */
.footer {
  background: var(--chalk-bg);
  color: var(--chalk-faded);
  padding: clamp(36px, 5vw, 56px) var(--page-pad);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.footer__brand {
  font-family: var(--display);
  color: var(--red);
  font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  line-height: 1;
}
.footer__brand span {
  display: inline-block;
  background: var(--cream-yellow);
  color: var(--red-deep);
  border: 1.5px solid var(--red-deep);
  border-radius: 100px;
  padding: 3px 8px 3px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  vertical-align: middle;
  margin-left: 6px;
}
.footer__line { margin: 4px 0; font-size: 14.5px; }
.footer__line a { color: var(--cream-yellow); text-decoration: none; border-bottom: 1px dashed currentColor; padding-bottom: 1px; }
.footer__line a:hover { color: var(--paper-warm); }
.footer__line--small { color: var(--chalk-faded); font-size: 13px; margin-top: 8px; letter-spacing: 0.02em; }

/* -------- reveal animation -------------------------------------------- */
.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.will-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* -------- selection ---------------------------------------------------- */
::selection { background: var(--red); color: var(--paper-warm); }
