/* ==========================================================================
   Moore Visibility — style.css
   Pure CSS, no frameworks. Mobile-first.
   ========================================================================== */

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

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

ul[class],
ol[class] {
  list-style: none;
}

/* ---------- Tokens ---------- */
:root {
  --purple: #4A3570;
  --purple-bright: #6B52A3;
  --purple-deep: #321D54;
  --tint: #F0ECF8;
  --ink: #0A0A0A;
  --white: #FAFAFA;

  --ink-soft: #3D3A45;
  --line: #E3DDF0;
  --dark-bg: #150E20;

  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius: 14px;
  --radius-sm: 10px;

  --shadow-card: 0 14px 40px -18px rgba(50, 29, 84, 0.28);
  --shadow-header: 0 2px 24px -12px rgba(10, 10, 10, 0.18);

  --space-section: clamp(4.5rem, 9vw, 7.5rem);
  --container: 1120px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--purple);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--purple-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

a {
  color: var(--purple);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--purple-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.1rem);
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.2;
}

p {
  max-width: 62ch;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.section {
  padding-block: var(--space-section);
}

.section-tint {
  background: var(--tint);
}

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--ink-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 1em 1.7em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

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

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.on-dark .btn-primary {
  background: var(--white);
  color: var(--purple-deep);
}

.on-dark .btn-primary:hover {
  background: var(--tint);
  color: var(--purple-deep);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--purple);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  padding: 0.8em 1.3em;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Logo (the OO eye system) ---------- */
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

.logo:hover {
  color: var(--ink);
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--purple);
  padding-left: 0.1em;
}

.eye {
  position: relative;
  display: inline-block;
  width: 0.74em;
  height: 0.74em;
  margin: 0 0.025em;
  background: var(--purple);
  border-radius: 50%;
  vertical-align: baseline;
}

.pupil {
  position: absolute;
  left: 30%;
  top: 30%;
  width: 40%;
  height: 40%;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

/* Eyes blink now and then. Pairs share timing so they blink together. */
@keyframes blink {
  0%, 94%, 97.5%, 100% {
    transform: scaleY(1);
  }
  95.5% {
    transform: scaleY(0.08);
  }
}

.eye {
  animation: blink 9s ease-in-out infinite;
}

.big-eyes .eye {
  animation-duration: 7s;
  animation-delay: 1.2s;
}

/* Inverted treatment on dark backgrounds */
.on-dark .logo,
.on-dark .logo:hover {
  color: var(--white);
}

.on-dark .eye {
  background: var(--white);
}

.on-dark .pupil {
  background: var(--purple-deep);
}

.on-dark .logo-sub {
  color: var(--purple-bright);
}

/* Decorative oversized eyes (CTA band) */
.big-eyes {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.big-eyes .eye {
  width: 64px;
  height: 64px;
  margin: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-header);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.nav-links {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 12px 11px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding-block: 0.75rem 1.25rem;
}

.nav-open .nav-panel {
  display: block;
}

.nav-panel a {
  display: block;
  padding: 0.8rem 0.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--tint);
}

.nav-panel a:hover,
.nav-panel a.active {
  color: var(--purple);
}

.nav-panel .btn {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 860px) {
  .nav-toggle,
  .nav-panel {
    display: none;
  }

  .nav-open .nav-panel {
    display: none;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-links a {
    font-weight: 600;
    font-size: 0.97rem;
    text-decoration: none;
    color: var(--ink);
    transition: color 0.15s ease;
  }

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

  .nav-links a.active {
    color: var(--purple);
    box-shadow: 0 2px 0 0 var(--purple);
  }

  .nav-links .btn {
    padding: 0.78em 1.4em;
  }

  .nav-links a.btn-primary {
    color: var(--white);
    box-shadow: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(4.5rem, 11vw, 8.5rem) clamp(4.5rem, 10vw, 7.5rem);
}

.hero h1 {
  max-width: 21ch;
  margin-bottom: 1.6rem;
}

.hero .lead {
  max-width: 52ch;
  margin-bottom: 2.4rem;
}

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

.rotator {
  display: inline-block;
  position: relative;
  color: var(--purple);
  white-space: nowrap;
  box-shadow: inset 0 -0.13em 0 0 var(--tint), inset 0 -0.2em 0 0 var(--purple);
  transition: opacity 0.28s ease, width 0.32s ease;
  vertical-align: bottom;
}

.rotator.is-swapping {
  opacity: 0;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  max-width: 22ch;
  margin-bottom: 1.2rem;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.75rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-bright);
  box-shadow: var(--shadow-card);
}

.card h3 {
  font-size: 1.18rem;
}

.card p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

.card-link {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.card-link::after {
  content: " \2192";
}

.card-tag {
  position: absolute;
  top: -0.7rem;
  right: 1.1rem;
  background: var(--purple);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.75em;
  border-radius: 99px;
}

/* ---------- Dark section ---------- */
.section-dark {
  background: linear-gradient(160deg, var(--purple-deep) 0%, var(--dark-bg) 78%);
  color: var(--white);
}

.section-dark h2 {
  color: var(--white);
}

.section-dark .kicker {
  color: var(--purple-bright);
}

.section-dark p {
  color: rgba(250, 250, 250, 0.78);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 2.75rem;
}

@media (min-width: 820px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.why-item h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--purple-bright);
  border: 1.5px solid var(--purple-bright);
  border-radius: 99px;
  width: 2.1em;
  height: 2.1em;
  line-height: 2em;
  text-align: center;
  margin-bottom: 1.1rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--tint);
}

.cta-band .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-band h2 {
  max-width: 22ch;
  margin-bottom: 1rem;
}

.cta-band p {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

/* ---------- Services page ---------- */
.service {
  scroll-margin-top: 100px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 880px) {
  .service-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.service h2 {
  margin-bottom: 1.1rem;
}

.service .lead {
  margin-bottom: 1.5rem;
  font-size: 1.12rem;
}

.service-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.service-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  font-size: 0.99rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 0.62em;
  height: 0.62em;
  border-radius: 50%;
  background: var(--purple);
}

.service-list li::after {
  content: "";
  position: absolute;
  left: 0.21em;
  top: 0.67em;
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background: var(--white);
}

.service-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
}

.section-tint .service-aside {
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.service-aside h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.service-aside p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

.price-line {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--purple);
  margin-bottom: 1.4rem;
}

.price-line span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.15rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--purple);
  transition: transform 0.2s ease;
}

