:root {
  --bg-dark: #060606;
  --bg-dark-2: #0d1322;
  --bg-dark-3: #111827;
  --white: #ffffff;
  --text: #d8d8d8;
  --text-soft: #b5b5b5;
  --black: #121212;
  --red: #ff143c;
  --red-dark: #d90e32;
  --gray-light: #f1f1f1;
  --gray-medium: #e5e5e5;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s ease;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-content {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  min-width: 230px;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), #570010);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-text span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.topbar-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 220px;
}

.location-item i {
  color: var(--red);
  margin-top: 4px;
  font-size: 1.1rem;
}

.location-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.location-item span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* HEADER / HERO */
.header {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.62)),
    url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.75) 0%, rgba(8, 8, 8, 0.42) 100%);
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 2;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-logo span {
  color: var(--red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-whats {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #5aff75;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.04);
}

.btn-whats:hover {
  transform: translateY(-2px);
  background: rgba(90, 255, 117, 0.08);
}

.btn-whats i {
  font-size: 1.7rem;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 30px;
  padding: 30px 0 80px;
}

.hero-tag,
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff7a90;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.9rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 620px;
  margin-bottom: 18px;
}

.hero p {
  max-width: 620px;
  color: #f0f0f0;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  background: linear-gradient(145deg, #f1d18e, #c99d4d);
  border-radius: 24px;
  padding: 30px 34px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: perspective(1000px) rotateY(-10deg) rotateX(4deg);
  text-align: center;
  position: relative;
}

.hero-badge::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 8%;
  width: 84%;
  height: 26px;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(15px);
  border-radius: 50%;
}

.hero-badge-top {
  display: block;
  color: #3d2c10;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge-main {
  display: block;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow:
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    2px 2px 0 #fff,
    0 10px 18px rgba(0, 0, 0, 0.15);
}

.hero-badge-bottom {
  display: block;
  margin-top: 8px;
  color: #402d10;
  font-weight: 700;
  text-transform: lowercase;
}

/* TITLES */
.section-title {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 55px;
}

.section-title h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--text-soft);
  font-size: 1rem;
}

/* CATEGORIES */
.categories {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(rgba(8, 12, 24, 0.9), rgba(8, 12, 24, 0.94)),
    url("https://images.unsplash.com/photo-1561715276-a2d087060f1d?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

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

.category-card {
  border: 1px solid rgba(255, 20, 60, 0.6);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  transition: var(--transition);
  min-height: 420px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.category-image {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 24px;
  border-radius: 20px;
  position: relative;
}

.category-image::before {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  background: var(--red);
  border-radius: 20px;
  z-index: 0;
}

.category-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.category-content {
  text-align: center;
}

.category-content h3 {
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.category-content p {
  color: #dddddd;
}

/* CELLAR */
.cellar {
  background: var(--gray-light);
  color: var(--black);
  padding: 110px 0;
  position: relative;
}

.cellar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(175deg, #0d1322 49%, var(--gray-light) 50%);
}

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

.cellar-frame {
  max-width: 560px;
  position: relative;
  border-radius: 28px;
}

.cellar-frame::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 100%;
  height: 100%;
  background: var(--red);
  border-radius: 28px;
}

.cellar-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.cellar-text h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cellar-text p {
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 28px;
}

.cellar-highlight {
  border-right: 1px solid #ccc;
  padding-right: 26px;
  margin-bottom: 28px;
}

.cellar-highlight strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 900;
}

/* ABOUT */
.about {
  padding: 110px 0;
  background: #070d1a;
}

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

.about-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 20, 60, 0.5);
}

.about-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 18px;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.about-card p {
  color: var(--text-soft);
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, #0b0b0b, #171717);
  padding: 70px 0;
}

.cta-band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-band-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-band-content p {
  color: var(--text-soft);
}

/* CONTACT */
.contact {
  padding: 110px 0;
  background: #0c1220;
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 20, 60, 0.5);
}

.contact-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 14px;
}

.contact-card h3 {
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-soft);
}

/* FOOTER */
.footer {
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-content p {
  color: #bcbcbc;
  font-size: 0.95rem;
}

.footer-content a {
  font-weight: 700;
}

/* FLOATING BUTTONS */
.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1000;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
}

.floating-whatsapp {
  bottom: 92px;
  background: #25d366;
  color: white;
  font-size: 1.75rem;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
}

.scroll-top {
  bottom: 22px;
  border: 1px solid var(--red);
  background: #fff;
  color: var(--red);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--red);
  color: white;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: white;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* RESPONSIVE */
@media (max-width: 1150px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1,
  .hero p {
    max-width: 760px;
  }

  .cellar-grid,
  .categories-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .topbar-content {
    min-height: auto;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-locations {
    justify-content: flex-start;
  }

  .navbar {
    padding: 18px 0;
    min-height: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .desktop-whats {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(280px, 100%);
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

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

  .cellar-grid,
  .categories-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cellar-text {
    order: 2;
  }

  .cellar-image {
    order: 1;
  }

  .cellar-highlight {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .header {
    min-height: auto;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 70px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .category-card {
    min-height: auto;
  }

  .section-title h2 {
    line-height: 1.05;
  }

  .floating-whatsapp,
  .scroll-top {
    right: 16px;
    width: 52px;
    height: 52px;
  }
}