/* ==========================================================================
   SCOUT PHOTOGRAPHY — HOME PAGE (Editorial Showcase)
   ========================================================================== */

/* Hero Section */
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--nav-height) + 58px) 0 96px;
  background: radial-gradient(circle at 78% 34%, rgba(180, 143, 190, 0.2), transparent 38%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 0 38px;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vega-violet);
  margin-bottom: 32px;
  position: relative;
}

.hero-location-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 1px;
  background: var(--vega-violet);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.9vw, 6.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.06em;
  color: var(--white);
  margin-bottom: 30px;
}

.hero-title .highlight {
  color: var(--vega-violet);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1rem;
  color: var(--foxgloves);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 510px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 58px;
}

/* Quick Package Jump Selector */
.hero-package-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}

.hero-pills-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.pills-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.package-pill {
  padding: 4px 0;
  margin-right: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--foxgloves);
  transition: all var(--transition-fast);
}

.package-pill:hover {
  background: transparent;
  border-bottom-color: var(--vega-violet);
  color: var(--vega-violet);
}

/* Editorial Photography Frame */
.hero-visual {
  position: relative;
  padding: 18px 0 18px 18px;
  border-left: 1px solid var(--border-light);
}

.hero-visual::before {
  content: '01 / THE SCOUT ARCHIVE';
  position: absolute;
  top: -16px;
  right: 0;
  color: var(--foxgloves);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.editorial-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.editorial-frame-img {
  width: 100%;
  height: min(68vh, 680px);
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.editorial-frame:hover .editorial-frame-img {
  transform: scale(1.02);
}

.frame-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(35, 23, 42, 0.88) 100%);
  padding: 52px 32px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.frame-caption-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #fffaf5;
  margin-bottom: 2px;
}

.frame-caption-loc {
  font-size: 0.78rem;
  color: #e3c6ef;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.frame-badge-stat {
  font-size: 0.74rem;
  color: #fffaf5;
  background: rgba(35, 23, 42, 0.64);
  border: 1px solid rgba(255, 250, 245, 0.3);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
}

/* Stats Counter Strip */
.stats-strip {
  background: #e9dfd4;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(35, 25, 35, 0.15);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  font-weight: 500;
  color: #24182b;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.86rem;
  color: #695d67;
  font-weight: 500;
}

/* Curated Gallery Section */
.gallery-section {
  padding: 116px 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 4px;
  margin: 0 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--foxgloves);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: transparent;
  border-color: var(--vega-violet);
  color: var(--white);
}

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

.gallery-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 360px;
  background: var(--bg-surface);
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(5) {
  height: 360px;
}

.gallery-card:nth-child(6n + 1),
.gallery-card:nth-child(6n + 6) {
  grid-column: span 6;
}

.gallery-card:nth-child(6n + 2),
.gallery-card:nth-child(6n + 3),
.gallery-card:nth-child(6n + 4),
.gallery-card:nth-child(6n + 5) {
  grid-column: span 3;
}

.gallery-grid.is-filtered .gallery-card {
  grid-column: span 6;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(35, 23, 42, 0.87) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.gallery-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e3c6ef;
  margin-bottom: 4px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fffaf5;
  margin-bottom: 6px;
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #f0e8ed;
}

/* Philosophy Section */
.manifesto-section {
  background: #f1eaf0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.3vw, 3.5rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--white);
}

.manifesto-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manifesto-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-xs);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast);
}

.manifesto-item:hover {
  border-color: var(--border-accent);
}

.manifesto-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: rgba(127, 49, 196, 0.15);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vega-violet);
  flex-shrink: 0;
}

.manifesto-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.manifesto-item p {
  font-size: 0.88rem;
  color: var(--foxgloves);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
}

.testimonial-rating {
  color: var(--vega-violet);
  margin-bottom: 14px;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-accent);
}

.client-info h5 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.client-info span {
  font-size: 0.78rem;
  color: var(--foxgloves);
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(120deg, #eaddeb, #f5edf2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  padding: 76px 40px;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--white);
}

.cta-strip p {
  max-width: 580px;
  margin: 0 auto 28px;
  font-size: 1rem;
  color: var(--foxgloves);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-card:nth-child(n) {
    grid-column: auto;
  }
  .gallery-grid.is-filtered .gallery-card {
    grid-column: auto;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 68px;
  }
  .hero-title {
    font-size: clamp(3.1rem, 11vw, 4.4rem);
  }
  .hero-visual {
    padding-left: 12px;
  }
  .hero-actions {
    margin-bottom: 42px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card:nth-child(n) {
    grid-column: auto;
    height: 380px;
  }
  .editorial-frame-img {
    height: 460px;
  }
  .cta-strip {
    padding: 40px 20px;
  }
}
