/* =========================
   Linglobe Gallery Section
========================= */

.ll-gallery-section {
  padding: 80px 20px;
  background: #f8f5ef;
  margin-bottom:30px;
}

.ll-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.ll-section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.ll-section-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a6a3a;
  font-weight: 700;
}

.ll-section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.25;
  color: #2f261f;
}

.ll-section-heading p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #5e554e;
}

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

.ll-gallery-card {
  margin: 0;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(55, 40, 25, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ll-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(55, 40, 25, 0.15);
}

.ll-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ll-gallery-card figcaption {
  padding: 14px 16px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3d332b;
  font-weight: 600;
}

.ll-gallery-cta {
  margin-top: 46px;
  text-align: center;
}

.ll-gallery-cta p {
  margin: 0 0 16px;
  color: #5e554e;
  font-size: 1rem;
}

.ll-gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #8b5e34;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ll-gallery-button:hover {
  background: #6f4826;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 900px) {
  .ll-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Smartphone */
@media (max-width: 600px) {
  .ll-gallery-section {
    padding: 56px 16px;
  }

  .ll-section-heading {
    text-align: left;
    margin-bottom: 30px;
  }

  .ll-section-heading p {
    margin: 0;
  }

  .ll-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ll-gallery-card {
    border-radius: 14px;
  }

  .ll-gallery-button {
    width: 100%;
    min-width: auto;
  }
}