/* ═══════════════════════════════════════════════════════════════
   BUDDY HAIR SALON — Design H: LAYERED DEPTH
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --color-bg: #F0EDE7;
  --color-glass: rgba(255, 253, 248, 0.65);
  --color-glass-border: rgba(255, 253, 248, 0.35);
  --color-text: #1E1C18;
  --color-text-muted: #5A574E;
  --color-accent: #9B7B5C;
  --color-accent-light: #D4C4AD;
  --color-bokeh: rgba(155, 123, 92, 0.15);

  --font-display: 'Playfair Display', serif;
  --font-body: 'Shippori Mincho', serif;
  --font-label: 'DM Sans', sans-serif;

  --text-hero: clamp(3.2rem, 1.5rem + 6vw, 7rem);
  --text-section: clamp(2rem, 1rem + 3.5vw, 4.5rem);
  --text-heading: clamp(1.6rem, 1rem + 2vw, 2.8rem);
  --text-body: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
  --text-label: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);

  --space-section: clamp(6rem, 4rem + 8vw, 14rem);
  --radius-card: 18px;
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Glass Card Base ─── */
.glass-card {
  background: var(--color-glass);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-card);
  box-shadow:
    0 8px 32px rgba(30, 28, 24, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.glass-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 1em;
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  border-radius: 8px;
  color: var(--color-text-muted);
}

/* ─── Floating Card Animation ─── */
.floating-card {
  animation: gentleFloat var(--float-dur, 4s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) rotate(var(--card-rotate, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--card-rotate, 0deg)); }
}

/* ═══════════════════════════════════════════════════════════════
   BOKEH PARTICLE LAYER
   ═══════════════════════════════════════════════════════════════ */
.bokeh-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.bokeh {
  position: absolute;
  border-radius: 50%;
  background: var(--color-bokeh);
  filter: blur(1px);
  animation: bokehRise linear infinite;
  will-change: transform, opacity;
}

.bokeh--1 { width: 18px; height: 18px; left: 8%;  bottom: -30px; animation-duration: 14s; animation-delay: 0s;    opacity: 0.6; }
.bokeh--2 { width: 28px; height: 28px; left: 22%; bottom: -40px; animation-duration: 18s; animation-delay: 2s;    opacity: 0.4; }
.bokeh--3 { width: 14px; height: 14px; left: 38%; bottom: -20px; animation-duration: 12s; animation-delay: 5s;    opacity: 0.7; }
.bokeh--4 { width: 22px; height: 22px; left: 55%; bottom: -35px; animation-duration: 16s; animation-delay: 1s;    opacity: 0.5; }
.bokeh--5 { width: 32px; height: 32px; left: 70%; bottom: -45px; animation-duration: 20s; animation-delay: 4s;    opacity: 0.35; }
.bokeh--6 { width: 12px; height: 12px; left: 82%; bottom: -20px; animation-duration: 11s; animation-delay: 7s;    opacity: 0.65; }
.bokeh--7 { width: 20px; height: 20px; left: 45%; bottom: -30px; animation-duration: 15s; animation-delay: 3s;    opacity: 0.45; }
.bokeh--8 { width: 16px; height: 16px; left: 90%; bottom: -25px; animation-duration: 13s; animation-delay: 6s;    opacity: 0.55; }

@keyframes bokehRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: var(--bokeh-opacity, 0.5);
  }
  90% {
    opacity: var(--bokeh-opacity, 0.5);
  }
  100% {
    transform: translateY(calc(-100vh - 60px)) translateX(30px) scale(0.7);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__back {
  position: absolute;
  inset: -40px;
  z-index: 1;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.92);
}

.hero__mid {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card {
  text-align: center;
  padding: clamp(2.5rem, 2rem + 3vw, 5rem) clamp(2rem, 1.5rem + 4vw, 6rem);
  max-width: 520px;
}

.hero__logo {
  width: clamp(100px, 15vw, 180px);
  height: auto;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.8rem + 0.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-accent);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--color-accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero__scroll-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════════
   CONCEPT
   ═══════════════════════════════════════════════════════════════ */
.concept {
  position: relative;
  padding: var(--space-section) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.concept__bg {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 60%;
  height: 120%;
  z-index: 1;
}

.concept__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.95);
  border-radius: 12px;
}

.concept__content {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.concept__card {
  max-width: 520px;
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  --float-dur: 4s;
}

.concept__label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}

