.themed-hero{
  position:relative;
}
.themed-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.3fr);
  gap:var(--space-8);
  align-items:center;
}
@media (min-width: 900px){
  .themed-hero__grid{
    grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);
  }
}
.themed-hero__content{
  max-width:40rem;
}
.themed-hero__media{
  max-width:460px;
  margin-inline:auto;
}
.themed-hero__meta{
  margin-top:var(--space-4);
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-3);
}
.themed-hero__actions{
  margin-top:var(--space-6);
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-4);
}
.themed-section-header p{
  color:var(--color-text-soft);
}
.themed-list{
  padding-left:1.1rem;
}
.themed-list li{
  position:relative;
  margin-bottom:0.4rem;
  color:var(--color-text-soft);
}
.themed-list--check{
  list-style:none;
  padding-left:0;
}
.themed-list--check li{
  padding-left:1.4rem;
}
.themed-list--check li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.4rem;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--color-accent-gold),var(--color-primary));
  box-shadow:var(--shadow-glow-gold);
}
.themed-intro__card{
  height:100%;
}
.themed-motifs .card{
  height:100%;
}
.themed-occasions .card{
  height:100%;
}
.themed-flow__media{
  margin-top:var(--space-4);
}
@media (min-width: 900px){
  .themed-flow__media{
    margin-top:0;
  }
}
.themed-steps{
  list-style:none;
  padding-left:0;
}
.themed-steps li{
  position:relative;
  padding-left:1.6rem;
  margin-bottom:var(--space-4);
}
.themed-steps li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.35rem;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--color-primary);
  box-shadow:var(--shadow-glow-primary);
}
.themed-steps h3{
  font-size:var(--text-lg);
  margin-bottom:0.2rem;
}
.themed-steps--secondary li::before{
  background:var(--color-accent-gold);
  box-shadow:var(--shadow-glow-gold);
}
.themed-gallery{
  max-width:760px;
  margin-inline:auto;
}
.themed-booking{
  position:relative;
}
.themed-steps--horizontal{
  display:grid;
  grid-template-columns:repeat(1,minmax(0,1fr));
  gap:var(--space-6);
}
@media (min-width: 900px){
  .themed-steps--horizontal{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}
.themed-steps--horizontal li{
  background:rgba(10,10,16,0.9);
  border-radius:var(--radius-lg);
  border:1px solid var(--color-border-subtle);
  padding:var(--space-5);
}
.themed-steps--horizontal li::before{
  display:none;
}
.themed-steps--horizontal h3{
  font-size:var(--text-base);
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--color-text-soft);
}
.themed-steps--horizontal p{
  margin-top:var(--space-2);
}
.themed-social .card,
.themed-consult .card{
  height:100%;
}
@media (max-width: 767px){
  .themed-hero__actions{
    flex-direction:column;
    align-items:flex-start;
  }
}
