/* styles.css */
:root {
  --matcha-900: #102218;
  --matcha-800: #183225;
  --matcha-700: #21462f;
  --matcha-600: #2f6a47;
  --matcha-500: #3f8f5f;
  --matcha-200: #cce9d8;
  --cream: #f7f5ef;
  --paper: #fcfbf8;
  --ink: #0f1e16;
  --muted: #3f584a;
  --gold: #bea26b;

  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --shadow-soft: 0 16px 40px rgba(17, 37, 26, 0.08);
  --shadow-deep: 0 28px 68px rgba(17, 37, 26, 0.16);
  --line: rgba(26, 60, 41, 0.15);

  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(63, 143, 95, 0.2), transparent 36%),
    radial-gradient(circle at 90% 12%, rgba(190, 162, 107, 0.13), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, var(--paper) 42%, #f4f3ed 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* Original diagonal phrase background */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
}

.bg-diag {
  position: absolute;
  inset: -65%;
  transform: rotate(-14deg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.bg-line {
  width: 160vw;
  text-align: center;
  font-family: "Syne", sans-serif;
  font-size: clamp(24px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(46, 139, 87, 0.09);
  white-space: nowrap;
  animation: drift 18s linear infinite;
}

.bg-line.alt {
  color: rgba(190, 162, 107, 0.1);
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes drift {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-30%);
  }
}

/* Floating emoji-style matcha and scissors */
.floating-icons {
  position: fixed;
  inset: -8%;
  pointer-events: none;
  z-index: -3;
  overflow: hidden;
}

.float-item {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: var(--x);
  top: var(--y);
  font-size: var(--size);
  line-height: 1;
  filter: drop-shadow(0 10px 18px rgba(13, 31, 22, 0.18));
  transform-origin: center;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.float-item::before {
  content: "";
  position: absolute;
  inset: -0.32em;
  border-radius: 999px;
  z-index: -1;
}

.float-item.cup-hot {
  opacity: 0.52;
}

.float-item.cup-hot::before {
  background:
    radial-gradient(circle at 50% 45%, rgba(70, 154, 96, 0.3), transparent 66%),
    radial-gradient(circle at 56% 75%, rgba(190, 162, 107, 0.22), transparent 68%);
}

.float-item.cup-iced {
  width: 0.84em;
  height: 1.12em;
  opacity: 0.5;
  border: 0.08em solid rgba(223, 244, 233, 0.64);
  border-top-width: 0.18em;
  border-radius: 0.12em 0.12em 0.22em 0.22em;
  background:
    linear-gradient(180deg, rgba(225, 241, 232, 0.78) 0 18%, rgba(201, 231, 214, 0.2) 18% 24%, transparent 24% 100%),
    linear-gradient(180deg, rgba(78, 149, 105, 0.5) 0 28%, rgba(19, 90, 55, 0.95) 28% 86%, rgba(26, 112, 69, 0.9) 86% 100%);
  box-shadow:
    inset 0.06em 0 0 rgba(255, 255, 255, 0.28),
    inset -0.05em 0 0 rgba(255, 255, 255, 0.12),
    0 0.16em 0.28em rgba(13, 31, 22, 0.22);
}

.float-item.cup-iced::before {
  background:
    radial-gradient(circle at 50% 48%, rgba(42, 118, 76, 0.28), transparent 64%),
    radial-gradient(circle at 58% 72%, rgba(24, 92, 58, 0.26), transparent 68%);
}

.float-item.cup-iced::after {
  content: "";
  position: absolute;
  width: 0.17em;
  height: 0.55em;
  top: -0.42em;
  left: 0.51em;
  border-radius: 0.18em;
  background: linear-gradient(180deg, rgba(214, 248, 229, 0.95), rgba(130, 198, 162, 0.9));
  transform: rotate(20deg);
  box-shadow: 0 0 0 0.03em rgba(21, 84, 53, 0.24);
}

.float-item.scissors {
  opacity: 0.22;
}

.float-item.scissors::before {
  background: radial-gradient(circle at 50% 50%, rgba(178, 187, 200, 0.2), transparent 68%);
}

.path-a {
  animation-name: drift-a, drift-bob;
  animation-duration: var(--dur), 5.8s;
  animation-delay: var(--delay), calc(var(--delay) * 0.4);
}

.path-b {
  animation-name: drift-b, drift-bob;
  animation-duration: var(--dur), 6.6s;
  animation-delay: var(--delay), calc(var(--delay) * 0.3);
}

.path-c {
  animation-name: drift-c, drift-bob;
  animation-duration: var(--dur), 5.2s;
  animation-delay: var(--delay), calc(var(--delay) * 0.5);
}

@keyframes drift-a {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }
  100% {
    transform: translate(108vw, -72vh) rotate(16deg);
  }
}

@keyframes drift-b {
  0% {
    transform: translate(0, 0) rotate(4deg);
  }
  100% {
    transform: translate(-104vw, -66vh) rotate(-14deg);
  }
}

@keyframes drift-c {
  0% {
    transform: translate(0, 0) rotate(2deg);
  }
  100% {
    transform: translate(92vw, -84vh) rotate(11deg);
  }
}

@keyframes drift-bob {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -6px;
  }
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.steam {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.22;
  animation: steamFloat 14s ease-in-out infinite;
}

.steam-a {
  width: 320px;
  height: 320px;
  left: -70px;
  top: 10%;
  background: rgba(63, 143, 95, 0.35);
}

.steam-b {
  width: 260px;
  height: 260px;
  right: 12%;
  top: 5%;
  background: rgba(190, 162, 107, 0.24);
  animation-delay: -3s;
}

.steam-c {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: 20%;
  background: rgba(63, 143, 95, 0.3);
  animation-delay: -6s;
}

@keyframes steamFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.06);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--matcha-500), var(--gold));
  z-index: 120;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, 0.84);
  border-bottom: 1px solid rgba(14, 35, 24, 0.08);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(16, 34, 24, 0.24);
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navlinks {
  justify-self: center;
  display: flex;
  gap: 22px;
}