.faq-item[open] summary {
  color: var(--purple-deep);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 0 1.35rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- Steps (lead magnet page) ---------- */
.step-list {
  display: grid;
  gap: 1.4rem;
  counter-reset: step;
}

.step-list li {
  position: relative;
  padding-left: 3rem;
  counter-increment: step;
  color: var(--ink-soft);
}

.step-list li strong {
  color: var(--ink);
}

.step-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--purple);
  border: 1.5px solid var(--purple-bright);
  border-radius: 99px;
  width: 2.1em;
  height: 2.1em;
  line-height: 2em;
  text-align: center;
}

/* ---------- Work page ---------- */
.work-card .work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--tint), #E2D9F4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
  overflow: hidden;
}

.work-thumb .eye {
  width: 38px;
  height: 38px;
  margin: 0;
  opacity: 0.85;
}

.work-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.work-result {
  font-size: 0.93rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--tint);
  padding-top: 0.8rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 760px) {
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
}

.quote-card blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.quote-card blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 0.6;
  color: var(--purple-bright);
  margin-bottom: 0.7rem;
}

.quote-attr {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- About page ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}

@media (min-width: 880px) {
  .about-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 4.5rem;
  }
}

.about-body p + p {
  margin-top: 1.3rem;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--tint), #E2D9F4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--line);
}

.about-photo .big-eyes {
  margin-bottom: 0;
}

.about-photo figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.fact-list {
  margin-top: 2.25rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.fact-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.fact-list dt {
  font-weight: 600;
  color: var(--ink-soft);
}

.fact-list dd {
  text-align: right;
  font-weight: 600;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 880px) {
  .contact-layout {
    grid-template-columns: 1.3fr 1fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.form-grid {
  display: grid;
  gap: 1.3rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 0.45rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85em 1em;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107, 82, 163, 0.18);
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.form-status {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-status.show {
  display: block;
}

.form-status.ok {
  background: var(--tint);
  color: var(--purple-deep);
}

.form-status.err {
  background: #FBEAEA;
  color: #8C2B2B;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-aside {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}

.contact-aside h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-aside p {
  font-size: 0.97rem;
  color: var(--ink-soft);
}

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

.contact-aside .email-big {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 0.3rem;
  word-break: break-all;
}

/* ---------- Article / prose pages ---------- */
.prose {
  max-width: 70ch;
}

.prose h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  margin: 2.4rem 0 0.9rem;
}

.prose p + p {
  margin-top: 1.1rem;
}

.prose ul {
  margin: 1.1rem 0 1.1rem 1.3rem;
  display: grid;
  gap: 0.5rem;
  color: var(--ink-soft);
}

.prose .article-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  margin-top: 2.75rem;
  padding-top: 1.25rem;
}

.callout {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  margin-top: 2.4rem;
}

.callout h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

.callout p {
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-block: 3.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-tagline {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: rgba(250, 250, 250, 0.6);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.footer-col a {
  color: rgba(250, 250, 250, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col p {
  color: rgba(250, 250, 250, 0.82);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.14);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.5);
}

.footer-bottom a {
  color: rgba(250, 250, 250, 0.6);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .eye {
    animation: none;
  }
}
