/* =========================================================================
   The Untold Future — site styles
   Replaces 20+ Elementor/Jet/theme stylesheets with one ~12 KB file.
   ========================================================================= */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --c-bg:        #ffffff;
  --c-bg-alt:    #f6f6f4;
  --c-ink:       #1a1a1a;
  --c-ink-soft:  #4a4a4a;
  --c-muted:     #7a7a7a;
  --c-line:      #e6e6e0;
  --c-accent:    #f4fc09;   /* signature yellow */
  --c-dark:      #111111;
  --c-dark-2:    #1c1c1c;
  --c-on-dark:   #ffffff;

  /* Matches the live site (theuntoldfuture.org): Inter for all text. */
  --f-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-display: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --maxw:    1180px;
  --gutter:  24px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --shadow-md: 0 2px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.10);
}

/* --- Reset-ish ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

/* --- Header / nav ------------------------------------------------------- */
.site-header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .01em;
  color: var(--c-ink);
}
.site-nav .nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav .nav-item > a {
  display: inline-block;
  padding: 8px 0;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--c-ink);
  position: relative;
}
.site-nav .nav-item > a:hover {
  color: #000;
}
.site-nav .nav-item > a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav .nav-item > a:hover::after { transform: scaleX(1); }

.site-nav .has-submenu { position: relative; }
.site-nav .submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.site-nav .has-submenu:hover .submenu,
.site-nav .has-submenu:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav .submenu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--c-ink-soft);
}
.site-nav .submenu a:hover { background: var(--c-bg-alt); color: var(--c-ink); }

.nav-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-ink); margin: 4px 0; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; right: 0; left: 0;
    background: #fff; border-bottom: 1px solid var(--c-line);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav .nav-list { flex-direction: column; gap: 0; padding: 12px 0; }
  .site-nav .nav-item { width: 100%; padding: 0 var(--gutter); }
  .site-nav .nav-item > a { display: block; padding: 12px 0; }
  .site-nav .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 8px 12px;
  }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .03em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 0;
  cursor: pointer;
}
.btn--accent {
  background: var(--c-accent);
  color: var(--c-dark);
  box-shadow: 0 2px 0 0 var(--c-dark);
}
.btn--accent:hover { transform: translateY(-1px); box-shadow: 0 4px 0 0 var(--c-dark); }
.btn .arrow { font-size: 18px; line-height: 1; }

/* --- Hero (image-backed, full-bleed) ----------------------------------- */
.hero--image {
  position: relative;
  color: var(--c-on-dark);
  background-color: var(--c-dark);
  background-image: var(--hero-desktop);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero--image .hero-inner {
  max-width: var(--maxw);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 96px;
  position: relative;
}
.hero-overlay-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1;
  color: #ffffff;
  margin: 0 0 28px;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  letter-spacing: -.025em;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .14em;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(2px);
  transition: background .2s ease, color .2s ease;
}
.hero-cta:hover { background: var(--c-accent); color: var(--c-dark); border-color: var(--c-accent); }
.hero-cta .arrow { font-size: 18px; }

@media (max-width: 700px) {
  .hero--image { background-image: var(--hero-mobile); min-height: 520px; }
  .hero--image .hero-inner { padding: 88px 0 72px; }
}

/* Tagline block below the hero (static text) */
.hero-tagline {
  background: var(--c-bg);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--c-line);
}
.hero-tagline-inner {
  max-width: 760px;
  text-align: center;
}
.hero-tagline p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--c-ink);
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 24px;
}
.hero-tagline .hero-credit {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  color: var(--c-ink);
  margin: 0;
}

/* --- Category panels (image-backed, matches live site) ----------------- */
.categories-strip { background: var(--c-bg); padding: 56px 0 80px; }
.cat-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 32px 28px;
  border-radius: var(--r-md);
  background-size: cover;
  background-position: center;
  background-color: var(--c-dark-2);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s ease;
}
.cat-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.78) 100%);
  z-index: -1;
}
.cat-panel:hover { transform: translateY(-2px); }
.cat-panel h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 36px;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.cat-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
}
.cat-cta .arrow { font-size: 14px; }

@media (max-width: 820px) {
  .cat-panels { grid-template-columns: 1fr; }
}

/* --- Editor's choice ----------------------------------------------------- */
.editors-choice { padding-top: 24px; }
.editors-choice .section-head { margin-top: 56px; }

/* --- Section heads ------------------------------------------------------ */
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 64px 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
}
.section-more { color: var(--c-muted); font-weight: 500; font-size: 14px; }
.section-more:hover { color: var(--c-ink); }

/* --- Poem grid + card --------------------------------------------------- */
.poem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  margin: 32px 0 56px;
}
@media (max-width: 900px) { .poem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .poem-grid { grid-template-columns: 1fr; } }

