:root {
  --dre-bg: #0e0f10;
  --dre-surface: #171a1f;
  --dre-text: #f9f5ee;
  --dre-muted: #d8cfbf;
  --dre-accent: #d8a24a;
  --dre-accent-2: #a63d2f;
  --dre-radius: 18px;
}

.dre-showcase,
.dre-menu-tabs,
.dre-testimonials {
  color: var(--dre-text);
  margin: 28px auto;
  max-width: 1240px;
}

.dre-showcase {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.dre-hero {
  position: relative;
  background: linear-gradient(145deg, rgba(6, 7, 9, 0.88), rgba(10, 11, 13, 0.68)), var(--hero) center/cover no-repeat;
  min-height: 62vh;
  display: grid;
  align-items: center;
}

.dre-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(216, 162, 74, 0.24), transparent 45%);
}

.dre-content-wrap {
  position: relative;
  padding: 7vw;
  max-width: 760px;
}

.dre-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dre-muted);
  margin: 0 0 10px;
  font-size: 12px;
}

.dre-showcase h1 {
  margin: 0;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
}

.dre-sub {
  margin-top: 16px;
  max-width: 62ch;
  color: #efe8d8;
  font-size: clamp(16px, 2vw, 20px);
}

.dre-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.dre-btn {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-weight: 600;
}

.dre-btn:hover {
  transform: translateY(-1px);
}

.dre-btn-primary {
  background: linear-gradient(120deg, var(--dre-accent), #e9c57d);
  color: #1f1610;
}

.dre-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.dre-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: linear-gradient(180deg, #111317, #0d0f13);
  padding: 16px;
}

.dre-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dre-radius);
  overflow: hidden;
  padding: 16px;
}

.dre-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

.dre-card h3 {
  margin: 14px 0 8px;
  font-size: 1.25rem;
}

.dre-card p {
  margin: 0;
  color: #dbd2c5;
}

.dre-card.dre-info {
  background: linear-gradient(160deg, rgba(166, 61, 47, 0.16), rgba(216, 162, 74, 0.1));
}

.dre-link {
  color: #ffe8ad;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

.dre-menu-tabs h2,
.dre-testimonials h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.8vw, 36px);
  color: #fff;
}

.dre-menu-grid,
.dre-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dre-menu-item,
.dre-testimonials blockquote {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.dre-menu-item img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
}

.dre-menu-item h3 {
  margin: 10px 0 6px;
}

.dre-menu-item h3 a {
  color: #fff;
  text-decoration: none;
}

.dre-menu-link {
  color: #ffd88f;
  text-decoration: underline;
}

.dre-testimonials blockquote {
  margin: 0;
}

.dre-testimonials p {
  margin: 0 0 8px;
  color: #dfd6c7;
}

.dre-testimonials cite {
  color: #f3e5c6;
  font-style: normal;
}

.dre-floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: grid;
  gap: 8px;
}

.dre-float-btn {
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  min-width: 112px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.dre-reserve { background: #c48e34; color: #1d1307; }
.dre-whatsapp { background: #1fae53; }
.dre-call { background: #2f3845; }

@media (max-width: 1024px) {
  .dre-grid,
  .dre-menu-grid,
  .dre-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .dre-card img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .dre-content-wrap {
    padding: 28px 18px;
  }

  .dre-floating-actions {
    right: 10px;
    bottom: 10px;
  }

  .dre-float-btn {
    min-width: 96px;
    font-size: 14px;
  }
}
