Sí. Borra todo tu styles.css y pega este completo:

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #080808;
  color: white;
}
img {
  max-width: 100%;
  display: block;
}
.hero {
  min-height: 100vh;
  padding: 25px 7%;
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.9)),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
.logo {
  font-size: 28px;
  font-weight: 900;
}
.logo span {
  color: #d4af37;
}
.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 700;
}
.nav-links a:hover {
  color: #d4af37;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.tag {
  color: #d4af37;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 15px;
}
.center {
  text-align: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.description {
  color: #d4d4d4;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.buttons {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 15px 25px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}
.primary {
  background: #d4af37;
  color: #080808;
}
.secondary {
  border: 1px solid #d4af37;
  color: white;
  background: rgba(255,255,255,0.06);
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 22px;
}
.section,
.gallery-section {
  padding: 80px 7%;
}
.dark-section {
  background: linear-gradient(180deg, #080808, #111111);
}
.section h2,
.gallery-section h2,
.booking-card h2,
.owner-panel h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 30px;
}
.section h2,
.gallery-section h2 {
  text-align: center;
}
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #161616;
  border-radius: 24px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.service-card div {
  padding: 24px;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}
.service-card p {
  color: #a3a3a3;
  margin-bottom: 16px;
}
.service-card strong {
  font-size: 28px;
  color: #d4af37;
}
.gallery-section {
  background: #0d0d0d;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid #2a2a2a;
}
.booking-section {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.88)),
    url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}
.booking-card {
  background: #f5f1e8;
  color: #0a0a0a;
  padding: 35px;
  border-radius: 30px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-form label {
  font-weight: 900;
}
.booking-form input,
.booking-form select {
  padding: 15px;
  border: 1px solid #cfc7b6;
  border-radius: 14px;
  font-size: 16px;
}
.hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hours button {
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: #ded6c5;
  font-weight: 900;
  cursor: pointer;
}
.hours button:hover {
  background: #d4af37;
}
.submit-btn {
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #d4af37;
  color: #0a0a0a;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}
.owner-panel {
  background: rgba(18,18,18,0.94);
  padding: 35px;
  border-radius: 30px;
  border: 1px solid #2a2a2a;
}
.turno {
  background: rgba(255,255,255,0.07);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.turno p {
  color: #bdbdbd;
  margin: 8px 0;
}
.turno span {
  color: #d4af37;
  font-weight: 900;
}
.done span {
  color: #22c55e;
}
.contact-section {
  padding: 60px 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-section div {
  background: #161616;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #2a2a2a;
}
.contact-section p {
  color: #a3a3a3;
  margin-top: 10px;
}
footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #262626;
  color: #737373;
  background: #050505;
}
/* TABLET */
@media (max-width: 1000px) {
  .hero-content,
  .booking-section {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-card img {
    height: 420px;
  }
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery,
  .contact-section {
    grid-template-columns: 1fr;
  }
}
/* MOBILE */
@media (max-width: 600px) {
  .hero {
    padding: 20px;
    min-height: auto;
  }
  .navbar {
    margin-bottom: 45px;
  }
  .nav-links {
    display: none;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .description {
    font-size: 16px;
  }
  .buttons {
    flex-direction: column;
  }
  .hero-card {
    padding: 10px;
    border-radius: 24px;
  }
  .hero-card img {
    height: 260px;
    border-radius: 18px;
  }
  .section,
  .gallery-section,
  .booking-section,
  .contact-section {
    padding: 55px 20px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service-card img {
    height: 220px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 260px;
  }
  .booking-section {
    grid-template-columns: 1fr;
  }
  .booking-card,
  .owner-panel {
    padding: 25px;
    border-radius: 24px;
  }
  .hours {
    grid-template-columns: 1fr 1fr;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
}