/* =============================================
   WONDER CHROME STUDIO — HOME
   ============================================= */

/* ── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(122, 98, 64, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(8,6,4,0.8) 0%, transparent 55%),
    linear-gradient(165deg, #1a1410 0%, #0a0806 45%, #12100d 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='600' height='800' viewBox='0 0 600 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='320' cy='300' rx='180' ry='250' fill='none' stroke='rgba(184,150,90,0.04)' stroke-width='1'/%3E%3Cellipse cx='320' cy='300' rx='120' ry='170' fill='none' stroke='rgba(184,150,90,0.03)' stroke-width='1'/%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
}

.hero__text {}

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

.hero__title {
  font-size: clamp(3rem, 6.5vw, 6rem);
  color: var(--ivory);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.5s forwards;
  line-height: 1.05;
}

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

.hero__sub {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.9s forwards;
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-cinematic) 1s forwards;
}

.hero__img-stack {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 0.6fr;
  gap: 0.75rem;
  height: 520px;
}

.hero__img-stack .img-placeholder:nth-child(1) {
  grid-row: 1 / 3;
  height: 100%;
  background: linear-gradient(160deg, #2a2218 0%, #141210 100%);
}

.hero__img-stack .img-placeholder:nth-child(2) {
  height: 100%;
  background: linear-gradient(160deg, #1e1916 0%, #100e0b 100%);
}

.hero__img-stack .img-placeholder:nth-child(3) {
  height: 100%;
  background: linear-gradient(160deg, #1c1a16 0%, #0e0c0a 100%);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-cinematic) 1.5s forwards;
}

.hero__scroll-text {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory-ghost);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── Category intro sections ─────────────────── */
.category-intro {
  padding: var(--spacing-xl) 0;
  position: relative;
}

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

.category-intro--reverse .category-intro__inner {
  direction: rtl;
}

.category-intro--reverse .category-intro__content,
.category-intro--reverse .category-intro__visual {
  direction: ltr;
}

.category-intro__content {}

.category-intro__title {
  color: var(--ivory);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.category-intro__text {
  margin-bottom: 2rem;
}

.category-intro__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.category-intro__tag {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-sans);
  font-weight: 300;
  transition: all 0.3s;
}

.category-intro__tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.category-intro__visual {
  position: relative;
}

.category-intro__grid {
  display: grid;
  gap: 0.75rem;
}

.category-intro__grid--2col {
  grid-template-columns: 1fr 1fr;
}

.category-intro__grid .img-placeholder {
  background: var(--charcoal);
}

.category-intro__number {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(184,150,90,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Experience teaser ──────────────────────── */
.experience-teaser {
  background: var(--charcoal);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.experience-teaser::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.experience-teaser__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.experience-step {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--border-light);
  position: relative;
}

.experience-step:last-child {
  border-right: none;
}

.experience-step__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(184,150,90,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.experience-step__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

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

/* ── Why Wonder Chrome ──────────────────────── */
.why-section {
  padding: var(--spacing-xl) 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}

.why-section__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 300;
  color: rgba(184,150,90,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.why-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-section__title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--ivory);
  margin-bottom: 2rem;
}

.why-section__intro {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ivory-ghost);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-pillar {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-pillar__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-pillar__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
}

.why-pillar__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 0.35rem;
  font-weight: 400;
}

.why-pillar__text {
  font-size: 0.8125rem;
  font-weight: 300;
}

.why-section__visual {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.why-section__visual .img-placeholder:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.why-section__visual .img-placeholder:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.why-section__visual .img-placeholder:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

/* ── Final CTA ──────────────────────────────── */
.home-cta {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: var(--black);
  text-align: center;
}

.home-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.home-cta__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.home-cta__title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--ivory);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.home-cta__sub {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  max-width: 400px;
  margin: 0 auto 3rem;
}

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

/* ── Keyframes ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
