/* ============ VARIABLES ============ */
:root{
  --bg: #f6f3ee;
  --ink: #2b2b2b;
  --muted: #6b6b6b;

  --brown: #3b2a22;
  --sage: #6f7e5b;

  --max: 980px;
}


@font-face {
  font-family: 'AwesomeLatusca';
  src: url('fonts/Awesome\ Lathusca.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'lekton';
  src: url('fonts/lekton005_l.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'lora';
  src: url('fonts/Lora-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}






/* ============ RESET ============ */
*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: white;
  line-height: 1.55;
}
img{ display:block; width:100%; height:auto; }

/* ============ FULLSCREEN ============ */

/* ============ HERO ============ */
.hero{
  position: relative;
  height: 56vh;
  min-height: 320px;
  overflow: hidden;
  background: #ddd;
}
.hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
}
.brand{
  margin:0;
  letter-spacing: 0.08em;
  font-size: clamp(34px, 6vh, 400px);
  font-weight: 550;
  color: var(--sage);
  text-align: center;
  
}

/* ============ BLOQUE DOBLE (mobile: apilado) ============ */
.split{
  display: grid;
  grid-template-columns: 1fr;
}
.split__left{
  background: var(--bg);
}
.split__left img{
  margin: 0 auto;
}
.split__right{
  background: var(--brown);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 16px;
  min-height: 180px;
}
.split__logo{
  width: min(260px, 75vw);
  height: auto;
  opacity: 0.95;
}

/* Si NO usas imagen del logo arco (muy básico) */
/*
.split__logoText{
  color: var(--sage);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: .12em;
  font-size: 34px;
  transform: rotate(-8deg);
}
*/

/* ============ CONTENIDO ============ */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 40px;
}
.about__title{
  margin: 0;
  font-size: 40px;
  letter-spacing: .10em;
  color: var(--brown);
}
.about__subtitle{
  margin: 4px 0 18px;
  font-family: 'lekton', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  letter-spacing: .22em;
  color: var(--muted);
}
.about p{ margin: 0 0 12px; }
.about__closing{ margin-top: 18px; }

.divider{
  border: none;
  border-top: 1px solid rgba(0,0,0,.12);
  margin: 26px 0;
}

.brand,
.about__title {
  font-family: 'AwesomeLatusca', Georgia, serif;
}


/* ============ ARTÍCULOS ============ */
.catalog__title{
  text-align:center;
  font-family: 'lekton', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .28em;
  margin: 0 0 27px;
  color: var(--ink);
}

.chips{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
}

.chip{
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--sage);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  text-decoration:none;

  font-family: 'lekton', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .10em;
  font-size: 20px;
  padding: 18px;

  transition: transform .12s ease, opacity .12s ease;
}



.chip:hover{
  background: #5e4438;
}





p{
  font-family: 'Lora';
  font-size: large;

}
.chip:active{ transform: scale(0.98); opacity: 0.9; }

/* ============ FOOTER ============ */
.footer{
  padding: 22px 16px;
  text-align:center;
  color: var(--muted);
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,.08);
}

/* ============ BREAKPOINT (desktop) ============ */
@media (min-width: 820px){
  .hero{ height: 54vh; min-height: 420px; }

  .split{
    grid-template-columns: 1fr 1fr;
  }
  .split__right{
    min-height: 320px;
  }

  .chips{
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .chip{
    width: 210px;
    height: 210px;
    font-size: 22px;
  }
  
  .brand{
    font-size: clamp(34px, 6vw, 400px);
  }

  .split__logo{

    width: min(500px, 75vw);
  }

}
