/* =========================================================
   Changing Stories — warm editorial / Gladwell-pop style
   ========================================================= */

:root {
  /* Palette */
  --bg: #faf6ef;
  --bg-soft: #f3ece0;
  --bg-card: #fffaf2;
  --ink: #1f1b16;
  --ink-soft: #4a4339;
  --ink-mute: #756c5d;
  --rule: #e3dac8;
  --accent: #c2562e; /* terracotta */
  --accent-deep: #a3431f;
  --sage: #6f7f63;
  --gold: #d8a83a;

  /* Type */
  --font-display: 'Boska', 'Source Serif 4', Georgia, serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1.05rem;
  --text-lg: 1.2rem;
  --text-xl: clamp(1.45rem, 1.1rem + 1.4vw, 2rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.6vw, 3rem);
  --text-hero: clamp(2.6rem, 1.6rem + 4.6vw, 5.2rem);

  /* Layout */
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 7.5rem);

  --radius: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(31, 27, 22, 0.04),
    0 4px 14px rgba(31, 27, 22, 0.05);
  --shadow-md: 0 8px 28px rgba(31, 27, 22, 0.09),
    0 2px 6px rgba(31, 27, 22, 0.05);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset / base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
p {
  margin: 0 0 1em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 1px 0 rgba(31, 27, 22, 0.02);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 1rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
}
.wordmark .mark {
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.75rem);
  margin: 0;
  padding: 0;
}
.nav-list a {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--ink);
}
.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 auto auto -10%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(194, 86, 46, 0.12),
    rgba(194, 86, 46, 0) 60%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1.4rem;
}
.hero-title {
  font-size: var(--text-hero);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fffaf2;
  box-shadow: 0 6px 18px rgba(194, 86, 46, 0.28);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--ink);
}

/* Book mockup */
.hero-book {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.hero-book figcaption {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}
.book {
  position: relative;
  width: min(320px, 80%);
  aspect-ratio: 2 / 3;
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease);
  filter: drop-shadow(0 30px 40px rgba(31, 27, 22, 0.18))
    drop-shadow(0 6px 10px rgba(31, 27, 22, 0.12));
}
.book:hover {
  transform: rotate(-1deg) translateY(-4px);
}
.book-cover {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(0, 0, 0, 0.06)
    ),
    linear-gradient(160deg, #b6481f 0%, #c2562e 45%, #d2693a 100%);
  color: #fbf3e3;
  border-radius: 3px 6px 6px 3px;
  padding: 1.6rem 1.4rem 1.4rem 1.7rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.book-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 80% at 30% 0%,
      rgba(255, 240, 210, 0.18),
      rgba(255, 240, 210, 0) 60%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0 2px,
      rgba(0, 0, 0, 0) 2px 6px
    );
  pointer-events: none;
}
.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.1) 60%,
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 3px 0 0 3px;
}
.cover-rule {
  width: 32px;
  height: 2px;
  background: #fbf3e3;
  opacity: 0.85;
  margin-bottom: 0.85rem;
}
.cover-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fbf3e3;
  opacity: 0.85;
  margin: 0 0 1.3rem;
}
.cover-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.3rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fbf3e3;
  margin: 0 0 0.4rem;
}
.cover-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.25rem);
  margin: 0 0 auto;
  color: #fbf3e3;
  opacity: 0.92;
}
.cover-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fbf3e3;
  opacity: 0.85;
  margin: 0;
}
.cover-mark {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 52px;
  height: 52px;
  color: #fbf3e3;
  opacity: 0.75;
}

/* =========================================================
   Book Teaser
   ========================================================= */
.book-teaser {
  background: var(--bg-soft);
  border-block: 1px solid var(--rule);
  padding-block: var(--section-y);
}
.teaser-inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  text-align: center;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--sage);
  margin: 0 0 1.2rem;
}
.pullquote {
  margin: 0 0 2rem;
  padding: 0;
  border: 0;
}
.pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  position: relative;
}
.pullquote p::before {
  content: '“';
  position: absolute;
  top: -0.4em;
  left: -0.05em;
  font-size: 1.4em;
  color: var(--accent);
  opacity: 0.55;
  font-style: normal;
  line-height: 1;
}
.teaser-body {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-inline: auto;
}
.teaser-cta {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--ink);
}

