/* ==========================================================================
   SESSAIA STUDIO | Hero Section Styles
   ========================================================================== */

.atelier-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-chalk);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.hero-background-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.96) contrast(1.02);
  transform: scale(1.03);
  transition: transform 12s cubic-bezier(0.1, 1, 0.1, 1);
}

.atelier-hero:hover .hero-bg-image {
  transform: scale(1.0);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center 55%, rgba(249, 248, 246, 0.52) 0%, rgba(249, 248, 246, 0.85) 68%, rgba(249, 248, 246, 0.98) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  animation: heroFadeIn 1.2s var(--ease-atelier) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background-color: rgba(249, 248, 246, 0.92);
  border: 1px solid var(--color-pebble-grey);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-aegean-blue);
  margin-bottom: var(--space-lg);
  box-shadow: 0 2px 10px rgba(44, 57, 69, 0.05);
}

.hero-title {
  font-family: var(--font-serif-brand);
  font-size: clamp(1.5rem, 3.45vw, 2.55rem); /* Scaled down by 25% */
  line-height: 1.32;
  color: var(--color-slate-ink);
  margin-bottom: var(--space-md);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-subline {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important; /* Montserrat Light */
  font-size: clamp(1.02rem, 1.9vw, 1.21rem); /* Reduced by 1 */
  line-height: 1.3; /* 1.3 line spacing */
  letter-spacing: 0.05em; /* +50 tracking (50/1000em) */
  color: var(--color-slate-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 740px;
  margin: 0 auto var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 220px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.8rem;
  line-height: 1;
}

.hero-actions .btn .btn-label {
  display: inline-block;
  line-height: 1;
  transform: translateY(3.5px); /* Offsets TAN Mon Cheri 1020/390 ascent/descent for true vertical optical centering */
}

/* Material Pillars Ribbon in Aegean Slate Blue (Single Line Fit) */
.hero-material-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-aegean-blue);
  border-top: 1px solid rgba(249, 248, 246, 0.15);
  z-index: 10;
  padding: 0.75rem 0;
  box-shadow: 0 -2px 12px rgba(44, 57, 69, 0.08);
  overflow: hidden;
}

.hero-material-ribbon .container {
  max-width: 1400px;
  padding-left: clamp(0.5rem, 2vw, 2rem);
  padding-right: clamp(0.5rem, 2vw, 2rem);
}

.ribbon-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(0.4rem, 1vw, 1.25rem);
  list-style: none;
  font-family: var(--font-sans);
  font-size: clamp(0.56rem, 0.76vw, 0.65rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-chalk);
  white-space: nowrap;
}

.ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.ribbon-dot {
  width: 4px;
  height: 4px;
  background-color: var(--color-pebble-grey);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .atelier-hero {
    min-height: 75vh;
    padding: var(--space-2xl) 0;
  }
  .hero-material-ribbon {
    display: none;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
