/* JOYERIA LEON ITAU — vitrine clara */
:root {
  --ink: #14141A;
  --ink-soft: #2A2A33;
  --champagne: #B8956C;
  --champagne-light: #D4BC94;
  --sapphire: #2C4A6E;
  --sapphire-deep: #1E334D;
  --pearl: #F2F3F5;
  --pearl-deep: #E6E8EC;
  --white: #fff;
  --muted: #5C6170;
  --border: #D5D8DE;
  --max: 1100px;
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Figtree", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sapphire); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--champagne); }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .4em;
  color: var(--ink);
}
p { margin: 0 0 1rem; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(242, 243, 245, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}
.logo img { width: min(210px, 52vw); height: auto; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: .45rem .8rem;
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .04em;
  cursor: pointer;
}
.nav-list {
  display: flex; align-items: center; gap: 1.15rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
}
.nav-list a:hover { color: var(--champagne); }
.nav-cta {
  background: var(--sapphire);
  color: var(--white) !important;
  padding: .45rem .95rem;
  text-decoration: none !important;
}
.nav-cta:hover { background: var(--sapphire-deep); color: var(--white) !important; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .75rem 1.35rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn-primary { background: var(--sapphire); color: var(--white) !important; }
.btn-primary:hover { background: var(--sapphire-deep); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--champagne);
  color: var(--ink) !important;
}
.btn-outline:hover { background: var(--champagne); color: var(--white) !important; }

/* Hero — full-bleed */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,26,.35) 0%, rgba(20,20,26,.72) 70%, rgba(20,20,26,.88) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 0 4.5rem;
  max-width: 36rem;
  animation: heroRise .9s ease-out both;
}
.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
}
.hero-brand-line {
  display: block;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--champagne-light);
  font-weight: 500;
}
.hero-brand-accent {
  display: block;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  margin-top: .2rem;
}
.hero h1 {
  color: var(--pearl);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 4.25rem 0; }
.section-head { max-width: 34rem; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.85rem, 3.5vw, 2.45rem); }
.section-head p { color: var(--muted); margin: 0; }
.band-sapphire {
  background: linear-gradient(135deg, var(--sapphire-deep), var(--sapphire));
  color: var(--white);
}
.band-sapphire h2, .band-sapphire h3 { color: var(--white); }
.band-sapphire p { color: rgba(255,255,255,.88); }
.band-pearl { background: var(--pearl-deep); }

/* Services strip — no heavy cards */
.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-item {
  padding: 1.75rem 1.4rem;
  border-right: 1px solid var(--border);
  animation: fadeUp .7s ease both;
}
.service-item:nth-child(2) { animation-delay: .1s; }
.service-item:nth-child(3) { animation-delay: .2s; }
.service-item:last-child { border-right: none; }
.service-item h3 {
  font-size: 1.35rem;
  margin-bottom: .5rem;
  color: var(--sapphire);
}
.service-item p { margin: 0; color: var(--muted); font-size: .95rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Product grid — light separators, not card boxes */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem 1.5rem;
}
.product { display: flex; flex-direction: column; gap: .55rem; }
.product-media {
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--pearl-deep);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.product:hover .product-media img { transform: scale(1.04); }
.product h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sapphire);
  font-weight: 600;
  margin: 0;
}
.desc { font-size: .9rem; color: var(--muted); margin: 0; }

.gallery-cta { margin-top: 2.25rem; text-align: center; }

/* About split — imagen más chica, texto protagonista */
.about-split {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2.75rem;
  align-items: start;
}
.about-visual {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(160deg, rgba(44,74,110,.15), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(184,149,108,.25), transparent 55%),
    var(--pearl-deep);
  position: relative;
  overflow: hidden;
  justify-self: start;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}
.about-copy h2 { font-size: clamp(1.85rem, 3.2vw, 2.35rem); }
.about-copy p { color: var(--muted); }
.about-copy ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--muted);
}
.about-copy li { margin-bottom: .45rem; }
.about-meta {
  display: grid;
  gap: .35rem;
  margin: 0 0 1.35rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.about-meta strong { color: var(--sapphire); font-weight: 600; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-info p { margin: 0 0 .6rem; color: var(--muted); }
.contact-info strong { color: var(--ink); font-weight: 600; }
.map-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 280px;
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }
.contact-form {
  display: grid;
  gap: .85rem;
}
.contact-form label {
  display: grid;
  gap: .3rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: .7rem .85rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--champagne);
  outline-offset: 1px;
}
#formStatus { font-size: .9rem; color: var(--sapphire); min-height: 1.2em; }

/* Disclaimer + footer */
.ads-disclaimer {
  border-left: 4px solid var(--champagne);
  padding: 16px 20px;
  margin: 32px 0;
  font-size: .86rem;
  background: var(--white);
  color: var(--muted);
}
.ads-disclaimer strong { color: var(--ink); }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 3rem 0 2rem;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.site-footer a { color: var(--champagne-light); }
.site-footer a:hover { color: var(--white); }
.site-footer h3 {
  color: var(--champagne-light);
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .82rem;
}
.legal-links { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--ink);
  color: rgba(255,255,255,.9);
  padding: 1rem;
  transform: translateY(110%);
  transition: transform .35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-inner {
  width: min(100% - 1rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-inner p { margin: 0; font-size: .88rem; max-width: 42rem; }
.cookie-inner a { color: var(--champagne-light); }
.cookie-btns { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-btns .btn { font-size: .85rem; padding: .55rem 1rem; }
.cookie-btns .btn-outline {
  border-color: rgba(255,255,255,.35);
  color: var(--white) !important;
}
.cookie-btns .btn-outline:hover { background: rgba(255,255,255,.12); }

/* Legal pages */
.legal-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.legal-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.legal-page { padding: 2.5rem 0 4rem; }
.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  color: var(--sapphire);
}
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .84rem; }
.legal-page th, .legal-page td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.legal-page th { background: var(--pearl-deep); }

/* Catalog filters */
.cat-toolbar {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.75rem;
}
.cat-toolbar button {
  font-family: var(--font-body);
  font-size: .85rem;
  padding: .45rem .9rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
}
.cat-toolbar button.is-active,
.cat-toolbar button:hover {
  border-color: var(--sapphire);
  color: var(--sapphire);
}

.page-hero {
  padding: 2.75rem 0 1.5rem;
  background: linear-gradient(180deg, var(--white), var(--pearl));
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--pearl);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: .85rem; }
  .services-strip { grid-template-columns: 1fr; }
  .service-item { border-right: none; border-bottom: 1px solid var(--border); }
  .service-item:last-child { border-bottom: none; }
  .about-split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-visual {
    max-width: 220px;
    justify-self: start;
  }
  .hero { min-height: min(85vh, 640px); }
  .hero-content { padding-bottom: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img, .hero-content, .service-item, .product-media img {
    animation: none !important;
    transition: none !important;
  }
}
