.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.44s ease, transform 0.44s ease; }
.reveal.revealed { opacity: 1; transform: none; }

.hero-img-wrap { width: 100%; overflow: hidden; max-height: 560px; }
.hero-img-wrap .hero-img { width: 100%; height: 560px; object-fit: cover; object-position: center top; display: block; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 48px;
}

.disclaimer {
  margin-bottom: 60px;
}

.photo-section-head { text-align: center; padding: 52px 48px 28px; }
.photo-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.photo-section-head p { color: var(--gray); font-size: 0.95rem; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px 56px;
}

.photo-grid .photo-item { 
  border-radius: var(--radius-md); 
  overflow: hidden; 
  aspect-ratio: 3/4; 
  background: var(--pink-light); 
  position: relative; 
  transition: transform 0.3s ease;
}

.photo-grid .photo-item:hover {
  transform: translateY(-5px);
}

.photo-grid .photo-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

@media (max-width: 992px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .photo-grid { 
    grid-template-columns: repeat(1, 1fr); 
    padding: 0 20px 40px;
  }
}

.photo-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px 56px;
}
.photo-grid-6 .photo-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; background: var(--pink-light); position: relative; }
.photo-grid-6 .photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid-6 .photo-item .photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  font-size: 0.8rem; color: var(--pink); font-weight: 450; opacity: 0.8;
}

.states-section { padding: clamp(32px, 5vw, 56px) 0px; }
.states-inner {
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: -40px;
  margin-top: -30px;
  background: #e2e2e2;
  border-radius: 18px;
  padding: clamp(20px, 4vw, 36px);
  text-align: center;
  border: 1px solid #eee;
}
.states-inner h4 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 18px; font-weight: 700; }
.states-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.state-tag {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e6e6e6;
  transition: all 0.25s ease;
}
.state-tag:hover { background: var(--pink); color: #fff; border-color: var(--pink); transform: translateY(-2px); }

@media (max-width: 768px) {
  .container { padding: 36px 20px; }
  .disclaimer { margin-bottom: 50px; }
  .hero-img-wrap .hero-img { height: 320px; }
  .photo-section-head { padding: 40px 20px 20px; }
  .hero-intro { padding: 36px 20px 40px; }
  .hero-intro h1 {font-weight: 600px;}
  .gallery-head { padding: 40px 20px 20px; }
  .slider-wrap { padding: 0 20px; } 
  .states-section { padding: clamp(32px, 5vw, 56px) 0px; }
  .trust-stats.clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 40px 16px; }
  .stat-card { min-width: unset; }
  .stat-icon { width: 36px; height: 36px; }
  .stat-card h3 { font-size: 1.2rem; }
  .stat-card p { font-size: 0.78rem; }
  .slide { flex: 0 0 calc(70% - 7px); }
}

@media (max-width: 480px) {
  .photo-grid { 
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0 40px;
  }
  .disclaimer { margin-bottom: 20px; }
  .container { padding: 28px 16px; }
  .hero-img-wrap .hero-img { height: 220px; }
  .hero-intro { padding: 28px 16px 36px; }
  .hero-intro h1 {font-weight: 600px;}
  .state-tag { font-size: 0.75rem; padding: 7px 12px; }
  .slide { flex: 0 0 85%; }
}