/* ================================================================
   SANTA CRUZ UTILITY — Professional Utility Contractor Website
   ================================================================ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --brand: #1a5f2a;
  --brand-light: #2a8c42;
  --brand-dark: #0f3d1a;
  --brand-50: #e8f5ec;
  --brand-100: #c8e6d0;

  /* Accent */
  --accent: #d4a017;
  --accent-light: #f0c846;

  /* Neutrals */
  --gray-50: #f8faf9;
  --gray-100: #f1f4f3;
  --gray-200: #e2e7e5;
  --gray-300: #c8d0cd;
  --gray-400: #97a49f;
  --gray-500: #6b7a73;
  --gray-600: #4a5650;
  --gray-700: #333d38;
  --gray-800: #1e2723;
  --gray-900: #0d1310;

  --white: #ffffff;
  --black: #0a0f0c;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container: 1200px;

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.16);

  /* Transition */
  --ease: cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ─── TYPOGRAPHY HELPERS ─── */
.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-accent { color: var(--brand); }

.section-sub {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.section-header--center { text-align: center; margin-bottom: 60px; }
.section-header--center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg { flex-shrink: 0; }

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,95,42,.25);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--brand-50);
  transform: translateY(-2px);
}

/* ─── FLAG BANNER ─── */
.flag-banner {
  position: absolute;
  top: 0;
  right: 40px;
  z-index: 1001;
  width: 90px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  pointer-events: none;
}

.flag-svg {
  width: 100%;
  height: auto;
  display: block;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

@media (min-width: 769px) {
  .flag-banner {
    width: 120px;
    right: 60px;
  }
}

@media (min-width: 1200px) {
  .flag-banner {
    width: 140px;
    right: 80px;
  }
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all .35s var(--ease);
}

.nav--scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.nav--scrolled .nav__links a { color: var(--gray-700); }
.nav--scrolled .nav__links a:hover { color: var(--brand); }
.nav--scrolled .nav__phone { color: var(--gray-700); }
.nav--scrolled .nav__logo-icon { background: var(--brand); color: var(--white); }
.nav--scrolled .nav__logo-text { color: var(--gray-800); }
.nav--scrolled .nav__hamburger span { background: var(--gray-800); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.nav__logo-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--brand);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.nav__logo-text {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  color: var(--white);
  transition: color .3s var(--ease);
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width .25s var(--ease);
}

.nav__links a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__phone {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color .2s;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,12,.88) 0%,
    rgba(10,15,12,.7) 40%,
    rgba(10,15,12,.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.25);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__accent {
  color: var(--accent-light);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats Bar */
.hero__stats {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px 40px;
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255,255,255,.12);
}

.stat__value {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.stat__label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ─── ABOUT ─── */
.about {
  padding: var(--section-py) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  height: 540px;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 400px;
}

.about__img--accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 280px;
  border: 5px solid var(--white);
}

.about__badge-card {
  position: absolute;
  bottom: 80px;
  left: -10px;
  background: var(--brand);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.about__badge-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: .7;
}

.about__badge-text {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
}

.about__lead {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.75;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
}

.about__list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--brand-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-top: 2px;
}

.about__list strong {
  color: var(--gray-800);
}

/* ─── SERVICES ─── */
.services {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: var(--brand);
  border-color: var(--brand);
  color: rgba(255,255,255,.85);
}

.service-card--featured::before { display: none; }

.service-card--featured .service-card__title { color: var(--white); }
.service-card--featured .service-card__icon { background: rgba(255,255,255,.15); color: var(--white); }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all .3s var(--ease);
}

.service-card__icon--water { background: #e3f2fd; color: #1565c0; }
.service-card__icon--sewer { background: #fce4ec; color: #c62828; }
.service-card__icon--electric { background: #fff3e0; color: #e65100; }
.service-card__icon--gas { background: #fff8e1; color: #f57f17; }
.service-card__icon--fire { background: #ffebee; color: #b71c1c; }
.service-card__icon--storm { background: #e0f2f1; color: #00695c; }
.service-card__icon--trench { background: #efebe9; color: #4e342e; }
.service-card__icon--road { background: #e8eaf6; color: #283593; }
.service-card__icon--package { background: rgba(255,255,255,.15); color: var(--white); }

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
}

.service-card__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  transition: gap .2s;
}

.service-card__link:hover { text-decoration: underline; }

/* ─── GALLERY / WORK ─── */
.work {
  padding: var(--section-py) 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
}

.gallery__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

/* ─── WHY US ─── */
.why {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.why__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 40px;
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--brand-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.why__feature strong {
  display: block;
  font-size: 16px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.why__feature p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why__stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s var(--ease);
}

.why__stat-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.why__stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

.why__stat-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.why__stat-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── CTA BAND ─── */
.cta-band {
  padding: 80px 0;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-band__text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cta-band__text p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
}

.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact {
  padding: var(--section-py) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact__lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--brand-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.contact__detail-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

a.contact__detail-value:hover { color: var(--brand); }

/* ─── CONTACT CTA CARD ─── */
.contact__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__cta-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.contact__cta-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin: 0 auto 28px;
}

.contact__cta-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.contact__cta-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--gray-900);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer .nav__logo-icon {
  background: var(--brand);
  color: var(--white);
}

.footer .nav__logo-text {
  color: var(--white);
}

.footer__tagline {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.6;
}

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

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.footer__col li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray-500);
}

.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav__mobile-overlay.active { display: flex; }

.nav__mobile-overlay a {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-800);
  transition: color .2s;
}

.nav__mobile-overlay a:hover { color: var(--brand); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__images { height: 380px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px; }
  .stat:not(:last-child)::after { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 1; }
  .about__images { height: 320px; }
  .about__img--main { width: 85%; height: 300px; }
  .about__img--accent { width: 55%; height: 200px; }
  .hero__content { padding-top: 120px; padding-bottom: 60px; }
  .contact__form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 38px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why__stats { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