.poem-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.poem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.poem-card-image {
  margin: 0;
  aspect-ratio: 3 / 4;
  background: var(--c-bg-alt);
  overflow: hidden;
}
.poem-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.poem-card:hover .poem-card-image img { transform: scale(1.03); }
.poem-card-image--placeholder { aspect-ratio: 3 / 4; background: var(--c-bg-alt); }
.poem-card-meta { padding: 16px 18px 22px; }
.poem-card-eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.poem-card-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--c-ink);
}
.poem-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  color: var(--c-ink);
}
.poem-card-cta::after {
  content: '';
  display: inline-block;
  width: 0; height: 2px;
  background: var(--c-accent);
  transition: width .2s ease;
}
.poem-card:hover .poem-card-cta::after { width: 28px; }

/* --- Pagination --------------------------------------------------------- */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 20px;
  margin: 16px 0 64px;
}
.page-list { display: flex; gap: 6px; }
.page-item { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 999px; font-size: 14px; }
.page-item a { display: block; width: 100%; height: 100%; line-height: 36px; }
.page-item:hover { background: var(--c-bg-alt); }
.page-item.is-current { background: var(--c-dark); color: #fff; }
.page-item.is-ellipsis { background: transparent; }
.page-prev, .page-next { font-size: 14px; color: var(--c-muted); }
.page-prev:hover, .page-next:hover { color: var(--c-ink); }

/* --- Page head (poems index & category) -------------------------------- */
.page-head { padding: 56px 0 8px; text-align: left; }
.page-head .page-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 8px;
}
.page-head .page-subtitle { color: var(--c-muted); font-size: 17px; max-width: 60ch; }
.category-eyebrow {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 6px;
}

/* --- Single poem (left-aligned column, matches live site) --------------- */
.poem-inner { max-width: 760px; padding-top: 56px; padding-bottom: 80px; }
.poem-header { text-align: left; margin-bottom: 28px; }
.poem-eyebrow {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 12px;
}
.poem-eyebrow a { color: inherit; }
.poem-eyebrow a:hover { color: var(--c-ink); }
.poem-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  margin: 0;
  line-height: 1.15;
  text-align: left;
}
.poem-hero {
  margin: 32px 0;
  max-width: 480px;
}
.poem-hero img {
  width: 100%; height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.poem-body {
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.75;
  margin-top: 24px;
  text-align: left;
}
.poem-body p {
  margin: 0 0 1.4em;
}
.poem-body p:last-child { margin-bottom: 0; }

.poem-tags {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 6px 8px;
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
}
.poem-tag {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--c-bg-alt);
  color: var(--c-ink-soft);
  border-radius: 999px;
}
.poem-tag:hover { background: var(--c-accent); color: var(--c-dark); }

.poem-nav {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.poem-nav a {
  display: inline-flex; flex-direction: column; max-width: 45%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
}
.poem-nav a:hover { background: var(--c-bg-alt); }
.poem-nav-next { text-align: right; align-items: flex-end; }
.poem-nav-arrow { font-size: 16px; color: var(--c-muted); }
.poem-nav-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); }
.poem-nav-title { font-family: var(--f-display); font-size: 16px; font-weight: 600; }

/* --- Default content page --------------------------------------------- */
.content-page {
  max-width: 760px;
  padding-top: 56px; padding-bottom: 80px;
}
.content-page .page-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 28px;
}
.page-body { font-size: 18px; line-height: 1.7; }
.page-body p { margin: 0 0 1.2em; }
.page-body h2 {
  font-family: var(--f-display);
  font-size: 26px; margin-top: 40px;
}
.page-body a { color: var(--c-ink); border-bottom: 2px solid var(--c-accent); }
.page-body a:hover { background: var(--c-accent); }

