/* ===========================
   LIAMY WEAR – STYLE.CSS
   Elegante · Corporativo · Premium
=========================== */

:root {
  --black: #0A0A0A;
  --dark: #1C1C1C;
  --mid: #3A3A3A;
  --gray: #6E6E6E;
  --light-gray: #E8E8E8;
  --off-white: #F5F4F2;
  --white: #FFFFFF;
  --accent: #C9A96E;
  --accent-light: #E8D5B0;
  --radius: 4px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn--primary {
  background: var(--black);
  color: var(--white);
}
.btn--primary:hover { background: var(--mid); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.btn--outline:hover { background: var(--black); color: white; }

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0;
}

/* ======= HEADER ======= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,244,242,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__logo { display: flex; align-items: center; gap: 14px; }
.lw-logo {
  display: flex;
  align-items: baseline;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--black);
}
.lw-l, .lw-w { font-size: 2rem; }
.lw-sep { color: var(--accent); margin: 0 2px; font-size: 1.4rem; }
.lw-logo--sm .lw-l, .lw-logo--sm .lw-w { font-size: 1.4rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--black); }
.logo-sub { font-family: 'DM Sans', sans-serif; font-size: 0.55rem; letter-spacing: 0.2em; color: var(--gray); text-transform: uppercase; }
.header__nav { display: flex; gap: 32px; margin-left: auto; }
.header__nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--black); }
.header__cta { white-space: nowrap; padding: 10px 20px; font-size: 0.78rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--dark); transition: all 0.3s; }

/* ======= HERO ======= */
.hero {
  padding-top: 90px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  color: white;
  overflow: hidden;
}
.hero__left {
  padding: 80px 48px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero__number-bg {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18vw;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  line-height: 1;
}
.hero__content { position: relative; z-index: 1; }
.hero__tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero__title span { color: var(--accent); font-style: italic; }
.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__ctas .btn--primary { background: var(--accent); color: var(--black); }
.hero__ctas .btn--primary:hover { background: var(--accent-light); }
.hero__ctas .btn--outline { border-color: rgba(255,255,255,0.3); color: white; }
.hero__ctas .btn--outline:hover { background: rgba(255,255,255,0.1); }

.hero__right {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero__grid-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
}
.hg {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,0.15);
  transition: background 0.3s;
}
.hg:hover { background: rgba(201,169,110,0.08); color: var(--accent); }
.hg--1 { background: rgba(201,169,110,0.05); }
.hg--4 { background: rgba(255,255,255,0.02); }
.hero__stat-pill {
  position: absolute;
  background: white;
  color: var(--dark);
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero__stat-pill strong { display: block; font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; }
.hero__stat-pill--1 { bottom: 30%; left: -10px; }
.hero__stat-pill--2 { bottom: 18%; left: 40%; }

/* ======= NOSOTROS ======= */
.nosotros { padding: 100px 0 60px; background: var(--off-white); }
.nosotros__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.nosotros__col h2 { font-size: clamp(2rem, 4vw, 3rem); }
.nosotros__col--text p { color: var(--gray); margin-bottom: 16px; font-size: 0.98rem; }
.nosotros__pillars {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 40px 0;
}
.pillar { flex: 1; padding: 0 32px; }
.pillar__line { width: 1px; background: var(--light-gray); align-self: stretch; }
.pillar__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.pillar h4 { font-size: 1rem; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.pillar p { font-size: 0.82rem; color: var(--gray); }

/* ======= SERVICIOS ======= */
.servicios { padding: 80px 0; background: white; }
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.servicios__list { display: flex; flex-direction: column; }
.svc {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.2s;
}
.svc:hover { background: var(--off-white); padding-left: 16px; padding-right: 16px; margin: 0 -16px; border-radius: var(--radius); }
.svc__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-gray);
  text-align: right;
}
.svc__content h3 { font-size: 1.3rem; margin-bottom: 8px; }
.svc__content p { font-size: 0.88rem; color: var(--gray); max-width: 600px; }
.svc__tags { display: flex; gap: 8px; justify-content: flex-end; flex-shrink: 0; }
.svc__tags span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border: 1px solid var(--light-gray);
  color: var(--gray);
}

/* ======= DIFERENCIADORES ======= */
.diferenciadores { padding: 80px 0; background: var(--off-white); }
.dif__header { margin-bottom: 48px; }
.dif__header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.dif__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.dif__card {
  padding: 40px 32px;
  background: white;
  transition: transform 0.3s;
}
.dif__card:hover { transform: translateY(-4px); }
.dif__card--dark { background: var(--dark); color: white; }
.dif__card--dark h4 { color: var(--accent); }
.dif__card--dark p { color: rgba(255,255,255,0.65); }
.dif__icon { font-size: 2rem; margin-bottom: 16px; }
.dif__card h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.dif__card p { font-size: 0.88rem; color: var(--gray); }

/* ======= COBERTURA ======= */
.cobertura { padding: 80px 0; background: var(--black); color: white; }
.cobertura__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cobertura__text .section-tag { color: var(--accent); }
.cobertura__text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cobertura__text p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.cobertura__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.cov-stat { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.cov-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.cov-stat__label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ======= REDES ======= */
.redes { padding: 80px 0; background: var(--off-white); border-top: 1px solid var(--light-gray); }
.redes__inner { display: flex; align-items: center; gap: 64px; flex-wrap: wrap; }
.redes__inner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); flex: 1; min-width: 240px; }
.redes__inner p { flex: 2; color: var(--gray); font-size: 0.95rem; min-width: 240px; }
.redes__links { display: flex; gap: 12px; flex-shrink: 0; }
.red-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: all 0.3s;
}
.red-link:hover { background: var(--dark); color: white; }

/* ======= CONTACTO ======= */
.contacto { padding: 80px 0; background: white; }
.contacto__header { margin-bottom: 56px; }
.contacto__header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.contacto__header p { color: var(--gray); }
.contacto__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; }
.contacto__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--light-gray);
  transition: background 0.2s;
}
.contacto__item:hover { background: var(--off-white); }
.ci-icon { font-size: 1.8rem; flex-shrink: 0; }
.ci-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); margin-bottom: 4px; }
.contacto__item a { font-size: 0.95rem; font-weight: 600; color: var(--dark); transition: color 0.2s; }
.contacto__item a:hover { color: var(--accent); }

/* ======= FOOTER ======= */
.footer { background: var(--black); color: white; padding: 40px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand .lw-l, .footer__brand .lw-w { color: white; }
.footer__brand .lw-sep { color: var(--accent); }
.footer__brand .logo-brand { color: white; }
.footer__brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__links a:hover { color: white; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 80px 32px; }
  .hero__right { height: 300px; }
  .hero__number-bg { display: none; }
  .dif__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__nav.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--off-white); padding: 24px; border-bottom: 1px solid var(--light-gray); gap: 16px; z-index: 99; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .nosotros__inner { grid-template-columns: 1fr; gap: 32px; }
  .nosotros__pillars { flex-direction: column; gap: 24px; }
  .pillar__line { display: none; }
  .pillar { padding: 0; border-bottom: 1px solid var(--light-gray); padding-bottom: 24px; }
  .svc { grid-template-columns: 40px 1fr; }
  .svc__tags { display: none; }
  .dif__grid { grid-template-columns: 1fr; }
  .cobertura__inner { grid-template-columns: 1fr; gap: 40px; }
  .redes__inner { flex-direction: column; gap: 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
}
