/* ── Header Section ── */
.areas-header-section {
  background-color: #ffffff;
  width: 100%;
  padding: 48px 20px 40px;
  display: flex;
  justify-content: center;
}
.areas-header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}
.areas-header-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.areas-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}
.areas-header-btn:hover { background-color: #333333; }

/* ── Gallery Section ── */
.areas-gallery-section {
  width: 100%;
  background-color: #2b2b2b;
  background-image: url('https://lirp.cdn-website.com/7ae2b340/dms3rep/multi/opt/gun-metal-2880w.png');
  background-position: center center;
  background-size: 10px;
  padding: 32px 20px 48px;
}
.areas-gallery-grid-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.areas-gallery-layout { display: flex; flex-direction: column; gap: 8px; }
.areas-gallery-row { display: flex; gap: 8px; }
.areas-gallery-column { flex: 1 1 0; min-width: 0; }
.areas-gallery-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #8a8f96;
}
.areas-gallery-img-link {
  display: block;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
.areas-gallery-img-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 60%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}
.areas-gallery-thumb:hover .areas-gallery-img-link::after { transform: translateX(100%); }
.areas-gallery-img-link img { display: none; }
.areas-caption-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.areas-caption-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: all;
}
.areas-caption-title {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 800;
  text-align: center;
  color: #1a1a1a;
}
.areas-caption-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
.areas-caption-btn:hover { background-color: #444444; }

@media (max-width: 600px) {
  .areas-gallery-row { flex-direction: column; }
  .areas-gallery-column { flex: none; width: 100%; }
  .areas-gallery-thumb { aspect-ratio: 4 / 3; }
}