 /* ================= COLLECTIONS HERO ================= */
.collections-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Overlay */
.collections-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right, rgba(255,255,255,.08), transparent 45%),
    linear-gradient(135deg,#173357,#0f2b46);
  z-index: 1;
}

/* Content */
.collections-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #ffffff;
}


/* Pill */
.collections-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.collections-pill i {
  font-size: 15px;
}

/* Heading */
.collections-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Paragraph */
.collections-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d7e1eb;
  max-width: 640px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .collections-hero {
    min-height: 480px;
  }

  .collections-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .collections-hero {
    min-height: 440px;
  }

  .collections-hero h1 {
    font-size: 2rem;
  }

  .collections-hero p {
    font-size: 0.95rem;
  }
}

/* ================= INTRO ================= */
.collection-intro{
  padding: 50px 0 25px;
  text-align: left;
}

.collection-intro h1{
  font-size: 48px;
  font-weight: 700;
  color: #0f2b46;
  margin-bottom: 14px;
}

.collection-intro h2{
  font-size: 36px;
  font-weight: 700;
  color: #0f2b46;
  margin-bottom: 14px;
}

.collection-intro .collection-subtext{
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #5b6b7a;
}
/* ================= GALLERY ================= */
.collection-gallery{
  padding: 20px 0 100px;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 1200px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .collection-intro h1 {font-size: 36px; }
}
@media (max-width: 480px){
  .gallery-grid{ grid-template-columns: 1fr; }
}

.gallery-item{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f4f4f4;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  transition: transform .35s ease;
}

.gallery-item:hover{
  transform: translateY(-4px);
}

/* FIXED IMAGE RATIO */
.gallery-item img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Hover overlay */
.gallery-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,43,70,.55),
    rgba(15,43,70,.05) 60%
  );
  opacity: 0;
  transition: .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay{
  opacity: 1;
}

.gallery-overlay span{
  color: transparent;
  font-size: 14px;
  font-weight: 600;
}

.gallery-disclaimer-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.gallery-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 15px;
  color: #5b6b7a;
  background: #f4f6f9;
  border-radius: 8px;
  border: 1px dashed #d9dee6;
}

.gallery-disclaimer i {
  font-size: 14px;
  color: #1f4fd8;
}

/* ================= CTA ================= */
.collection-cta{
  background:#faf8f4;
  padding:90px 0;
  text-align:center;
}

.collection-cta h3{
  font-size:32px;
  font-weight:700;
  color:#0f2b46;
}

.collection-cta p{
  max-width:640px;
  margin:14px auto 30px;
  color:#5b6b7a;
}

.request-btn {
  padding: 14px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  background: #173357;
  border: none;
}

.request-btn:hover {
  background: #2566a6;
}