/* ============================================================
   sarasadek.co — static port of the Replit/React site
   Design tokens carried over 1:1
   ============================================================ */

:root {
  --yellow: #F5E642;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --muted: hsl(0 0% 45%);
  --border: hsl(0 0% 88%);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-hand: 'Nothing You Could Do', cursive;
}

*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.01em;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

p { font-family: var(--font-sans); line-height: 1.7; margin: 0; }

a { color: inherit; }
button { font: inherit; }

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

::selection { background-color: hsl(14 89% 55%); color: hsl(0 0% 100%); }

/* ---- scroll reveal (framer-motion replacement) ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
  .hero-copy h1 span { animation: none !important; opacity: 1 !important; }
}

/* ============ Navigation ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid #222;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo .name {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}
.nav-logo .title {
  color: #888;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a {
  color: #aaa;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: none;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
}
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 24px 24px;
  gap: 20px;
  background: var(--black);
  border-top: 1px solid #222;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: #aaa;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 12px;
}
.nav-mobile .nav-cta-mobile {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .nav-inner { padding: 16px 32px; }
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-hamburger { display: none; }
  .nav-mobile { display: none !important; }
}

/* ============ Available-for marquee ============ */
.availablefor {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

/* ============ Hero ============ */
.hero {
  display: flex;
  flex-direction: column-reverse;
  min-height: 100vh;
  padding-top: 60px;
}
.hero-left {
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--yellow);
  padding: 60px 32px;
}
.hero-copy { width: 100%; }
.hero-copy h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 32px;
  max-width: 620px;
}
@keyframes wordUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy h1 span {
  display: inline-block;
  margin-right: 0.28em;
  opacity: 0;
  animation: wordUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0.1s);
}
.hero-greeting {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 16px;
  opacity: 0.8;
  line-height: 1.6;
}
.hero-copy .hero-p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 20px;
  max-width: 520px;
  opacity: 0.85;
}
.hero-copy .hero-p:last-of-type { margin-bottom: 40px; }
.hero-copy .hero-p a.bold-link { color: var(--black); font-weight: 700; }
.hero-copy .hero-p a.story-link { color: var(--black); font-style: italic; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-black {
  display: inline-block;
  text-decoration: none;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
}
.hero-wyla-link {
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
}
.hero-right {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  align-self: stretch;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% 10%;
  filter: grayscale(100%) contrast(1.1);
}
@media (min-width: 768px) {
  .hero { flex-direction: row; }
  .hero-left { width: 58%; }
  .hero-copy { padding-left: 48px; padding-right: 48px; }
  .hero-right { width: 42%; }
  .hero-right img { position: absolute; inset: 0; }
}

/* ============ Story / About ============ */
.story { background: var(--white); padding: 112px 32px; }
.story-inner { max-width: 900px; margin: 0 auto; }
.story-kicker {
  font-family: var(--font-hand);
  font-size: 2rem;
  color: var(--black);
  opacity: 0.6;
  margin-bottom: 40px;
}
.story p.body { font-size: 1.1rem; line-height: 1.85; color: var(--black); opacity: 0.7; }
.story p.body + p.body { margin-top: 32px; }
.story p.body strong { opacity: 1; color: var(--black); font-weight: 600; }
.story p.body a { color: var(--black); text-decoration: underline; text-decoration-color: rgba(0,0,0,0.3); }

/* ============ Quotes ============ */
.quote { padding: 56px clamp(24px, 8vw, 80px); }
.quote.yellow { background: var(--yellow); }
.quote.white { background: var(--white); }
.quote-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.quote blockquote {
  font-family: var(--font-hand);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  color: var(--black);
  line-height: 1.7;
  margin: 0 0 20px;
}
.quote.q-ruha blockquote { font-size: clamp(1.3rem, 2.2vw, 2rem); }
.quote.q-baldwin blockquote { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.quote footer {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.5;
}

/* ============ Beliefs ============ */
.beliefs { background: var(--black); color: var(--white); padding: 112px 32px; }
.beliefs-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 10; }
.beliefs h2 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 80px;
  max-width: 48rem;
}
.beliefs-grid { display: grid; grid-template-columns: 1fr; column-gap: 80px; row-gap: 64px; }
.belief { display: flex; gap: 24px; cursor: default; transition: transform 0.2s; }
.belief:hover { transform: translateX(6px); }
.belief .num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow);
  user-select: none;
}
.belief h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.belief p { line-height: 1.625; color: rgba(255,255,255,0.6); }
@media (min-width: 768px) {
  .beliefs h2 { font-size: 3.75rem; }
  .beliefs-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ Practice / Projects ============ */
.practice { background: var(--black); color: var(--white); padding: 112px 32px; }
.practice-inner { max-width: 1200px; margin: 0 auto; }
.practice h2 { font-size: 1.875rem; letter-spacing: -0.025em; margin-bottom: 24px; line-height: 1.2; }
.practice .lede { font-size: 1.125rem; line-height: 1.75; margin-bottom: 12px; color: rgba(255,255,255,0.75); max-width: 560px; }
.practice .lede-2 { font-size: 1.125rem; line-height: 1.75; color: rgba(255,255,255,0.5); max-width: 560px; }
.practice-header { margin-bottom: 48px; }
.project-featured {
  display: block;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s;
}
.project-featured .label {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
}
.project-featured h3 {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.project-featured h3 svg { opacity: 0; transition: opacity 0.2s; }
.project-featured:hover h3 svg { opacity: 1; }
.project-featured .desc {
  line-height: 1.625;
  font-size: 1.125rem;
  max-width: 48rem;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.7);
}
.project-featured .status { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.past-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-sans);
}
.past-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.past-project { border: 1px solid rgba(255,255,255,0.15); padding: 20px; }
.past-project .name { font-weight: 500; font-size: 0.875rem; margin-bottom: 8px; color: var(--white); }
.past-project .name a { color: var(--white); text-decoration: none; }
.past-project .name a:hover { text-decoration: underline; }
.past-project .desc { color: rgba(255,255,255,0.45); font-size: 0.8rem; line-height: 1.6; }
.past-project .status {
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ---- How I build cycle ---- */
.cycle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.cycle-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  flex-shrink: 0;
}
.cycle-figure {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.cycle-hot {
  cursor: pointer;
  outline: none;
}
.cycle-hot circle {
  fill: var(--black);
  stroke: var(--yellow);
  stroke-width: 2;
  transition: fill 0.2s;
}
.cycle-hot text {
  fill: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  text-anchor: middle;
  dominant-baseline: central;
  transition: fill 0.2s;
}
.cycle-hot:hover circle,
.cycle-hot:focus circle,
.cycle-hot.active circle {
  fill: var(--yellow);
}
.cycle-hot:hover text,
.cycle-hot:focus text,
.cycle-hot.active text {
  fill: var(--black);
}
.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  text-align: center;
  pointer-events: none;
}
.cycle-center-default {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.8;
}
.cycle-center .k {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 6px;
}
.cycle-center .d {
  display: block;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 480px) {
  .cycle-center .d { font-size: 0.62rem; }
  .cycle-center .k { font-size: 0.85rem; }
}
@media (min-width: 768px) {
  .cycle-figure {
    max-width: 420px;
  }
}
@media (min-width: 768px) {
  .practice h2 { font-size: 3rem; }
  .project-featured { padding: 56px; }
  .project-featured h3 { font-size: 2.25rem; }
  .project-featured .desc { font-size: 1.25rem; }
  .past-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============ Ethical Tech ============ */
.ethical { background: var(--white); padding: 112px 32px; }
.ethical-inner { max-width: 1100px; margin: 0 auto; }
.ethical h2 {
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  line-height: 1.25;
  color: var(--black);
  max-width: 760px;
}
.ethical h2 .underlined { position: relative; display: inline-block; }
.ethical h2 .underlined .line {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
  display: block;
}
.ethical h2 .underlined .line.in { transform: scaleX(1); }
.ethical .sub {
  font-size: 1.25rem;
  line-height: 1.625;
  margin-bottom: 64px;
  color: rgba(0,0,0,0.6);
  max-width: 600px;
}
.principles { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
.principle { border-left: 3px solid var(--yellow); padding-left: 20px; }
.principle .p-title { font-weight: 700; font-size: 1rem; color: var(--black); margin-bottom: 6px; }
.principle .p-body { font-size: 0.95rem; line-height: 1.75; color: rgba(0,0,0,0.6); }
.ethical-connect { max-width: 760px; padding: 40px 0; }
.ethical-connect .hand {
  font-family: var(--font-hand);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 20px;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .ethical h2 { font-size: 3.75rem; }
  .principles { grid-template-columns: 1fr 1fr; }
}

/* ============ Speaking ============ */
.speaking { background: var(--black); padding: 96px 32px; }
.speaking-inner { max-width: 1100px; margin: 0 auto; }
.speaking h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.speaking .sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.5;
  max-width: 560px;
  margin-bottom: 60px;
}
.offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.offering { background: #111; border-top: 3px solid var(--yellow); padding: 40px 36px; }
.offering h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.offering p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.55;
  margin-bottom: 28px;
}
.offering button {
  color: var(--yellow);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 1px solid var(--yellow);
  padding: 0 0 2px;
  cursor: pointer;
}

/* ============ Testimonials ============ */
.testimonials { background: var(--white); padding: 112px 32px; }
.testimonials-inner { max-width: 1400px; margin: 0 auto; }
.testimonials h2 { font-size: 2.25rem; letter-spacing: -0.025em; margin-bottom: 64px; }
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; margin: 0 24px; }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.slide { flex: 0 0 100%; min-width: 0; padding-right: 32px; }
.t-card {
  background: var(--white);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.t-card .t-quote { font-size: 1.125rem; line-height: 1.625; margin-bottom: 32px; flex: 1; font-style: italic; }
.t-person { display: flex; align-items: center; gap: 16px; }
.t-person img { width: 56px; height: 56px; object-fit: cover; flex-shrink: 0; border-radius: 9999px; }
.t-person .t-name { font-weight: 500; }
.t-person .t-role { font-size: 0.875rem; color: var(--muted); }
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.carousel-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.carousel-btn.prev { left: 0; transform: translate(-16px, -50%); }
.carousel-btn.next { right: 0; transform: translate(16px, -50%); }
@media (min-width: 768px) {
  .testimonials h2 { font-size: 3rem; }
  .carousel-viewport { margin: 0 40px; }
  .slide { flex: 0 0 50%; }
  .carousel-btn.prev { transform: translate(-24px, -50%); }
  .carousel-btn.next { transform: translate(24px, -50%); }
}

/* ============ Writing ============ */
.writing { background: var(--white); padding: 64px 32px; }
.writing-inner { max-width: 1400px; margin: 0 auto; }
.writing h2 { font-size: 2.25rem; letter-spacing: -0.025em; margin-bottom: 16px; color: var(--black); }
.writing .sub { font-size: 1.125rem; max-width: 36rem; color: var(--black); opacity: 0.7; margin-bottom: 40px; }
.writing .sub a { color: var(--black); text-decoration: underline; text-decoration-color: rgba(0,0,0,0.3); }
.writing-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--black); color: var(--yellow); }
@media (min-width: 768px) {
  .writing h2 { font-size: 3rem; }
}

/* ============ Closing CTA ============ */
.closing { background: var(--yellow); padding: 96px 32px; }
.closing-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing .sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--black);
  opacity: 0.65;
  max-width: 520px;
  margin: 0 auto 44px;
}
.closing .btn-black { font-size: 0.9rem; letter-spacing: 0.1em; padding: 18px 40px; }

/* ============ Footer ============ */
.footer { background: var(--black); color: var(--white); padding: 64px 32px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-top .name { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 4px; color: var(--white); }
.footer-top .title {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-social { display: flex; align-items: center; gap: 24px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }
.footer-statement { font-size: 0.875rem; line-height: 1.625; margin-bottom: 16px; color: rgba(255,255,255,0.6); max-width: 720px; }
.footer-statement.solidarity { margin-bottom: 40px; color: rgba(255,255,255,0.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer-bottom p { margin: 0; line-height: 1.7; }
.footer-bottom button {
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; align-items: center; }
  .footer-bottom { flex-direction: row; }
}
