/* ═══════════════════════════════════════════════
   LA CIMA — home-page.css  (v2)
   Fullscreen hero · Product showcase · Why section
   Cormorant + Jost typography
   ═══════════════════════════════════════════════ */

/* ══ HERO — fullscreen background image ════════ */
.lc-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.lc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../imgs/neveria_la_cima_madison-Ice-cream.jpg') center center / cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
}

.lc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,40,.15) 0%,
    rgba(20,20,40,.30) 40%,
    rgba(15,15,35,.72) 75%,
    rgba(10,10,28,.88) 100%
  );
}

.lc-hero-bg--fallback {
  background: linear-gradient(145deg,#2C2D45 0%,#3C3D5D 40%,#4A6080 70%,#75BAD9 100%) !important;
}

.lc-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  padding: calc(var(--nav-h) + 80px) var(--gutter) 60px;
}

.lc-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-accent);
  font-size: var(--fs-xs);
  font-weight: 300;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-5);
}

.lc-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--color-white);
  letter-spacing: -.01em;
  margin-bottom: var(--sp-5);
  max-width: 760px;
}

.lc-hero-h1 em {
  font-style: italic;
  color: var(--color-blue);
  font-weight: 400; /* DM Serif Display italic is naturally fluid */
}

/* Hero keyword color highlights */
.hero-keyword--blue   { color: var(--color-blue);   font-style: italic; }
.hero-keyword--red    { color: var(--color-red);    font-style: normal; }
.hero-keyword--green  { color: #C3D96B;             font-style: normal; }
.hero-keyword--cream  { color: var(--color-yellow-light); font-weight: 400; }

.lc-hero-sub {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  letter-spacing: .01em;
  letter-spacing: .02em;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--sp-10);
}

.lc-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* Products strip inside hero */
.lc-hero-products {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.10);
}

.lc-hero-products-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  divide-color: rgba(255,255,255,.08);
}

.lc-hero-pill {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--ease);
}
.lc-hero-pill:last-child { border-right: none; }
.lc-hero-pill:hover { background: rgba(255,255,255,.06); }

.lc-hero-pill-emoji { font-size: 24px; flex-shrink: 0; line-height: 1; }
.lc-hero-pill-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  display: block;
  line-height: 1.2;
}
.lc-hero-pill-desc {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
  color: rgba(255,255,255,.65);
  display: block;
  margin-top: 2px;
}


/* ══ PROMO STRIP ════════════════════════════════ */
.lc-promo-strip { background: var(--color-red); padding: 15px var(--gutter); }
.lc-promo-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  text-align: center;
}
.lc-promo-badge {
  background: rgba(255,255,255,.18);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.lc-promo-text { color: var(--color-white); font-family: var(--font-body); font-size: 15px; font-weight: 400; }
.lc-promo-cta {
  background: var(--color-white);
  color: var(--color-red-dark);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 7px 20px;
  border-radius: var(--r-full);
  transition: all var(--ease);
  white-space: nowrap;
}
.lc-promo-cta:hover { background: var(--color-yellow-light); transform: translateY(-1px); }

/* ══ PRODUCTS SHOWCASE ══════════════════════════ */
.lc-showcase { background: var(--color-white); padding-block: var(--sp-24); }

.lc-showcase-header {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-bottom: var(--sp-12);
}

.lc-showcase-grid {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-5);
}

.lc-showcase-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-yellow-light);
  display: flex;
  flex-direction: column;
  transition: all var(--ease);
  text-decoration: none;
}
.lc-showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* 3rd card: full width horizontal */
.lc-showcase-card:nth-child(3) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: unset;
}
.lc-showcase-card:nth-child(3) .lc-sc-img { height: 100%; min-height: 260px; }
.lc-showcase-card:nth-child(3) .lc-sc-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lc-sc-img {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-sky-blue), var(--color-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 88px;
  flex-shrink: 0;
}

/* Real image usage:
.lc-sc-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; } */

.lc-sc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,28,.45) 0%, transparent 55%);
}

.lc-sc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.2);
}

.lc-sc-body { padding: 22px 24px; }

.lc-sc-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: var(--sp-2);
}

.lc-sc-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-dark-mid);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.lc-sc-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-blue-dark);
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--ease);
}
.lc-showcase-card:hover .lc-sc-link { gap: 10px; }

.lc-showcase-cta {
  text-align: center;
  margin-top: var(--sp-12);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ══ WHY LA CIMA ════════════════════════════════ */
.lc-why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--sp-6);
}
.lc-why-card {
  background: var(--color-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid var(--color-border);
  transition: all var(--ease);
}
.lc-why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--color-blue-light); }
.lc-why-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--color-sky-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: var(--sp-5);
}
.lc-why-title { font-family: var(--font-display); font-size: 21px; font-weight: 400; letter-spacing: 0; color: var(--color-dark); margin-bottom: var(--sp-3); }
.lc-why-desc  { font-family: var(--font-body); font-size: 14px; font-weight: 300; letter-spacing: .01em; color: var(--color-dark-mid); line-height: 1.7; }

