/* ============================================
   EYO-FLOW — AI Automation Agency
   Redesigned April 2026
   Stack: HTML/CSS/JS + GSAP ScrollTrigger
   ============================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --color-black:      #0F0F0F;
  --color-bg:         #F7F6F2;
  --color-white:      #FFFFFF;
  --color-clay:       #C94B2C;
  --color-clay-light: #E8856A;
  --color-gray-mid:   #6B6B6B;
  --color-border:     #E8E7E3;
  --color-dark-bg:    #111008;

  --font: 'Bricolage Grotesque', 'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1160px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-black);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.section { padding: var(--section-pad) 0; }
.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}
.section--darker {
  background: var(--color-dark-bg);
  color: var(--color-white);
}
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: 16px;
  display: block;
}
.label--light { color: var(--color-clay-light); }

/* ---- TYPOGRAPHY ---- */
h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
p { color: var(--color-gray-mid); }
.text-white p { color: rgba(255,255,255,0.7); }
.text-white h1, .text-white h2, .text-white h3 { color: var(--color-white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--transition);
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--color-clay);
  color: var(--color-white);
}
.btn--primary:hover { background: #B83D21; }

.btn--ghost {
  background: transparent;
  color: var(--color-black);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-black);
  background: rgba(0,0,0,0.03);
}
.btn--ghost-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost-white:hover {
  border-color: rgba(255,255,255,0.6);
}
.btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announcement-bar a {
  color: var(--color-clay-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement-bar a:hover { color: var(--color-white); }

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(247,246,242,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 32px;
}
.nav__logo {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding-bottom: 2px;
}
.nav__logo-icon {
  width: auto;
  height: 84px;
  flex-shrink: 0;
}

@keyframes logoDrop {
  0%   { transform: translateY(-120%); opacity: 0; }
  60%  { transform: translateY(6px);   opacity: 1; }
  80%  { transform: translateY(-3px); }
  100% { transform: translateY(0);     opacity: 1; }
}

.logo__eyo {
  color: var(--color-black);
  display: inline-block;
  animation: logoDrop 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
.logo__flow {
  color: var(--color-clay);
  display: inline-block;
  animation: logoDrop 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
  opacity: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-mid);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--color-black); }
.nav__cta { flex-shrink: 0; }

/* ---- HERO ---- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,75,44,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,75,44,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,75,44,0.08);
  border: 1px solid rgba(201,75,44,0.2);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-clay);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-clay);
  flex-shrink: 0;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-clay);
}
.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--color-gray-mid);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__logos {
  margin-top: 60px;
}
.hero__logos-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray-mid);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.hero__logo-strip {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.hero__logo-strip span {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  opacity: 0.35;
  letter-spacing: -0.01em;
}

/* Nano Banana hero asset placeholder */
.hero__3d-asset {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 42vw, 560px);
  height: clamp(300px, 42vw, 560px);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,75,44,0.12), rgba(232,133,106,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* ---- HERO DOODLE DECORATIONS ---- */
.hero__doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.75;
  animation: doodleFloat 6s ease-in-out infinite alternate;
}
.hero__doodle--cloud {
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  animation-delay: 0s;
}
.hero__doodle--blob {
  right: 5%;
  top: 30%;
  width: 100px;
  animation-delay: 1.5s;
  animation-duration: 8s;
}
.hero__doodle--swirl {
  left: 4%;
  bottom: 18%;
  width: 70px;
  animation-delay: 0.8s;
  animation-duration: 7s;
}
@keyframes doodleFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(4px) rotate(-2deg); }
}
.hero__doodle--cloud {
  animation-name: doodleFloatCloud;
}
@keyframes doodleFloatCloud {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(-8px); }
  100% { transform: translateX(-50%) translateY(3px); }
}


/* ---- STATS BAR ---- */
.stats {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 0;
  background: var(--color-white);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat__number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-clay);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 14px;
  color: var(--color-gray-mid);
  font-weight: 500;
}

/* ---- SERVICES ---- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* 3D Flip Card */
.flip-card {
  perspective: 1000px;
  height: 420px;
  cursor: pointer;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform;
}
.flip-card:hover .flip-card__inner,
.flip-card:focus-within .flip-card__inner {
  transform: rotateY(180deg);
}

/* Shared face styles */
.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

/* FRONT */
.flip-card__front {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 32px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.flip-card__art {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  /* gentle float animation */
  animation: cardFloat 4s ease-in-out infinite;
}
.flip-card__art svg {
  width: 100%;
  height: 100%;
}
.flip-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-black);
  text-align: center;
  margin: 0;
}
.flip-card__hint {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-clay);
  opacity: 0.7;
}