.concept__heading {
  font-family: var(--font-body);
  font-size: var(--text-heading);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.concept__text {
  font-size: var(--text-body);
  line-height: 2;
  color: var(--color-text-muted);
}

.concept__accent-line {
  position: absolute;
  background: var(--color-accent-light);
  border-radius: 2px;
}

.concept__accent-line--1 {
  width: 120px;
  height: 2px;
  right: 35%;
  top: 15%;
  opacity: 0.4;
}

.concept__accent-line--2 {
  width: 2px;
  height: 80px;
  left: 55%;
  bottom: 10%;
  opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════════
   STYLIST
   ═══════════════════════════════════════════════════════════════ */
.stylist {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.stylist__bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 5rem + 12vw, 20vw);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.stylist__content {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
}

.stylist__photo-wrap {
  flex: 0 0 45%;
  max-width: 420px;
}

.stylist__photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(30, 28, 24, 0.15);
}

.stylist__card {
  flex: 1;
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
  margin-left: -8%;
  --float-dur: 5s;
}

.stylist__label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.stylist__name {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.stylist__name-en {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.stylist__bio {
  font-size: var(--text-body);
  line-height: 2;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   STYLE GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.gallery__section-label {
  position: absolute;
  top: 5%;
  right: 5%;
  font-family: var(--font-display);
  font-size: clamp(5rem, 3rem + 8vw, 14vw);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.gallery__grid {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: start;
}

.gallery__item:nth-child(1) { margin-top: 0; }
.gallery__item:nth-child(2) { margin-top: 3rem; }
.gallery__item:nth-child(3) { margin-top: 1.5rem; }

.gallery__card {
  padding: 0.75rem;
  overflow: visible;
  transform: rotate(var(--card-rotate, 0deg));
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
  cursor: default;
}

.gallery__card:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.02);
  box-shadow:
    0 24px 64px rgba(30, 28, 24, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.gallery__img-wrap {
  overflow: hidden;
  border-radius: 12px;
  line-height: 0;
}

.gallery__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery__card:hover .gallery__img {
  transform: scale(1.04);
}

.gallery__card-label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.8rem 0 0.3rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.divider {
  position: relative;
  height: clamp(50vh, 40vh + 10vw, 70vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.divider__bg {
  position: absolute;
  inset: -30px;
  z-index: 1;
}

.divider__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(240, 237, 231, 0.3) 0%,
    rgba(30, 28, 24, 0.25) 50%,
    rgba(240, 237, 231, 0.3) 100%
  );
  z-index: 2;
}

.divider__quote-card {
  position: relative;
  z-index: 10;
  padding: clamp(1.5rem, 1rem + 2vw, 3rem) clamp(2rem, 1.5rem + 4vw, 5rem);
  text-align: center;
  background: rgba(255, 253, 248, 0.55);
}

.divider__quote {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 0.8rem + 1.2vw, 1.8rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════════
   SPACE (3D Perspective)
   ═══════════════════════════════════════════════════════════════ */
.space {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.space__section-label {
  position: absolute;
  top: 8%;
  left: 5%;
  font-family: var(--font-display);
  font-size: clamp(5rem, 3rem + 8vw, 14vw);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.space__perspective {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  min-height: 400px;
}

.space__item {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out-expo);
}

.space__item--back {
  transform: translateZ(-80px) scale(1.08);
  margin-top: 3rem;
  z-index: 1;
}

.space__item--mid {
  transform: translateZ(0);
  z-index: 3;
}

.space__item--front {
  transform: translateZ(60px) scale(0.95);
  margin-top: -2rem;
  z-index: 5;
}

.space__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(30, 28, 24, 0.12);
}

.space__item .glass-tag {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* ═══════════════════════════════════════════════════════════════
   MENU
   ═══════════════════════════════════════════════════════════════ */
.menu {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.menu__bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 5rem + 12vw, 20vw);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.menu__card {
  position: relative;
  z-index: 5;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) clamp(2rem, 1.5rem + 3vw, 4.5rem);
  --float-dur: 6s;
}

.menu__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  color: var(--color-text);
}

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

.menu__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(155, 123, 92, 0.12);
}

.menu__row:last-child {
  border-bottom: none;
}

.menu__item {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
}

.menu__price {
  font-family: var(--font-label);
  font-size: var(--text-body);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  white-space: nowrap;
  margin-left: 1rem;
}

.menu__note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   ACCESS + CTA
   ═══════════════════════════════════════════════════════════════ */
.access {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.access__wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  align-items: start;
}

.access__info {
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  --float-dur: 5s;
}

.access__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.2rem + 1.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.access__address p {
  font-size: var(--text-body);
  line-height: 2;
  margin-bottom: 0.6rem;
}

.access__detail {
  display: flex;
  gap: 1em;
}

.access__label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  min-width: 5em;
  flex-shrink: 0;
}

.access__cta {
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
  text-align: center;
  margin-top: 1.5rem;
  --float-dur: 4s;
  --float-delay: 0.5s;
}

.access__cta-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.access__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-label);
  font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-accent);
  padding: 0.9em 2em;
  border-radius: 100px;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
  box-shadow: 0 6px 24px rgba(155, 123, 92, 0.25);
}

.access__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(155, 123, 92, 0.35);
}

.access__cta-btn:active {
  transform: translateY(-1px);
}

.access__cta-icon {
  font-size: 0.9em;
}

.access__cta-hours {
  margin-top: 1rem;
  font-family: var(--font-label);
  font-size: var(--text-label);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 2rem 0 3rem;
}

.footer__strip {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__logo {
  width: 80px;
  height: auto;
  opacity: 0.6;
}

.footer__copy {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ENTRANCE ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .stylist__content {
    flex-direction: column;
    text-align: center;
  }

  .stylist__photo-wrap {
    flex: 0 0 auto;
    max-width: 320px;
    margin: 0 auto;
  }

  .stylist__card {
    margin-left: 0;
    margin-top: -2rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3) {
    margin-top: 0;
  }

  .space__perspective {
    grid-template-columns: 1fr;
    perspective: none;
    gap: 2rem;
  }

  .space__item--back,
  .space__item--mid,
  .space__item--front {
    transform: none;
    margin-top: 0;
  }

  .access__wrap {
    grid-template-columns: 1fr;
  }

  .access__cta {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .concept__bg {
    position: relative;
    width: 100%;
    height: 50vw;
    right: auto;
    top: auto;
    margin-bottom: -3rem;
  }

  .concept {
    flex-direction: column;
  }

  .concept__card {
    max-width: 100%;
    margin: 0 5%;
  }

  .hero__card {
    padding: 2rem 1.5rem;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .floating-card {
    animation: none;
  }

  .bokeh-layer {
    display: none;
  }

  .hero__scroll-line {
    animation: none;
    opacity: 0.6;
  }

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

  .gallery__card,
  .gallery__card:hover {
    transform: none;
    transition: none;
  }
}
