/* ════════════════════════════════════════════════════
   Arhivă Giurgea — Homepage
   ════════════════════════════════════════════════════ */

.hp-wrap { width: 100%; max-width: 100%; padding: 0; margin: 0; }

/* ══ HERO ══════════════════════════════════════════════ */
.hp-hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  margin: 0;
}

.hp-hero__img {
  width: 48%;
  flex-shrink: 0;
  overflow: hidden;
  background: #e8e0d8;
}
.hp-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hp-hero__content {
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 60px 56px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.hp-hero__eyebrow {
  display: block;
  font-size: 10px !important;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8b5e3c;
  margin-bottom: 24px;
}

.hp-hero__title {
  font-size: 48px !important;
  line-height: 1.3 !important;
  letter-spacing: -0.2px;
  margin: 0 0 12px 0 !important;
  color: #0f0f0f;
  max-width: 100%;
  text-transform: none !important;
}

.hp-hero__sub {
  font-size: 11px !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 32px 0;
}

.hp-hero__text { margin-bottom: 36px; max-width: 100%; }
.hp-hero__text p {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #444;
  margin: 0 0 14px 0 !important;
  text-transform: none !important;
}

.hp-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hp-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 11px !important;
  letter-spacing: 2px;
  text-transform: uppercase !important;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.hp-btn--primary { background: #111; color: #fff !important; border-color: #111; }
.hp-btn--primary:hover { background: #8b5e3c; border-color: #8b5e3c; }
.hp-btn--outline { background: transparent; color: #111 !important; border-color: #111; }
.hp-btn--outline:hover { background: #111; color: #fff !important; }

/* ══ SECTION ════════════════════════════════════════════ */
.hp-section-title {
  font-size: 22px !important;
  color: #111;
  margin: 0;
  text-transform: none !important;
}
.hp-see-all {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #8b5e3c;
  text-decoration: none;
}
.hp-see-all:hover { opacity: .7; }

/* ══ CAROUSEL ═══════════════════════════════════════════ */
.hp-teaser { padding: 0 48px 80px; }
.hp-teaser__header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e4df;
}

.hp-carousel-outer { position: relative; }
.hp-carousel {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.hp-carousel::-webkit-scrollbar { display: none; }
.hp-carousel__item {
  flex-shrink: 0; width: 240px; height: 180px;
  background: #ede8e2; overflow: hidden;
  cursor: pointer; position: relative;
}
.hp-carousel__item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease;
}
.hp-carousel__item:hover img { transform: scale(1.06); }
.hp-carousel__label {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  color: #fff; font-size: 10px !important;
  padding: 24px 10px 8px;
  opacity: 0; transition: opacity .2s;
}
.hp-carousel__item:hover .hp-carousel__label { opacity: 1; }
.hp-carousel__placeholder {
  color: #bbb; font-size: 13px !important; padding: 40px 0;
}
.hp-carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; background: #fff;
  border: 1px solid #ddd; font-size: 24px;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all .18s; z-index: 2; color: #333;
}
.hp-carousel__arrow:hover { background: #111; color: #fff; border-color: #111; }
.hp-carousel__arrow--prev { left: -21px; }
.hp-carousel__arrow--next { right: -21px; }

/* ══ FOLDERS GRID ════════════════════════════════════════ */
.hp-folders { padding: 0 48px 96px; }
.hp-folders__header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid #e8e4df;
  flex-wrap: wrap; gap: 14px;
}
.hp-folders__controls { display: flex; align-items: center; gap: 10px; }
.hp-search-wrap { position: relative; }
.hp-search {
  width: 230px; padding: 10px 38px 10px 14px;
  border: 1px solid #ddd; font-size: 13px !important;
  outline: none; background: #fff; color: #111;
  transition: border-color .18s; font-family: inherit;
}
.hp-search:focus { border-color: #111; }
.hp-search::placeholder { color: #bbb; }
.hp-search__icon {
  position: absolute; right: 11px; top: 50%;
  transform: translateY(-50%); color: #aaa;
  font-size: 17px; pointer-events: none;
}
.hp-filter-btn {
  padding: 10px 18px; border: 1px solid #ddd;
  background: #fff; font-size: 11px !important;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all .18s;
  font-family: inherit; color: #333;
}
.hp-filter-btn:hover, .hp-filter-btn.active {
  background: #111; color: #fff; border-color: #111;
}
.hp-filter-panel {
  display: none; align-items: center;
  gap: 24px; padding: 14px 0 18px; flex-wrap: wrap;
}
.hp-filter-panel.open { display: flex; }
.hp-filter-label {
  font-size: 11px !important; letter-spacing: 2px;
  text-transform: uppercase; color: #999;
}
.hp-filter-panel label {
  font-size: 13px !important; cursor: pointer;
  display: flex; align-items: center; gap: 7px; color: #333;
}
.hp-filter-panel input[type=radio] { accent-color: #8b5e3c; }

.hp-folders__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px; margin-top: 8px;
}
.hp-folder-card {
  background: #f0ece6; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
  text-decoration: none; display: block; color: inherit;
}
.hp-folder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.hp-folder-card__img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; background: #ddd5c8; position: relative;
}
.hp-folder-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease;
}
.hp-folder-card:hover .hp-folder-card__img img { transform: scale(1.04); }
.hp-folder-card__no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center;
  justify-content: center; font-size: 48px; color: #c5b8a8;
}
.hp-folder-card__body { padding: 18px 18px 22px; }
.hp-folder-card__name {
  font-size: 15px !important; color: #111;
  margin: 0 0 6px 0; line-height: 1.3;
  text-transform: none !important;
}
.hp-folder-card__count {
  font-size: 12px !important; color: #999; margin: 0 0 18px 0;
}
.hp-folder-card__cta {
  display: inline-block; padding: 8px 20px;
  border: 1px solid #c5b8a8;
  font-size: 10px !important; letter-spacing: 2px;
  text-transform: uppercase !important;
  color: #555; background: transparent; transition: all .18s;
}
.hp-folder-card:hover .hp-folder-card__cta {
  background: #111; color: #fff; border-color: #111;
}
.hp-folders__empty, .hp-folders__loading {
  grid-column: 1/-1; text-align: center;
  padding: 64px 0; color: #bbb; font-size: 13px !important;
}

/* ══ SEARCH CHIPS ═══════════════════════════════════════ */
.ga-search-chips {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 6px 10px;
  padding: 10px 0 4px; border-top: 1px solid #eee; margin-top: 4px;
}
.ga-chip-label {
  font-size: 11px; color: #aaa; letter-spacing: 1px;
  text-transform: uppercase; margin-right: 4px; white-space: nowrap;
}
.ga-chip-group { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.ga-chip-cat {
  font-size: 10px; color: #ccc; letter-spacing: 1px;
  text-transform: uppercase; padding: 0 4px 0 8px;
  border-left: 1px solid #e0e0e0;
}
.ga-chip-group:first-of-type .ga-chip-cat { border-left: none; padding-left: 0; }
.ga-chip {
  padding: 4px 11px; font-size: 12px;
  border: 1px solid #ddd; background: #fff; color: #555;
  cursor: pointer; transition: all .15s;
  border-radius: 0; font-family: inherit;
}
.ga-chip:hover { border-color: #8b5e3c; color: #8b5e3c; }
.ga-chip.active { background: #8b5e3c; color: #fff; border-color: #8b5e3c; }

/* ══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hp-folders__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-hero__content { padding: 80px 40px 48px; }
}
@media (max-width: 768px) {
  .hp-hero { flex-direction: column; min-height: auto; }
  .hp-hero__img { width: 100%; height: 65vw; }
  .hp-hero__content { width: 100%; padding: 36px 24px 48px; }
  .hp-hero__title { font-size: 48px !important; }
  .hp-folders__grid { grid-template-columns: 1fr; }
  .hp-teaser, .hp-folders { padding: 0 20px 60px; }
  .hp-search { width: 160px; }
}

/* ── Carousel section header ── */
.hp-teaser-wrap {
  padding: 0;
}
.hp-teaser-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 56px 48px 24px;
}
.hp-teaser-header .hp-section-title {
  font-size: 22px !important;
  color: #111;
  margin: 0;
  text-transform: none !important;
  letter-spacing: -0.2px;
}
.hp-teaser-header .hp-see-all {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b5e3c;
  text-decoration: none;
}
.hp-teaser-header .hp-see-all:hover {
  text-decoration: underline;
}

.hp-teaser-header__titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hp-section-sub {
  font-size: 11px !important;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}
