@charset "UTF-8";
/* CSS Document */

:root {
  --liveo-dark: #2f302d;
  --liveo-black: #191a18;
  --liveo-gold: #b58a63;
  --liveo-soft: #f5f1ec;
  --liveo-text: #2d2d2d;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--liveo-text);
}

.liveo-navbar {
  background: rgba(25, 26, 24, .88);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  color: #fff;
  letter-spacing: .04em;
}

.navbar-brand span {
  color: var(--liveo-gold);
  font-weight: 400;
}

.nav-link {
  color: rgba(255,255,255,.78);
}

.nav-link:hover {
  color: #fff;
}

.btn-liveo {
  background: var(--liveo-gold);
  border-color: var(--liveo-gold);
  color: #fff;
  border-radius: 999px;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}

.btn-liveo:hover {
  background: #9d7654;
  border-color: #9d7654;
  color: #fff;
}

.hero-logo {
  max-width: 165px;
  height: auto;
  filter: brightness(0) invert(1) contrast(1.2);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 135px;
    filter: brightness(0) invert(1) contrast(1.35);
  }
}

.hero-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.25)),
    url("../img/liveo_hero.jpg") center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(181,138,99,.22), transparent 40%);
}

.hero-section h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero-section h1 {
    line-height: 1.08;
    letter-spacing: 0;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--liveo-gold);
  font-weight: 700;
}

.eyebrow.dark {
  color: var(--liveo-gold);
}

.section-padding {
  padding: 6rem 0;
}

.section-logo {
  max-width: 160px;
  margin-bottom: 18px;
  display: block;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .section-logo {
    max-width: 130px;
    margin-bottom: 14px;
  }
}

.bg-soft {
  background: var(--liveo-soft);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
  font-weight: 780;
}

.collection-card {
  background: #fff;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,.14);
}

.collection-img {
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.collection-card h3 {
  font-weight: 800;
  letter-spacing: .08em;
}

.collection-card p {
  color: #777;
  margin-bottom: 0;
}

.dark-section {
  background: var(--liveo-black);
  color: #fff;
}

.dark-section p {
  color: rgba(255,255,255,.75);
}

.benefit-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.2rem;
  padding: 2rem;
  min-height: 130px;
  display: flex;
  align-items: end;
  font-size: 1.15rem;
  font-weight: 700;
}

.catalog-cta {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.05);
}

.form-card {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.08);
}

.form-control,
.form-select {
  border-radius: .9rem;
  padding: .85rem 1rem;
}

.footer-liveo {
  background: var(--liveo-black);
  color: rgba(255,255,255,.75);
  padding: 2rem 0;
}

.footer-liveo strong {
  color: #fff;
}