/* =========================
   LIFESTYLE PAGE HERO
========================= */

.lifestyle-hero{
  background:rgba(242,214,220,.6);
  padding:18px;
  border-radius:var(--radius);
}

/* =========================
   LIFESTYLE STORY CARDS
========================= */

.lifestyle-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.lifestyle-card{
  background:white;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
  transition:.2s ease;
}

.lifestyle-card:hover{
  transform:translateY(-3px);
}

.lifestyle-card h3{
  margin:8px 0;
}

/* =========================
   LIFESTYLE IMAGE
========================= */

.lifestyle-image{
  height:180px;
  border-radius:14px;
  overflow:hidden;
  background:linear-gradient(180deg,var(--petal-frost),var(--soft-linen));
  margin-bottom:10px;
}

.lifestyle-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================
   MOOD / RITUAL SECTIONS
========================= */

.mood-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.mood-card{
  background:rgba(242,214,220,.6);
  padding:14px;
  border-radius:var(--radius);
}

.mood-card h3{
  margin:0 0 6px;
}
.page-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.content-image {
  margin: 20px 0;
}

.content-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.content-text p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.swatch {
  text-align: center;
}

.color {
  height: 80px;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(0,0,0,0.05);
}

.swatch span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.sakura-shades {
  margin-bottom: 30px;
}

.sub-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.shades-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.shade {
  text-align: center;
}

.shade-color {
  height: 70px;
  border-radius: 12px;
  margin-bottom: 6px;
  border: 1px solid rgba(0,0,0,0.05);
}

.shade span {
  font-size: 13px;
  color: var(--muted);
}

/* responsive */
@media (max-width:600px){
  .shades-row {
    grid-template-columns: 1fr 1fr;
  }
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width:900px){

  .lifestyle-grid{
    grid-template-columns:1fr;
  }

  .mood-grid{
    grid-template-columns:1fr 1fr;
  }

}