.link-underline {
  color: var(--accent);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 95%;
  transition: background-size 0.3s var(--ease), color 0.2s var(--ease);
  font-weight: 500;
}
.link-underline:hover {
  background-size: 100% 2px;
  color: var(--accent-deep);
}

/* =========================================================
   Articles
   ========================================================= */
.articles {
  padding-block: var(--section-y);
}
.section-head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-title {
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-family: var(--font-serif);
  color: var(--ink-soft);
  font-size: 1.05rem;
}
/* Featured (pinned) article */
.article-featured {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.article-featured--bottom {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}
.article-featured:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.featured-pin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent);
  background: rgba(194, 86, 46, 0.08);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.featured-date {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.3rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 1rem;
  max-width: 22ch;
}
.featured-title a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.4s var(--ease), color 0.2s var(--ease);
}
.featured-title a:hover {
  color: var(--accent-deep);
  background-size: 100% 1px;
}
.featured-excerpt {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 1.2rem;
}
.featured-link {
  margin: 0;
  font-size: var(--text-base);
}

.recent-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--sage);
  margin: 0 0 1.4rem;
  text-align: center;
}

.article-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.article {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d6c9af;
}
.article-date {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage);
  margin: 0 0 0.9rem;
}
.article-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.18;
  font-weight: 500;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}
.article-title a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.4s var(--ease), color 0.2s var(--ease);
}
.article-title a:hover {
  color: var(--accent-deep);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 100% 1px;
}
.article-excerpt {
  font-family: var(--font-serif);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  flex: 1;
}
.article-link {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.all-essays {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  font-size: var(--text-base);
}

/* =========================================================
   About
   ========================================================= */
.about {
  background: var(--bg-soft);
  border-block: 1px solid var(--rule);
  padding-block: var(--section-y);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.portrait {
  margin: 0;
  position: relative;
}
.portrait::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--accent);
  opacity: 0.18;
  border-radius: var(--radius-lg);
  z-index: 0;
}
.portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-copy .section-title {
  margin-bottom: 1.1rem;
}
.bio-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.about-copy p {
  font-family: var(--font-serif);
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}
.about-copy strong {
  color: var(--ink);
  font-weight: 600;
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  padding-block: var(--section-y);
  text-align: center;
}
.contact-inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
}
.contact-title {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.contact-email {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  letter-spacing: -0.01em;
}
.contact-email a {
  text-decoration: none;
  color: var(--accent);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 96%;
  transition: background-size 0.3s var(--ease);
}
.contact-email a:hover {
  background-size: 100% 2px;
}
.contact-links {
  font-size: var(--text-sm);
  color: var(--ink-mute);
}

/* =========================================================
   Subscribe (compact inline form)
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.subscribe {
  background: var(--bg-soft);
  border-block: 1px solid var(--rule);
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}
.subscribe-inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.subscribe-title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.subscribe-sub {
  font-family: var(--font-sans);
  color: var(--ink-mute);
  font-size: var(--text-sm);
  margin: 0 auto 1.5rem;
}
.subscribe-form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.3rem 0.3rem 0.3rem 0.4rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.subscribe-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194, 86, 46, 0.15);
}
.sub-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-size: var(--text-sm);
  color: var(--ink);
  min-width: 0;
}
.sub-input::placeholder {
  color: var(--ink-mute);
}
.sub-input:focus {
  outline: none;
}
.sub-btn {
  padding: 0.6rem 1.15rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--rule);
  padding-block: 2.2rem;
  background: var(--bg-soft);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--ink-mute);
}
.footer-inner p {
  margin: 0;
}

/* =========================================================
   Reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 920px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    text-align: left;
  }
  .hero-book {
    order: -1;
    margin-bottom: 1rem;
  }
  .book {
    width: min(260px, 70%);
  }
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portrait {
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .nav-list li:nth-child(3),
  .nav-list li:nth-child(5) {
    display: none; /* hide About + Contact on smaller screens; anchors still work via in-page links */
  }
}

@media (max-width: 620px) {
  .nav-list {
    gap: 0.9rem;
  }
  .nav-list li:nth-child(2) {
    display: none; /* on phones keep just Book + Subscribe */
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding-block: 14px;
  }
  .wordmark-text {
    font-size: 1.1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .footer-inner {
    flex-direction: column;
  }
  .pullquote p::before {
    left: -0.1em;
  }
}

/* Focus states */
a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
