:root{
  /* Minimal base */
  --bg: #ffffff;
  --paper: #ffffff;
  --text: #101112;
  --muted: rgba(16,17,18,.70);
  --faint: rgba(16,17,18,.50);
  --stroke: rgba(16,17,18,.10);

  /* Acentos (ajustables según logo) */
  --gold: #b48a5b;
  --wine: #7b1f24;

  --shadow: 0 18px 55px rgba(0,0,0,.08);
  --radius: 18px;
  --wrap: 1120px;

  /* Tipografías */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.wrap{
  width:min(var(--wrap), calc(100% - 44px));
  margin:0 auto;
}

/* Typography */
.h1,
.sectionTitle h2,
h3{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.2px;
}
.brandText{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .2px;
}

/* Brand text más grande */
.brandText{
  font-size: 22px;      /* probá 20–26px según gusto */
  line-height: 1.05;
}

/* En pantallas grandes, todavía más grande */
@media (min-width: 980px){
  .brandText{ font-size: 26px; }
}

/* En pantallas pequeñas, un poquito más controlado */
@media (max-width: 420px){
  .brandText{ font-size: 20px; }
}


/* =========================
   Topbar (integrado al Hero)
   ========================= */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;

  /* Integrado al video */
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

/* Estado al hacer scroll (se activa con JS) */
.topbar.isSolid{
  background: rgba(10,10,10,.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}

.logo{
  width:34px;
  height:34px;
  object-fit:contain;
}

/* Links: sobre hero (claros) */
.links{
  display:flex;
  align-items:center;
  gap:18px;
}

.links a{
  color: rgba(255,255,255,.86);
  font-size:14px;
  letter-spacing:.12px;
}
.links a:hover{ color: rgba(255,255,255,1); }

.pill{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background: rgba(255,255,255,.08);
}

/* Brand text sobre hero */
.brandText{
  color: rgba(255,255,255,.92);
}

/* Botón idioma */
.navRight{ display:flex; align-items:center; gap:10px; }

.langBtn{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor:pointer;
}

.langBtn:hover{
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

/* Con scroll, mantenemos legible */
.topbar.isSolid .links a{ color: rgba(255,255,255,.92); }
.topbar.isSolid .pill{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}
.topbar.isSolid .langBtn{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}

/* =========================
   Hero
   ========================= */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* ok que se repita: sirve como fallback */
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
  isolation: isolate;
}

.heroMedia{
  position: absolute;
  inset: 0;
  background: #000;
}

.heroVideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;              /* video base */
  opacity: 1;
  transition: opacity 900ms ease;
}

.heroSlide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;              /* slides encima del video */
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease;
}
.heroSlide.isActive{ opacity: 1; }

/* Overlay más oscuro para resaltar el color del video */
.heroOverlay{
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.35) 45%,
      rgba(0,0,0,.18) 100%),
    radial-gradient(900px 520px at 70% 30%,
      rgba(180,138,91,.18) 0%,
      rgba(0,0,0,0) 55%),
    radial-gradient(900px 520px at 30% 60%,
      rgba(123,31,36,.16) 0%,
      rgba(0,0,0,0) 60%);
}

.heroInner{
  position: relative;
  z-index: 4;
  padding: 64px 0 56px;

  /* Para que no quede debajo del header fijo */
  padding-top: 110px;
}

.heroContent{ max-width: 720px; }

/* Texto del hero en blanco */
.heroContent, .eyebrow, .h1, .lead, .heroMeta{
  color: rgba(255,255,255,.92);
}

.eyebrow{
  display: inline-block;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}

.h1{
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.lead{
  margin: 0 0 20px;
  color: rgba(255,255,255,.82);
  font-size: 16.5px;
  max-width: 66ch;
}

.heroActions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn{
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  letter-spacing: .12px;
  font-weight: 700;
}

.btn.primary{
  border-color: rgba(255,255,255,0);
  background: linear-gradient(135deg, rgba(180,138,91,.95), rgba(123,31,36,.90));
  color: #fff;
  box-shadow: 0 14px 40px rgba(123,31,36,.18);
}
.btn.ghost:hover{ background: rgba(255,255,255,.14); }
.btn.primary:hover{ filter: brightness(1.03); }

.heroMeta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

/* Móvil: que SIEMPRE se vea el video (evita que slides lo tapen) */
@media (max-width: 820px){
  .heroSlide{ display: none !important; }
}


/* =========================
   Sections
   ========================= */
.section{
  padding: 84px 0;
  background: transparent;
}
.section.alt{
  background: linear-gradient(180deg, rgba(16,17,18,.03), rgba(16,17,18,0));
}
.sectionTitle h2{
  margin:0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
}
.sectionTitle p{
  margin:0;
  color: var(--muted);
  max-width: 76ch;
}
.sectionTitle.center{ text-align:center; }
.sectionTitle.center p{ margin: 0 auto; }

.sectionTitle h2::after{
  content:"";
  display:block;
  width: 84px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(180,138,91,.0), rgba(180,138,91,.8), rgba(123,31,36,.65), rgba(180,138,91,.0));
  opacity: .95;
}

