:root {
  --dm-bordeaux: #7b2825;
  --dm-bordeaux-dark: #5a1c1a;
  --dm-gold: #f2c26b;
  --dm-cream: #fdf7f2;
  --dm-dark: #1f1b1a;
  --dm-muted: #777;
  --dm-radius-lg: 1.5rem;
  --dm-radius-md: 1rem;
  --dm-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.18);
  --dm-transition-fast: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background-color: #fff;
  scroll-behavior: smooth;
}

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

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

a:hover {
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-light {
  background: #fff;
}

.section-dark {
  background: #171514;
  color: #f7f2ea;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  text-align: center;
  margin: 0 0 0.75rem;
}

.section-subtitle {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  color: #d3c9bf;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 21, 20, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(242, 194, 107, 0.35);
}

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

.brand-name {
  font-family: "Alex Brush", cursive;
  font-size: 1.7rem;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3e0c9;
}

.main-nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f7f2ea;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dm-gold), #ffffff);
  transition: width var(--dm-transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

/* Hero */

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(242, 194, 107, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.75rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  max-width: 640px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--dm-gold);
  font-family: "Alex Brush", cursive;
  font-size: 1.2em;
}

.hero p {
  max-width: 520px;
  font-size: 1rem;
  color: #f4e9da;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  font-size: 0.9rem;
  color: #f3e0c9;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dm-transition-fast), box-shadow var(--dm-transition-fast),
    background var(--dm-transition-fast), color var(--dm-transition-fast), border-color var(--dm-transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--dm-gold), #ffdf9b);
  color: #402116;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Grids */

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.text-block p {
  color: #4d3f35;
  line-height: 1.7;
}

.section-dark .text-block p {
  color: #e2d6ca;
}

.badges {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #f4e1c9;
  color: #5a2a16;
}

.image-stack {
  position: relative;
}

.image-stack .img-main {
  border-radius: var(--dm-radius-lg);
  box-shadow: var(--dm-shadow-soft);
}

.image-stack .img-floating {
  position: absolute;
  width: 60%;
  right: -3%;
  bottom: -12%;
  border-radius: var(--dm-radius-md);
  box-shadow: var(--dm-shadow-soft);
  border: 4px solid #fff;
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  background: #241f1e;
  border-radius: var(--dm-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform var(--dm-transition-fast), box-shadow var(--dm-transition-fast),
    filter var(--dm-transition-fast);
}

.card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.15);
}

.card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: #d3c9bf;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

/* Promos */

.promos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.promo-block h2 {
  margin-top: 0;
}

.promo-block p {
  color: #4d3f35;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(123, 40, 37, 0.15);
  background: #fff7ec;
  color: #5a2a16;
  font-size: 0.9rem;
}

.social-link i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #3b5998;
  color: #fff;
}

.social-link:nth-child(2) i {
  background: radial-gradient(circle at 10% 20%, #feda75 0%, #d62976 50%, #4f5bd5 100%);
}

.promo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.promo-item {
  border-radius: var(--dm-radius-md);
  overflow: hidden;
  box-shadow: var(--dm-shadow-soft);
}

.promo-item img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.promo-item:nth-child(1) {
  grid-column: 1 / -1;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.delivery-image img {
  border-radius: var(--dm-radius-lg);
  box-shadow: var(--dm-shadow-soft);
}

.delivery-text h2 {
  margin-top: 0;
}

.delivery-text ol {
  padding-left: 1.1rem;
  color: #4d3f35;
}

.delivery-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--dm-radius-md);
  overflow: hidden;
  cursor: zoom-in;
  height: 180px;
  object-fit: cover;
  filter: saturate(1.15);
  transition: transform var(--dm-transition-fast), box-shadow var(--dm-transition-fast),
    filter var(--dm-transition-fast);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--dm-shadow-soft);
  filter: saturate(1.3);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(960px, 94vw);
  max-height: 90vh;
  border-radius: var(--dm-radius-md);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* Video */

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--dm-radius-lg);
  overflow: hidden;
  box-shadow: var(--dm-shadow-soft);
}

.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.contact-form-block h2,
.map-block h2 {
  margin-top: 0;
}

.contact-form-block p,
.contact-info p,
.map-block p {
  color: #e1d3c6;
}

.contact-form {
  margin-top: 1.5rem;
  background: rgba(0, 0, 0, 0.45);
  padding: 1.5rem 1.6rem 1.4rem;
  border-radius: var(--dm-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.85rem;
  color: #f5e6d7;
}

input,
textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem 0.8rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--dm-gold);
  box-shadow: 0 0 0 1px rgba(242, 194, 107, 0.6);
}

textarea {
  resize: vertical;
}

.contact-info {
  margin-top: 1.2rem;
  font-size: 0.9rem;
}

.contact-info a {
  color: var(--dm-gold);
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: var(--dm-radius-lg);
  overflow: hidden;
  box-shadow: var(--dm-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
}

/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.4rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
  z-index: 60;
  transition: transform var(--dm-transition-fast), box-shadow var(--dm-transition-fast),
    background var(--dm-transition-fast);
}

.floating-whatsapp i {
  font-size: 1.6rem;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.6);
  background: #1ebe57;
}

/* Footer */

.site-footer {
  background: #0f0d0c;
  color: #cbbfb3;
  padding: 1.5rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-made a {
  color: var(--dm-gold);
}

/* Animations */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
  .grid-2,
  .cards-grid,
  .promos-grid,
  .delivery-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-stack .img-floating {
    position: static;
    margin-top: 1.2rem;
    width: 100%;
  }

  .cards-grid {
    gap: 1.5rem;
  }

  .gallery-item {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 120%;
    right: 0;
    flex-direction: column;
    background: rgba(23, 21, 20, 0.97);
    padding: 1rem 1.4rem;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dm-transition-fast), transform var(--dm-transition-fast);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8vw, 2.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 2rem, 480px);
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .brand-tagline {
    display: none;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-item {
    height: 180px;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
