* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ink: #11110f;
  --paper: #eee9df;
  --cream: #d9d0c0;
  --gold: #b48a36;
  --muted: #77736b;
  --line: #cfc7b8;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.header {
  height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  background: rgba(238, 233, 223, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 17, 15, 0.12);
}
.logo img {
  width: 57px;
  height: 57px;
  object-fit: contain;
  border-radius: 50%;
}
.header nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 34px;
}
.header nav a,
.header-order {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.header nav a {
  color: #5f5b53;
}
.header nav a:hover {
  color: #000;
}
.header-order {
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
}
.header-order span {
  color: #d0a94e;
  margin-left: 12px;
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 22px;
}
.hero {
  min-height: 800px;
  padding-top: 76px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: var(--paper);
}
.hero-photo {
  min-height: 724px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.35)),
    radial-gradient(circle at 50% 40%, #6d604e 0, #3a342d 35%, #171614 78%);
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero-image.active {
  opacity: 1;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.02) 50%,
    rgba(0, 0, 0, 0.35)
  );
}
.photo-content {
  position: absolute;
  z-index: 2;
  left: 7%;
  bottom: 7%;
  display: flex;
  justify-content: space-between;
  right: 7%;
  color: #eee;
}
.photo-kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #a37b2f;
}
.photo-caption {
  font-family: "Libre Baskerville";
  font-style: italic;
  font-size: 14px;
  color: #a37b2f;
}
.hero-content {
  padding: 125px 8vw 80px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #817b70;
  margin-bottom: 23px;
}
.hero h1,
.section h2,
.statement h2,
.brand-story h2,
.contact h2 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(50px, 5.2vw, 78px);
}
.hero h1 i,
.section h2 i,
.statement h2 i,
.contact h2 i {
  color: #a37b2f;
}
.intro {
  max-width: 500px;
  color: #68645c;
  font-size: 15px;
  line-height: 1.85;
  margin: 28px 0;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
  font-weight: 600;
  border: 1px solid var(--ink);
}
.button.dark {
  background: var(--ink);
  color: var(--paper);
}
.button.light {
  background: var(--paper);
  color: var(--ink);
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 16px;
  color: #c19a4a;
}
.simple-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  border-bottom: 1px solid #aaa296;
  padding-bottom: 5px;
}
.hero-note {
  margin-top: 80px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: #8a857b;
  letter-spacing: 0.08em;
}
.hero-note span {
  color: var(--gold);
  margin-right: 8px;
}
.ticker {
  height: 45px;
  background: var(--ink);
  color: #d6d0c4;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 0.22em;
}
.ticker div {
  animation: move 35s linear infinite;
}
.ticker span {
  color: #b38a3c;
  margin: 0 22px;
}
@keyframes move {
  to {
    transform: translateX(-30%);
  }
}
.section {
  padding: 120px 7vw;
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 65px;
}
.section-intro h2 {
  font-size: clamp(43px, 5vw, 67px);
}
.section-intro > p {
  font-size: 14px;
  line-height: 1.9;
  color: #77736b;
  max-width: 480px;
}
.combo-list {
  border-top: 1px solid var(--line);
}
.combo {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 410px;
  border-bottom: 1px solid var(--line);
}
.combo.reverse {
  grid-template-columns: 52% 48%;
}
.combo.reverse .combo-image {
  order: 2;
}
.combo.reverse .combo-copy {
  order: 1;
}
.combo-image {
  position: relative;
  min-height: 445px;
  overflow: hidden;
}

.combo-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.combo:hover .combo-image img {
  transform: scale(1.03);
}

/* Mantiene el tono oscuro/elegante de la plantilla */
.combo-image:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

/* Elimina la botella ficticia que tenía la plantilla */
.combo-image:after {
  display: none;
}

.image-one {
  background: #6d604e;
}

.image-two {
  background: #352f28;
}

.image-three {
  background: #3c1715;
}

.combo-image span {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  color: #e5ddce;
  font-family: "Libre Baskerville";
  font-size: 16px;
}