.navlinks a {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  position: relative;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--matcha-600);
  transition: width 0.25s ease;
}

.navlinks a:hover::after {
  width: 100%;
}

.navcta {
  display: flex;
  gap: 10px;
}

.btn {
  border: 1px solid rgba(17, 45, 30, 0.16);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--matcha-600), var(--matcha-500));
  color: #fff;
  border: none;
  box-shadow: 0 14px 28px rgba(41, 109, 72, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
}

.btn-lg {
  padding: 13px 20px;
  border-radius: 16px;
}

.menu {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 40px;
  padding: 0;
}

.menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--matcha-900);
  margin: 5px auto;
}

.mobile {
  border-top: 1px solid rgba(17, 45, 30, 0.12);
  background: rgba(252, 251, 248, 0.96);
}

.mobile-inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.mobile-link {
  font-weight: 700;
  color: var(--muted);
}

.mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.hero {
  padding: 104px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: var(--muted);
}

.hero-copy h1 {
  margin: 12px 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
}

.hero-copy h1 span {
  display: block;
  color: var(--matcha-600);
}

.hero-sub {
  max-width: 560px;
  color: var(--muted);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.micro-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.hero-stats {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stat {
  min-width: 126px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat-top {
  font-weight: 800;
  font-size: 18px;
}

.rating-star {
  color: var(--gold);
  margin-left: 2px;
  text-shadow: 0 0 10px rgba(190, 162, 107, 0.5);
}

.stat-bot {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 700;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 246, 0.66));
  border: 1px solid rgba(17, 45, 30, 0.12);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -70px -40px auto;
  height: 220px;
  background: radial-gradient(circle at center, rgba(63, 143, 95, 0.24), transparent 70%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(17, 45, 30, 0.1);
  font-weight: 700;
}

.script-tag {
  font-family: "Caveat", cursive;
  font-size: 28px;
  color: var(--matcha-600);
}

.carousel {
  position: relative;
  overflow: hidden;
}

.track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide {
  flex: 0 0 100%;
  padding: 14px;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(17, 45, 30, 0.22);
  filter: saturate(1.04) contrast(1.04);
}

.stamp {
  position: absolute;
  right: 16px;
  bottom: 20px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(16, 34, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
}

.featured-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 16px;
}

.iconbtn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(16, 34, 24, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.dot.is-active {
  background: var(--matcha-600);
  transform: scale(1.25);
}

.section {
  padding: 78px 0;
}

.section-head h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.lookbook-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.look {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.look-lg {
  grid-column: span 3;
  grid-row: span 2;
}

.look-wide {
  grid-column: span 2;
}

.look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.look-overlay {
  position: absolute;
  inset: auto 12px 12px;
  background: rgba(9, 24, 16, 0.62);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  transform: translateY(12px);
  opacity: 0;
  transition: 0.26s ease;
}

.look-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.84);
}

.look strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.look:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.look:hover .look-overlay {
  transform: translateY(0);
  opacity: 1;
}

.services {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.svc {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(17, 45, 30, 0.14);
}

.svc-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.svc h3 {
  margin: 0;
  font-size: 18px;
}

.svc span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.svc p {
  margin: 10px 0 8px;
  color: var(--matcha-600);
  font-weight: 700;
}

.svc small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lab-card {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.style-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.chip.is-active {
  background: linear-gradient(120deg, var(--matcha-600), var(--matcha-500));
  color: #fff;
  border-color: transparent;
}

.compare {
  position: relative;
  height: min(60vw, 500px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.compare-base,
.compare-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
}

.compare-range {
  position: absolute;
  inset: auto 14px 14px;
  width: calc(100% - 28px);
}

.compare-label {
  position: absolute;
  top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8, 20, 14, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
}

.compare-label-left {
  left: 12px;
}

.compare-label-right {
  right: 12px;
}

.hours-card,
.loc-card,
.quote-card,
.heart-card {
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(18, 39, 28, 0.08);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-label,
.hours-value {
  font-weight: 700;
}

.hours-value {
  color: var(--muted);
}

.biglove {
  position: relative;
}

.biglove::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 220px;
  background: radial-gradient(circle at center, rgba(63, 143, 95, 0.16), transparent 70%);
  pointer-events: none;
}

.biglove-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-top: 12px;
}

.quote-card p {
  margin: 0;
  font-size: clamp(20px, 3.4vw, 34px);
  font-family: "Syne", sans-serif;
  line-height: 1.2;
}

#quoteMeta {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.review-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 700;
  color: var(--matcha-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.heart-card {
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.45), transparent 44%),
    linear-gradient(140deg, rgba(44, 99, 67, 0.92), rgba(16, 44, 30, 0.94));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.heart-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 162, 107, 0.4), transparent 65%);
}

.heart-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f8efdd;
  background: rgba(190, 162, 107, 0.22);
  border: 1px solid rgba(252, 232, 190, 0.45);
}