/* =========================
   Split
   ========================= */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}
.splitMedia{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.splitMedia img{
  width:100%;
  height: 520px;
  object-fit: cover;
}

/* Features */
.features{
  display:grid;
  gap: 12px;
  margin-top: 22px;
}
.feature{
  padding: 14px 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--stroke);
  border-radius: 14px;
}
.feature h3{ margin:0 0 4px; font-size: 18px; }
.feature p{ margin:0; color: var(--muted); font-size: 14px; }

/* Cards */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.card h3{ margin:0 0 8px; font-size: 22px; }
.card p{ margin:0; color: var(--muted); }

/* Variedades chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
  margin-top: 20px;
}
.chip{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
}

/* Bags grid */
.bagGrid{
  margin-top: 28px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bagCard{
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.bagImg img{
  width:100%;
  height: 360px;
  object-fit: cover;
}
.bagInfo{
  padding: 16px;
}
.bagInfo h3{ margin: 0 0 6px; font-size: 22px; }

/* Contact */
.contactWrap{ padding-top: 0; }
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.subtle{ background: rgba(255,255,255,.86); }

.divider{
  height:1px;
  background: var(--stroke);
  margin: 14px 0;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.value{
  font-weight: 700;
  color: rgba(16,17,18,.92);
}
.value:hover{ color: var(--wine); }

.iconLinks{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}
.iconBtn{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
}
.iconBtn svg{
  width: 20px; height: 20px;
  fill: rgba(16,17,18,.86);
}
.iconBtn:hover{
  border-color: rgba(123,31,36,.30);
  background: rgba(123,31,36,.06);
}

/* Footer */
.footer{
  padding: 48px 0 54px;
  border-top: 1px solid var(--stroke);
  background: #fff;
}
.footerInner{
  display:flex;
  justify-content:space-between;
  gap: 28px;
  flex-wrap:wrap;
  align-items:flex-start;
}
.footerLogoBlock{ max-width: 520px; }
.logoBig{
  width: min(320px, 70vw);
  height:auto;
  margin-bottom: 14px;
}
.footerLinks{
  display:grid;
  gap: 10px;
}
.footerLinks a{
  color: rgba(16,17,18,.78);
  border-bottom: 1px solid rgba(16,17,18,.10);
  width: fit-content;
}
.footerLinks a:hover{ color: rgba(16,17,18,1); }

/* Responsive */
@media (max-width: 980px){
  .links{ display:none; }
  .split{ grid-template-columns: 1fr; }
  .splitMedia img{ height: 360px; }
  .cards3{ grid-template-columns: 1fr; }
  .bagGrid{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .heroVideo, .heroSlide{ transition: none; }
}

/* =========================
   Gallery carousel (cards)
   ========================= */
.galleryRow{
  margin-top: 22px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;     /* tamaño de “tarjeta” */
  gap: 14px;

  overflow-x: auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.galleryRow::-webkit-scrollbar{
  height: 10px;
}
.galleryRow::-webkit-scrollbar-thumb{
  background: rgba(16,17,18,.18);
  border-radius: 999px;
}
.galleryRow::-webkit-scrollbar-track{
  background: rgba(16,17,18,.06);
  border-radius: 999px;
}

.galleryCard{
  scroll-snap-align: start;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.galleryCard img{
  width: 100%;
  height: 220px;               /* alto de tarjeta */
  object-fit: cover;
  display: block;
}

.galleryHint{
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 820px){
  .heroSlide{ display: none !important; }
}

.brandText{
  font-weight: 700; /* probá 700 o 800 */
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
}

.lightbox.isOpen{ display: grid; }

.lightboxImg{
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
}

.lightboxClose{
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.lightboxClose:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.28);
}

/* Que se note que se puede clickear */
.galleryCard img{
  cursor: zoom-in;
}

