.hero {
  background: var(--cream);
  padding: var(--section-py) var(--section-px);
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 58px;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--ocre);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.phone {
  width: 220px;
  aspect-ratio: 9 / 19.5;
  background: var(--lavender);
  border: 3px solid var(--text-dark);
  border-radius: 36px;
  box-shadow: 8px 16px 40px rgba(0,0,0,.18);
  overflow: hidden;
  position: absolute;
  flex-shrink: 0;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

@keyframes floatBack {
  0%, 100% { transform: rotate(-3deg) translateX(30px)  translateY(0px); }
  50%       { transform: rotate(-3deg) translateX(30px)  translateY(-10px); }
}

@keyframes floatFront {
  0%, 100% { transform: rotate(2deg)  translateX(-30px) translateY(0px); }
  50%       { transform: rotate(2deg)  translateX(-30px) translateY(-10px); }
}

.phone-back {
  z-index: 1;
  animation: floatBack 4s ease-in-out 1s infinite;
}

.phone-front {
  z-index: 2;
  animation: floatFront 4.5s ease-in-out 1.35s infinite;
}

@media (max-width: 1024px) {
  .hero-title { font-size: 46px; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
  }
  .hero-title { font-size: 38px; }
  .hero-desc  { max-width: 100%; }
  .hero-stores { flex-direction: column; }

  .hero-phones { height: 340px; }
  .phone { width: 160px; }

  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-number { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
