/* =============================================
   WONDER CHROME STUDIO — HEIRLOOM PORTRAITS
   ============================================= */

/* ── Inner Page Hero ────────────────────────── */
.page-hero {
  position: relative;
  height: 75vh;
  min-height: 560px;
  max-height: 820px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 40%, rgba(122,98,64,0.1) 0%, transparent 60%),
              linear-gradient(170deg, #1f1b16 0%, #080604 60%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
  width: 100%;
}

.page-hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-cinematic) 0.2s forwards;
}

.page-hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  color: var(--ivory);
  max-width: 700px;
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-cinematic) 0.4s forwards;
}

.page-hero__title em {
  color: var(--gold-light);
  font-style: italic;
}

.page-hero__sub {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  max-width: 480px;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-cinematic) 0.6s forwards;
}

/* ── Section: What Is ───────────────────────── */
.what-is-section {
  padding: var(--spacing-xl) 0;
  background: var(--charcoal);
}

.what-is-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}

.what-is__pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.45;
  position: relative;
  padding-left: 2rem;
}

.what-is__pull-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 2px;
  background: var(--gold);
  opacity: 0.6;
}

.what-is__body p + p {
  margin-top: 1.25rem;
}

/* ── Categories Grid ────────────────────────── */
.categories-section {
  padding: var(--spacing-xl) 0;
  background: var(--black);
}

.categories-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card .img-placeholder {
  background: var(--charcoal);
  aspect-ratio: 3 / 4;
  transition: transform 0.7s var(--ease-luxury);
}

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

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.85) 0%, transparent 55%);
  pointer-events: none;
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
}

.category-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.35rem;
}

.category-card__sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 300;
}

/* ── Process ────────────────────────────────── */
.process-section {
  padding: var(--spacing-xl) 0;
  background: var(--espresso);
}

.process-section__header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-step {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.process-step__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(184,150,90,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.process-step__text {
  font-size: 0.8125rem;
  color: var(--ivory-dim);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Artwork Delivery ───────────────────────── */
.delivery-section {
  padding: var(--spacing-xl) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.delivery-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.delivery-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.delivery-item {
  border: 1px solid var(--border-light);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s;
}

.delivery-item:hover {
  border-color: var(--gold);
}

.delivery-item__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}

.delivery-item__text {
  font-size: 0.75rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ── Inner Page CTA ─────────────────────────── */
.page-cta {
  padding: var(--spacing-xl) 0;
  text-align: center;
  background: var(--black);
  position: relative;
}

.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,150,90,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-cta__content {
  position: relative;
  z-index: 1;
}

.page-cta__title {
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.page-cta__sub {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

.page-cta__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -- Hero Carousel -- */

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-carousel__slide.is-active {
  opacity: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