/* Float keyframes — staggered per card */
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.flip-card:nth-child(2) .flip-card__art { animation-delay: -1.3s; }
.flip-card:nth-child(3) .flip-card__art { animation-delay: -2.6s; }

/* BACK */
.flip-card__back {
  background: linear-gradient(145deg, #ffffff 0%, #fdf7f5 60%, #fef3ef 100%);
  color: var(--color-black);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  border: 1px solid rgba(201,75,44,0.12);
  box-shadow: 0 20px 60px rgba(201,75,44,0.08), 0 4px 16px rgba(0,0,0,0.06);
}
.flip-card__back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-clay), #e8856a);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.flip-card__back-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.flip-card__back h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-black);
  margin-bottom: 10px;
}
.flip-card__back p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-gray-mid);
  margin-bottom: 18px;
}

/* Bullet list — reused on both sides */
.service-card__list {
  border-top: 1px solid rgba(201,75,44,0.15);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flip-card__front .service-card__list {
  border-top-color: var(--color-border);
}
.service-card__list li {
  font-size: 12px;
  color: #555550;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-clay);
  flex-shrink: 0;
}

/* ---- FLIP CARD PRICE TAG ---- */
.flip-card__tag {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-clay-light);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}

/* ---- WHO WE WORK WITH ---- */
/* ---- NICHE ROWS (who we work with) ---- */
.niche-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
}
.niche-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 0 48px;
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  align-items: start;
  transition: background var(--transition);
  cursor: default;
}
.niche-row:last-child { border-bottom: 1px solid var(--color-border); }
.niche-row:hover { background: rgba(201,75,44,0.03); }
.niche-row__index {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-clay);
  padding-top: 4px;
  opacity: 0.7;
}
.niche-row__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.25;
}
.niche-row__story {
  font-size: 14px;
  color: var(--color-gray-mid);
  line-height: 1.7;
  margin: 0;
}
.niche-row__story strong { color: var(--color-black); }
.niche-row__fix {
  padding-top: 4px;
}
.niche-row__fix p {
  font-size: 14px;
  color: var(--color-gray-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.niche-accent {
  color: var(--color-clay);
  font-weight: 700;
}
.niche-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.niche-flow span {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-mid);
  letter-spacing: 0.02em;
}
.niche-flow__arrow {
  color: var(--color-clay) !important;
  font-weight: 400 !important;
}
.niche-flow__end {
  color: var(--color-black) !important;
  font-weight: 700 !important;
}

/* ---- HOW WE WORK ---- */
.how-we-work { background: var(--color-white); }
.hww__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.hww__item { display: block; }
.hww__number {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-clay);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.hww__item h3 { margin-bottom: 12px; }

/* ---- CASE STUDIES ---- */
.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.cs-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  will-change: transform;
}
.cs-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: scale(1.02);
}
.cs-card__company {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-clay-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cs-card h3 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: clamp(18px, 2vw, 22px);
}
.cs-card__quote {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  border-left: 2px solid var(--color-clay);
  padding-left: 14px;
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.6;
}
.cs-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-clay-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.cs-card__link:hover { gap: 10px; }

/* ---- TESTIMONIALS ---- */
.testimonials { overflow: hidden; }
.testimonials__track {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}
.testimonials__slide {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,75,44,0.4); }
.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
}
.testimonial-card__role {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---- TOOLSTACK ---- */
.toolstack__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}
.tool-chip {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.tool-chip:hover {
  border-color: var(--color-clay);
  color: var(--color-clay);
  background: rgba(201,75,44,0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,75,44,0.1);
}
.tool-chip__logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---- FINAL CTA ---- */
.cta-section {
  text-align: center;
  padding: 140px 0 160px;
  overflow: visible;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 18px; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0;
  overflow: hidden;
  padding-bottom: 2px;
}
.footer__logo .logo__eyo,
.footer__logo .logo__flow {
  animation: none;
  opacity: 1;
  transform: none;
}
.footer__logo .logo__eyo {
  color: var(--color-white);
}
.footer__logo.animate .logo__eyo {
  animation: logoDrop 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
.footer__logo.animate .logo__flow {
  animation: logoDrop 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
  opacity: 0;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-white); }
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ---- HAMBURGER / MOBILE NAV ---- */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-black);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--color-clay); }
.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  color: var(--color-gray-mid);
  cursor: pointer;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero__3d-asset { display: none; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .flip-card { height: 380px; }
  .niche-row { grid-template-columns: 1fr; gap: 16px; }
  .niche-row__index { display: none; }
  .hww__grid { grid-template-columns: 1fr; gap: 32px; }
  .case-studies__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
}

/* ---- FOCUS INDICATORS (WCAG AA) ---- */
:focus-visible {
  outline: 2px solid var(--color-clay);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-clay);
  outline-offset: 3px;
}

/* ---- PREFERS REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
