* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(135deg, #fdfaf7 0%, #f8f2eb 100%);
  color: #1e1e1e;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(201, 122, 93, 0.15);
  border-radius: 50%;
  animation: float 25s infinite linear;
  box-shadow: 0 0 20px rgba(201, 122, 93, 0.08);
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0.4); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-150px) scale(0.8); opacity: 0; }
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 250, 247, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,122,93,0.12);
  transition: all 0.5s ease;
}

header.scrolled {
  padding: 20px 6%;
  background: rgba(253, 250, 247, 0.96);
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.logo {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: #c97a5d;
  animation: breathe 4s infinite ease-in-out;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

nav a {
  margin-left: 40px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #3a3a3a;
  transition: all 0.35s ease;
}

nav a:hover {
  color: #c97a5d;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #3a3a3a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  height: 100vh;
  min-height: 800px;
  background: url('../images/hero-storefront.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,30,30,0.45), rgba(30,30,30,0.25));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 6%;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUpHero 1.6s forwards 0.5s;
}

@keyframes fadeUpHero {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -3px;
  color: white;
  margin-bottom: 0.25em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 18px 48px;
  background: #c97a5d;
  color: white;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.45s cubic-bezier(0.22,1,0.36,1);
  margin: 0 18px;
  box-shadow: 0 8px 30px rgba(201,122,93,0.3);
}

.btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(201,122,93,0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
}

section {
  padding: 160px 6% 140px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.4s cubic-bezier(0.22,1,0.36,1);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 3.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5rem;
  color: #c97a5d;
  letter-spacing: -1px;
}

.collection {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.collection .item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 420px);
}

.item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.6s cubic-bezier(0.22,1,0.36,1);
  opacity: 0;
  transform: translateY(80px);
}

.item.visible {
  opacity: 1;
  transform: translateY(0);
}

.item:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 30px 70px rgba(201,122,93,0.25);
}

.item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}

.item:hover img {
  transform: scale(1.12);
}

.item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(to top, rgba(30,30,30,0.9), transparent);
  color: white;
  transform: translateY(80%);
  opacity: 0;
  transition: all 0.6s ease;
}

.item:hover .item-info {
  transform: translateY(0);
  opacity: 1;
}

.item h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5em;
}

.locations {
  text-align: center;
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  color: #4a4a4a;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.35rem;
  color: #4a4a4a;
  font-weight: 300;
}

.contact {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 1.2rem;
}

.contact-btn {
  min-width: 180px;
  padding: 16px 26px;
  border-radius: 999px;
  color: white;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.contact-btn span {
  display: grid;
  line-height: 1.2;
}

.contact-btn small {
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.86;
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

.contact-btn:focus-visible {
  outline: 3px solid rgba(201,122,93,0.35);
  outline-offset: 4px;
}

.contact-btn-whatsapp {
  background: #25d366;
}

.contact-btn-whatsapp:hover {
  background: #1fb85a;
}

.contact-btn-instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
}

.contact-btn-instagram:hover {
  background: linear-gradient(135deg, #e87420 0%, #c92570 45%, #6f2d98 100%);
}

.contact-btn-tiktok {
  background: #111;
}

.contact-btn-tiktok:hover {
  background: #000;
}

footer {
  text-align: center;
  padding: 100px 20px 140px;
  color: #777;
  font-size: 1.05rem;
  border-top: 1px solid rgba(201,122,93,0.15);
}

@media (max-width: 768px) {
  header {
    position: absolute;
    padding: 20px 6%;
    background: rgba(253, 250, 247, 0.9);
  }

  header.scrolled {
    padding: 20px 6%;
    background: rgba(253, 250, 247, 0.9);
    box-shadow: none;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 10px 6% 18px;
    background: rgba(253, 250, 247, 0.98);
    border-bottom: 1px solid rgba(201,122,93,0.12);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav a {
    margin-left: 0;
    padding: 12px 0;
    font-size: 1rem;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    background-attachment: scroll;
    background-position: center center;
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero h1 { font-size: clamp(4rem, 15vw, 8rem); }
  .hero p { font-size: 1.4rem; }

  .btn {
    padding: 15px 26px;
    margin: 8px 6px;
    font-size: 1rem;
  }

  section { padding: 110px 6% 100px; }
  h2 { font-size: 3rem; }
  .collection {
    grid-template-columns: minmax(0, 420px);
    gap: 36px;
  }

  .collection .item:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }
}