.image-placeholder {
  display: none;
}
.combo-copy {
  padding: 55px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.combo-top,
.combo-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.combo-top {
  color: #8a857b;
  font-size: 9px;
  letter-spacing: 0.15em;
}
.combo-top small:last-child {
  color: #a37b2f;
}
.combo h3 {
  font-family: "Libre Baskerville";
  font-size: 40px;
  font-weight: 400;
  margin: 28px 0 14px;
}
.combo-copy p {
  color: #77736b;
  font-size: 14px;
  line-height: 1.8;
  max-width: 450px;
}
.combo-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 450px;
}
.combo-bottom strong {
  font-family: "Libre Baskerville";
  font-size: 20px;
  font-weight: 400;
}
.combo-bottom a {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.statement {
  background: var(--ink);
  color: var(--paper);
  padding: 135px 7vw;
  position: relative;
  overflow: hidden;
}
.logot{
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(205, 177, 115, 0.2);
  border-radius: 50%;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
}
.statement-number {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #a98a54;
  margin-bottom: 55px;
}
.statement h2 {
  font-size: clamp(48px, 6vw, 82px);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.category-grid a {
  min-height: 230px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.category-grid a:hover {
  background: #e6dfd3;
}
.category-grid span,
.category-grid em {
  font-size: 9px;
  color: #8d887e;
  font-style: normal;
}
.category-grid strong {
  font-family: "Libre Baskerville";
  font-size: 30px;
  font-weight: 400;
}
.brand-story {
  background: #e0d8ca;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 610px;
}
.story-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181816;
}
.story-mark img {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  object-fit: contain;
}
.story-copy {
  padding: 100px 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy h2 {
  font-size: clamp(45px, 5vw, 68px);
  margin-bottom: 28px;
}
.story-copy p:not(.label) {
  color: #6f6a61;
  font-size: 14px;
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 15px;
}
.contact {
  padding: 145px 7vw;
  text-align: center;
  background: #f3eee5;
}
.contact h2 {
  font-size: clamp(50px, 6vw, 84px);
  margin-bottom: 24px;
}
.contact > div p:not(.label) {
  color: #77736b;
  margin-bottom: 30px;
  font-size: 14px;
}
.contact small {
  display: block;
  color: #aaa397;
  font-size: 9px;
  margin-top: 15px;
}
footer {
  background: #11110f;
  color: #ddd8ce;
  padding: 55px 7vw 25px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-bottom: 50px;
}
.footer-main img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
}
.footer-main p {
  font-family: "Libre Baskerville";
  font-style: italic;
  color: #a9a298;
  font-size: 12px;
}
.footer-main div {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
.footer-main a {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aaa49a;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #69655d;
  font-size: 9px;
}
@media (max-width: 850px) {
  .header nav,
  .header-order {
    display: none;
  }
  .menu {
    display: block;
    margin-left: auto;
  }
  .header nav.open {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: #eee9df;
    padding: 25px 7vw;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    min-height: 470px;
  }
  .hero-content {
    padding: 75px 7vw 80px;
  }
  .hero-note {
    margin-top: 50px;
  }
  .section-intro {
    grid-template-columns: 1fr;
  }
  .combo,
  .combo.reverse {
    grid-template-columns: 1fr;
  }
  .combo.reverse .combo-image,
  .combo.reverse .combo-copy {
    order: initial;
  }
  .combo-image {
    min-height: 330px;
  }
  .combo-copy {
    padding: 45px 0;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-story {
    grid-template-columns: 1fr;
  }
  .story-mark {
    min-height: 380px;
  }
  .story-copy {
    padding: 75px 7vw;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-main div {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 48px;
  }
  .section {
    padding: 85px 6vw;
  }
  .statement {
    padding: 95px 6vw;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid a {
    min-height: 170px;
  }
  .category-grid strong {
    font-size: 23px;
  }
  .combo-image {
    min-height: 290px;
  }
  .combo-image:after {
    height: 240px;
    width: 140px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

.page-head {
  padding: 170px 7vw 90px;
  background: #e0d8ca;
  border-bottom: 1px solid var(--line);
  min-height: 500px;
}
.page-head h1 {
  font-size: clamp(60px, 8vw, 105px);
  margin-bottom: 30px;
}
.page-head > p:last-child {
  max-width: 570px;
  color: #706b62;
  line-height: 1.9;
  font-size: 15px;
}
.product-head {
  background: #d8d0c1;
}
.catalog-section {
  padding: 80px 7vw 125px;
}
.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 35px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #7c776e;
}
.filter-row > div {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.filter {
  border: 0;
  background: transparent;
  color: #7c776e;
  font: inherit;
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  cursor: pointer;
}
.filter.active,
.filter:hover {
  background: var(--ink);
  color: var(--paper);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.catalog-card {
  border-top: 1px solid var(--line);
  transition: 0.25s;
}
.catalog-card:hover {
  transform: translateY(-4px);
}
.catalog-photo{
  height:390px;
  width:100%;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#d9d0c0;
}

/* FOTO REAL */
.catalog-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transition:transform .5s ease;
}

/* Pequeño zoom al pasar el mouse */
.catalog-card:hover .catalog-photo img{
  transform:scale(1.03);
}

/* Capa sutil para mantener la estética de la plantilla */
.catalog-photo::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.03),
    rgba(0,0,0,.12)
  );
  pointer-events:none;
}

/* ELIMINAMOS LA BOTELLA FICTICIA */
.catalog-photo::after{
  display:none;
}

/* Número */
.catalog-photo span{
  position:absolute;
  z-index:3;
  top:17px;
  left:17px;
  color:#eee;
  font-family:"Libre Baskerville";
  font-size:14px;
}

/* Etiqueta */
.catalog-photo em{
  position:absolute;
  z-index:3;
  right:17px;
  top:17px;
  background:#e5ddce;
  color:#222;
  font-style:normal;
  font-size:8px;
  letter-spacing:.15em;
  padding:8px;
}
.catalog-photo span {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  color: #eee;
  font-family: "Libre Baskerville";
  font-size: 14px;
}
.catalog-photo em {
  position: absolute;
  z-index: 2;
  right: 17px;
  top: 17px;
  background: #e5ddce;
  color: #222;
  font-style: normal;
  font-size: 8px;
  letter-spacing: 0.15em;
  padding: 8px;
}
.catalog-info {
  padding: 22px 2px 35px;
}
.catalog-info > small,
.product-item small {
  font-size: 8px;
  color: #8b867d;
  letter-spacing: 0.17em;
}
.catalog-info h2,
.product-item h2 {
  font-family: "Libre Baskerville";
  font-size: 27px;
  font-weight: 400;
  margin: 12px 0;
}
.catalog-info p,
.product-item p {
  color: #77736b;
  font-size: 13px;
  line-height: 1.7;
}
.catalog-info > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
}
.catalog-info b,
.product-item strong {
  font-size: 15px;
  font-weight: 500;
}
.catalog-info a,
.product-item a {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.product-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 25px;
}
.product-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
/* =========================================
   FOTOS DE PRODUCTOS
   ========================================= */

.product-img {
  height: 330px;
  width: 100%;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eee9df;
}

/* Imagen real del producto */
.product-img img {
  width: 100%;
  height: 100%;
  display: block;

  /*
    contain = muestra el producto completo
    sin deformarlo ni cortarlo
  */
  object-fit: contain;
  object-position: center;

  /*
    Un pequeño margen para que las botellas
    no queden pegadas a los bordes
  */
  padding: 18px;

  transition: transform 0.4s ease;
}

/* Efecto al pasar el mouse */
.product-item:hover .product-img img {
  transform: scale(1.03);
}


/* Número/categoría de la esquina */
.product-img span {
  position: absolute;
  z-index: 3;

  top: 17px;
  left: 17px;

  color: #77736b;

  font-size: 9px;
  letter-spacing: 0.18em;
}


/* Fondos según categoría */
.bottle-dark {
  background: #26231f;
}

.bottle-gold {
  background: #81714f;
}

.bottle-clear {
  background: #cbc3b4;
}

.cans {
  background: #777c79;
}

.cans-red {
  background: #64231e;
}

.bottle-red {
  background: #5a2824;
}


/* 
   IMPORTANTE:
   eliminamos las botellas/latas ficticias
   que tenía originalmente el diseño
*/
.product-img::before,
.product-img::after {
  display: none;
}
.product-item > div:last-child {
  padding: 18px 2px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
}
.product-item > div:last-child small,
.product-item > div:last-child h2,
.product-item > div:last-child p {
  grid-column: 1/-1;
}
.product-item strong {
  margin-top: 15px;
}
.product-item a {
  margin-top: 15px;
  text-align: right;
}
.small-contact {
  padding: 115px 7vw;
}
.small-contact h2 {
  font-size: clamp(48px, 6vw, 78px);
}
@media (max-width: 850px) {
  .featured-grid,
  .catalog-grid,
  .product-catalog {
    grid-template-columns: 1fr 1fr;
  }
  .filter-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .filter-row > div {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .featured-grid,
  .catalog-grid,
  .product-catalog {
    grid-template-columns: 1fr;
  }
  .page-head {
    padding: 135px 6vw 70px;
  }
  .page-head h1 {
    font-size: 57px;
  }
}

.mt-2 {
  margin-top: 20px;
}

.bg-gray-photo{
  background-color: #ffffff;
}

.pl-2{
  padding-left: 20px;
}

.d-content{
  display: contents;
}