/* ============================================
   Doodle Twist — shared styles
   Brand tokens: primary blue/orange, secondary purple/cyan/yellow,
   neutral dark/light. See brand tokens JSON for source of truth.
   ============================================ */

:root {
  --ink: #1a1a1a;
  --paper: #ffffff;
  --blue: #0088ff;
  --orange: #ff6b00;
  --purple: #a100ff;
  --cyan: #00d4ff;
  --yellow: #ffb800;
  --warm-gray: #b8afa4;
  --paper-dim: #f1ede6;

  --stroke: 3px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --radius-button: 16px;

  --font-head: "Fredoka", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-accent: "Caveat", cursive;

  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-button);
  border: var(--stroke) solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- ticker ---------- */

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-bottom: var(--stroke) solid var(--ink);
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding: 10px 0;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}

.ticker-track .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0 1.5rem;
}

.ticker-track .ticker-label {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.ticker-track .ticker-sep {
  color: var(--warm-gray);
}

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

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    overflow-x: auto;
  }
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--stroke) solid var(--ink);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
}

.brand img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--orange);
}

.main-nav .btn {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    inset: 65px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    border-top: var(--stroke) solid var(--ink);
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: var(--stroke) solid var(--ink);
    border-radius: var(--radius-sm);
    background: transparent;
    font-family: var(--font-head);
    font-size: 1.4rem;
    cursor: pointer;
  }

  /* Full-width, taller tap targets for the mobile menu - the desktop
     underline-on-hover styling only gave a ~31px, text-width-only target. */
  .main-nav a {
    width: 100%;
    padding: 12px 0;
  }

  /* The Install App button is a <button>, not an <a> - the rule above
     doesn't reach it, so it'd otherwise stay a small, off-center pill. */
  .main-nav button {
    width: 100%;
  }
}

/* ---------- hero ---------- */

.hero {
  padding: 72px 0 56px;
  border-bottom: var(--stroke) solid var(--ink);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--purple);
  margin-bottom: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-art {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art img {
  width: 100%;
  max-width: 320px;
}

@media (max-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
  }
}

/* ---------- generic section ---------- */

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--paper-dim);
  border-top: var(--stroke) solid var(--ink);
  border-bottom: var(--stroke) solid var(--ink);
}

.section-head {
  max-width: 640px;
  margin: 0 0 40px;
}

.section-head p {
  color: #4a4540;
}

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--paper);
  position: relative;
}

.step-day {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.step-card:nth-child(1) .step-day { background: var(--blue); }
.step-card:nth-child(2) .step-day { background: var(--orange); }
.step-card:nth-child(3) .step-day { background: var(--ink); }

@media (max-width: 780px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- winner highlight / cards ---------- */

.winner-highlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}

.winner-highlight .winner-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-dim);
}

.winner-highlight .winner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-highlight .winner-copy {
  padding: 36px 40px 36px 0;
}

.badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 999px;
  padding: 2px 16px;
  transform: rotate(-3deg);
  margin-bottom: 12px;
}

@media (max-width: 780px) {
  .winner-highlight {
    grid-template-columns: 1fr;
  }
  .winner-highlight .winner-copy {
    padding: 0 24px 32px;
  }
}

/* archive grid */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.winner-card {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease;
}

.winner-card:hover {
  transform: translateY(-4px);
}

.winner-card .photo {
  aspect-ratio: 4 / 3;
  background: var(--paper-dim);
  overflow: hidden;
}

.winner-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-card .info {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.winner-card .date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  font-weight: 600;
}

.winner-card .prompt {
  font-weight: 600;
}

.winner-card .name {
  color: var(--blue);
  font-weight: 600;
}

.archive-empty,
.archive-error {
  border: var(--stroke) dashed var(--warm-gray);
  border-radius: var(--radius-md);
  padding: 48px 24px;
  text-align: center;
  color: #6b655c;
}