.heart-frame {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.heart-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.heart-card p {
  margin: 12px 0 2px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.loc-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.loc-row {
  margin-bottom: 10px;
}

.loc-k {
  font-weight: 700;
}

.loc-v {
  margin-top: 4px;
  color: var(--muted);
}

.loc-link {
  color: var(--matcha-600);
  font-weight: 700;
}

.loc-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map {
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 260px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.footer {
  margin-top: 60px;
  padding: 34px 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.1), transparent 35%),
    linear-gradient(110deg, #153224, #244b35 55%, #2a6544);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-line {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 26px;
}

.foot-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.foot-links a {
  font-weight: 700;
}

.foot-sub {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  will-change: transform;
}

@media (max-width: 1020px) {
  .navlinks,
  .navcta {
    display: none;
  }

  .menu {
    display: block;
    justify-self: end;
  }

  .hero-grid,
  .loc-grid,
  .biglove-grid {
    grid-template-columns: 1fr;
  }

  .slide img {
    height: 430px;
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .look,
  .look-lg,
  .look-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding-top: 88px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 13vw, 52px);
  }

  .hero-actions {
    gap: 8px;
  }

  .slide img {
    height: 360px;
  }

  .stat {
    min-width: 108px;
  }

  .compare {
    height: 300px;
  }

  .float-item {
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