/* --- Newsletter -------------------------------------------------------- */
.newsletter {
  background: var(--c-bg-alt);
  margin-top: 40px;
  padding: 56px 0 64px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.newsletter-inner { max-width: 640px; text-align: center; }
.newsletter h2 {
  font-family: var(--f-display);
  font-weight: 700; font-size: 28px;
  margin: 0 0 8px;
}
.newsletter p { color: var(--c-muted); margin: 0 0 20px; }
.mc-form {
  display: flex; gap: 10px;
  flex-wrap: wrap; justify-content: center;
}
.mc-email {
  flex: 1 1 240px;
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 15px;
  background: #fff;
}
.mc-email:focus { outline: 2px solid var(--c-accent); outline-offset: 1px; }
.mc-fineprint {
  flex-basis: 100%;
  font-size: 12px; color: var(--c-muted);
}
.mc-fineprint a { color: var(--c-ink-soft); text-decoration: underline; }

/* --- Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--c-dark);
  color: #cfcfc8;
  padding: 48px 0 56px;
  margin-top: 0;
}
.footer-inner { text-align: center; }
.footer-tagline {
  font-family: var(--f-display);
  font-size: 17px; color: #fff;
  margin-bottom: 16px;
}
.footer-nav { display: inline-flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.footer-nav a { color: #cfcfc8; font-size: 14px; }
.footer-nav a:hover { color: var(--c-accent); }
.footer-nav .sep { color: #4f4f4a; }
.footer-meta { font-size: 12px; color: #7a7a72; }

/* --- Empty state ------------------------------------------------------- */
.empty {
  text-align: center;
  color: var(--c-muted);
  padding: 56px 0;
  font-style: italic;
}

/* --- Title-only poem list (All Poems page) ----------------------------- */
.poems-index--list .poem-title-list {
  column-count: 2;
  column-gap: 56px;
  margin: 32px 0 48px;
  list-style: none;
  padding: 0;
}
.poem-title-item {
  break-inside: avoid;
  margin: 0;
  padding: 0;
}
.poem-title-item a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
  transition: color .15s ease, border-color .15s ease, padding-left .15s ease;
}
.poem-title-item a::after {
  content: '→';
  margin-left: auto;
  color: var(--c-muted);
  font-size: 17px;
  transition: transform .2s ease, color .15s ease;
}
.poem-title-item a:hover {
  color: #000;
  border-bottom-color: var(--c-accent);
  padding-left: 4px;
}
.poem-title-item a:hover::after {
  color: var(--c-ink);
  transform: translateX(4px);
}
@media (max-width: 700px) {
  .poems-index--list .poem-title-list { column-count: 1; }
}

/* --- Nested submenu (Categories → Humans → children) ------------------- */
.site-nav .submenu .submenu {
  top: 0; left: 100%;
  margin-left: -1px;
}
@media (max-width: 820px) {
  .site-nav .submenu .submenu {
    top: auto; left: auto;
    margin-left: 0;
    padding-left: 12px;
  }
}
.site-nav .chev { font-size: 10px; color: var(--c-muted); margin-left: 4px; }
.site-nav .submenu .has-submenu > a .chev { float: right; }

/* --- Category page children chips -------------------------------------- */
.category-children {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}
.children-label {
  font-size: 13px;
  color: var(--c-muted);
  margin-right: 4px;
}
.child-cat {
  font-size: 13px;
  padding: 5px 12px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  color: var(--c-ink-soft);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.child-cat:hover {
  background: var(--c-accent);
  color: var(--c-dark);
  border-color: var(--c-accent);
}
.category-eyebrow .sep { color: var(--c-line); margin: 0 6px; }
.category-eyebrow a { color: inherit; }
.category-eyebrow a:hover { color: var(--c-ink); }

/* --- Contact form ------------------------------------------------------ */
.content-page .form-wrapper { margin-top: 28px; max-width: 640px; }
.content-page form.contact .form-field,
.content-page .form-wrapper .form-field {
  margin-bottom: 18px;
}
.content-page label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.content-page input[type="text"],
.content-page input[type="email"],
.content-page textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.content-page input[type="text"]:focus,
.content-page input[type="email"]:focus,
.content-page textarea:focus {
  outline: none;
  border-color: var(--c-dark);
  box-shadow: 0 0 0 3px rgba(244, 252, 9, .35);
}
.content-page textarea { min-height: 140px; resize: vertical; }
.content-page .form-input-wrapper { display: block; }
.content-page button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-dark);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .03em;
  border: 0;
  cursor: pointer;
  box-shadow: 0 2px 0 0 var(--c-dark);
  transition: transform .15s ease, box-shadow .15s ease;
}
.content-page button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 0 var(--c-dark);
}
.content-page .form-errors {
  color: #b00020;
  font-size: 14px;
  margin-top: 4px;
}

/* --- Categories index page list ---------------------------------------- */
.cat-index {
  list-style: none;
  padding: 0;
  margin: 28px 0 48px;
}
.cat-index > li {
  margin: 0;
  border-bottom: 1px solid var(--c-line);
}
.cat-index > li > a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  color: var(--c-ink);
  font-size: 17px;
  line-height: 1.5;
  transition: color .15s ease, padding-left .15s ease;
}
.cat-index > li > a strong {
  font-weight: 700;
  font-size: 22px;
  color: var(--c-ink);
}
.cat-index > li > a::after {
  content: '→';
  margin-left: auto;
  color: var(--c-muted);
  font-size: 18px;
  transition: transform .2s ease, color .15s ease;
}
.cat-index > li > a:hover {
  color: #000;
  padding-left: 4px;
}
.cat-index > li > a:hover::after {
  color: var(--c-ink);
  transform: translateX(4px);
}

/* Nested children list (sub-categories under Humans) */
.cat-index ul {
  list-style: none;
  padding: 0 0 14px 24px;
  margin: -6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.cat-index ul li { margin: 0; }
.cat-index ul li a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--c-ink-soft);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.cat-index ul li a:hover {
  background: var(--c-accent);
  color: var(--c-dark);
  border-color: var(--c-accent);
}
