/* ===============================
   BOTTEGA DA FE - GALLERIA 2.1
================================ */

.gallery-page {
  background: #f7f1e8;
  color: #20291f;
  font-family: 'Manrope', sans-serif;
}

/* HERO */

.gl-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #20311f;
}

.gl-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gl-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.52) 42%,
      rgba(0, 0, 0, 0.12) 100%
    );
  z-index: 1;
}

.gl-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 110px 0;
}

.gl-kicker {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #f1dfbd;
  margin-bottom: 22px;
}

.gl-kicker.dark {
  color: #b99456;
}

.gl-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7.5vw, 7.8rem);
  line-height: 0.88;
  font-weight: 600;
  max-width: 920px;
  margin-bottom: 30px;
}

.gl-hero p {
  max-width: 720px;
  color: #f8f3ea;
  font-size: 1.18rem;
  line-height: 1.8;
}

/* FEATURED */

.gl-featured {
  padding: 120px 0;
  background: #fffaf2;
}

.gl-featured-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.gl-featured-text h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 26px;
}

.gl-featured-text p {
  color: #4b463d;
  font-size: 1.12rem;
  line-height: 1.85;
}

.gl-featured-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gl-feature-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #20311f;
  box-shadow: 0 22px 55px rgba(35, 35, 35, 0.12);
}

.gl-feature-card:nth-child(2) {
  transform: translateY(38px);
}

.gl-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: 0.65s ease;
}

.gl-feature-card:hover img {
  transform: scale(1.08);
}

.gl-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.28) 58%,
    rgba(0, 0, 0, 0.03) 100%
  );
}

.gl-feature-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 2;
  color: white;
}

.gl-feature-card span,
.gl-item span {
  display: block;
  color: #f1dfbd;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  margin-bottom: 8px;
}

.gl-feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 2rem;
  line-height: 1;
}

/* MOSAIC */

.gl-mosaic {
  padding: 120px 0;
  background: #f7f1e8;
}

.gl-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.gl-section-heading p {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #7b6a4a;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.gl-section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.gl-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 310px;
  gap: 22px;
}

.gl-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #20311f;
  box-shadow: 0 22px 55px rgba(35, 35, 35, 0.10);
}

.gl-item.gl-wide {
  grid-column: span 2;
}

.gl-item.gl-tall {
  grid-row: span 2;
}

.gl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.65s ease;
}

.gl-item:hover img {
  transform: scale(1.08);
}

.gl-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.76) 0%,
    rgba(0, 0, 0, 0.28) 58%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.gl-item div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: white;
}

.gl-item h3 {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 2.1rem;
  line-height: 1;
}

/* NOTE */

.gl-note {
  padding: 110px 0;
  background: #fffaf2;
}

.gl-note-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.gl-note h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #20311f;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
}

.gl-note p {
  color: #4b463d;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 30px;
}

/* BUTTONS */

.gl-btn-primary,
.gl-btn-light,
.gl-btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 4px;
  font-weight: 800;
  transition: 0.3s ease;
}

.gl-btn-primary {
  background: #20311f;
  color: white;
}

.gl-btn-primary:hover {
  background: #b99456;
  transform: translateY(-3px);
}

/* CTA */

.gl-cta {
  background: #20311f;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.gl-cta h2 {
  max-width: 900px;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1;
  color: white;
}

.gl-cta p {
  max-width: 700px;
  margin: 0 auto;
  color: #f7f1e8;
  font-size: 1.12rem;
  line-height: 1.75;
}

.gl-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.gl-btn-light {
  background: white;
  color: #20311f;
}

.gl-btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.gl-btn-light:hover,
.gl-btn-outline-light:hover {
  transform: translateY(-3px);
}

.gl-btn-outline-light:hover {
  background: white;
  color: #20311f;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .gl-featured-grid,
  .gl-note-inner {
    grid-template-columns: 1fr;
  }

  .gl-featured-images {
    grid-template-columns: repeat(3, 1fr);
  }

  .gl-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }
}

@media (max-width: 760px) {

  .gl-hero {
    min-height: 620px;
  }

  .gl-hero h1 {
    font-size: 4rem;
  }

  .gl-featured,
  .gl-mosaic,
  .gl-note,
  .gl-cta {
    padding: 80px 0;
  }

  .gl-featured-images {
    grid-template-columns: 1fr;
  }

  .gl-feature-card,
  .gl-feature-card img {
    min-height: 360px;
  }

  .gl-feature-card:nth-child(2) {
    transform: none;
  }

  .gl-mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .gl-item.gl-wide,
  .gl-item.gl-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gl-item h3,
  .gl-feature-card h3 {
    font-size: 1.9rem;
  }

  .gl-cta-actions {
    flex-direction: column;
  }

  .gl-btn-light,
  .gl-btn-outline-light,
  .gl-btn-primary {
    width: 100%;
  }
}