/* ══ EVENTS BANNER ══════════════════════════════ */
.lc-events-banner { background: linear-gradient(130deg, var(--color-dark) 0%, #4A5080 100%); padding: var(--sp-16) var(--gutter); }
.lc-events-inner { max-width: var(--max-width); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-8); flex-wrap: wrap; }
.lc-events-icon  { font-size: 40px; margin-bottom: var(--sp-3); }
.lc-events-title { font-family: var(--font-display); font-size: clamp(28px,4vw,42px); font-weight: 400; color: var(--color-white); margin-bottom: var(--sp-3); line-height: 1.15; }
.lc-events-sub   { font-family: var(--font-body); font-size: 15px; font-weight: 300; color: rgba(255,255,255,.8); max-width: 440px; line-height: 1.75; }

/* ══ REVIEWS ════════════════════════════════════ */
.lc-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.lc-review-card { background: var(--color-yellow-light); border-radius: var(--r-lg); padding: var(--sp-8) var(--sp-6); display: flex; flex-direction: column; }
.lc-review-stars { color: var(--color-green); font-size: 16px; margin-bottom: var(--sp-4); }
.lc-review-text { font-family: var(--font-body); font-size: 15px; font-weight: 300; font-style: italic; color: var(--color-dark); line-height: 1.75; margin-bottom: var(--sp-5); flex: 1; }
.lc-review-author { display: flex; align-items: center; gap: var(--sp-3); font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--color-dark); }
.lc-review-avatar { width:36px; height:36px; border-radius:50%; background:var(--color-sky-blue); color:var(--color-blue-dark); font-weight:500; font-size:var(--fs-sm); display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* ══ HOURS + MAP ════════════════════════════════ */
.lc-visit-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--sp-16); align-items: start; }
.lc-hours-table { width:100%; border-collapse:collapse; margin-bottom:var(--sp-8); }
.lc-hours-table tr { border-bottom: 1px solid var(--color-border); }
.lc-hours-table tr:last-child { border-bottom: none; }
.lc-hours-table td { padding:13px 0; font-family:var(--font-body); font-size:15px; font-weight:300; letter-spacing: .01em; color:var(--color-dark-mid); }
.lc-hours-table td:first-child { font-weight:400; color:var(--color-dark); width:140px; }
.lc-contact-btns { display:flex; gap:var(--sp-3); flex-wrap:wrap; }
.lc-map-wrap { border-radius:var(--r-lg); overflow:hidden; height:380px; background:var(--color-blue-light); box-shadow:var(--shadow-md); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:var(--sp-4); }
.lc-map-wrap iframe { width:100%; height:100%; border:none; display:block; }
.lc-map-placeholder-icon { font-size:44px; }
.lc-map-placeholder-text { font-family:var(--font-body); font-size:var(--fs-sm); font-weight:300; color:var(--color-dark-mid); text-align:center; padding-inline:var(--sp-5); line-height:1.6; }

/* ══ RESPONSIVE ═════════════════════════════════ */
@media (max-width: 1024px) {
  .lc-why-grid            { grid-template-columns: repeat(2,1fr); }
  .lc-hero-products-inner { grid-template-columns: repeat(2,1fr); }
  .lc-showcase-grid       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .lc-hero-h1   { font-size: clamp(40px,11vw,64px); }
  .lc-hero-btns { flex-direction: column; align-items: flex-start; }
  .lc-hero-btns .btn { width:100%; max-width:320px; justify-content:center; }
  .lc-showcase-grid { grid-template-columns: 1fr; }
  .lc-showcase-card:nth-child(3) { grid-column:1; grid-template-columns:1fr; }
  .lc-showcase-card:nth-child(3) .lc-sc-img { height:220px; min-height:unset; }
  .lc-showcase-card:nth-child(3) .lc-sc-body { padding:22px 24px; }
  .lc-reviews-grid { grid-template-columns: 1fr; }
  .lc-visit-grid   { grid-template-columns: 1fr; }
  .lc-events-inner { flex-direction:column; text-align:center; }
  .lc-events-sub   { margin-inline:auto; }
}
@media (max-width: 540px) {
  .lc-why-grid { grid-template-columns: 1fr; }
  .lc-hero-products-inner { grid-template-columns: 1fr 1fr; }
  .lc-contact-btns { flex-direction:column; }
  .lc-contact-btns .btn { width:100%; justify-content:center; }
}
@media (max-width: 400px) {
  .lc-hero-products-inner { grid-template-columns: 1fr; }
}

/* ── Hero buttons mobile: stack + center ── */
@media (max-width: 640px) {
  .lc-hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .lc-hero-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .lc-hero-content {
    text-align: center;
    padding-bottom: 40px;
  }
  .lc-hero-h1 {
    margin-inline: auto;
  }
  .lc-hero-sub {
    margin-inline: auto;
  }
  .lc-hero-tag {
    justify-content: center;
  }
}