/* Project-specific styles kept small because most UI is composed with Tailwind utilities. */
.hero-section {
  background:
    linear-gradient(90deg, rgba(24, 20, 18, 0.72), rgba(24, 20, 18, 0.38), rgba(24, 20, 18, 0.18)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.nav-link,
.mobile-link {
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.nav-link:hover,
.mobile-link:hover {
  background: rgba(36, 33, 31, 0.08);
  color: #24211f;
}

.section-kicker {
  margin-bottom: 0.55rem;
  color: #b69b84;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  color: #24211f;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 650;
  line-height: 1.08;
}

.filter-label {
  display: grid;
  gap: 0.45rem;
  color: rgba(36, 33, 31, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-select,
.text-input {
  width: 100%;
  min-height: 2.9rem;
  border: 1px solid rgba(36, 33, 31, 0.09);
  border-radius: 999px;
  background: #fff;
  color: #24211f;
  font-size: 0.95rem;
  font-weight: 650;
  outline: none;
  padding: 0 1rem;
}

.filter-select:focus,
.text-input:focus {
  border-color: rgba(182, 155, 132, 0.8);
  box-shadow: 0 0 0 4px rgba(182, 155, 132, 0.16);
}

.masonry {
  column-count: 1;
  column-gap: 1.25rem;
}

.look-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(36, 33, 31, 0.06);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 60px rgba(42, 35, 29, 0.1);
  break-inside: avoid;
}

.look-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.look-action {
  border: 1px solid rgba(36, 33, 31, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(36, 33, 31, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
  padding: 0.45rem 0.78rem;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.look-action.is-saved {
  border-color: rgba(91, 74, 63, 0.28);
  background: #24211f;
  color: #fff;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  border-radius: 999px;
  background: #f7f3ed;
  color: rgba(36, 33, 31, 0.72);
  font-size: 0.75rem;
  font-weight: 750;
  padding: 0 0.7rem;
}

.style-card,
.guide-card {
  min-height: 11.5rem;
  border: 1px solid rgba(36, 33, 31, 0.06);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(42, 35, 29, 0.08);
  padding: 1.35rem;
}

.style-card span,
.guide-card h3 {
  display: block;
  margin-bottom: 0.75rem;
  color: #24211f;
  font-size: 1.25rem;
  font-weight: 700;
}

.style-card p,
.guide-card p {
  color: rgba(36, 33, 31, 0.58);
  font-size: 0.95rem;
  line-height: 1.8;
}

.caption-card {
  border: 1px solid rgba(36, 33, 31, 0.06);
  border-radius: 1.3rem;
  background: #f7f3ed;
  padding: 1rem;
  color: rgba(36, 33, 31, 0.72);
  line-height: 1.8;
}

.trend-chip {
  min-height: 2.55rem;
  border: 1px solid rgba(36, 33, 31, 0.09);
  border-radius: 999px;
  background: #f7f3ed;
  color: rgba(36, 33, 31, 0.68);
  font-size: 0.86rem;
  font-weight: 750;
  padding: 0 1rem;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.trend-chip:hover {
  transform: translateY(-1px);
}

.trend-chip.is-active {
  background: #24211f;
  color: #fff;
}

.trend-point,
.saved-item {
  border: 1px solid rgba(36, 33, 31, 0.06);
  border-radius: 1.25rem;
  background: #f7f3ed;
  padding: 1rem;
}

.trend-point span,
.saved-item span {
  display: block;
  margin-bottom: 0.45rem;
  color: #24211f;
  font-weight: 750;
}

@media (min-width: 640px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry {
    column-count: 3;
  }
}

@media (min-width: 1280px) {
  .masonry {
    column-count: 4;
  }
}
