/* ==========================================================================
   #weluvrva — For the love of Richmond
   Editorial · confident · local
   ========================================================================== */

:root {
  /* Palette */
  --cream: #F5F1E8;
  --cream-deep: #EDE6D6;
  --ink: #0B0B0B;
  --ink-soft: #1A1A1A;
  --muted: #6B6460;
  --line: rgba(11, 11, 11, 0.12);
  --orange: #EF4B23;
  --orange-deep: #D13D1A;
  --white: #FFFFFF;

  /* Typography */
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Rhythm */
  --max-width: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 10vw, 8rem);
}

/* ==========================================================================
   Reset + Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ==========================================================================
   Grain overlay — gives everything warmth
   ========================================================================== */

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.04 0 0 0 0 0.04 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  background: rgba(245, 241, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-brand:hover {
  color: var(--orange);
}

.nav-hash {
  color: var(--orange);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 0 var(--orange-deep), 0 6px 20px -8px rgba(239, 75, 35, 0.55);
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--orange-deep), 0 10px 24px -6px rgba(239, 75, 35, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-lg {
  padding: 1.05rem 1.85rem;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.kicker::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--orange);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero-title em {
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-mug-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11, 11, 11, 0.35);
  transform: rotate(1.5deg);
  transition: transform 0.6s ease;
}

.hero-mug-wrap:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero-mug {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-mono);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.35);
}

.hero-tag-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.hero-tag-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--orange);
  line-height: 1;
}

@media (max-width: 840px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    max-width: 28rem;
    margin: 0 auto;
    width: 100%;
  }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  animation: scroll 55s linear infinite;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  width: max-content;
}

.marquee-track .dot {
  color: var(--orange);
  font-size: 1.2rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ==========================================================================
   Generic section
   ========================================================================== */

.section {
  padding: var(--section-pad) var(--gutter);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-num {
  color: var(--orange);
  font-weight: 500;
}

.section-label {
  color: var(--muted);
  position: relative;
  padding-left: 1rem;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5rem;
  height: 1px;
  background: var(--muted);
}

.section-head-light .section-label {
  color: rgba(245, 241, 232, 0.65);
}

.section-head-light .section-label::before {
  background: rgba(245, 241, 232, 0.65);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: inherit;
}

.section-title em {
  color: var(--orange);
}

/* ==========================================================================
   Story
   ========================================================================== */

.section-story {
  border-top: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lead,
.story-body .lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.5rem;
  max-width: 36rem;
}

.lead em,
.story-body .lead em {
  color: var(--orange);
}

.story-body p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 36rem;
}

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  color: var(--ink);
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}

.pullquote em {
  color: var(--orange);
}

@media (max-width: 840px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.section-faq {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.faq-title {
  position: sticky;
  top: 6rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.faq-item:first-child {
  padding-top: 0;
  border-top: none;
}

.faq-item:last-child {
  padding-bottom: 0;
}

.faq-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  padding-top: 0.6rem;
}

.faq-q {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.faq-a {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 36rem;
}

.faq-a em {
  color: var(--orange);
  font-family: var(--font-display);
}

.faq-a a {
  color: var(--ink);
  border-bottom: 1px solid var(--orange);
  transition: color 0.2s;
}

.faq-a a:hover {
  color: var(--orange);
}

@media (max-width: 840px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-title { position: static; }
  .faq-item {
    grid-template-columns: 2.25rem 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
}

/* ==========================================================================
   Shop
   ========================================================================== */

.section-shop {
  background: var(--ink);
  color: var(--cream);
}

.section-shop .section-head { margin-bottom: 4rem; }

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: 5rem;
}

.shop-visual {
  position: relative;
  background: var(--cream);
  border-radius: 12px;
  padding: 2rem;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(239, 75, 35, 0.04) 100%);
  pointer-events: none;
}

.shop-mug {
  max-width: 88%;
  height: auto;
  transition: transform 0.6s ease;
}

.shop-mug:hover {
  transform: scale(1.04) rotate(-2deg);
}

.shop-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.shop-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.shop-desc {
  color: rgba(245, 241, 232, 0.75);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.shop-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}

.shop-spec > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.55);
}

.spec-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
}

.shop-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.55);
  line-height: 1.6;
}

.shop-note a {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}

.shop-more {
  padding: 3rem 0 0;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  text-align: center;
}

.shop-more-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.shop-more-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.shop-more-desc {
  color: rgba(245, 241, 232, 0.6);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.shop-more-desc a {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}

@media (max-width: 840px) {
  .shop-grid { grid-template-columns: 1fr; gap: 2rem; }
  .shop-spec { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Giveback band
   ========================================================================== */

.band {
  background: var(--orange);
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.band::before,
.band::after {
  content: "♥";
  position: absolute;
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  line-height: 1;
}

.band::before { top: -3rem; left: -2rem; transform: rotate(-15deg); }
.band::after { bottom: -4rem; right: -2rem; transform: rotate(20deg); }

.band-inner {
  max-width: 52rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.band-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.band-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.band-headline em {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.band-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.section-contact {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-top: 1.75rem;
}

.contact-desc + .contact-desc {
  margin-top: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hidden-field { display: none; }

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-split label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row span,
.form-row-split span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: 0.65rem 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--orange);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.form-checkbox input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
}

@media (max-width: 840px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
}

.footer-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.6);
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav a {
  color: rgba(245, 241, 232, 0.7);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-sister {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 999px;
  transition: border-color 0.25s, background 0.25s;
  justify-self: end;
  max-width: fit-content;
}

.footer-sister:hover {
  border-color: rgba(245, 241, 232, 0.45);
  background: rgba(245, 241, 232, 0.04);
}

.footer-sister-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.footer-sister:hover .footer-sister-badge {
  transform: rotate(-8deg);
}

.footer-sister-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.footer-sister-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 241, 232, 0.55);
}

.footer-sister-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.footer-byline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.55);
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.45);
  text-align: right;
  max-width: 40rem;
}

@media (max-width: 840px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    justify-items: center;
  }
  .footer-nav { justify-content: center; }
  .footer-sister { justify-self: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-legal { text-align: center; }
}

/* ==========================================================================
   Scroll reveal (progressive enhancement)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

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

/* ==========================================================================
   Focus states (a11y)
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