/* ---------- submission grids (today / monthly) ---------- */

.day-section {
  margin-bottom: 48px;
}

.day-section:last-child {
  margin-bottom: 0;
}

.day-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--warm-gray);
}

.day-heading h3 {
  margin: 0;
}

.day-heading .day-prompt {
  color: var(--orange);
  font-weight: 600;
}

.submission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.submission-card {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.submission-card .photo {
  aspect-ratio: 1 / 1;
  background: var(--paper-dim);
  overflow: hidden;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: zoom-in;
}

.submission-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.submission-card .photo:hover img,
.submission-card .photo:focus-visible img {
  transform: scale(1.04);
}

.submission-card .photo:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

/* ---------- lightbox ---------- */

body.ddg-lightbox-open {
  overflow: hidden;
}

.ddg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.ddg-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.86);
}

.ddg-lightbox-dialog {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-md);
  max-width: min(720px, 100%);
  max-height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.ddg-lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: var(--stroke) solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.ddg-lightbox-photo {
  background: var(--paper-dim);
}

.ddg-lightbox-photo img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.ddg-lightbox-info {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ddg-lightbox-date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  font-weight: 600;
}

.ddg-lightbox-prompt {
  color: var(--orange);
  font-weight: 600;
}

.ddg-lightbox-name {
  color: var(--blue);
  font-weight: 600;
}

.ddg-lightbox-caption {
  margin: 0;
  color: #4a4540;
}

.submission-card .info {
  padding: 14px 16px 16px;
}

.submission-card .name {
  font-weight: 600;
  color: var(--blue);
}

.submission-card .caption {
  color: #4a4540;
  font-size: 0.92rem;
  margin: 4px 0 0;
}

/* winner highlight within a day's grid: moved first, gold filigree border */

.submission-card.is-winner {
  position: relative;
  grid-column: 1 / -1;
  max-width: 340px;
  border: 3px solid transparent;
  border-radius: var(--radius-md);
  background-image:
    linear-gradient(var(--paper), var(--paper)),
    repeating-linear-gradient(135deg,
      #b8860b 0, #f6e27a 8%, #d4af37 16%, #fff6d0 24%, #b8860b 32%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 0 0 1px #d4af37,
    0 0 18px rgba(212, 175, 55, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.15);
}

.submission-card.is-winner::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
}

.winner-ribbon {
  position: absolute;
  top: 14px;
  left: -8px;
  z-index: 2;
  padding: 5px 16px 5px 20px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a3400;
  background: linear-gradient(135deg, #fff6d0, #d4af37 45%, #b8860b);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 70%);
}

@media (max-width: 780px) {
  .submission-card.is-winner {
    max-width: none;
  }
}

.month-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.month-picker label {
  font-weight: 600;
}

.month-picker select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}

/* ---------- how it works timeline ---------- */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 2px solid var(--warm-gray);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-day {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
}

.timeline-item:nth-child(1) .timeline-day { color: var(--blue); }
.timeline-item:nth-child(2) .timeline-day { color: var(--orange); }
.timeline-item:nth-child(3) .timeline-day { color: var(--ink); }

@media (max-width: 600px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ---------- CTA band ---------- */

.cta-band {
  border-top: var(--stroke) solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--paper);
}

.cta-band .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--paper);
}

.cta-band .btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

/* ---------- subscribe page ---------- */

.subscribe-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.subscribe-form-wrap {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}

.subscribe-form-wrap iframe {
  width: 100%;
  min-height: 720px;
  border: none;
  display: block;
}

.subscribe-side ul {
  padding-left: 1.2em;
}

.subscribe-side li {
  margin-bottom: 0.6em;
}

@media (max-width: 860px) {
  .subscribe-panel {
    grid-template-columns: 1fr;
  }
}

/* ---------- email gate ---------- */

.email-gate {
  display: flex;
  justify-content: center;
}

