/* =========================
   PAGE WRAPPER
========================= */

.page{
  max-width:1400px;
  margin:0 auto;
  padding:28px 24px 60px;
}

/* =========================
   GENERIC BLOCKS
========================= */

.page-hero{
  background:rgba(242,214,220,.6);
  padding:18px;
  border-radius:var(--radius);
}

.page-hero h1{
  font-size:40px;
}

.jump-links{
  margin-top:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.jump-links a{
  font-size:13px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(230,183,195,.35);
}

/* =========================
   HERO
========================= */

.hero{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:18px;
}

.hero h1{
  font-size:42px;
  margin:0 0 10px;
}

.hero-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}

.hero-card{
  background:linear-gradient(180deg,var(--petal-frost),white);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.badge{
  font-size:12px;
  background:white;
  padding:6px 10px;
  border-radius:999px;
  display:inline-block;
}

.hero-card-title{
  margin-top:14px;
}

.hero-card-sub{
  color:var(--muted);
}

/* =========================
   QUICK GRID
========================= */

.quick-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.tile{
  background:rgba(242,214,220,.6);
  padding:14px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.tile h3{
  margin:0 0 6px;
}

.tile p{
  margin:0;
  font-size:13px;
  color:var(--muted);
}

/* =========================
   CARDS
========================= */

.cards{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.card{
  background:white;
  padding:16px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:transform .18s ease;
}

.card:hover{
  transform:translateY(-4px);
}

.card h3{
  margin-bottom:8px;
}

.card p{
  color:var(--muted);
}

.card-image{
  height:180px;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:10px;
  background:linear-gradient(180deg,var(--petal-frost),var(--soft-linen));
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.card:hover .card-image img{
  transform:scale(1.05);
}

/* =========================
   COUNTRY / DESTINATION CARDS
========================= */

.country-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.country-card{
  display:block;
  background:white;
  padding:16px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:.2s;
}

.country-card:hover{
  transform:translateY(-3px);
}

.country-image{
  height:140px;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:12px;
  background:linear-gradient(180deg,var(--petal-frost),var(--soft-linen));
}

.country-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.country-top{
  display:flex;
  gap:12px;
}

.country-flag{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--petal-frost);
  border-radius:14px;
  font-size:28px;
}

.country-title h2{
  margin:0;
}

.country-bullets{
  margin-top:12px;
  padding-left:18px;
  color:var(--muted);
}

.country-cta{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
}

.pill{
  background:rgba(230,183,195,.35);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}

/* =========================
   TIMELINE / VIBE / CITY GRIDS
========================= */

.timeline{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.time-card{
  background:white;
  padding:14px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  text-align:center;
}

.vibe-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.vibe-card{
  background:rgba(242,214,220,.6);
  padding:14px;
  border-radius:var(--radius);
  text-align:center;
}

.vibe-card h3{
  margin:0 0 6px;
}

.city-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.city-card{
  background:white;
  padding:16px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.city-card ul{
  padding-left:18px;
  color:var(--muted);
}

.city-image{
  height:180px;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:12px;
  background:linear-gradient(180deg,var(--petal-frost),var(--soft-linen));
}

.city-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.sakura-map{
  margin:16px 0 18px;
  border-radius:14px;
  overflow:hidden;
  background:linear-gradient(180deg,var(--petal-frost),var(--soft-linen));
}

.sakura-map img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================
   POSTS
========================= */

.post{
  max-width:820px;
  margin:0 auto;
}

.post-hero{
  margin-bottom:18px;
}

.post-meta{
  margin-bottom:8px;
}

.post-title{
  font-size:44px;
  line-height:1.1;
  margin:0 0 10px;
}

.post-deck{
  margin:0 0 14px;
  color:var(--muted);
  max-width:70ch;
}

.post-cover{
  margin-top:14px;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg,var(--petal-frost),var(--soft-linen));
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:var(--shadow);
}

.post-cover img{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
}

.post-body{
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:var(--shadow);
  border-radius:18px;
  padding:18px;
}

.post-body h2{
  font-size:22px;
  margin:18px 0 10px;
}

.post-body p{
  margin:0 0 12px;
}

.post-body ul{
  margin:0 0 12px;
  padding-left:18px;
  color:var(--muted);
}

.post-body li{
  margin:6px 0;
}

.post-cta{
  margin-top:16px;
  padding:14px;
  border-radius:16px;
  background:rgba(230,183,195,0.25);
  border:1px solid rgba(0,0,0,0.06);
}

.post-cta-actions{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* =========================
   COLLECTION TILES
========================= */

.collection-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
}

.collection-card{
  display:block;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
  text-align:left;
  transition:transform 140ms ease, border-color 140ms ease;
}

.collection-card:hover{
  transform:translateY(-3px);
  border-color:rgba(0,0,0,0.12);
}

.collection-thumb{
  height:120px;
  border-radius:14px;
  overflow:hidden;
  background:linear-gradient(180deg,var(--petal-frost),var(--soft-linen));
  border:1px solid rgba(0,0,0,0.06);
  margin-bottom:10px;
}

.collection-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.collection-name{
  font-weight:700;
  margin-bottom:4px;
}

.collection-sub{
  color:var(--muted);
  font-size:14px;
}

/* =========================
   PRODUCTS
========================= */

.product-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
}

.product-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.product-media{
  height:220px;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  margin-bottom:12px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
  display:block;
}

.product-title{
  font-size:16px;
  margin:0 0 6px;
}

.product-desc{
  color:var(--muted);
  font-size:14px;
  margin:0 0 12px;
}

/* =========================
   SECTION SPACING
========================= */

.section{
  margin-top:80px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:900px){

  .hero{
    grid-template-columns:1fr;
  }

  .quick-grid{
    grid-template-columns:1fr 1fr;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .product-grid{
    grid-template-columns:1fr 1fr;
  }

  .country-grid{
    grid-template-columns:1fr;
  }

  .timeline{
    grid-template-columns:1fr;
  }

  .vibe-grid{
    grid-template-columns:1fr 1fr;
  }

  .city-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:520px){

  .product-grid{
    grid-template-columns:1fr;
  }

  .collection-grid{
    grid-template-columns:1fr;
  }

}