:root {
  --bg: #14110f;
  --bg-alt: #1b1714;
  --surface: #221c18;
  --text: #f3ece4;
  --text-muted: #b8aca0;
  --accent: #c9a15a;
  --accent-dark: #a9803e;
  --border: #34291f;
  --radius: 10px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 17, 15, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand__icon {
  font-size: 1.4rem;
}

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

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav__cta {
  background: var(--accent);
  color: #1a140d !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.nav__cta:hover {
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 161, 90, 0.12), transparent 45%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero__inner {
  max-width: 720px;
}

.hero__eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 2.75rem;
  margin: 0 0 20px;
  line-height: 1.15;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease;
}

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

.btn--primary {
  background: var(--accent);
  color: #1a140d;
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost:hover {
  background: rgba(201, 161, 90, 0.1);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__title {
  font-size: 2rem;
  margin: 0 0 8px;
}

.section__subtitle {
  color: var(--text-muted);
  margin: 0 0 40px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  color: var(--text-muted);
  margin: 0 0 16px;
}

.card__price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: var(--surface);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-weight: 600;
}

/* Horarios */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.schedule li {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface);
}

.schedule li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.schedule li span:last-child {
  color: var(--accent);
  font-weight: 600;
}

.highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.highlight h3 {
  margin-top: 0;
}

.highlight p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Map */
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* Contact */
.contact {
  text-align: center;
}

.contact__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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