:root {
  --bg: #0b0704;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.085);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --gold: #d1ae7b;
  --gold2: #f1e1ae;
  --ink: #472b16;
  --shadow: 0 14px 45px rgba(0,0,0,.42);
  --radius: 18px;
  --radius2: 26px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1400px 900px at 25% 20%, rgba(209,174,123,.10), transparent 60%),
              radial-gradient(1000px 700px at 85% 30%, rgba(241,225,174,.10), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: var(--gold2); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.skip {
  position: absolute; left: -999px; top: -999px;
}
.skip:focus { left: 16px; top: 16px; background: #000; color: #fff; padding: 10px 12px; border-radius: 10px; z-index: 9999; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
}
.brand__text { display: grid; }
.brand__name { font-weight: 800; letter-spacing: .5px; }
.brand__tag { font-size: 12px; color: var(--muted); margin-top: 1px; }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: rgba(255,255,255,.86);
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover { color: var(--gold2); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.9);
  margin: 4px auto;
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(241,225,174,.38);
  background: linear-gradient(180deg, rgba(241,225,174,.18), rgba(209,174,123,.10));
  color: rgba(255,255,255,.95);
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); text-decoration: none; }
.btn--ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.btn--sm { padding: 9px 12px; border-radius: 12px; font-size: 13px; }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  /* Gradiente suave para legibilidad sin tapar la foto */
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.25) 55%, rgba(0,0,0,.10)),
              linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.70));
}
.hero__glow {
  position: absolute;
  inset: -120px -140px auto auto;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(241,225,174,.18), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  padding: 58px 0 44px;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5px;
}
.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: .4px;
}
.lead {
  margin: 0 0 18px;
  max-width: 58ch;
  color: rgba(255,255,255,.88);
  font-size: 16.5px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 10px;
}
.hero__social {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.dot { opacity: .6; }

.hero__cards {
  display: grid;
  align-content: start;
  gap: 14px;
}
.mini-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.mini-card img {
  width: 74px; height: 74px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
}
.mini-card__title { font-weight: 900; letter-spacing: .5px; }
.mini-card__sub { font-size: 13px; color: var(--muted); font-weight: 700; }

.section {
  padding: 70px 0;
}
.section--dark {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section__head {
  max-width: 78ch;
  margin-bottom: 26px;
}
.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
}
.section__head p { margin: 0; color: var(--muted); }

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

.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; }
.card p { margin: 0 0 12px; color: rgba(255,255,255,.84); }
.bullets { margin: 0; padding-left: 18px; color: var(--muted); font-weight: 650; }
.bullets li { margin: 7px 0; }

.banner {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: center;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.banner img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.banner__content { padding: 18px; }
.banner__content h3 { margin: 0 0 8px; }
.banner__content p { margin: 0 0 12px; color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gitem {
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  transition: transform .2s ease, filter .2s ease;
  text-align: left;
}
.gitem:hover { transform: translateY(-2px); filter: brightness(1.05); }
.gitem img { width: 100%; height: 230px; object-fit: cover; }
.gcap {
  display: block;
  padding: 12px 12px 10px;
  font-weight: 900;
  letter-spacing: .35px;
  color: rgba(255,255,255,.92);
}

.video .ratio {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(255,255,255,.04);
}
.ratio--square { padding-top: 100%; }
.ratio iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.social-embeds {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.embed-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
}
.embed-card h3 { margin: 0 0 10px; }
.muted { color: var(--muted); font-weight: 650; }
.soft {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
}

.map-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
}
.map-card h3 { margin-top: 0; }

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 16px;
  align-items: start;
}
.contact__card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
}
.big a { color: rgba(255,255,255,.95); font-weight: 900; }
.big a:hover { color: var(--gold2); text-decoration: none; }

.form {
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
}
.form label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.9);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(241,225,174,.42);
  box-shadow: 0 0 0 4px rgba(241,225,174,.10);
}
textarea { resize: vertical; }

.float {
  position: fixed;
  right: 16px;
  z-index: 60;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-weight: 900;
  color: rgba(255,255,255,.95);
}
.float:hover { text-decoration: none; filter: brightness(1.06); }
.float--wa { bottom: 74px; }
.float--call { bottom: 18px; }

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer p { margin: 0; color: var(--muted); font-weight: 700; font-size: 13px; }
.footer a { color: var(--gold2); }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.80);
  z-index: 80;
  padding: 22px;
}
.lightbox.is-open { display: grid; }
.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 80vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  background: rgba(255,255,255,.03);
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95);
  font-size: 26px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 44px; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .social-embeds { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav {
    position: fixed;
    inset: 70px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: var(--radius2);
    background: rgba(0,0,0,.70);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 10px 12px; border-radius: 14px; background: rgba(255,255,255,.06); }
  .grid--2 { grid-template-columns: 1fr; }
  .banner { grid-template-columns: 1fr; }
  .gitem img { height: 200px; }
  .form__row { grid-template-columns: 1fr; }
}