.email-gate-card {
  width: 100%;
  max-width: 480px;
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--paper);
  text-align: center;
}

.email-gate-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.3em;
}

.email-gate-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.email-gate-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
}

.email-gate-form input:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.email-gate-msg {
  margin-top: 16px;
  color: var(--orange);
  font-weight: 500;
}

@media (max-width: 520px) {
  .email-gate-form {
    flex-direction: column;
  }
}

/* ---------- native forms (subscribe / submit) ---------- */

.native-form-wrap {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--paper);
}

.native-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.native-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.native-form .optional {
  font-weight: 400;
  color: var(--warm-gray);
}

.native-form input[type="text"],
.native-form input[type="email"],
.native-form input[type="tel"],
.native-form input[type="file"],
.native-form select,
.native-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
}

.native-form textarea {
  resize: vertical;
  font-family: var(--font-body);
}

.native-form input:focus,
.native-form select:focus,
.native-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.native-form .checkbox-label {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.native-form .checkbox-label input {
  width: 18px;
  height: 18px;
}

.form-msg {
  margin: 4px 0 0;
  font-weight: 500;
  color: var(--orange);
}

/* ---------- phone formatting ----------
   Desktop-scaled vertical rhythm (64-72px section padding, 32-36px card
   padding) costs real screen space on a ~375px-wide, ~700px-tall phone
   viewport without adding anything - tightened here so more of the page is
   visible per scroll and cards get more of the already-narrow width. */

@media (max-width: 600px) {
  .hero {
    padding: 44px 0 36px;
  }

  .section {
    padding: 40px 0;
  }

  .cta-band {
    padding: 44px 0;
  }

  .native-form-wrap {
    padding: 20px;
  }

  .email-gate-card {
    padding: 24px;
  }
}

/* ---------- app shell (app.html / app-prompt.html / app-month.html /
   app-submit.html - the dedicated home-screen-launch experience) ---------- */

body.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  background: var(--paper);
  border-bottom: var(--stroke) solid var(--ink);
}

.app-topbar a {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  border-right: 2px solid var(--paper-dim);
}

.app-topbar a:last-child {
  border-right: none;
}

.app-topbar a[aria-current="page"] {
  opacity: 0.4;
  background: var(--paper-dim);
  pointer-events: none;
  cursor: default;
}

.app-content {
  flex: 1;
  padding: 28px 20px;
}

.app-content .winner-highlight {
  grid-template-columns: 1fr;
}

.app-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
  padding: 12px 16px;
  /* Installed on Android, the OS's gesture nav bar can overlay the very
     bottom of the viewport instead of reserving its own space - pad past
     it using the safe-area inset (needs viewport-fit=cover on these pages
     to report a real value), with a fixed floor for devices that report 0. */
  padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
  border-top: 1px solid var(--paper-dim);
}

.app-footer-nav a {
  text-decoration: none;
  color: var(--warm-gray);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 2px;
}

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

.app-footer-brand {
  display: flex;
  align-items: center;
}

.app-footer-brand img {
  height: 16px;
  width: auto;
}

.app-prompt-card {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--paper-dim);
}

.app-prompt-line {
  font-size: 1.15rem;
  margin: 0 0 0.9em;
}

.app-prompt-line:last-child {
  margin-bottom: 0;
}

/* dense picture grid (app-month.html): more, smaller columns than
   .submission-grid, and no name/caption text - just tap-to-enlarge, the
   lightbox (already wired in js/submissions-common.js) shows the details. */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.app-grid .submission-card {
  border: none;
  border-radius: 0;
}

.app-grid .submission-card .info {
  display: none;
}

.app-grid .submission-card.is-winner {
  grid-column: auto;
  max-width: none;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: var(--stroke) solid var(--ink);
  padding: 40px 0;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
}

.footer-brand img {
  height: 30px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

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

.footer-note {
  color: var(--warm-gray);
  font-size: 0.9rem;
  width: 100%;
}
