/* =============================================================================
   PAGE — Home
   ============================================================================= */

/* --- Shared Instagram figure (also used on profile) ----------------------- */
.ig-figure {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ivory-deep);
}

.ig-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

a.ig-figure:hover img,
a.ig-figure:focus-visible img {
  transform: scale(1.04);
}

.ig-figure__album {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.5);
  color: #fff;
}

.ig-figure__view {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  color: #fff;
  font-size: var(--step-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

a.ig-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 18, 18, 0.42));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

a.ig-figure:hover::after,
a.ig-figure:focus-visible::after { opacity: 1; }
a.ig-figure:hover .ig-figure__view,
a.ig-figure:focus-visible .ig-figure__view { opacity: 1; transform: none; }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  padding-block: clamp(var(--space-2xl), 6vw, var(--space-4xl)) var(--space-2xl);
}

.hero__layout {
  display: grid;
  gap: clamp(var(--space-lg), 4vw, var(--space-2xl));
  align-items: center;
}

@media (min-width: 940px) {
  .hero__layout {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero__title {
  font-size: var(--step-h1);
  line-height: 0.98;
  margin: var(--space-sm) 0 var(--space-md);
}

.hero__lede {
  max-width: 42ch;
  color: var(--fg-muted);
  font-size: var(--step-body-lg);
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.hero__fact { display: flex; align-items: center; gap: 0.75rem; }

.hero__fact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  flex: none;
}

.hero__fact dt {
  font-size: var(--step-eyebrow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.hero__fact dd { font-size: var(--step-small); color: var(--fg); }

.hero__visual { display: grid; justify-items: center; }

/* Real-image hero visual */
.hero__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
}

.hero__figure .ig-figure,
.hero__figure img { height: 100%; border-radius: inherit; }

.hero__figure-tag {
  position: absolute;
  left: 0;
  bottom: 1rem;
  z-index: 2;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line-gold);
  border-left: 0;
  font-size: var(--step-eyebrow);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Section header with index number ------------------------------------- */
.chapter {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--line-gold);
}

.chapter__index {
  font-family: var(--font-display);
  font-size: var(--step-small);
  color: var(--gold);
  letter-spacing: 0.1em;
}

.chapter h2 { font-size: var(--step-h2); margin-top: 0.25rem; }

/* --- Editorial service index (replaces card grid) ------------------------- */
.service-index { display: grid; }

.service-index__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: var(--space-md);
  padding-block: var(--space-md);
  border-top: 1px solid var(--line-soft);
  color: inherit;
  transition: padding-left var(--dur) var(--ease), background var(--dur) var(--ease);
}

.service-index__row:last-child { border-bottom: 1px solid var(--line-soft); }

.service-index__row:hover {
  padding-left: var(--space-sm);
  background: linear-gradient(90deg, var(--surface-alt), transparent 60%);
}

.service-index__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.service-index__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  line-height: 1.1;
}

.service-index__meta {
  display: block;
  font-family: var(--font-body);
  font-size: var(--step-small);
  color: var(--fg-muted);
  margin-top: 0.15rem;
}

.service-index__price {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.75rem);
  color: var(--red);
  white-space: nowrap;
}

.service-index__price .from {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  line-height: 1;
}

/* --- Selected work (live Behold) ------------------------------------------ */
.work-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); }
}

.work-grid .ig-figure { aspect-ratio: 4 / 5; }

.work-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* --- Approach (Consult / Refine / Finish) --------------------------------- */
.approach-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 820px) {
  .approach-grid { grid-template-columns: repeat(3, 1fr); }
}

.approach-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  padding-top: var(--space-md);
  border-top: 1px solid var(--line-gold);
}

.approach-step__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--gold);
}

.approach-step h3 { margin-bottom: 0.375rem; }
.approach-step p { color: var(--fg-muted); font-size: var(--step-small); }

/* --- Dijon profile snippet + booking -------------------------------------- */
.home-profile { display: grid; gap: var(--space-2xl); }

@media (min-width: 940px) {
  .home-profile { grid-template-columns: 1fr 1fr; align-items: start; }
}

.home-profile__card { display: grid; gap: var(--space-md); align-content: start; }

.home-profile__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: center;
}

.home-profile__portrait {
  width: 108px;
  height: 132px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-gold);
  background: radial-gradient(120% 120% at 30% 20%, #fbf8f1 0%, var(--ivory) 60%, var(--ivory-deep) 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  flex: none;
}

.home-profile__facts { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.home-profile__fact { display: grid; gap: 0.25rem; justify-items: start; }
.home-profile__fact .icon { color: var(--gold); }
.home-profile__fact strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; }
.home-profile__fact span { font-size: 0.8rem; color: var(--fg-muted); }
