:root {
  --bg: #0c0b0a;
  --bg-2: #141210;
  --ink: #f3efe6;
  --muted: #b7b0a4;
  --gold: #e4c98a;
  --line: rgb(228 201 138 / .28);
  --nav-h: 6.4rem;
  --tap: 44px;
  --gutter: 1.25rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  color-scheme: dark;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.45;
  padding-top: calc(var(--nav-h) + var(--safe-top));
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
.wrap { width: min(100% - 2.5rem, 1080px); margin-inline: auto; }
h1, h2, h3 { font-family: Georgia, "Palatino Linotype", Palatino, serif; font-weight: 400; }
.display { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; letter-spacing: -.02em; }
.eyebrow {
  color: var(--gold);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.muted { color: var(--muted); max-width: 42rem; }
.stack { display: grid; gap: .45rem; }
.stack > * { margin: 0; line-height: 1.45; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: .85rem 1.2rem;
  border-radius: 4px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #14110e;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-line {
  background: transparent;
  color: var(--gold);
  border-color: var(--line);
}
.btn:focus-visible,
.nav-links a:focus-visible,
.piece a:focus-visible,
.ocasion a:focus-visible,
.redes-item:focus-visible,
.float:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  width: 100%;
  padding-top: var(--safe-top);
  background: rgb(12 11 10 / .55);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 0;
  transform: translateY(0);
  transition: transform .28s ease, background .25s ease;
}
.nav.is-scrolled { background: rgb(12 11 10 / .88); }
.nav.is-away { transform: translateY(-110%); pointer-events: none; }
.nav.is-open {
  transform: none;
  pointer-events: auto;
  background: var(--bg);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  min-height: var(--nav-h);
}
.nav-end { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { height: 86px; width: auto; max-width: min(70vw, 280px); }
.nav-links { display: flex; gap: 1rem; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-toggle {
  display: none;
  width: var(--tap);
  height: var(--tap);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 1.15rem; height: 2px; background: var(--gold); }

.hero {
  position: relative;
  min-height: min(86svh, 760px);
  background: #000;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; background: #000; }
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: 3rem 0 2.4rem;
}
.hero h1 {
  margin-top: .35rem;
  max-width: 16ch;
  color: #fff;
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  line-height: 1.12;
  text-shadow: 0 1px 0 #000, 0 2px 10px #000, 0 0 18px rgb(0 0 0 / .75);
}
.hero .lead {
  margin-top: .7rem;
  max-width: 28rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 0 #000, 0 2px 8px #000;
}
.hero .btn { margin-top: 1rem; }
.hero .proof {
  margin-top: .85rem;
  color: #d9d0c2;
  font-size: .95rem;
  line-height: 1.45;
  text-shadow: 0 1px 0 #000, 0 2px 8px #000;
}

.band { padding: 3.2rem 0; }
.band-alt { background: var(--bg-2); }
.band .display { margin: .25rem 0 .4rem; }
.sec-lead { margin-bottom: 1.4rem; }

.pieces, .ocasiones, .trust, .visit-shots {
  display: grid;
  gap: 1rem;
}
.piece, .ocasion {
  background: #100e0c;
  border-radius: 8px;
  overflow: hidden;
}
.band-alt .piece, .band-alt .ocasion { background: #0c0b0a; }
.piece-body, .ocasion {
  display: grid;
  gap: .45rem;
  padding: 1rem 1rem 1.15rem;
}
.piece h3, .ocasion h3, .trust strong {
  font-size: 1.35rem;
  line-height: 1.2;
}
.piece p, .ocasion p, .trust span { color: var(--muted); line-height: 1.45; }
.piece .price { color: var(--gold); font-weight: 650; line-height: 1.45; }
.piece-shot { display: block; aspect-ratio: 4 / 3; background: #000; overflow: hidden; }
.piece-shot img { width: 100%; height: 100%; object-fit: cover; }
.text-link {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
}

.trust { list-style: none; }
.trust li {
  display: grid;
  gap: .35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.trust li:first-child { border-top: 0; padding-top: 0; }

.contacto-grid, .visit {
  display: grid;
  gap: 1.4rem;
}
.form, .nap, .redes-list, .foot-note {
  display: grid;
  gap: .55rem;
}
.form label {
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}
.form input, .form select {
  width: 100%;
  min-height: 48px;
  padding: .7rem .8rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #1a1714;
  color: var(--ink);
}
.form .row { display: grid; gap: .7rem; }
.form .btn { margin-top: .3rem; }
.form-note { color: var(--gold); line-height: 1.45; }
.nap span, .foot-note span, .redes-list p, .redes-list a { line-height: 1.45; }
.redes-item {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-top: 1px solid var(--line);
  font-weight: 650;
  letter-spacing: .04em;
}
.redes-list a.redes-item { color: var(--gold); }

.map-wait {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  background:
    linear-gradient(rgb(12 11 10 / .2), rgb(12 11 10 / .55)),
    #1a1714;
  border-radius: 8px;
  color: var(--muted);
}
.visit-shots figure { display: grid; gap: .45rem; }
.visit-shots img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; background: #000; }
.visit-shots figcaption { color: var(--muted); line-height: 1.45; font-size: .95rem; }

footer { padding: 2.2rem 0 6rem; border-top: 1px solid var(--line); }
.foot-top {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.4rem;
  justify-content: space-between;
  align-items: center;
}
.foot-links { display: flex; flex-wrap: wrap; gap: .4rem 1rem; }
.foot-links a { min-height: var(--tap); display: inline-flex; align-items: center; font-size: .95rem; }
.foot-logo { display: inline-block; margin: 1rem 0; }
.foot-logo img { height: 148px; width: auto; }
.foot-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.float {
  position: fixed;
  z-index: 40;
  right: max(1rem, var(--safe-right));
  bottom: max(1rem, var(--safe-bottom));
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
}
.float svg { width: 26px; height: 26px; fill: #14110e; }

@media (min-width: 700px) {
  .pieces, .ocasiones, .visit-shots { grid-template-columns: 1fr 1fr; }
  .form .row { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .contacto-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 2rem; }
}
@media (min-width: 980px) {
  .trust { grid-template-columns: 1fr 1fr 1fr; gap: 1.4rem; }
  .trust li { border-top: 0; padding-top: 0; }
  .visit { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .visit-shots { grid-column: 1 / -1; }
}
@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav-end .btn { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    gap: 0;
    background: #0c0b0a;
    padding: .2rem max(var(--gutter), var(--safe-left)) calc(.8rem + var(--safe-bottom)) max(var(--gutter), var(--safe-right));
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a {
    font-size: 1.05rem;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 799px) {
  :root { --nav-h: 5.4rem; }
  .brand img { height: 68px; }
  .hero { min-height: 78svh; }
  .hero-copy { padding: 1.5rem 0 1.7rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero .lead { font-size: 1.15rem; }
  .hero .btn { width: 100%; max-width: 22rem; min-height: 48px; }
  .foot-logo img { height: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav { transition: none; }
}
